From a61b5802f3d9022627de3d810bba6f3d2ed70c4d Mon Sep 17 00:00:00 2001 From: Hampus Date: Wed, 7 Jan 2026 16:06:43 +0100 Subject: [PATCH] feat(nagbar): add invite CTA to Fluxer HQ (#68) --- .../src/components/layout/NagbarButton.tsx | 11 +- .../layout/app-layout/NagbarContainer.tsx | 3 + .../src/components/layout/app-layout/hooks.ts | 21 +- .../nagbars/GuildMembershipCtaNagbar.tsx | 103 +++ .../src/components/layout/app-layout/types.ts | 2 + fluxer_app/src/locales/ar/messages.po | 626 +++++++++--------- fluxer_app/src/locales/bg/messages.po | 626 +++++++++--------- fluxer_app/src/locales/cs/messages.po | 626 +++++++++--------- fluxer_app/src/locales/da/messages.po | 626 +++++++++--------- fluxer_app/src/locales/de/messages.po | 626 +++++++++--------- fluxer_app/src/locales/el/messages.po | 626 +++++++++--------- fluxer_app/src/locales/en-GB/messages.po | 626 +++++++++--------- fluxer_app/src/locales/en-US/messages.po | 626 +++++++++--------- fluxer_app/src/locales/es-419/messages.po | 626 +++++++++--------- fluxer_app/src/locales/es-ES/messages.po | 626 +++++++++--------- fluxer_app/src/locales/fi/messages.po | 626 +++++++++--------- fluxer_app/src/locales/fr/messages.po | 626 +++++++++--------- fluxer_app/src/locales/he/messages.po | 626 +++++++++--------- fluxer_app/src/locales/hi/messages.po | 626 +++++++++--------- fluxer_app/src/locales/hr/messages.po | 626 +++++++++--------- fluxer_app/src/locales/hu/messages.po | 626 +++++++++--------- fluxer_app/src/locales/id/messages.po | 626 +++++++++--------- fluxer_app/src/locales/it/messages.po | 626 +++++++++--------- fluxer_app/src/locales/ja/messages.po | 626 +++++++++--------- fluxer_app/src/locales/ko/messages.po | 626 +++++++++--------- fluxer_app/src/locales/lt/messages.po | 626 +++++++++--------- fluxer_app/src/locales/nl/messages.po | 626 +++++++++--------- fluxer_app/src/locales/no/messages.po | 626 +++++++++--------- fluxer_app/src/locales/pl/messages.po | 626 +++++++++--------- fluxer_app/src/locales/pt-BR/messages.po | 626 +++++++++--------- fluxer_app/src/locales/ro/messages.po | 626 +++++++++--------- fluxer_app/src/locales/ru/messages.po | 626 +++++++++--------- fluxer_app/src/locales/sv-SE/messages.po | 626 +++++++++--------- fluxer_app/src/locales/th/messages.po | 626 +++++++++--------- fluxer_app/src/locales/tr/messages.po | 626 +++++++++--------- fluxer_app/src/locales/uk/messages.po | 626 +++++++++--------- fluxer_app/src/locales/vi/messages.po | 626 +++++++++--------- fluxer_app/src/locales/zh-CN/messages.po | 626 +++++++++--------- fluxer_app/src/locales/zh-TW/messages.po | 626 +++++++++--------- fluxer_app/src/stores/NagbarStore.tsx | 18 + 40 files changed, 10863 insertions(+), 10579 deletions(-) create mode 100644 fluxer_app/src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx diff --git a/fluxer_app/src/components/layout/NagbarButton.tsx b/fluxer_app/src/components/layout/NagbarButton.tsx index dbf57fd4..130e7259 100644 --- a/fluxer_app/src/components/layout/NagbarButton.tsx +++ b/fluxer_app/src/components/layout/NagbarButton.tsx @@ -28,9 +28,17 @@ interface NagbarButtonProps { isMobile: boolean; className?: string; disabled?: boolean; + submitting?: boolean; } -export const NagbarButton = ({children, onClick, isMobile, className, disabled = false}: NagbarButtonProps) => { +export const NagbarButton = ({ + children, + onClick, + isMobile, + className, + disabled = false, + submitting, +}: NagbarButtonProps) => { return ( diff --git a/fluxer_app/src/components/layout/app-layout/NagbarContainer.tsx b/fluxer_app/src/components/layout/app-layout/NagbarContainer.tsx index a8277180..73f3615d 100644 --- a/fluxer_app/src/components/layout/app-layout/NagbarContainer.tsx +++ b/fluxer_app/src/components/layout/app-layout/NagbarContainer.tsx @@ -25,6 +25,7 @@ import {DesktopDownloadNagbar} from './nagbars/DesktopDownloadNagbar'; import {DesktopNotificationNagbar} from './nagbars/DesktopNotificationNagbar'; import {EmailVerificationNagbar} from './nagbars/EmailVerificationNagbar'; import {GiftInventoryNagbar} from './nagbars/GiftInventoryNagbar'; +import {GuildMembershipCtaNagbar} from './nagbars/GuildMembershipCtaNagbar'; import {MobileDownloadNagbar} from './nagbars/MobileDownloadNagbar'; import {PendingBulkDeletionNagbar} from './nagbars/PendingBulkDeletionNagbar'; import {PremiumExpiredNagbar} from './nagbars/PremiumExpiredNagbar'; @@ -66,6 +67,8 @@ export const NagbarContainer: React.FC = observer(({nagbar return ; case NagbarType.MOBILE_DOWNLOAD: return ; + case NagbarType.GUILD_MEMBERSHIP_CTA: + return ; default: return null; } diff --git a/fluxer_app/src/components/layout/app-layout/hooks.ts b/fluxer_app/src/components/layout/app-layout/hooks.ts index cde4862a..fe28ed02 100644 --- a/fluxer_app/src/components/layout/app-layout/hooks.ts +++ b/fluxer_app/src/components/layout/app-layout/hooks.ts @@ -162,6 +162,13 @@ export const useNagbarConditions = (): NagbarConditions => { pendingBulkDeletion && !nagbarState.hasPendingBulkDeletionDismissed(pendingBulkDeletionKey), ); + const canShowGuildMembershipCta = (() => { + if (nagbarState.forceHideGuildMembershipCta) return false; + if (nagbarState.forceGuildMembershipCta) return true; + if (!user) return false; + return !nagbarState.guildMembershipCtaDismissed; + })(); + return { userIsUnclaimed: nagbarState.forceHideUnclaimedAccount ? false @@ -185,6 +192,7 @@ export const useNagbarConditions = (): NagbarConditions => { canShowDesktopDownload, canShowMobileDownload, hasPendingBulkMessageDeletion, + canShowGuildMembershipCta, }; }; @@ -208,23 +216,28 @@ export const useActiveNagbars = (conditions: NagbarConditions): Array. + */ + +import {Trans} from '@lingui/react/macro'; +import {observer} from 'mobx-react-lite'; +import React from 'react'; +import * as ModalActionCreators from '~/actions/ModalActionCreators'; +import {modal} from '~/actions/ModalActionCreators'; +import {Nagbar} from '~/components/layout/Nagbar'; +import {NagbarButton} from '~/components/layout/NagbarButton'; +import {NagbarContent} from '~/components/layout/NagbarContent'; +import {InviteAcceptModal} from '~/components/modals/InviteAcceptModal'; +import AuthenticationStore from '~/stores/AuthenticationStore'; +import GuildMemberStore from '~/stores/GuildMemberStore'; +import InviteStore from '~/stores/InviteStore'; +import NagbarStore from '~/stores/NagbarStore'; +import {isGuildInvite} from '~/types/InviteTypes'; + +const FLUXER_HQ_INVITE_CODE = 'fluxer-hq'; + +export const GuildMembershipCtaNagbar = observer(({isMobile}: {isMobile: boolean}) => { + const currentUserId = AuthenticationStore.currentUserId; + const inviteState = InviteStore.invites.get(FLUXER_HQ_INVITE_CODE); + const invite = inviteState?.data ?? null; + + const [isSubmitting, setIsSubmitting] = React.useState(false); + + if (!currentUserId) { + return null; + } + + if (invite && isGuildInvite(invite)) { + const guildId = invite.guild.id; + const isMember = Boolean(GuildMemberStore.getMember(guildId, currentUserId)); + if (isMember) { + return null; + } + } + + const handleJoinGuild = async () => { + if (isSubmitting) return; + + setIsSubmitting(true); + try { + const module = await import('~/actions/InviteActionCreators'); + await module.fetchWithCoalescing(FLUXER_HQ_INVITE_CODE); + + const loadedInvite = InviteStore.invites.get(FLUXER_HQ_INVITE_CODE)?.data ?? null; + if (loadedInvite && isGuildInvite(loadedInvite)) { + const guildId = loadedInvite.guild.id; + const isMember = Boolean(GuildMemberStore.getMember(guildId, currentUserId)); + if (isMember) { + NagbarStore.guildMembershipCtaDismissed = true; + return; + } + } + } catch { + } finally { + setIsSubmitting(false); + ModalActionCreators.push(modal(() => )); + } + }; + + const handleDismiss = () => { + NagbarStore.guildMembershipCtaDismissed = true; + }; + + return ( + + Join Fluxer HQ to chat with the team and stay up to date on the latest!} + actions={ + + Join Fluxer HQ + + } + /> + + ); +}); diff --git a/fluxer_app/src/components/layout/app-layout/types.ts b/fluxer_app/src/components/layout/app-layout/types.ts index c9c507a4..416ec7e7 100644 --- a/fluxer_app/src/components/layout/app-layout/types.ts +++ b/fluxer_app/src/components/layout/app-layout/types.ts @@ -28,6 +28,7 @@ export const NagbarType = { BULK_DELETE_PENDING: 'bulk-delete-pending', DESKTOP_DOWNLOAD: 'desktop-download', MOBILE_DOWNLOAD: 'mobile-download', + GUILD_MEMBERSHIP_CTA: 'guild-membership-cta', } as const; export type NagbarType = (typeof NagbarType)[keyof typeof NagbarType]; @@ -53,6 +54,7 @@ export interface NagbarConditions { canShowDesktopDownload: boolean; canShowMobileDownload: boolean; hasPendingBulkMessageDeletion: boolean; + canShowGuildMembershipCta: boolean; } export const UPDATE_DISMISS_KEY = 'fluxer_update_dismissed_until'; diff --git a/fluxer_app/src/locales/ar/messages.po b/fluxer_app/src/locales/ar/messages.po index d0d9c67e..6ad7c041 100644 --- a/fluxer_app/src/locales/ar/messages.po +++ b/fluxer_app/src/locales/ar/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# عنصر} other {# عناصر}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# عضو} other {# أعضاء}}" @@ -566,18 +566,18 @@ msgstr "لا يمكن تحريك صور {label}. يرجى استخدام JPEG أ #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} عضو" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} أعضاء" @@ -612,11 +612,11 @@ msgstr "{minutes} دقائق و {seconds} ثواني" msgid "{minutes} minutes and 1 second" msgstr "{minutes} دقيقة و ثانية واحدة" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} مجتمع مشترك" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} مجتمعات مشتركة" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} مشاركين في المكالمة" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} متصل" @@ -650,15 +650,15 @@ msgstr "بقي {remaining} حرف" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "بقي {remaining} حرف. احصل على Plutonium للكتابة حتى {premiumMaxLength} حرف." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} عضو" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} أعضاء" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} متصل" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} مللي ثانية" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "إشارات @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "لون التمييز" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "قبول" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "قبول طلب الصداقة" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "قبول الدعوة" @@ -1364,8 +1364,8 @@ msgstr "قبول الدعوة" msgid "Accept the incoming call" msgstr "قبول المكالمة الواردة" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "قبول هذه الدعوة يقوم بتثبيت الحزمة تلقائيًا." @@ -1594,7 +1594,7 @@ msgstr "إضافة القنوات المفضلة" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "تم السماح بـ {0}." msgid "Already have an account?" msgstr "هل لديك حساب بالفعل؟" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "انضم بالفعل" @@ -2191,7 +2191,7 @@ msgstr "الصور الرمزية المتحركة واللافتات" msgid "Animated Avatars Require Plutonium" msgstr "الصور الرمزية المتحركة تتطلب Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "لافتة متحركة" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "الرموز التعبيرية المتحركة ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF متحرك" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "فيديو GIF متحرك" @@ -2219,7 +2219,7 @@ msgstr "فيديو GIF متحرك" msgid "Animated GIF Video" msgstr "فيديو GIF متحرك" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "أيقونة متحركة" @@ -2277,7 +2277,7 @@ msgstr "يمكن لأي شخص @mention هذا الدور. يمكن للأعضا msgid "API Endpoint" msgstr "نقطة نهاية API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "معلومات التطبيق" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "اسم التطبيق" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "اسم التطبيق مطلوب" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "هل أنت متأكد أنك تريد إخفاء جميع تضمينات الروابط في هذه الرسالة؟ هذا الإجراء سيخفي جميع التضمينات من هذه الرسالة." @@ -2603,7 +2602,7 @@ msgstr "مرفق {0}" msgid "Attachment Actions" msgstr "إجراءات المرفق" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "انتهت صلاحية المرفق" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "الإكمال التلقائي" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "تلقائي" @@ -2859,7 +2858,7 @@ msgstr "رجوع" msgid "Back to Applications" msgstr "العودة إلى التطبيقات" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "العودة إلى القائمة" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "العودة إلى تسجيل الدخول" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "العودة إلى التجاوزات" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "العودة إلى الأدوار" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "العودة إلى الإعدادات" @@ -3003,7 +3002,7 @@ msgstr "المستخدمون المحظورون" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "لافتة" @@ -3096,7 +3095,7 @@ msgstr "حد أحرف السيرة الذاتية" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "النطاق المطلوب للبوت" msgid "Bot token" msgstr "رمز البوت" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "تم إنشاء رمز البوت من جديد. قم بتحديث أي كود يستخدم الرمز القديم." @@ -3435,7 +3434,7 @@ msgstr "إعدادات الكاميرا" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "إعدادات الكاميرا" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "إعدادات الكاميرا" msgid "Cancel" msgstr "إلغاء" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "إلغاء طلب الصداقة" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "احذر! لديك تغييرات غير محفوظة." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "الفئة" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "اسم الفئة" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "إعدادات الفئة" @@ -3617,7 +3616,7 @@ msgstr "تحذير" msgid "Center" msgstr "مركز" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "مركز" @@ -3765,7 +3764,7 @@ msgstr "تم تغيير معدل البت إلى {0}." msgid "Changed the voice region to {0}." msgstr "تم تغيير منطقة الصوت إلى {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "قناة" @@ -3828,11 +3827,11 @@ msgstr "تم نسخ معرف القناة إلى الحافظة" msgid "Channel link copied" msgstr "تم نسخ رابط القناة" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "وضع مؤشر الكتابة في قائمة القنوات" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "مؤشرات الكتابة في قائمة القنوات" @@ -3891,7 +3890,7 @@ msgstr "تمت إزالة القناة من المفضلة" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "إعدادات القناة" @@ -4052,7 +4051,7 @@ msgstr "اختر كيفية عرض الأوقات في التطبيق." msgid "Choose how typing indicators appear in the channel list" msgstr "اختر كيفية ظهور مؤشرات الكتابة في قائمة القنوات" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "اختر كيفية ظهور مؤشرات الكتابة في قائمة القنوات عندما يكتب أحدهم في قناة." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "قم باسترداد حسابك لاسترداد هذه الهدية." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "قم باسترداد حسابك لإرسال طلبات الصداقة." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "مسح الأذونات" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "مسح البحث" msgid "Clear search input" msgstr "مسح إدخال البحث" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "مسح التحديد" @@ -4314,7 +4313,7 @@ msgstr "انقر على أيقونة الرفع بجانب أي صوت لتخص msgid "Click the verification link in the email." msgstr "انقر على رابط التحقق في البريد الإلكتروني." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "انقر لإضافة ملاحظة" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "انقر لاستلام هديتك!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "انقر للنسخ" @@ -4388,7 +4387,7 @@ msgstr "انقر لعرض جميع التفاعلات" msgid "Client secret" msgstr "سر العميل" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "تم إعادة توليد سر العميل. قم بتحديث أي كود يستخدم السر القديم." @@ -4649,8 +4648,8 @@ msgstr "المجتمع يروج للكراهية بناءً على خصائص م msgid "Community promotes or facilitates illegal activities" msgstr "المجتمع يروج أو يسهل أنشطة غير قانونية" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "القوائم السياقية" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "يمكن فتح القوائم السياقية بالنقر الأيسر (على الأزرار) أو النقر الأيمن (على العناصر الأخرى). يوضح هذا عناصر قائمة متنوعة تشمل مربعات الاختيار، وأزرار الراديو، وأشرطة التمرير، والقوائم الفرعية." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "تحكم في كيفية عرض روابط المواقع في الدر msgid "Control how you join voice channels" msgstr "التحكم في كيفية انضمامك إلى قنوات الصوت" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "تحكم في كيفية انضمامك إلى قنوات الصوت في المجتمعات." @@ -5012,7 +5011,7 @@ msgstr "التحكم في رسوميات الملصقات" msgid "Control the visibility of favorites throughout the app." msgstr "تحكم في ظهور المفضلات عبر التطبيق." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "تحكم في ظهور تلميحات اختصارات لوحة المفاتيح داخل التلميحات." @@ -5071,7 +5070,7 @@ msgstr "تم النسخ" msgid "Copied to clipboard" msgstr "تم النسخ إلى الحافظة" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "تم نسخ الرابط إلى الحافظة" @@ -5149,7 +5148,7 @@ msgstr "نسخ رابط الملف" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "نسخ FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "نسخ FluxerTag" msgid "Copy GIF" msgstr "نسخ GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "نسخ معرف النقابة" @@ -5222,7 +5221,7 @@ msgstr "نسخ النص" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "مريح" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "إنشاء" @@ -5331,14 +5330,14 @@ msgstr "أنشئ وادير التطبيقات والروبوتات لحسابك msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "أنشئ وشارك حزم الإيموجي والملصقات المخصصة مع Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "إنشاء تطبيق" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "إنشاء تطبيق" msgid "Create Category" msgstr "إنشاء فئة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "تم الإنشاء في {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "تم إنشاؤه بواسطة {0}" @@ -5569,7 +5568,7 @@ msgstr "الصورة المقطوعة كبيرة جدًا. يرجى اختيار msgid "Current Community" msgstr "المجتمع الحالي" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "الجهاز الحالي" @@ -5606,7 +5605,7 @@ msgstr "عالق حاليًا في عام 1885، ويظهر غير متصل" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "حاليًا: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "خطر ثانوي" msgid "Danger secondary clicked!" msgstr "تم النقر على الخطر الثانوي!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "منطقة الخطر" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "يتم إيقاف التشغيل على الهواتف المحمولة افتراضيًا للحفاظ على عمر البطارية واستهلاك البيانات." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "حذف جميع رسائلي" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "حذف التطبيق" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "حذف المرفق" @@ -6063,7 +6062,7 @@ msgstr "حذف المرفق" msgid "Delete Attachment" msgstr "حذف المرفق" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "حذف الفئة" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "حذف القناة" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "حذف الوسائط" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "حذف الرسالة" @@ -6215,7 +6214,7 @@ msgstr "كثيف" msgid "Dense layout" msgstr "تخطيط كثيف" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "مُنشَر" @@ -6281,7 +6280,7 @@ msgstr "قناة الوجهة" msgid "Destination URL:" msgstr "عنوان URL للوجهة:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "لافتة منفصلة" @@ -6362,7 +6361,7 @@ msgstr "أحجام مختلفة (مدعومة الحالة)" msgid "Different Sizes & Member Counts" msgstr "أحجام مختلفة وأعداد الأعضاء" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "رسالة مباشرة" @@ -6541,7 +6540,7 @@ msgstr "سيؤدي تعطيل حسابك إلى تسجيل خروجك من جم msgid "Disallow @mention." msgstr "عدم السماح بالإشارة @." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "عدم السماح بالحسابات غير المطالب بها" @@ -6747,7 +6746,7 @@ msgstr "لا تعرض معاينات الرسائل في قائمة الدردش msgid "Don't show this again" msgstr "لا تعرض هذا مرة أخرى" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "لا تعرض مؤشرات الكتابة في قائمة القنوات" @@ -6760,7 +6759,7 @@ msgstr "لا تعرض مؤشرات الكتابة في قائمة القنوات msgid "Done" msgstr "تم" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "تعديل الفئة" msgid "Edit Channel" msgstr "تعديل القناة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "تعديل التجاوزات للأدوار والأعضاء في هذه القناة." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "تضمين الشعار" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "صور الشعار المضمنة لا يمكن أن تكون متحركة. يرجى استخدام JPEG أو PNG أو WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "صوت مضمن" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "يجب أن تكون أسماء الإيموجي مكونة من حرفين على الأقل، ويمكن أن تحتوي فقط على أحرف أبجدية رقمية وشرطات سفلية. أنواع الملفات المسموح بها: JPEG، PNG، WebP، GIF. نقوم بضغط الصور إلى 128×128 بكسل. الحد الأقصى للحجم: {0} كيلوبايت لكل إيموجي." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "حزمة الإيموجي" @@ -7473,7 +7472,7 @@ msgstr "أدخل رقم الهاتف" msgid "Enter picture-in-picture" msgstr "الدخول إلى وضع الصورة داخل الصورة" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "الدخول إلى وضع التحديد" @@ -7536,7 +7535,7 @@ msgstr "أدخل البريد الإلكتروني الجديد الذي تري msgid "Enter the SMS code you received." msgstr "أدخل رمز الرسائل القصيرة الذي استلمته." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "اضغط Enter لـ <0><1>حفظ" @@ -7604,7 +7603,7 @@ msgstr "خطأ في عرض LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "مفتاح Escape يخرج من وضع لوحة المفاتيح" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "اضغط Esc لل<0><1>إلغاء" @@ -7667,7 +7666,7 @@ msgstr "خروج من وضع الصورة داخل الصورة" msgid "Exit Preview" msgstr "خروج من المعاينة" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "خروج من وضع التحديد" @@ -7701,7 +7700,7 @@ msgstr "منتهي الصلاحية (خلال 30 يومًا)" msgid "Expired {absolute}" msgstr "منتهي الصلاحية {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "منتهي الصلاحية بين {earliest} و {latest}" @@ -7709,7 +7708,7 @@ msgstr "منتهي الصلاحية بين {earliest} و {latest}" msgid "Expired on {date}" msgstr "منتهي الصلاحية في {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "منتهي الصلاحية في {earliest}" @@ -7722,7 +7721,7 @@ msgstr "ينتهي" msgid "Expires {absolute} ({relativeText})" msgstr "ينتهي {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "ينتهي بين {earliest} و {latest}" @@ -7730,7 +7729,7 @@ msgstr "ينتهي بين {earliest} و {latest}" msgid "Expires on {date}" msgstr "ينتهي في {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "ينتهي في {earliest}" @@ -7766,7 +7765,7 @@ msgstr "حزم التعبيرات هي ميزة Plutonium" msgid "Expression picker categories" msgstr "فئات منتقي التعبيرات" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "تنظيف التعبيرات" @@ -7839,10 +7838,6 @@ msgstr "فشل النسخ إلى الحافظة" msgid "Failed to copy URL" msgstr "فشل نسخ الرابط" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "فشل إنشاء التطبيق. يرجى التحقق من المدخلات والمحاولة مرة أخرى." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "فشل إنشاء دور" @@ -8100,7 +8095,7 @@ msgstr "فشل إلغاء الحظر. يُرجى المحاولة مرة أخر msgid "Failed to revoke invite" msgstr "فشل إلغاء الدعوة" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "فشل التدوير. يُرجى المحاولة مرة أخرى." @@ -8413,7 +8408,7 @@ msgstr "أصدقاء اللياقة" msgid "Flags" msgstr "الأعلام" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "أسماء قنوات النصوص المرنة" @@ -8577,7 +8572,7 @@ msgstr "أصدقاء عشاق الطعام" msgid "For 1 hour" msgstr "لمدة ساعة واحدة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "لمدة ساعة واحدة" msgid "For 15 minutes" msgstr "لمدة 15 دقيقة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "لمدة 15 دقيقة" msgid "For 24 hours" msgstr "لمدة ٢٤ ساعة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "لمدة 3 أيام" msgid "For 3 hours" msgstr "لمدة ٣ ساعات" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "لمدة 3 ساعات" msgid "For 8 hours" msgstr "لمدة ٨ ساعات" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "نسيان الاشتراكات" msgid "Forgot Password" msgstr "نسيت كلمة المرور" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "هل نسيت كلمة المرور؟" @@ -8795,7 +8790,7 @@ msgstr "تقدم {DEFAULT_SEEK_AMOUNT} ثانية" msgid "Forward Message" msgstr "إعادة توجيه الرسالة" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "معاد توجيهه" @@ -9065,7 +9060,7 @@ msgstr "احصل على تطبيق Fluxer لسطح المكتب لاستخدام #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "العودة إلى قناة النص التي كانت مركزة سا msgid "Go forward in navigation history" msgstr "التقدم في سجل التنقل" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "انتقل إلى المجتمع" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "دعوات المجموعة" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "رسالة المجموعة" @@ -9548,7 +9543,7 @@ msgstr "مرحبًا {username}، أهلاً بك! يمكنك تحقيق أي ش msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "مرحبًا {username}! عندما تصل إلى 88 ميلاً في الساعة، سترى أشياء رائعة!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "مخفي" @@ -9569,7 +9564,7 @@ msgstr "إخفاء المفضلة" msgid "Hide Join Messages" msgstr "إخفاء رسائل الانضمام" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "إخفاء تلميحات لوحة المفاتيح في التلميحات" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "إخفاء القنوات المكتومة" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "إذا كنت ترغب في تصدير بياناتك أو حذف رسائلك أولاً، يرجى زيارة قسم لوحة الخصوصية في إعدادات المستخدم قبل المتابعة." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "صورة" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "مدخلات مع أيقونات" msgid "Insert emoji" msgstr "إدراج إيموجي" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "تثبيت حزمة الإيموجي" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "تثبيت حزمة الملصقات" @@ -10153,7 +10148,7 @@ msgstr "تم التثبيت في {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "يتطلب تثبيت حزم الإيموجي والملصقات اشتراكًا متميزًا." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "دعوات فورية" @@ -10286,7 +10281,7 @@ msgstr "إعدادات رابط الدعوة" msgid "Invite Links" msgstr "روابط الدعوة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "نافذة الدعوة" msgid "Invite modal preview" msgstr "معاينة نافذة الدعوة" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "تم إرسال دعوة لـ {0}" msgid "Invite sent to {guildName}" msgstr "تم إرسال الدعوة إلى {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "شاشة ترحيب الدعوة" @@ -10354,7 +10349,7 @@ msgstr "دعوة إلى {0}" msgid "Invite to Community" msgstr "دعوة إلى المجتمع" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "الدعوة غير متاحة" @@ -10369,12 +10364,12 @@ msgstr "تمت الدعوة بواسطة {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "تمت الدعوة بواسطة {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "تمت الدعوة بواسطة {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "الدعوات متوقفة حاليًا في هذا المجتمع" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "الدعوات مقفلة للمجتمعات التجريبية. استرد حسابك عن طريق تعيين بريد إلكتروني وكلمة مرور لتمكين الدعوات." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "الدعوات معطلة" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "الدعوات معطلة" @@ -10482,13 +10477,13 @@ msgstr "انضم إلى مجتمع يحتوي على ملصقات للبدء!" msgid "Join call" msgstr "انضم إلى المكالمة" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "انضم إلى المجتمع" @@ -10497,15 +10492,23 @@ msgstr "انضم إلى المجتمع" msgid "Join community form" msgstr "نموذج الانضمام إلى المجتمع" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "انضم إلى مقر فلوكسر" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "انضم إلى مقر فلوكسر للدردشة مع الفريق وابقَ على اطلاع بأحدث الأخبار!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "انضم إلى المجموعة" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "انضم إلى الرسائل المباشرة للمجموعة" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "إشعارات الانضمام" @@ -10620,7 +10623,7 @@ msgstr "اقفز إلى أقدم رسالة غير مقروءة" msgid "Jump to page" msgstr "اقفز إلى الصفحة" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "اقفز إلى الحاضر" @@ -10690,7 +10693,7 @@ msgstr "مفاتيح الربط" msgid "Keyboard" msgstr "لوحة المفاتيح" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "تلميحات لوحة المفاتيح" @@ -10815,7 +10818,7 @@ msgstr "تعرف على Plutonium" msgid "Leave blank for a random username" msgstr "اتركه فارغًا لاسم مستخدم عشوائي" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "تغادر بهذه السرعة؟" msgid "Left" msgstr "غادر" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "محاذاة لليسار" @@ -10945,7 +10948,7 @@ msgstr "رابط" msgid "Link" msgstr "رابط" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "ربط قناة" @@ -11027,7 +11030,7 @@ msgstr "جارٍ تحميل الحظر..." msgid "Loading communities..." msgstr "جارٍ تحميل المجتمعات..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "جارٍ تحميل الصورة" @@ -11039,8 +11042,8 @@ msgstr "جارٍ تحميل الدعوات..." msgid "Loading more..." msgstr "جارٍ تحميل المزيد..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "عنصر نائب للتحميل" @@ -11064,7 +11067,7 @@ msgstr "جارٍ تحميل السمة..." msgid "Loading verification methods..." msgstr "جارٍ تحميل طرق التحقق..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "جارٍ التحميل: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "كتم محلي" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "سجل الدخول باستخدام متصفحك، ثم أدخل الر msgid "Log in via browser" msgstr "تسجيل الدخول عبر المتصفح" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "تسجيل الدخول عبر المتصفح أو نسخة مخصصة" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "تسجيل الخروج" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "تسجيل خروج {0} جهاز" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "تسجيل الخروج من {sessionCount} جهاز" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "تسجيل خروج جهاز واحد" @@ -11141,7 +11144,7 @@ msgstr "تسجيل الخروج من جميع الأجهزة" msgid "Log out all other devices" msgstr "تسجيل الخروج من جميع الأجهزة الأخرى" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "تسجيل الخروج من جميع الأجهزة الأخرى" @@ -11181,7 +11184,7 @@ msgstr "لوريم إيبسوم دولور سيت أميت" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "لوريم إيبسوم دولور سيت أميت، كونسيكتيتور أديبيسسينغ إيليت. سيد دو إيوسمود تيمبور إنسيديدونت أوت لابور إت دولور ماجنا أليكوا." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "لوتي" @@ -11351,6 +11354,7 @@ msgstr "تحديد كـ 18+ (غير آمن للعمل)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "الإشارات:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "الإشارات:" msgid "Message" msgstr "رسالة" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "رسالة " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "رسالة @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "رسالة #" @@ -11838,7 +11842,7 @@ msgstr "الرسائل والوسائط" msgid "Messages Deleted" msgstr "تم حذف الرسائل" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "فشل تحميل الرسائل" @@ -12016,7 +12020,7 @@ msgstr "المزيد" msgid "More Actions" msgstr "إجراءات إضافية" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "فتحات إيموجي إضافية" @@ -12028,7 +12032,7 @@ msgstr "خيارات إضافية" msgid "More Options" msgstr "خيارات إضافية" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "فتحات ملصقات إضافية" @@ -12162,8 +12166,8 @@ msgstr "كتم القناة" msgid "Mute Channel" msgstr "كتم القناة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "مكتوم حتى {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "يمنع كتم المجتمع ظهور مؤشرات غير المقروء والإشعارات ما لم تتم الإشارة إليك" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "المجتمعات المشتركة ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "الأصدقاء المشتركين ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "المجموعات المشتركة ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "تطبيقي" @@ -12247,7 +12251,7 @@ msgstr "ملصقي الرائع" msgid "My Category" msgstr "فئتي" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "أجهزتي" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "التنقل" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "هل تحتاج إلى حساب؟" @@ -12364,7 +12368,7 @@ msgstr "الشبكة" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "خطأ في الشبكة" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "لا يوجد شعار مجتمع" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "لم يتم تقديم وصف." @@ -12684,15 +12688,15 @@ msgstr "لم يتم اكتشاف ميكروفونات" msgid "No more scheduled messages." msgstr "لا توجد رسائل مجدولة أخرى." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "لم يتم العثور على مجتمعات مشتركة." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "لم يتم العثور على أصدقاء مشتركين." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "لم يتم العثور على مجموعات مشتركة." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "ليست من اختيارك؟ يمكنك تعطيل هذه الميزة في أي وقت." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "تجاوزات الإشعارات" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "إشعار المستخدمين بهذا الدور الذين لديه msgid "now" msgstr "الآن" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "الآن" @@ -13090,7 +13094,7 @@ msgstr "عند النقر" msgid "on:" msgstr "في:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "بمجرد حذف التطبيق وبيانات الاعتماد الخاصة به، يتم إزالتها بشكل دائم." @@ -13252,7 +13256,7 @@ msgstr "فتح المراسلات الخاصة فقط" msgid "Open Fluxer" msgstr "فتح Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "فتح الصورة في عرض كامل" @@ -13368,7 +13372,7 @@ msgstr "فتح مجتمع الرؤية" msgid "Opening..." msgstr "جاري الفتح..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "مشغل" @@ -13441,7 +13445,7 @@ msgstr "تم حذف الرسالة الأصلية" msgid "Other" msgstr "آخر" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "أجهزة أخرى" @@ -13501,7 +13505,7 @@ msgstr "تجاوز حالة الحساب غير المطالب به" msgid "Override unread gift inventory status" msgstr "تجاوز حالة مخزون الهدايا غير المقروءة" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "نظرة عامة" @@ -13695,7 +13699,7 @@ msgstr "الأذونات" msgid "Permissions granted" msgstr "تم منح الأذونات" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "ملاحظات شخصية" @@ -13868,12 +13872,12 @@ msgstr "تشغيل" msgid "Play animated emojis" msgstr "تشغيل الرموز التعبيرية المتحركة" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "تشغيل الصوت" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "يرجى لصق رابط الرسالة التي تبلغ عنها." msgid "Please provide an email address." msgstr "يرجى تقديم عنوان بريد إلكتروني." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "يرجى إعادة المحاولة أو العودة إلى قائمة التطبيقات." @@ -13989,7 +13993,7 @@ msgstr "مزايا Plutonium" msgid "Plutonium Subscription" msgstr "اشتراك Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "لوحة تحكم الخصوصية" msgid "Privacy Policy" msgstr "سياسة الخصوصية" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "احذف هذا الملصق من التخزين وشبكة CDN" msgid "Push Notification Inactive Timeout" msgstr "مهلة الإشعارات الدفعية غير النشطة" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "الإشعارات الدفعية" @@ -14412,7 +14416,7 @@ msgstr "تفاعل الرد معطل" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "ردود الفعل" @@ -14583,7 +14587,7 @@ msgstr "تحديث اشتراك الدفع" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "إعادة توليد" @@ -14591,19 +14595,19 @@ msgstr "إعادة توليد" msgid "Regenerate backup codes" msgstr "إعادة توليد رموز النسخ الاحتياطي" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "إعادة توليد رمز البوت؟" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "إعادة توليد سر العميل؟" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "سيؤدي إعادة التوليد إلى إبطال السر الحالي. قم بتحديث أي كود يستخدم القيمة القديمة." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "سيؤدي إعادة التوليد إلى إبطال الرمز الحالي. قم بتحديث أي كود يستخدم القيمة القديمة." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "إزالة الفلتر" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "إزالة الفلتر" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "تم تقديم التقرير بنجاح. سيقوم فريق الأم #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "الإبلاغ عن المستخدم" @@ -15105,7 +15109,7 @@ msgstr "النطاقات المطلوبة" msgid "Require 2FA for moderation actions" msgstr "اشتراط المصادقة الثنائية لإجراءات الإشراف" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "اشتراط النقر المزدوج للانضمام إلى قنوات الصوت" @@ -15144,7 +15148,7 @@ msgstr "يتطلب كل شيء في المستوى المتوسط، بالإضا msgid "Requires Plutonium" msgstr "يتطلب Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "إعادة جدولة الرسالة" @@ -15290,11 +15294,11 @@ msgstr "إعادة الاشتراك" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "إعادة المحاولة" @@ -15359,7 +15363,7 @@ msgstr "سحب" msgid "Revoke Ban" msgstr "سحب الحظر" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "سحب الجهاز" @@ -15386,7 +15390,7 @@ msgstr "الرجوع للخلف {DEFAULT_SEEK_AMOUNT} ثانية" msgid "Right" msgstr "يمين" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "محاذاة لليمين" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "بحث عن الأعضاء..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "بحث في الرسائل" @@ -15834,13 +15838,13 @@ msgstr "بحث عن الأدوار أو الأعضاء..." msgid "Search saved media" msgstr "بحث في الوسائط المحفوظة" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "نطاق البحث" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "نطاق البحث: {0}" @@ -15857,7 +15861,7 @@ msgstr "بحث في الإعدادات..." msgid "Search stickers..." msgstr "بحث عن الملصقات..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "اقتراحات البحث" @@ -15938,7 +15942,7 @@ msgstr "مفتاح الأمان / مفتاح المرور" msgid "Security key verification failed. Please try again." msgstr "فشل التحقق من مفتاح الأمان. يرجى المحاولة مرة أخرى." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "اطلع على جميع الأجهزة المسجلة الدخول إلى حسابك حاليًا. ألغِ أي جلسات لا تعرفها." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "اختر حسابًا" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "اختر الكل" @@ -16040,7 +16044,7 @@ msgstr "اختر حجم الوسائط للمحتوى المضمّن من الر msgid "Select media size for uploaded attachments" msgstr "اختر حجم الوسائط للمرفقات المرفوعة" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "اختر عرض متبادل" @@ -16151,9 +16155,9 @@ msgstr "إرسال الرمز" msgid "Send Code" msgstr "إرسال الرمز" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "إرسال طلب صداقة" @@ -16170,7 +16174,7 @@ msgstr "إرسال رسالة · انقر بزر الماوس الأيمن لل msgid "Send Message Disabled" msgstr "إرسال الرسالة معطل" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "إرسال الرسائل" @@ -16624,7 +16628,7 @@ msgstr "إظهار زر الهدية" msgid "Show inline images and videos" msgstr "عرض الصور والفيديوهات المضمنة" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "إظهار مؤشر الكتابة فقط بدون الصور الرمزية" @@ -16788,11 +16792,11 @@ msgstr "إظهار الهدية كمستحقة بالفعل" msgid "Show this role separately" msgstr "إظهار هذا الدور بشكل منفصل" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "إظهار مؤشر الكتابة مع الصور الرمزية للمستخدمين في قائمة القنوات" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "إظهار الكتابة على القناة المحددة" @@ -17151,7 +17155,7 @@ msgstr "الإسبانية (إسبانيا)" msgid "Speak" msgstr "تحدث" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "تحدث بالرسالة" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "ابدأ المشاركة" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "ابدأ مكالمة فيديو" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "ابدأ مكالمة صوتية" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "كثافة الملصقات" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "حزمة ملصقات" @@ -17427,7 +17431,7 @@ msgstr "إيقاف الرنين" msgid "Stop Sharing" msgstr "إيقاف المشاركة" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "إيقاف التحدث" @@ -17570,19 +17574,19 @@ msgstr "كتم جميع إشارات الأدوار @mentions" msgid "Suppress All Role @mentions" msgstr "كتم جميع إشارات الأدوار @mentions" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "كتم التضمينات" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "النص" msgid "Text (NSFW)" msgstr "النص (غير آمن للعمل)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "قناة نصية" @@ -18028,10 +18032,10 @@ msgstr "يتطلب هذا الإجراء التحقق للمتابعة." msgid "This application" msgstr "هذا التطبيق" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "انتهت صلاحية هذا المرفق" @@ -18039,7 +18043,7 @@ msgstr "انتهت صلاحية هذا المرفق" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "يطلب هذا البوت صلاحية المدير. لا نوصي بمنح هذه الصلاحية للتطبيقات الإنتاجية إلا إذا كنت تثق تمامًا في المطور. فكر في طلب منهم طلب مجموعة مخفضة من الصلاحيات. أغلق هذه الصفحة إذا كنت غير متأكد." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "لا يمكن التراجع عن هذا. إزالة التطبيق تحذف بوتها أيضًا." @@ -18101,7 +18105,7 @@ msgstr "وصلت هذه المجموعة إلى الحد الأقصى للأعض msgid "This community has temporarily disabled invites." msgstr "عطلت هذه المجموعة الدعوات مؤقتًا." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "عطلت هذه المجموعة الدعوات مؤقتًا. يمكنك المحاولة مرة أخرى لاحقًا." @@ -18178,7 +18182,7 @@ msgstr "هذه الدعوة لها استخدامات غير محدودة." msgid "This invite link never expires." msgstr "رابط الدعوة هذا لا ينتهي صلاحيته أبدًا." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "هذه بداية <0>{displayName}. أضف أصدقاء لبدء محادثة!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "هذه بداية سجل الرسائل المباشرة مع <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "كانت هذه رسالة صامتة @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "سيؤدي هذا إلى إنشاء صدع في استمرارية الزمكان ولا يمكن التراجع عنه." @@ -18351,7 +18355,7 @@ msgstr "سيؤدي هذا إلى إنشاء صدع في استمرارية ال msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "سيؤدي هذا إلى إخفاء جميع عناصر واجهة المستخدم المتعلقة بالمفضلة بما في ذلك الأزرار وعناصر القائمة. سيتم الاحتفاظ بمفضلاتك الحالية ويمكن إعادة تمكينها في أي وقت من <0>إعدادات المستخدم → المظهر → المفضلات." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "سيؤدي هذا إلى تعديل الرسالة المجدولة الحالية بدلاً من إرسالها فورًا." @@ -18387,8 +18391,8 @@ msgstr "سيؤدي هذا إلى إزالة الجلسة المحفوظة لهذ msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "سيؤدي هذا إلى استبدال السمة المخصصة الحالية الخاصة بك. يمكنك تعديلها لاحقًا في إعدادات المستخدم الخاصة بك." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "صورة مصغرة لـ {title}" @@ -18485,7 +18489,7 @@ msgstr "تظهر التوستات في أعلى منتصف الشاشة." msgid "today" msgstr "اليوم" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "اليوم" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "جرب مصطلح بحث مختلف أو عامل تصفية" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "حاول مرة أخرى" @@ -18737,7 +18741,7 @@ msgstr "جرب اسمًا آخر أو تحقق من تهجئتك." msgid "Try another search term" msgstr "جرب مصطلح بحث آخر" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "حاول طلب دعوة جديدة." @@ -18864,7 +18868,7 @@ msgstr "مقياس الخط" msgid "Type your message here..." msgstr "اكتب رسالتك هنا..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "أحداث الكتابة" @@ -18877,11 +18881,11 @@ msgstr "مؤشر الكتابة" msgid "Typing Indicator" msgstr "مؤشر الكتابة" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "مؤشر الكتابة + الصور الرمزية" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "مؤشر الكتابة فقط" @@ -18961,11 +18965,11 @@ msgstr "غير قادر على بدء المكالمة" msgid "Unable to start email change" msgstr "غير قادر على بدء تغيير البريد الإلكتروني" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "غير متاح للجميع" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "غير متاح للجميع باستثناء الموظفين" @@ -18978,7 +18982,7 @@ msgstr "غير متاح للجميع باستثناء الموظفين" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "قم بإلغاء حظر هذا المستخدم قبل إرسال طل #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "إلغاء حظر المستخدم" @@ -19165,7 +19169,7 @@ msgstr "خطأ غير معروف" msgid "Unknown Gift" msgstr "هدية غير معروفة" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "دعوة غير معروفة" @@ -19205,11 +19209,11 @@ msgstr "دور-غير-معروف" msgid "Unlimited" msgstr "غير محدود" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "إيموجي غير محدود" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "ملصقات غير محدودة" @@ -19254,7 +19258,7 @@ msgstr "فتح الملصقات في الرسائل المباشرة مع Pluton #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "إلغاء كتم الصوت للفئة" msgid "Unmute Channel" msgstr "إلغاء كتم الصوت للقناة" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "إلغاء كتم الصوت للمفضلة" msgid "Unmute User" msgstr "إلغاء كتم الصوت للمستخدم" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "بدون اسم" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "حتى أغيرها" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "بريد إلكتروني غير مُتحقق منه" msgid "Up to 4K/60fps" msgstr "حتى 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "تحديث" @@ -19629,7 +19633,7 @@ msgstr "رفع صوت الدخول" msgid "Upload Failed" msgstr "فشل الرفع" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "رفع ملف" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "نقل المستخدم للقناة" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "الملف الشخصي للمستخدم" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "ملف المستخدم: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "القيم" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "رابط مخصص" @@ -20059,14 +20063,14 @@ msgstr "قد يكون التحقق مطلوبًا قبل عرض رموز الن #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "مجتمع موثّق" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "نقابة موثّقة" @@ -20167,8 +20171,8 @@ msgstr "جودة الفيديو" msgid "Video Settings" msgstr "إعدادات الفيديو" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "صورة مصغرة للفيديو" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "عرض الرموز" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "عرض ملف المجتمع" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "عرض مخزون الهدايا" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "عرض الملف العام" @@ -20329,7 +20333,7 @@ msgstr "اختيار فئة المخالفة" msgid "Violent or Graphic Content" msgstr "محتوى عنيف أو صريح" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "صوت VIP" @@ -20341,7 +20345,7 @@ msgstr "أزرار مرئية" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "المكالمات الصوتية" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "قناة صوتية" @@ -20442,7 +20446,7 @@ msgstr "قناة صوتية" msgid "Voice Channel Full" msgstr "القناة الصوتية ممتلئة" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "سلوك الانضمام إلى القناة الصوتية" @@ -20559,7 +20563,7 @@ msgstr "لم نتمكن من الانضمام إلى هذا المجتمع في msgid "We couldn't load the invites at this time." msgstr "لم نتمكن من تحميل الدعوات في هذا الوقت." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "لم نتمكن من تحميل هذا التطبيق" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "نواجه مشكلة في الاتصال بخوادم Fluxer. قد تكون هذه مشكلة شبكة مؤقتة أو صيانة مجدولة." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "نواجه مشكلة في الاتصال باستمرارية الزمكان. يُرجى التحقق من اتصالك والمحاولة مرة أخرى." @@ -20759,7 +20763,7 @@ msgstr "محاربو نهاية الأسبوع" msgid "Welcome and system messages will appear here." msgstr "ستظهر رسائل الترحيب والنظام هنا." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "مرحبًا بعودتك" @@ -20820,7 +20824,7 @@ msgstr "ما الجديد؟" msgid "What's included in your export:" msgstr "ما المدرج في تصديرك:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "عند التعطيل (الافتراضي)، لن تظهر مؤشرات الكتابة على القناة التي تشاهدها حاليًا." @@ -20836,7 +20840,7 @@ msgstr "عند التمكين، سيحافظ النقر السريع على اخ msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "عند التمكين، يكشف قوائم التصحيح عبر التطبيق لفحص ونسخ كائنات JSON الخام لهياكل البيانات الداخلية مثل الرسائل والقنوات والمستخدمين والمجتمعات. يتضمن أيضًا أدوات لتصحيح أداء محلل Markdown في Fluxer و AST لأي رسالة معينة." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "عند التمكين، تكون شارات الاختصارات مخفية في النوافذ المنبثقة للتلميح." @@ -20868,7 +20872,7 @@ msgstr "عند التمكين، يستخدم إعدادات اللغة للكم msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "عند التمكين، يمكنك وضع القنوات في المفضلة وستظهر في قسم المفضلة. عند التعطيل، ستكون جميع عناصر واجهة المستخدم المتعلقة بالمفضلة (الأزرار، عناصر القائمة) مخفية. سيتم الاحتفاظ بالمفضلات الحالية الخاصة بك." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "عند التمكين، ستحتاج إلى النقر المزدوج على قنوات الصوت للانضمام إليها. عند التعطيل (الافتراضي)، سينضم النقر الأحادي إلى القناة فورًا." @@ -20970,7 +20974,7 @@ msgstr "سنويًا {yearlyPrice}" msgid "yesterday" msgstr "أمس" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "أمس" @@ -21013,7 +21017,7 @@ msgstr "أنت تقوم بتحرير ملفك الشخصي الخاص بكل م msgid "You are in slowmode. Please wait before sending another message." msgstr "أنت في وضع البطء. يرجى الانتظار قبل إرسال رسالة أخرى." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "أنت الآن مطور!" @@ -21113,7 +21117,7 @@ msgstr "يمكنك استخدام الروابط وMarkdown لتنسيق نصك. msgid "You can't add new reactions while you're on timeout." msgstr "لا يمكنك إضافة تفاعلات جديدة أثناء وجودك في المهلة." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "لا يمكنك أن تصادق نفسك" @@ -21128,7 +21132,7 @@ msgstr "لا يمكنك التفاعل مع التفاعلات في نتائج msgid "You can't join while you're on timeout." msgstr "لا يمكنك الانضمام أثناء وجودك في المهلة." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "لا يمكنك إلغاء كتم صوتك لأن المشرف قد كت msgid "You do not have access to the channel where this message was sent." msgstr "ليس لديك وصول إلى القناة التي أُرسلت فيها هذه الرسالة." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "ليس لديك إذن لإرسال رسائل في هذه القناة." @@ -21439,7 +21443,7 @@ msgstr "ستظهر غير متصل" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "ستقوم بتكوين الأذونات التي يتلقاها البوت في الشاشة التالية." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "سيتعين عليك تسجيل الدخول مرة أخرى على جميع الأجهزة التي تم تسجيل الخروج منها" @@ -21508,7 +21512,7 @@ msgstr "أنت في قناة الصوت" msgid "You're sending messages too quickly" msgstr "أنت ترسل الرسائل بسرعة كبيرة" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 5563b0c0..c8420c72 100644 --- a/fluxer_app/src/locales/bg/messages.po +++ b/fluxer_app/src/locales/bg/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# елемент} other {# елемента}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# участник} other {# участници}}" @@ -566,18 +566,18 @@ msgstr "Снимките {label} не могат да бъдат анимира #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Член" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Членове" @@ -612,11 +612,11 @@ msgstr "{minutes} минути и {seconds} секунди" msgid "{minutes} minutes and 1 second" msgstr "{minutes} минути и 1 секунда" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} взаимна общност" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} взаимни общности" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} участници в обаждане" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} на линия" @@ -650,15 +650,15 @@ msgstr "Остават {remaining} знака" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Остават {remaining} знака. Вземете Plutonium, за да пишете до {premiumMaxLength} знака." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Член" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Членове" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} на линия" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone споменавания" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Акцентен цвят" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Приеми" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Приеми заявка за приятелство" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Приеми покана" @@ -1364,8 +1364,8 @@ msgstr "Приеми покана" msgid "Accept the incoming call" msgstr "Приеми входящото обаждане" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Приемането на тази покана автоматично инсталира пакета." @@ -1594,7 +1594,7 @@ msgstr "Добави любими канали" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Разреши {0}." msgid "Already have an account?" msgstr "Вече имаш акаунт?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Вече се присъединил" @@ -2191,7 +2191,7 @@ msgstr "Анимирани аватари и банери" msgid "Animated Avatars Require Plutonium" msgstr "Анимираните аватари изискват Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Анимиран банер" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Анимирани емоджита ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Анимиран GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Видео на анимиран GIF" @@ -2219,7 +2219,7 @@ msgstr "Видео на анимиран GIF" msgid "Animated GIF Video" msgstr "Видео с анимиран GIF" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Анимирана икона" @@ -2277,7 +2277,7 @@ msgstr "Всеки може да спомене тази роля с @. Член msgid "API Endpoint" msgstr "API крайна точка" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Информация за приложението" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Име на приложението" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Името на приложението е задължително" @@ -2554,7 +2553,7 @@ msgstr "Сигурен ли си, че искаш да отмениш забра msgid "Are you sure you want to revoke this invite? This action cannot be undone." msgstr "Сигурен ли си, че искаш да отнемеш тази покана? Това действие не може да бъде отменено." -#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "Сигурен ли си, че искаш да скриеш всички вграждания на линкове в това съобщение? Това действие ще скрие всички вграждания в него." @@ -2603,7 +2602,7 @@ msgstr "Прикачено {0}" msgid "Attachment Actions" msgstr "Действия с прикаченото" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Прикаченото е изтекло" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Автоматично довършване" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Автоматично" @@ -2859,7 +2858,7 @@ msgstr "Назад" msgid "Back to Applications" msgstr "Назад към приложенията" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Назад към списъка" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Назад към входа" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Назад към заместванията" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Назад към ролите" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Назад към настройките" @@ -3003,7 +3002,7 @@ msgstr "Забранени потребители" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Банер" @@ -3096,7 +3095,7 @@ msgstr "Ограничение за символите в описанието" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Заявен обхват на бота" msgid "Bot token" msgstr "Токен на бота" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Токенът на бота е регенериран. Актуализирай кода, който използва стария токен." @@ -3435,7 +3434,7 @@ msgstr "Настройки на камерата" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Настройки на камерата" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Настройки на камерата" msgid "Cancel" msgstr "Отказ" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Отмени заявката за приятелство" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Внимание! Имаш незапазени промени." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Категория" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Име на категорията" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Настройки на категорията" @@ -3617,7 +3616,7 @@ msgstr "Внимание" msgid "Center" msgstr "Център" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "В центъра" @@ -3765,7 +3764,7 @@ msgstr "Битрейтът е променен на {0}." msgid "Changed the voice region to {0}." msgstr "Регионът на гласа е променен на {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "канал" @@ -3828,11 +3827,11 @@ msgstr "ID-то на канала е копирано в клипборда" msgid "Channel link copied" msgstr "Линкът към канала е копиран" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Режим на индикатора за писане в списъка с канали" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Индикатори за писане в списъка с канали" @@ -3891,7 +3890,7 @@ msgstr "Каналът е премахнат от любими" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Настройки на канала" @@ -4052,7 +4051,7 @@ msgstr "Избери как се показва времето в приложе msgid "Choose how typing indicators appear in the channel list" msgstr "Избери как се показват индикаторите за писане в списъка с канали" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Избери как индикаторите за писане се показват в списъка с канали, когато някой пише в канал." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Придобийте акаунта си, за да осребрите този подарък." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Придобийте акаунта си, за да изпращате заявки за приятелство." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Изчисти разрешенията" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Изчисти търсенето" msgid "Clear search input" msgstr "Изчисти полето за търсене" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Изчисти избора" @@ -4314,7 +4313,7 @@ msgstr "Щракнете върху иконата за качване до вс msgid "Click the verification link in the email." msgstr "Щракнете върху връзката за потвърждение в имейла." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Щракнете, за да добавите бележка" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Щракнете, за да получите подаръка си!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Щракнете, за да копирате" @@ -4388,7 +4387,7 @@ msgstr "Щракнете, за да видите всички реакции" msgid "Client secret" msgstr "Клиентски секрет" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Клиентският секрет беше регенериран. Актуализирайте всеки код, който използва стария секрет." @@ -4649,8 +4648,8 @@ msgstr "Общността пропагандира омраза на базат msgid "Community promotes or facilitates illegal activities" msgstr "Общността пропагандира или улеснява незаконни дейности" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Контекстни менюта" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Контекстните менюта могат да се отворят с левия бутон (за бутони) или десния бутон (за други елементи). Това демонстрира различни елементи от менюто, включително квадратчета, радио бутони, плъзгачи и подменюта." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Контролирайте как се показват връзките msgid "Control how you join voice channels" msgstr "Управление на начина, по който се присъединявате към гласови канали" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Контролирайте как се присъединявате към гласови канали в общности." @@ -5012,7 +5011,7 @@ msgstr "Управление на анимациите на стикери" msgid "Control the visibility of favorites throughout the app." msgstr "Контролирайте видимостта на любимите навсякъде в приложението." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Контролирайте дали подсказките за клавишни комбинации да се показват в поясненията." @@ -5071,7 +5070,7 @@ msgstr "Копирано" msgid "Copied to clipboard" msgstr "Копирано в клипборда" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Копирах URL адреса в клипборда" @@ -5149,7 +5148,7 @@ msgstr "Копирай връзка към файл" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Копирай FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Копирай FluxerTag" msgid "Copy GIF" msgstr "Копирай GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Копирай ID на гилдията" @@ -5222,7 +5221,7 @@ msgstr "Копирай текст" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Уютно" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Създай" @@ -5331,14 +5330,14 @@ msgstr "Създавай и управлявай приложения и бот msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Създавай и споделяй персонализирани емоджита и пакети стикери с Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Създай приложение" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Създай приложение" msgid "Create Category" msgstr "Създай категория" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Създадено {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Създадено от {0}" @@ -5569,7 +5568,7 @@ msgstr "Изрязаното изображение е твърде голямо msgid "Current Community" msgstr "Текуща общност" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Текущо устройство" @@ -5606,7 +5605,7 @@ msgstr "В момента заседнал в 1885, изглежда офлай #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "В момента: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Допълнително опасно" msgid "Danger secondary clicked!" msgstr "Допълнителното опасно беше натиснато!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Опасна зона" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "По подразбиране е изключено на мобилни устройства, за да се спести батерия и трафик." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Изтрий всички мои съобщения" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Изтрий приложението" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Изтрий прикачен файл" @@ -6063,7 +6062,7 @@ msgstr "Изтрий прикачен файл" msgid "Delete Attachment" msgstr "Изтрий прикачен файл" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Изтрий категория" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Изтрий канал" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Изтрий медия" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Изтрий съобщение" @@ -6215,7 +6214,7 @@ msgstr "Компактен" msgid "Dense layout" msgstr "Компактен изглед" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Внедрен" @@ -6281,7 +6280,7 @@ msgstr "Целеви канал" msgid "Destination URL:" msgstr "Целеви URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Отделен банер" @@ -6362,7 +6361,7 @@ msgstr "Различни размери (поддържан статус)" msgid "Different Sizes & Member Counts" msgstr "Различни размери и брой членове" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Лично съобщение" @@ -6541,7 +6540,7 @@ msgstr "Изключването на профила ще ви излезе от msgid "Disallow @mention." msgstr "Забрани @споменавания." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Забрани непотвърдени акаунти" @@ -6747,7 +6746,7 @@ msgstr "Не показвай визуализации на съобщеният msgid "Don't show this again" msgstr "Не показвай това отново" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Не показвай индикатори за писане в списъка с канали" @@ -6760,7 +6759,7 @@ msgstr "Не показвай индикатори за писане в спис msgid "Done" msgstr "Готово" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Редактиране на категория" msgid "Edit Channel" msgstr "Редактиране на канал" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Редактирайте презаписванията за роли и членове в този канал." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Екран за вграждане" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Изображенията за вграждане не могат да бъдат анимирани. Моля, използвайте JPEG, PNG или WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Вградено аудио" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Имената на емоджитата трябва да са поне 2 символа и могат да съдържат само букви, цифри и долни черти. Позволени файлови формати: JPEG, PNG, WebP, GIF. Компресираме изображенията до 128x128 пиксела. Максимален размер: {0} KB на емоджи." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Пакет емоджита" @@ -7473,7 +7472,7 @@ msgstr "Въведи телефон" msgid "Enter picture-in-picture" msgstr "Включи картина в картина" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Влез в режим на избор" @@ -7536,7 +7535,7 @@ msgstr "Въведи новия имейл, който ще използваш. msgid "Enter the SMS code you received." msgstr "Въведи SMS кода, който получи." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "натисни enter, за да <0><1>запазиш" @@ -7604,7 +7603,7 @@ msgstr "Грешка при показване на LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Клавишът Escape излиза от клавиатурен режим" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "натисни escape, за да <0><1>откажеш" @@ -7667,7 +7666,7 @@ msgstr "Излез от картина в картина" msgid "Exit Preview" msgstr "Излез от предварителен преглед" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Излез от режим на избор" @@ -7701,7 +7700,7 @@ msgstr "Изтекло (в рамките на 30 дни)" msgid "Expired {absolute}" msgstr "Изтекло на {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Изтекло между {earliest} и {latest}" @@ -7709,7 +7708,7 @@ msgstr "Изтекло между {earliest} и {latest}" msgid "Expired on {date}" msgstr "Изтекло на {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Изтекло на {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Изтича" msgid "Expires {absolute} ({relativeText})" msgstr "Изтича на {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Изтича между {earliest} и {latest}" @@ -7730,7 +7729,7 @@ msgstr "Изтича между {earliest} и {latest}" msgid "Expires on {date}" msgstr "Изтича на {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Изтича на {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Пакетите изрази са функция на Plutonium" msgid "Expression picker categories" msgstr "Категории в избирателя на изрази" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Изчистване на изрази" @@ -7839,10 +7838,6 @@ msgstr "Неуспешно копиране в клипборда" msgid "Failed to copy URL" msgstr "Неуспешно копиране на URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Неуспешно създаване на приложение. Проверете данните и опитайте отново." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Неуспешно създаване на роля" @@ -8100,7 +8095,7 @@ msgstr "Неуспешно отменяне на забрана. Опитай о msgid "Failed to revoke invite" msgstr "Неуспешно отмяна на покана" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Неуспешно завъртане. Опитай отново." @@ -8413,7 +8408,7 @@ msgstr "Фитнес приятели" msgid "Flags" msgstr "Флагове" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Гъвкави имена на текстови канали" @@ -8577,7 +8572,7 @@ msgstr "Приятели гурмани" msgid "For 1 hour" msgstr "За 1 час" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "За 1 час" msgid "For 15 minutes" msgstr "За 15 минути" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "За 15 минути" msgid "For 24 hours" msgstr "За 24 часа" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "За 3 дни" msgid "For 3 hours" msgstr "За 3 часа" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "За 3 часа" msgid "For 8 hours" msgstr "За 8 часа" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Забрави абонаментите" msgid "Forgot Password" msgstr "Забравена парола" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Забравихте паролата си?" @@ -8795,7 +8790,7 @@ msgstr "Превърти {DEFAULT_SEEK_AMOUNT} секунди напред" msgid "Forward Message" msgstr "Препрати съобщение" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Препратено" @@ -9065,7 +9060,7 @@ msgstr "Изтеглете Fluxer за десктоп, за да получит #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Върнете се към предишния активен текст msgid "Go forward in navigation history" msgstr "Напред в историята на навигацията" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Отидете в общността" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Групови покани" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Групово съобщение" @@ -9548,7 +9543,7 @@ msgstr "Ей, {username}, добре дошъл! Можеш да постигн msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Ей, {username}! Когато стигне 88 мили в час, ще видиш сериозни неща!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Скрито" @@ -9569,7 +9564,7 @@ msgstr "Скрий любимите" msgid "Hide Join Messages" msgstr "Скрий съобщенията за присъединяване" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Скрий подсказките за клавиатура в поясненията" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Скрий заглушените канали" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Ако искате първо да експортирате данните си или да изтриете съобщенията си, посетете секцията Табло за поверителност в Потребителски настройки, преди да продължите." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "изображение" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Входове с икони" msgid "Insert emoji" msgstr "Вмъкни емоджи" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Инсталирай пакет емоджита" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Инсталирай пакет стикери" @@ -10153,7 +10148,7 @@ msgstr "Инсталирано на {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Инсталирането на пакети емоджита и стикери изисква премиум абонамент." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Моментални покани" @@ -10286,7 +10281,7 @@ msgstr "Настройки на връзката за покана" msgid "Invite Links" msgstr "Връзки за покана" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Модал за покана" msgid "Invite modal preview" msgstr "Преглед на модал за покана" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Покана изпратена за {0}" msgid "Invite sent to {guildName}" msgstr "Поканата е изпратена до {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash покана" @@ -10354,7 +10349,7 @@ msgstr "Покани към {0}" msgid "Invite to Community" msgstr "Покани в общността" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Покана недостъпна" @@ -10369,12 +10364,12 @@ msgstr "Поканен от {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Поканен от {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Поканен от {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Поканите в момента са паузирани в тази msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Поканите са заключени за общности в преглед. За да активирате покани, заявете акаунта си чрез задаване на имейл и парола." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Поканите са изключени" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Поканите са изключени" @@ -10482,13 +10477,13 @@ msgstr "Присъедини се към общност със стикери, msgid "Join call" msgstr "Присъедини се към обаждането" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Присъедини се към общността" @@ -10497,15 +10492,23 @@ msgstr "Присъедини се към общността" msgid "Join community form" msgstr "Формуляр за присъединяване към общност" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Присъединете се към Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Присъединете се към Fluxer HQ, за да разговаряте с екипа и да бъдете в крак с последните новини!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Присъедини се към група" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Присъедини се към групов чат" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Известия за присъединяване" @@ -10620,7 +10623,7 @@ msgstr "Прескочи до най-старото непрочетено съ msgid "Jump to page" msgstr "Прескочи до страница" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Прескочи до настоящето" @@ -10690,7 +10693,7 @@ msgstr "Клавишни комбинации" msgid "Keyboard" msgstr "Клавиатура" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Подсказки за клавиатурата" @@ -10815,7 +10818,7 @@ msgstr "Научи за Plutonium" msgid "Leave blank for a random username" msgstr "Остави празно за произволно потребителско име" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Напускаш ли толкова рано?" msgid "Left" msgstr "Напуснал" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Подравнено вляво" @@ -10945,7 +10948,7 @@ msgstr "връзка" msgid "Link" msgstr "Връзка" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Свържи канал" @@ -11027,7 +11030,7 @@ msgstr "Зареждане на забрани..." msgid "Loading communities..." msgstr "Зареждане на общности..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Зареждане на изображение" @@ -11039,8 +11042,8 @@ msgstr "Зареждане на покани..." msgid "Loading more..." msgstr "Зареждане на още..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Зареждане на заместител" @@ -11064,7 +11067,7 @@ msgstr "Зареждане на тема..." msgid "Loading verification methods..." msgstr "Зареждане на методи за потвърждение..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Зареждане: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Локално заглушаване" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Влез през браузъра си и въведи показани msgid "Log in via browser" msgstr "Влез през браузър" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Влез през браузър или персонализирана инстанция" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Излез" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Излез от {0} устройства" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Излез от {sessionCount} устройства" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Излез от 1 устройство" @@ -11141,7 +11144,7 @@ msgstr "Излез от всички устройства" msgid "Log out all other devices" msgstr "Излез от всички други устройства" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Излез от всички останали устройства" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Отбележи като 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "споменавания:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "споменавания:" msgid "Message" msgstr "Съобщение" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Съобщение " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Съобщение @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Съобщение #" @@ -11838,7 +11842,7 @@ msgstr "Съобщения и медия" msgid "Messages Deleted" msgstr "Съобщенията са изтрити" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Неуспешно зареждане на съобщенията" @@ -12016,7 +12020,7 @@ msgstr "Още" msgid "More Actions" msgstr "Още действия" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Още слотове за емоджита" @@ -12028,7 +12032,7 @@ msgstr "Още опции" msgid "More Options" msgstr "Още опции" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Още слотове за стикери" @@ -12162,8 +12166,8 @@ msgstr "Заглуши канал" msgid "Mute Channel" msgstr "Заглуши канал" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Заглушено до {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Заглушаването на общност спира показването на нечетени индикатори и известия, освен ако не сте споменат" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Взаимни общности ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Взаимни приятели ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Взаимни групи ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Моето приложение" @@ -12247,7 +12251,7 @@ msgstr "Моят страхотен стикер" msgid "My Category" msgstr "Моята категория" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Моите устройства" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Навигация" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Нужен ли е акаунт?" @@ -12364,7 +12368,7 @@ msgstr "Мрежа" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Грешка в мрежата" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Няма банер на общността" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Не е предоставено описание." @@ -12684,15 +12688,15 @@ msgstr "Не са открити микрофони" msgid "No more scheduled messages." msgstr "Няма повече насрочени съобщения." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Не са намерени общи общности." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Не са намерени общи приятели." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Не са намерени общи групи." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Не е по вкуса ти? Можеш да изключиш тази функция по всяко време." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Презаписване на известията" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Уведоми потребителите с тази роля, коит msgid "now" msgstr "сега" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Сега" @@ -13090,7 +13094,7 @@ msgstr "При клик" msgid "on:" msgstr "включено:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "След изтриване приложението и неговите данни за вход се премахват завинаги." @@ -13252,7 +13256,7 @@ msgstr "Само лични съобщения" msgid "Open Fluxer" msgstr "Отвори Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Отвори изображението в пълен изглед" @@ -13368,7 +13372,7 @@ msgstr "Отвори Visionary общността" msgid "Opening..." msgstr "Отваряне..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Оператор" @@ -13441,7 +13445,7 @@ msgstr "Оригиналното съобщение беше изтрито" msgid "Other" msgstr "Други" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Други устройства" @@ -13501,7 +13505,7 @@ msgstr "Презапиши статуса на нерегистриран ака msgid "Override unread gift inventory status" msgstr "Презапиши статуса на неизползваните подаръци" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Преглед" @@ -13695,7 +13699,7 @@ msgstr "Разрешения" msgid "Permissions granted" msgstr "Разрешенията са предоставени" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Лични бележки" @@ -13868,12 +13872,12 @@ msgstr "Пусни" msgid "Play animated emojis" msgstr "Пусни анимирани емоджита" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Пусни аудио" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Моля, поставете линка към съобщението, msgid "Please provide an email address." msgstr "Моля, посочете имейл адрес." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Моля, опитайте отново или се върнете към списъка с приложения." @@ -13989,7 +13993,7 @@ msgstr "Предимства на Plutonium" msgid "Plutonium Subscription" msgstr "Абонамент Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Табло за поверителност" msgid "Privacy Policy" msgstr "Политика за поверителност" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Изтрийте този стикер от хранилището и CD msgid "Push Notification Inactive Timeout" msgstr "Време за неактивност на push известия" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push известия" @@ -14412,7 +14416,7 @@ msgstr "Взаимодействието с реакции е деактивир #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Реакции" @@ -14583,7 +14587,7 @@ msgstr "Обнови push абонамента" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Прегенерирай" @@ -14591,19 +14595,19 @@ msgstr "Прегенерирай" msgid "Regenerate backup codes" msgstr "Прегенерирай резервните кодове" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Прегенерирате ли токена на бота?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Прегенерирате ли тайната на клиента?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Прегенерирането ще анулира текущата тайна. Актуализирайте всеки код, който използва старата стойност." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Прегенерирането ще анулира текущия токен. Актуализирайте всеки код, който използва старата стойност." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Премахни филтъра" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Премахни филтъра" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Докладът беше подаден успешно. Екипът п #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Докладвай потребител" @@ -15105,7 +15109,7 @@ msgstr "Заявени обхвати" msgid "Require 2FA for moderation actions" msgstr "Изисквай 2FA за модерационни действия" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Изисквай двойно щракване за присъединяване към гласови канали" @@ -15144,7 +15148,7 @@ msgstr "Изисква всичко от средното ниво, плюс д msgid "Requires Plutonium" msgstr "Изисква Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Пренасрочи съобщението" @@ -15290,11 +15294,11 @@ msgstr "Абонирай се отново" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Опитай отново" @@ -15359,7 +15363,7 @@ msgstr "Отмени" msgid "Revoke Ban" msgstr "Отмени забраната" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Отмени устройството" @@ -15386,7 +15390,7 @@ msgstr "Превърти назад с {DEFAULT_SEEK_AMOUNT} секунди" msgid "Right" msgstr "Вдясно" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Подравнено вдясно" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Търси членове..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Търси съобщения" @@ -15834,13 +15838,13 @@ msgstr "Търси роли или членове..." msgid "Search saved media" msgstr "Търси запазени медии" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Обхват на търсене" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Обхват на търсене: {0}" @@ -15857,7 +15861,7 @@ msgstr "Търси настройки..." msgid "Search stickers..." msgstr "Търси стикери..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Предложения за търсене" @@ -15938,7 +15942,7 @@ msgstr "Ключ за сигурност / Парола" msgid "Security key verification failed. Please try again." msgstr "Проверката на ключа за сигурност е неуспешна. Моля, опитай отново." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Виж всички устройства, които в момента са влезли в акаунта ти. Отмени сесии, които не разпознаваш." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Избери акаунт" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Избери всички" @@ -16040,7 +16044,7 @@ msgstr "Избери размер на медията за вградено съ msgid "Select media size for uploaded attachments" msgstr "Избери размер на медията за качени прикачени файлове" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Избери взаимен изглед" @@ -16151,9 +16155,9 @@ msgstr "Изпрати код" msgid "Send Code" msgstr "Изпрати код" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Изпрати заявка за приятелство" @@ -16170,7 +16174,7 @@ msgstr "Изпрати съобщение · Кликни с десен буто msgid "Send Message Disabled" msgstr "Изпращането на съобщения е изключено" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Изпращай съобщения" @@ -16624,7 +16628,7 @@ msgstr "Покажи бутона за подаръци" msgid "Show inline images and videos" msgstr "Показване на вградени изображения и видеоклипове" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Показвай само индикатора за писане без аватари" @@ -16788,11 +16792,11 @@ msgstr "Показвай подаръка като вече използван" msgid "Show this role separately" msgstr "Показвай тази роля отделно" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Показвай индикатора за писане с аватарите на потребителите в списъка с канали" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Показвай писане в избрания канал" @@ -17151,7 +17155,7 @@ msgstr "Испански (Испания)" msgid "Speak" msgstr "Говори" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Прочети съобщението" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Започни споделяне" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Започни видеоповикване" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Започни гласово повикване" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Плътност на стикерите" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Пакет стикери" @@ -17427,7 +17431,7 @@ msgstr "Спри звъненето" msgid "Stop Sharing" msgstr "Спри споделянето" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Спри да говориш" @@ -17570,19 +17574,19 @@ msgstr "Скрий всички споменавания на роли" msgid "Suppress All Role @mentions" msgstr "Скрий всички споменавания на роли" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Скрий вграждания" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Текст" msgid "Text (NSFW)" msgstr "Текст (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Текстов канал" @@ -18028,10 +18032,10 @@ msgstr "Това действие изисква проверка, за да п msgid "This application" msgstr "Това приложение" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Това прикачено съдържание е изтекло" @@ -18039,7 +18043,7 @@ msgstr "Това прикачено съдържание е изтекло" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Този бот иска разрешение Администратор. Не препоръчваме да го даваш на продукционни приложения, освен ако изцяло не се доверяваш на разработчика. Можеш да го помолиш да заяви по-малък набор от разрешения. Затвори тази страница, ако не си сигурен." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Това не може да се отмени. Премахването на приложението също изтрива бота му." @@ -18101,7 +18105,7 @@ msgstr "Тази общност е достигнала максималния msgid "This community has temporarily disabled invites." msgstr "Тази общност временно е деактивирала поканите." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Тази общност временно е деактивирала поканите. Можеш да опиташ отново по-късно." @@ -18178,7 +18182,7 @@ msgstr "Тази покана има неограничен брой изпол msgid "This invite link never expires." msgstr "Тази покана връзка не изтича." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Това е началото на <0>{displayName}. Добави приятели, за да започнеш разговор!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Това е началото на историята на личните ти съобщения с <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Това беше @silent съобщение." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "Това ще създаде разлом в пространствено-временния континуум и не може да бъде отменено." @@ -18351,7 +18355,7 @@ msgstr "Това ще създаде разлом в пространствен msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Това ще скрие всички UI елементи, свързани с любими, включително бутони и менюта. Съществуващите ти любими ще бъдат запазени и могат да бъдат активирани отново по всяко време от <0>Настройки на потребителя → Външен вид → Любими." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Това ще промени съществуващото планирано съобщение, вместо да го изпраща веднага." @@ -18387,8 +18391,8 @@ msgstr "Това ще премахне запазената сесия за то msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Това ще замени текущата ти персонализирана тема. Можеш да я редактираш по-късно в Настройки на потребителя." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Миниатюра за {title}" @@ -18485,7 +18489,7 @@ msgstr "Изскачащите съобщения се показват в го msgid "today" msgstr "днес" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Днес" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "Опитайте друг термин за търсене или филтър" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Опитайте отново" @@ -18737,7 +18741,7 @@ msgstr "Опитайте друго име или проверете право msgid "Try another search term" msgstr "Опитайте друг термин за търсене" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Опитайте да поискате нова покана." @@ -18864,7 +18868,7 @@ msgstr "Тип скала" msgid "Type your message here..." msgstr "Напишете съобщението си тук..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Събития при писане" @@ -18877,11 +18881,11 @@ msgstr "Индикатор за писане" msgid "Typing Indicator" msgstr "Индикатор за писане" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Индикатор за писане + аватари" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Само индикатор за писане" @@ -18961,11 +18965,11 @@ msgstr "Не може да се започне разговор" msgid "Unable to start email change" msgstr "Не може да се започне промяна на имейла" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Недостъпно за всички" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Недостъпно за всички, освен за персонала" @@ -18978,7 +18982,7 @@ msgstr "Недостъпно за всички, освен за персонал #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Разблокирайте този потребител преди да #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Разблокиране на потребител" @@ -19165,7 +19169,7 @@ msgstr "Непозната грешка" msgid "Unknown Gift" msgstr "Непознат подарък" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Непозната покана" @@ -19205,11 +19209,11 @@ msgstr "непозната-роля" msgid "Unlimited" msgstr "Неограничено" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Неограничени емоджита" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Неограничени стикери" @@ -19254,7 +19258,7 @@ msgstr "Отключете стикери в ЛС с Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Включване на звук за категория" msgid "Unmute Channel" msgstr "Включване на звук за канала" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Включване на звук за любимите" msgid "Unmute User" msgstr "Включване на звук за потребителя" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Без име" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Докато не го променя" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Непотвърден имейл" msgid "Up to 4K/60fps" msgstr "До 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Актуализиране" @@ -19629,7 +19633,7 @@ msgstr "Качи звук за влизане" msgid "Upload Failed" msgstr "Качването се провали" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Качи файл" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Потребителят премести канала" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Профил на потребителя" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Профил на потребителя: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Стойности" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Персонализиран URL" @@ -20059,14 +20063,14 @@ msgstr "Може да се изисква верификация, преди д #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Верифицирана общност" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Верифициран сървър" @@ -20167,8 +20171,8 @@ msgstr "Качество на видеото" msgid "Video Settings" msgstr "Настройки за видео" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Миниатюра на видео" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Преглед на кодовете" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Преглед на профила на общността" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Преглед на инвентара с подаръци" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Преглед на глобалния профил" @@ -20329,7 +20333,7 @@ msgstr "Избор на категория на нарушението" msgid "Violent or Graphic Content" msgstr "Насилствено или графично съдържание" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP глас" @@ -20341,7 +20345,7 @@ msgstr "Видими бутони" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Гласови повиквания" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Гласов канал" @@ -20442,7 +20446,7 @@ msgstr "Гласов канал" msgid "Voice Channel Full" msgstr "Гласовият канал е пълен" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Поведение при присъединяване към гласов канал" @@ -20559,7 +20563,7 @@ msgstr "Не успяхме да се присъединим към тази о msgid "We couldn't load the invites at this time." msgstr "В момента не можем да заредим поканите." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Не успяхме да заредим това приложение" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Имаме проблеми с връзката към сървърите на Fluxer. Това може да е временен мрежов проблем или планирана поддръжка." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Имаме проблеми с връзката към пространство-времевия континуум. Моля, проверете връзката си и опитайте отново." @@ -20759,7 +20763,7 @@ msgstr "Уикенд войни" msgid "Welcome and system messages will appear here." msgstr "Тук ще се появяват съобщения за добре дошли и системни съобщения." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Добре дошли отново" @@ -20820,7 +20824,7 @@ msgstr "Какво става?" msgid "What's included in your export:" msgstr "Какво е включено в експорта ви:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Когато е изключено (по подразбиране), индикаторите за писане няма да се появяват в канала, който гледате." @@ -20836,7 +20840,7 @@ msgstr "Когато е включено, бързото натискане на msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Когато е включено, разкрива менюта за отстраняване на грешки в приложението, за да инспектирате и копирате сурови JSON обекти на вътрешни структури като съобщения, канали, потребители и общности. Съдържа и инструменти за отстраняване на грешки при работа на парсъра за Markdown на Fluxer и AST за произволно съобщение." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Когато е включено, значките за клавишни комбинации се скриват в изскачащи подсказки." @@ -20868,7 +20872,7 @@ msgstr "Когато е включено, използва локала на к msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Когато е включено, можете да маркирате канали като любими и те ще се показват в раздела „Любими“. Когато е изключено, всички елементи от интерфейса, свързани с любими (бутон, елементи от меню), се скриват. Съществуващите ви любими ще бъдат запазени." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Когато е включено, трябва да щракнете двукратно върху гласов канал, за да се присъедините. Когато е изключено (по подразбиране), еднократното щракване ще ви включи веднага." @@ -20970,7 +20974,7 @@ msgstr "Годишно {yearlyPrice}" msgid "yesterday" msgstr "вчера" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Вчера" @@ -21013,7 +21017,7 @@ msgstr "Редактирате профила си за тази общност. msgid "You are in slowmode. Please wait before sending another message." msgstr "В сте в бавен режим. Моля, изчакайте преди да изпратите друго съобщение." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Сега сте разработчик!" @@ -21113,7 +21117,7 @@ msgstr "Можете да използвате връзки и Markdown, за д msgid "You can't add new reactions while you're on timeout." msgstr "Не можете да добавяте нови реакции, докато сте в режим на изчакване." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Не можете да се добавите като приятел" @@ -21128,7 +21132,7 @@ msgstr "Не можете да взаимодействате с реакции msgid "You can't join while you're on timeout." msgstr "Не можете да се присъедините, докато сте в режим на изчакване." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Не можете да включите микрофона си, защ msgid "You do not have access to the channel where this message was sent." msgstr "Нямате достъп до канала, в който е изпратено това съобщение." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Нямате разрешение да изпращате съобщения в този канал." @@ -21439,7 +21443,7 @@ msgstr "Ще изглеждате като офлайн" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Ще конфигурирате кои разрешения получава ботът на следващия екран." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Ще трябва отново да влезете на всички излезли устройства" @@ -21508,7 +21512,7 @@ msgstr "Във гласовия канал сте" msgid "You're sending messages too quickly" msgstr "Изпращате съобщения твърде бързо" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 d6219015..760b3d6e 100644 --- a/fluxer_app/src/locales/cs/messages.po +++ b/fluxer_app/src/locales/cs/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# položka} other {# položek}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# člen} other {# členů}}" @@ -566,18 +566,18 @@ msgstr "Obrázky {label} nemohou být animované. Použijte prosím formát JPEG #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Člen" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Členové" @@ -612,11 +612,11 @@ msgstr "{minutes} minut a {seconds} sekund" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minut a 1 sekunda" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} vzájemná komunita" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} vzájemné komunity" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} účastníků ve hovoru" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "{remaining} znaků zbývá" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} znaků zbývá. Přihlas Plutonium, aby sis mohl(a) napsat až {premiumMaxLength} znaků." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Člen" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Členové" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone zmínky" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Akcentní barva" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Přijmout" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Přijmout žádost o přátelství" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Přijmout pozvání" @@ -1364,8 +1364,8 @@ msgstr "Přijmout pozvání" msgid "Accept the incoming call" msgstr "Přijmout příchozí hovor" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Přijetím tohoto pozvání se balíček nainstaluje automaticky." @@ -1594,7 +1594,7 @@ msgstr "Přidat oblíbené kanály" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Povoleno {0}." msgid "Already have an account?" msgstr "Už máte účet?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Už jste se připojili" @@ -2191,7 +2191,7 @@ msgstr "Animované avatary a bannery" msgid "Animated Avatars Require Plutonium" msgstr "Animované avatary vyžadují Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animovaný banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animované emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animovaný GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animované GIF video" @@ -2219,7 +2219,7 @@ msgstr "Animované GIF video" msgid "Animated GIF Video" msgstr "Animované GIF video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animovaná ikona" @@ -2277,7 +2277,7 @@ msgstr "Kdokoliv může tuto roli zmínit pomocí @. Členové s oprávněním msgid "API Endpoint" msgstr "API koncový bod" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informace o aplikaci" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Název aplikace" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Název aplikace je povinný" @@ -2554,7 +2553,7 @@ msgstr "Opravdu chcete zrušit zákaz pro <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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í." @@ -2603,7 +2602,7 @@ msgstr "Příloha {0}" msgid "Attachment Actions" msgstr "Akce s přílohou" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Příloha vypršela" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automatické doplňování" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatické" @@ -2859,7 +2858,7 @@ msgstr "Zpět" msgid "Back to Applications" msgstr "Zpět na aplikace" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Zpět na seznam" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Zpět na přihlášení" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Zpět na přepsání" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Zpět na role" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Zpět na nastavení" @@ -3003,7 +3002,7 @@ msgstr "Zabanovaní uživatelé" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Limit znaků v bio" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Požadovaný rozsah bota" msgid "Bot token" msgstr "Token bota" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token bota byl regenerován. Aktualizujte kód používající starý token." @@ -3435,7 +3434,7 @@ msgstr "Nastavení kamery" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Nastavení kamery" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Nastavení kamery" msgid "Cancel" msgstr "Zrušit" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Zrušit žádost o přátelství" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Pozor! Máte neuložené změny." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategorie" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Název kategorie" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Nastavení kategorie" @@ -3617,7 +3616,7 @@ msgstr "Pozor" msgid "Center" msgstr "Střed" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Zarovnáno na střed" @@ -3765,7 +3764,7 @@ msgstr "Bitrate změněn na {0}." msgid "Changed the voice region to {0}." msgstr "Hlasový region změněn na {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanál" @@ -3828,11 +3827,11 @@ msgstr "ID kanálu zkopírováno do schránky" msgid "Channel link copied" msgstr "Odkaz na kanál zkopírován" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Režim indikátoru psaní v seznamu kanálů" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indikátory psaní v seznamu kanálů" @@ -3891,7 +3890,7 @@ msgstr "Kanál odebrán z oblíbených" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Nastavení kanálu" @@ -4052,7 +4051,7 @@ msgstr "Vyberte způsob zobrazování časů v aplikaci" msgid "Choose how typing indicators appear in the channel list" msgstr "Vyberte, jak se zobrazují indikátory psaní v seznamu kanálů" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Zvolte, jak se v seznamu kanálů zobrazují indikátory psaní, když někdo píše" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Získejte svůj účet pro uplatnění tohoto dárku." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Získejte svůj účet pro odesílání žádostí o přátelství." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Vymazat oprávnění" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Vymazat vyhledávání" msgid "Clear search input" msgstr "Vymazat zadání vyhledávání" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Zrušit výběr" @@ -4314,7 +4313,7 @@ msgstr "Klikni na ikonu nahrávání u zvuku a nahraj vlastní audio soubor. Pod msgid "Click the verification link in the email." msgstr "Klikni na ověřovací odkaz v e-mailu." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klikni a přidej poznámku" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klikni a uplatni dárek!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klikni pro kopírování" @@ -4388,7 +4387,7 @@ msgstr "Klikni pro zobrazení všech reakcí" msgid "Client secret" msgstr "Tajný klíč klienta" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Tajný klíč klienta byl vygenerován znovu. Aktualizuj veškerý kód využívající starý klíč." @@ -4649,8 +4648,8 @@ msgstr "Komunita prosazuje nenávist založenou na chráněných charakteristik msgid "Community promotes or facilitates illegal activities" msgstr "Komunita podporuje nebo usnadňuje nelegální činnost" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontextová menu" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontextová menu otevřeš levým kliknutím (na tlačítka) nebo pravým kliknutím (jinde). Ukazuje různé položky jako zaškrtávací políčka, přepínače, posuvníky a podmenu." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Ovládejte, jak se náhledy odkazů na webové stránky zobrazují v cha msgid "Control how you join voice channels" msgstr "Spravovat způsob připojení k hlasovým kanálům" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Nastav připojování do hlasových kanálů v komunitách." @@ -5012,7 +5011,7 @@ msgstr "Spravovat animace samolepek" msgid "Control the visibility of favorites throughout the app." msgstr "Ovládej viditelnost oblíbených v celé aplikaci." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Ovládej, zda se nápovědy klávesových zkratek zobrazují v nápovědách." @@ -5071,7 +5070,7 @@ msgstr "Zkopírováno" msgid "Copied to clipboard" msgstr "Zkopírováno do schránky" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL zkopírováno do schránky" @@ -5149,7 +5148,7 @@ msgstr "Zkopírovat odkaz na soubor" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Zkopírovat FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Zkopírovat FluxerTag" msgid "Copy GIF" msgstr "Zkopírovat GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Zkopírovat ID komunity" @@ -5222,7 +5221,7 @@ msgstr "Zkopírovat text" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Pohodlný" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Vytvořit" @@ -5331,14 +5330,14 @@ msgstr "Vytvářejte a spravujte aplikace a boty pro svůj účet." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Vytvářejte a sdílejte vlastní balíčky emoji a nálepek s Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Vytvořit aplikaci" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Vytvořit aplikaci" msgid "Create Category" msgstr "Vytvořit kategorii" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Vytvořeno {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Vytvořil {0}" @@ -5569,7 +5568,7 @@ msgstr "Oříznutý obrázek je příliš velký. Vyberte prosím menší oblast msgid "Current Community" msgstr "Aktuální komunita" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Aktuální zařízení" @@ -5606,7 +5605,7 @@ msgstr "Aktuálně uvízl v roce 1885, zobrazuje se jako offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Aktuálně: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Sekundární nebezpečí" msgid "Danger secondary clicked!" msgstr "Sekundární nebezpečí bylo kliknuto!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Nebezpečná zóna" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Smazat všechny mé zprávy" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Smazat aplikaci" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Smazat přílohu" @@ -6063,7 +6062,7 @@ msgstr "Smazat přílohu" msgid "Delete Attachment" msgstr "Smazat přílohu" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Smazat kategorii" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Smazat kanál" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Smazat média" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Smazat zprávu" @@ -6215,7 +6214,7 @@ msgstr "Hustý" msgid "Dense layout" msgstr "Husté rozvržení" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Nasazeno" @@ -6281,7 +6280,7 @@ msgstr "Cílový kanál" msgid "Destination URL:" msgstr "Cílové URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Oddělený banner" @@ -6362,7 +6361,7 @@ msgstr "Různé velikosti (status podporován)" msgid "Different Sizes & Member Counts" msgstr "Různé velikosti a počty členů" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Soukromá zpráva" @@ -6541,7 +6540,7 @@ msgstr "Deaktivace účtu tě odhlásí ze všech zařízení. Účet můžeš z msgid "Disallow @mention." msgstr "Zakázat @zmínku." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Zakázat nepřihlášené účty" @@ -6747,7 +6746,7 @@ msgstr "Nezobrazovat náhledy zpráv v seznamu DM" msgid "Don't show this again" msgstr "Už to neukazovat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Nezobrazovat indikátory psaní v seznamu kanálů" @@ -6760,7 +6759,7 @@ msgstr "Nezobrazovat indikátory psaní v seznamu kanálů" msgid "Done" msgstr "Hotovo" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Upravit kategorii" msgid "Edit Channel" msgstr "Upravit kanál" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Uprav přepsání pro role a členy v tomto kanálu." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Vložený úvod" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Obrázky úvodního zobrazení nelze animovat. Použij JPEG, PNG nebo WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Vložený zvuk" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Názvy emoji musí mít alespoň 2 znaky a mohou obsahovat jen alfanumerické znaky a podtržítka. Povolené typy souborů: JPEG, PNG, WebP, GIF. Obrázky zmenšujeme na 128×128 pixelů. Maximální velikost: {0} KB na jedno emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Balíček emoji" @@ -7473,7 +7472,7 @@ msgstr "Zadejte telefon" msgid "Enter picture-in-picture" msgstr "Přejít do režimu obraz v obraze" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Přejít do výběrového režimu" @@ -7536,7 +7535,7 @@ msgstr "Zadejte nový e-mail, který chcete používat. Pošleme tam další kó msgid "Enter the SMS code you received." msgstr "Zadejte SMS kód, který jste obdrželi." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "stiskněte enter pro <0><1>uložení" @@ -7604,7 +7603,7 @@ msgstr "Chyba při vykreslování LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Klávesa Esc ukončí režim klávesnice" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "stiskněte escape pro <0><1>zrušení" @@ -7667,7 +7666,7 @@ msgstr "Opustit režim obraz v obraze" msgid "Exit Preview" msgstr "Opustit náhled" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Opustit výběrový režim" @@ -7701,7 +7700,7 @@ msgstr "Vypršelo (v posledních 30 dnech)" msgid "Expired {absolute}" msgstr "Vypršelo {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Vypršelo mezi {earliest} a {latest}" @@ -7709,7 +7708,7 @@ msgstr "Vypršelo mezi {earliest} a {latest}" msgid "Expired on {date}" msgstr "Vypršelo dne {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Vypršelo dne {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Vyprší" msgid "Expires {absolute} ({relativeText})" msgstr "Vyprší {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Vyprší mezi {earliest} a {latest}" @@ -7730,7 +7729,7 @@ msgstr "Vyprší mezi {earliest} a {latest}" msgid "Expires on {date}" msgstr "Vyprší dne {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Vyprší dne {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Balíčky výrazů jsou funkcí Plutonium" msgid "Expression picker categories" msgstr "Kategorie výběru výrazů" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Vyčištění výrazů" @@ -7839,10 +7838,6 @@ msgstr "Nepodařilo se zkopírovat do schránky" msgid "Failed to copy URL" msgstr "Nepodařilo se zkopírovat URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Nepodařilo se vytvořit aplikaci. Zkontrolujte prosím vstupy a zkuste to znovu." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Nepodařilo se vytvořit roli" @@ -8100,7 +8095,7 @@ msgstr "Nepodařilo se zrušit zákaz. Zkuste to prosím znovu." msgid "Failed to revoke invite" msgstr "Nepodařilo se zrušit pozvánku" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Nepodařilo se otočit. Zkuste to prosím znovu." @@ -8413,7 +8408,7 @@ msgstr "Fitness kamarádi" msgid "Flags" msgstr "Vlajky" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexibilní názvy textových kanálů" @@ -8577,7 +8572,7 @@ msgstr "Gurmánští kamarádi" msgid "For 1 hour" msgstr "Na 1 hodinu" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Na 1 hodinu" msgid "For 15 minutes" msgstr "Na 15 minut" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Na 15 minut" msgid "For 24 hours" msgstr "Na 24 hodin" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Na 3 dny" msgid "For 3 hours" msgstr "Na 3 hodiny" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Na 3 hodiny" msgid "For 8 hours" msgstr "Na 8 hodin" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Zapomenout odběry" msgid "Forgot Password" msgstr "Zapomenuté heslo" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Zapomněli jste heslo?" @@ -8795,7 +8790,7 @@ msgstr "Posunout o {DEFAULT_SEEK_AMOUNT} sekund dopředu" msgid "Forward Message" msgstr "Přeposlat zprávu" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Přeposláno" @@ -9065,7 +9060,7 @@ msgstr "Získejte Fluxer desktopovou aplikaci pro systémové push-to-talk a pá #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Vrátit se k dříve aktivnímu textovému kanálu" msgid "Go forward in navigation history" msgstr "Jít vpřed v historii navigace" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Přejít ke komunitě" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Pozvánky do skupiny" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Skupinová zpráva" @@ -9548,7 +9543,7 @@ msgstr "Ahoj, {username}, vítej! Dokážeš cokoliv." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Ahoj, {username}! Až dosáhne 88 mph, uvidíš pořádnou jízdu!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Skryté" @@ -9569,7 +9564,7 @@ msgstr "Skrýt oblíbené" msgid "Hide Join Messages" msgstr "Skrýt zprávy o připojení" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Skrýt nápovědy klávesových zkratek v bublinách" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Skrýt ztlumené kanály" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Pokud si nejprve chcete exportovat data nebo smazat zprávy, navštivte prosím nejdříve sekci Panelu soukromí v Uživatelském nastavení." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "obrázek" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Vstupy s ikonami" msgid "Insert emoji" msgstr "Vložit emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Nainstalovat balíček emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Nainstalovat balíček nálepek" @@ -10153,7 +10148,7 @@ msgstr "Nainstalováno dne {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalace balíčků emoji a nálepek vyžaduje prémiové předplatné." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Okamžité pozvánky" @@ -10286,7 +10281,7 @@ msgstr "Nastavení odkazu pozvánky" msgid "Invite Links" msgstr "Odkazy pozvánek" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Okno pozvánky" msgid "Invite modal preview" msgstr "Náhled okna pozvánky" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Pozvánka odeslána pro {0}" msgid "Invite sent to {guildName}" msgstr "Pozvánka byla odeslána do {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Úvodní pozvánka" @@ -10354,7 +10349,7 @@ msgstr "Pozvat do {0}" msgid "Invite to Community" msgstr "Pozvat do komunity" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Pozvánka nedostupná" @@ -10369,12 +10364,12 @@ msgstr "Pozváno uživatelem {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Pozváno uživatelem {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Pozváno uživatelem {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Pozvánky jsou v této komunitě momentálně pozastavené" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Pozvánky jsou v náhledových komunitách uzamčené. Aktivujte účet nastavením e-mailu a hesla, abyste pozvánky povolili." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Pozvánky zakázány" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Pozvánky zakázány" @@ -10482,13 +10477,13 @@ msgstr "Připojte se ke komunitě s nálepkami a začněte!" msgid "Join call" msgstr "Připojit se k hovoru" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Připojit se ke komunitě" @@ -10497,15 +10492,23 @@ msgstr "Připojit se ke komunitě" msgid "Join community form" msgstr "Formulář pro připojení ke komunitě" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Připojte se k Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Připojte se k Fluxer HQ, abyste mohli chatovat s týmem a byli v obraze o novinkách!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Připojit se ke skupině" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Připojit se ke skupinové zprávě" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Oznámení o připojení" @@ -10620,7 +10623,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:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Přejít na aktuální" @@ -10690,7 +10693,7 @@ msgstr "Klávesové zkratky" msgid "Keyboard" msgstr "Klávesnice" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Tipy pro klávesnici" @@ -10815,7 +10818,7 @@ msgstr "Zjistit více o Plutoniu" msgid "Leave blank for a random username" msgstr "Nechte prázdné pro náhodné uživatelské jméno" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Odejít tak brzy?" msgid "Left" msgstr "Odešel" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Zarovnáno vlevo" @@ -10945,7 +10948,7 @@ msgstr "odkaz" msgid "Link" msgstr "Odkaz" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Propojit kanál" @@ -11027,7 +11030,7 @@ msgstr "Načítání zákazů..." msgid "Loading communities..." msgstr "Načítání komunit..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Načítání obrázku" @@ -11039,8 +11042,8 @@ msgstr "Načítání pozvánek..." msgid "Loading more..." msgstr "Načítání dalších..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Zástupný obsah při načítání" @@ -11064,7 +11067,7 @@ msgstr "Načítání motivu..." msgid "Loading verification methods..." msgstr "Načítání metod ověření..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Načítání: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokální ztlumení" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Přihlaste se přes prohlížeč a zadejte zobrazený kód pro přidán msgid "Log in via browser" msgstr "Přihlásit se přes prohlížeč" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Přihlásit se přes prohlížeč nebo vlastní instanci" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Odhlásit se" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Odhlásit {0} zařízení" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Odhlásit {sessionCount} zařízení" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Odhlásit 1 zařízení" @@ -11141,7 +11144,7 @@ msgstr "Odhlásit ze všech zařízení" msgid "Log out all other devices" msgstr "Odhlásit všechna ostatní zařízení" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Odhlásit všechna ostatní zařízení" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Označit jako 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "zmínky:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "zmínky:" msgid "Message" msgstr "Zpráva" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Zpráva " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Zpráva @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Zpráva #" @@ -11838,7 +11842,7 @@ msgstr "Zprávy a média" msgid "Messages Deleted" msgstr "Zprávy smazány" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Zprávy se nepodařilo načíst" @@ -12016,7 +12020,7 @@ msgstr "Více" msgid "More Actions" msgstr "Další akce" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Více emoji slotů" @@ -12028,7 +12032,7 @@ msgstr "Další možnosti" msgid "More Options" msgstr "Další možnosti" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Více slotů pro samolepky" @@ -12162,8 +12166,8 @@ msgstr "Ztlumit kanál" msgid "Mute Channel" msgstr "Ztlumit kanál" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Ztlumeno do {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Ztlumení komunity zabrání zobrazování nepřečtených indikátorů a oznámení, pokud nejste zmíněni" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Vzájemné komunity ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Vzájemní přátelé ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Vzájemné skupiny ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Moje aplikace" @@ -12247,7 +12251,7 @@ msgstr "Moje skvělá samolepka" msgid "My Category" msgstr "Moje kategorie" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Moje zařízení" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigace" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Potřebujete účet?" @@ -12364,7 +12368,7 @@ msgstr "Síť" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Chyba sítě" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Žádný komunitní banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nebyl poskytnut žádný popis." @@ -12684,15 +12688,15 @@ msgstr "Žádné mikrofony nebyly detekovány" msgid "No more scheduled messages." msgstr "Žádné další naplánované zprávy." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nebyla nalezena žádná společná komunita." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nebyla nalezena žádná společná přátelství." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nebyla nalezena žádná společná skupina." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Není to váš šálek čaje? Tuto funkci můžete kdykoli vypnout." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Přepsání oznámení" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Upozornit uživatele s touto rolí, kteří mají oprávnění tento kan msgid "now" msgstr "nyní" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Teď" @@ -13090,7 +13094,7 @@ msgstr "Při kliknutí" msgid "on:" msgstr "na:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Po odstranění jsou aplikace a její přihlašovací údaje trvale smazány." @@ -13252,7 +13256,7 @@ msgstr "Otevřít jen DM" msgid "Open Fluxer" msgstr "Otevřít Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Otevřít obrázek v celoobrazovkovém zobrazení" @@ -13368,7 +13372,7 @@ msgstr "Otevřít komunitu Visionary" msgid "Opening..." msgstr "Otevírá se…" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operátor" @@ -13441,7 +13445,7 @@ msgstr "Původní zpráva byla smazána" msgid "Other" msgstr "Jiné" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Jiná zařízení" @@ -13501,7 +13505,7 @@ msgstr "Přepsat stav nepřiřazeného účtu" msgid "Override unread gift inventory status" msgstr "Přepsat stav nepřečteného inventáře dárků" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Přehled" @@ -13695,7 +13699,7 @@ msgstr "Oprávnění" msgid "Permissions granted" msgstr "Oprávnění udělena" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Osobní poznámky" @@ -13868,12 +13872,12 @@ msgstr "Přehrát" msgid "Play animated emojis" msgstr "Přehrát animované emoji" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Přehrát zvuk" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Vložte prosím odkaz na zprávu, kterou hlásíte." msgid "Please provide an email address." msgstr "Uveďte prosím e-mailovou adresu." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Zkuste to prosím znovu nebo se vraťte na seznam aplikací." @@ -13989,7 +13993,7 @@ msgstr "Výhody Plutonia" msgid "Plutonium Subscription" msgstr "Předplatné Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Panel soukromí" msgid "Privacy Policy" msgstr "Zásady ochrany osobních údajů" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Odstraňte tento nálepku z úložiště a CDN" msgid "Push Notification Inactive Timeout" msgstr "Časový limit neaktivní push notifikace" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push oznámení" @@ -14412,7 +14416,7 @@ msgstr "Interakce reakcí vypnuta" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reakce" @@ -14583,7 +14587,7 @@ msgstr "Obnovit push odběr" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Vygenerovat znovu" @@ -14591,19 +14595,19 @@ msgstr "Vygenerovat znovu" msgid "Regenerate backup codes" msgstr "Znovu vygenerovat záložní kódy" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Znovu vygenerovat token bota?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Znovu vygenerovat tajemství klienta?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerace zneplatní aktuální tajemství. Aktualizujte jakýkoli kód, který používá starou hodnotu." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerace zneplatní aktuální token. Aktualizujte jakýkoli kód, který používá starou hodnotu." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Odstranit filtr" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Odstranit filtr" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Hlášení bylo úspěšně odesláno. Náš bezpečnostní tým ho brzy #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Nahlásit uživatele" @@ -15105,7 +15109,7 @@ msgstr "Požadované rozsahy" msgid "Require 2FA for moderation actions" msgstr "Vyžadovat 2FA pro moderátorské akce" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Vyžadovat dvojklik pro vstup do hlasových kanálů" @@ -15144,7 +15148,7 @@ msgstr "Vyžaduje vše z úrovně Střední a navíc být členem serveru alespo msgid "Requires Plutonium" msgstr "Vyžaduje Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Přeplánovat zprávu" @@ -15290,11 +15294,11 @@ msgstr "Znovu odebírat" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Zkusit znovu" @@ -15359,7 +15363,7 @@ msgstr "Zrušit" msgid "Revoke Ban" msgstr "Zrušit zákaz" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Zrušit zařízení" @@ -15386,7 +15390,7 @@ msgstr "Přetočit o {DEFAULT_SEEK_AMOUNT} sekund zpět" msgid "Right" msgstr "Vpravo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Zarovnat doprava" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Hledat členy..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Hledat zprávy" @@ -15834,13 +15838,13 @@ msgstr "Hledat role nebo členy..." msgid "Search saved media" msgstr "Hledat uložená média" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Rozsah hledání" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Rozsah hledání: {0}" @@ -15857,7 +15861,7 @@ msgstr "Hledat nastavení..." msgid "Search stickers..." msgstr "Hledat samolepky..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Návrhy hledání" @@ -15938,7 +15942,7 @@ msgstr "Bezpečnostní klíč / přístupový klíč" msgid "Security key verification failed. Please try again." msgstr "Ověření bezpečnostního klíče selhalo. Zkuste to znovu." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Zobrazte všechna zařízení aktuálně přihlášená do vašeho účtu. Zrušte jakékoliv relace, které nepoznáváte." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Vybrat účet" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Vybrat vše" @@ -16040,7 +16044,7 @@ msgstr "Vyberte velikost médií pro vložený obsah z odkazů" msgid "Select media size for uploaded attachments" msgstr "Vyberte velikost médií pro nahrané přílohy" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Vyberte vzájemné zobrazení" @@ -16151,9 +16155,9 @@ msgstr "Odeslat kód" msgid "Send Code" msgstr "Odeslat kód" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Odeslat žádost o přátelství" @@ -16170,7 +16174,7 @@ msgstr "Odeslat zprávu · Klikněte pravým tlačítkem pro naplánování" msgid "Send Message Disabled" msgstr "Odesílání zpráv je zakázáno" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Odesílat zprávy" @@ -16624,7 +16628,7 @@ msgstr "Zobrazit tlačítko Dárek" msgid "Show inline images and videos" msgstr "Zobrazovat obrázky a videa v textu" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Zobrazit jen indikátor psaní bez avatarů" @@ -16788,11 +16792,11 @@ msgstr "Zobrazit dárek jako již uplatněný" msgid "Show this role separately" msgstr "Zobrazit tuto roli zvlášť" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Zobrazit indikátor psaní s avatary uživatelů v seznamu kanálů" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Zobrazit psaní ve vybraném kanálu" @@ -17151,7 +17155,7 @@ msgstr "Španělština (Španělsko)" msgid "Speak" msgstr "Mluvit" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Přehrát zprávu" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Začít sdílení" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Zahájit videohovor" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Zahájit hlasový hovor" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Hustota nálepek" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Balíček nálepek" @@ -17427,7 +17431,7 @@ msgstr "Zastavit zvonění" msgid "Stop Sharing" msgstr "Zastavit sdílení" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Přestat mluvit" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Potlačit vložené odkazy" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Textový kanál" @@ -18028,10 +18032,10 @@ msgstr "Tato akce vyžaduje ověření pro pokračování." msgid "This application" msgstr "Tato aplikace" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Tato příloha vypršela" @@ -18039,7 +18043,7 @@ msgstr "Tato příloha vypršela" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Tento bot žádá o oprávnění správce. Nedoporučujeme ho udělovat produkčním aplikacím, pokud plně nedůvěřujete vývojáři. Zvažte požádání o omezený soubor oprávnění. Pokud si nejste jistí, zavřete tuto stránku." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Tohle nelze vrátit zpět. Odstranění aplikace také smaže jejího bota." @@ -18101,7 +18105,7 @@ msgstr "Tato komunita dosáhla maximálního počtu členů a momentálně nepř msgid "This community has temporarily disabled invites." msgstr "Tato komunita dočasně pozastavila pozvánky." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Tato komunita dočasně pozastavila pozvánky. Zkuste to znovu později." @@ -18178,7 +18182,7 @@ msgstr "Tato pozvánka má neomezený počet použití." msgid "This invite link never expires." msgstr "Tento pozvánkový odkaz nikdy nevyprší." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Toto je začátek <0>{displayName}. Přidejte přátele a začněte konverzaci!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Toto je začátek vaší soukromé konverzace s <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Tohle byla @silent zpráva." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Tohle vytvoří trhlinu v časoprostorovém kontinuu a nelze to vrátit msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Tímto skryjete všechny prvky uživatelského rozhraní související s oblíbenými. Vaše stávající oblíbené zůstanou zachovány a můžete je kdykoli znovu povolit v <0>Nastavení uživatele → Vzhled → Oblíbené." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Tímto upravíte existující naplánovanou zprávu místo okamžitého odeslání." @@ -18387,8 +18391,8 @@ msgstr "Tímto odstraníte uloženou relaci pro tento účet." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Tímto nahradíte svůj aktuální vlastní motiv. Později ho můžete upravit v nastavení uživatele." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Náhled pro {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasty se zobrazují v horní střední části obrazovky." msgid "today" msgstr "dnes" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Dnes" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Zkuste to znovu" @@ -18737,7 +18741,7 @@ msgstr "Zkuste jiné jméno nebo zkontrolujte pravopis." msgid "Try another search term" msgstr "Zkuste jiný výraz" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Zkuste požádat o nové pozvání." @@ -18864,7 +18868,7 @@ msgstr "Typ měřítka" msgid "Type your message here..." msgstr "Sem napište svou zprávu..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Události psaní" @@ -18877,11 +18881,11 @@ msgstr "Ukazatel psaní" msgid "Typing Indicator" msgstr "Indikátor psaní" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Ukazatel psaní + avatary" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Pouze ukazatel psaní" @@ -18961,11 +18965,11 @@ msgstr "Nelze zahájit hovor" msgid "Unable to start email change" msgstr "Nelze zahájit změnu e-mailu" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Nedostupné pro všechny" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Nedostupné pro všechny kromě personálu" @@ -18978,7 +18982,7 @@ msgstr "Nedostupné pro všechny kromě personálu" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Než pošlete žádost o přátelství, odblokujte tohoto uživatele." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Odblokovat uživatele" @@ -19165,7 +19169,7 @@ msgstr "Neznámá chyba" msgid "Unknown Gift" msgstr "Neznámý dárek" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Neznámé pozvání" @@ -19205,11 +19209,11 @@ msgstr "neznámá-role" msgid "Unlimited" msgstr "Neomezené" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Neomezená emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Neomezené samolepky" @@ -19254,7 +19258,7 @@ msgstr "Odemkněte samolepky v PM s Plutoniem" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Zapnout zvuk kategorie" msgid "Unmute Channel" msgstr "Zapnout zvuk kanálu" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Zapnout zvuk oblíbených" msgid "Unmute User" msgstr "Zapnout zvuk uživatele" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Nepojmenováno" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Dokud to nezměním" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Neověřený e-mail" msgid "Up to 4K/60fps" msgstr "Až 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Aktualizovat" @@ -19629,7 +19633,7 @@ msgstr "Nahrát vstupní zvuk" msgid "Upload Failed" msgstr "Nahrání selhalo" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Nahrát soubor" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Uživatel změnil kanál" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil uživatele" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil uživatele: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Hodnoty" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vlastní URL" @@ -20059,14 +20063,14 @@ msgstr "Před zobrazením záložních kódů může být požadováno ověřen #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Ověřená komunita" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Ověřený spolek" @@ -20167,8 +20171,8 @@ msgstr "Kvalita videa" msgid "Video Settings" msgstr "Nastavení videa" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatura videa" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Zobrazit kódy" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Zobrazit profil komunity" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Zobrazit inventář dárků" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Zobrazit globální profil" @@ -20329,7 +20333,7 @@ msgstr "Výběr kategorie porušení" msgid "Violent or Graphic Content" msgstr "Násilný nebo grafický obsah" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP hlas" @@ -20341,7 +20345,7 @@ msgstr "Viditelná tlačítka" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Hlasové hovory" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Hlasový kanál" @@ -20442,7 +20446,7 @@ msgstr "Hlasový kanál" msgid "Voice Channel Full" msgstr "Hlasový kanál je plný" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Chování při vstupu do hlasového kanálu" @@ -20559,7 +20563,7 @@ msgstr "Tuto komunitu se nyní nepodařilo připojit." msgid "We couldn't load the invites at this time." msgstr "Pozvánky se nyní nepodařilo načíst." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Aplikaci se nepodařilo načíst" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Máme problém připojit se k serverům Fluxer. Může jít o dočasný problém sítě nebo plánovanou údržbu." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Máme problémy s připojením ke kontinuu časoprostoru. Zkontroluj připojení a zkus to znovu." @@ -20759,7 +20763,7 @@ msgstr "Víkendoví válečníci" msgid "Welcome and system messages will appear here." msgstr "Zde se zobrazí uvítací a systémové zprávy." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Vítej zpět" @@ -20820,7 +20824,7 @@ msgstr "Co se děje?" msgid "What's included in your export:" msgstr "Co je součástí exportu:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Když je vypnuto (výchozí), ukazatele psaní se na aktuálním kanálu nezobrazí." @@ -20836,7 +20840,7 @@ msgstr "Když je zapnuto, rychlé stisknutí zkratky pro tlačítko mluvení nec msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Po zapnutí odhalí ladicí nabídky v celé aplikaci pro inspekci a kopírování surových objektů JSON interních struktur jako zprávy, kanály, uživatelé a komunity. Obsahuje i nástroje pro ladění výkonu Fluxer Markdown parseru a AST pro libovolnou zprávu." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Když je zapnuto, odznaky zkratek jsou v nápovědách skryté." @@ -20868,7 +20872,7 @@ msgstr "Po zapnutí se pro formát 12/24 hodin použije lokalizace počítače m msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Po zapnutí si můžeš oblíbit kanály, které se zobrazí v sekci Oblíbené. Při vypnutí se skryjí všechny prvky související s oblíbenými (tlačítka, položky menu). Stávající oblíbené zůstanou." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Po zapnutí je potřeba dvakrát kliknout na hlasové kanály, aby ses připojil. Při vypnutí (výchozí) stačí jedno kliknutí." @@ -20970,7 +20974,7 @@ msgstr "Ročně {yearlyPrice}" msgid "yesterday" msgstr "včera" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Včera" @@ -21013,7 +21017,7 @@ msgstr "Upravuješ svůj profil pro tuto komunitu. Bude viditelný pouze zde a p msgid "You are in slowmode. Please wait before sending another message." msgstr "Jsi v pomalém režimu. Počkej prosím před odesláním další zprávy." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Teď jsi vývojář!" @@ -21113,7 +21117,7 @@ msgstr "Pro formátování textu můžeš použít odkazy a Markdown. S <0/> mů msgid "You can't add new reactions while you're on timeout." msgstr "Během timeoutu nemůžeš přidávat nové reakce." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Nemůžeš se přidat mezi přátele sám sebe" @@ -21128,7 +21132,7 @@ msgstr "S reakcemi ve výsledcích hledání nemůžeš interagovat, mohlo by to msgid "You can't join while you're on timeout." msgstr "Když máš timeout, nemůžeš se připojit." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Nemůžeš si zapnout mikrofon, protože tě ztlumil moderátor." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 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." @@ -21439,7 +21443,7 @@ msgstr "Budeš vypadat jako offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Na dalším panelu nastavíš, jaká oprávnění bot obdrží." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Na všech odhlášených zařízeních se budeš muset znovu přihlásit" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 738cacbb..aa5e02c8 100644 --- a/fluxer_app/src/locales/da/messages.po +++ b/fluxer_app/src/locales/da/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# element} other {# elementer}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# medlem} other {# medlemmer}}" @@ -566,18 +566,18 @@ msgstr "{label} billeder kan ikke animeres. Brug venligst JPEG, PNG eller WebP." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} medlem" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} medlemmer" @@ -612,11 +612,11 @@ msgstr "{minutes} minutter og {seconds} sekunder" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutter og 1 sekund" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} gensidig fællesskab" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} gensidige fællesskaber" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} deltagere i opkald" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "{remaining} tegn tilbage" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} tegn tilbage. Få Plutonium til at skrive op til {premiumMaxLength} tegn." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} medlem" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} medlemmer" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone-omtaler" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Accentfarve" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accepter" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Accepter venneanmodning" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Accepter invitation" @@ -1364,8 +1364,8 @@ msgstr "Accepter invitation" msgid "Accept the incoming call" msgstr "Accepter det indgående opkald" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Ved at acceptere denne invitation installeres pakken automatisk." @@ -1594,7 +1594,7 @@ msgstr "Tilføj foretrukne kanaler" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Tillod {0}." msgid "Already have an account?" msgstr "Har du allerede en konto?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Allerede tilsluttet" @@ -2191,7 +2191,7 @@ msgstr "Animerede avatarer og bannere" msgid "Animated Avatars Require Plutonium" msgstr "Animerede avatarer kræver Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animeret banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animeret emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animeret GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animeret GIF-video" @@ -2219,7 +2219,7 @@ msgstr "Animeret GIF-video" msgid "Animated GIF Video" msgstr "Animeret GIF-video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animeret ikon" @@ -2277,7 +2277,7 @@ msgstr "Alle kan @nævne denne rolle. Medlemmer med \"Brug @everyone/@here og @r msgid "API Endpoint" msgstr "API-endpunkt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Applikationsoplysninger" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Applikationsnavn" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Applikationsnavn er påkrævet" @@ -2554,7 +2553,7 @@ msgstr "Er du sikker på, at du vil ophæve udelukkelsen for <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Vedhæftning {0}" msgid "Attachment Actions" msgstr "Handlinger for vedhæftning" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Vedhæftning udløbet" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autofærdiggørelse" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatisk" @@ -2859,7 +2858,7 @@ msgstr "Tilbage" msgid "Back to Applications" msgstr "Tilbage til applikationer" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Tilbage til listen" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Tilbage til login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Tilbage til tilsidesættelser" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Tilbage til roller" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Tilbage til indstillinger" @@ -3003,7 +3002,7 @@ msgstr "Forbudte brugere" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Grænse for bio-tegn" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot-område anmodet om" msgid "Bot token" msgstr "Bot-token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot-token fornyet. Opdater al kode, der bruger det gamle token." @@ -3435,7 +3434,7 @@ msgstr "Kameraindstillinger" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kameraindstillinger" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kameraindstillinger" msgid "Cancel" msgstr "Annuller" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Annuller venneanmodning" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Pas på! Du har ikke gemte ændringer." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategori" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategorinavn" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategoriindstillinger" @@ -3617,7 +3616,7 @@ msgstr "Forsigtighed" msgid "Center" msgstr "Center" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centreret" @@ -3765,7 +3764,7 @@ msgstr "Skiftede bitrate til {0}." msgid "Changed the voice region to {0}." msgstr "Skiftede stemmeregion til {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "Kanal-id kopieret til udklipsholder" msgid "Channel link copied" msgstr "Kanal-link kopieret" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Kanaloversigt skriveindikator-tilstand" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Skriveindikatorer i kanallisten" @@ -3891,7 +3890,7 @@ msgstr "Kanal fjernet fra favoritter" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanalsindstillinger" @@ -4052,7 +4051,7 @@ msgstr "Vælg, hvordan tider vises i hele appen." msgid "Choose how typing indicators appear in the channel list" msgstr "Vælg hvordan skriveindikatorer vises i kanallisten" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Vælg, hvordan skriveindikatorer vises i kanallisten, når nogen skriver i en kanal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Gå til din konto for at indløse denne gave." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Gå til din konto for at sende venneanmodninger." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Nulstil rettigheder" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Ryd søgning" msgid "Clear search input" msgstr "Ryd søgefelt" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Ryd markering" @@ -4314,7 +4313,7 @@ msgstr "Klik på upload-ikonet ved siden af en lyd for at tilpasse den med din e msgid "Click the verification link in the email." msgstr "Klik på bekræftelseslinket i e-mailen." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klik for at tilføje en note" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klik for at gøre krav på din gave!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klik for at kopiere" @@ -4388,7 +4387,7 @@ msgstr "Klik for at se alle reaktioner" msgid "Client secret" msgstr "Klienthemmelighed" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Klienthemmeligheden er regenereret. Opdater al kode, der bruger den gamle hemmelighed." @@ -4649,8 +4648,8 @@ msgstr "Fællesskab fremmer had baseret på beskyttede karakteristika" msgid "Community promotes or facilitates illegal activities" msgstr "Fællesskab fremmer eller muliggør ulovlige aktiviteter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontekstmenuer" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontekstmenuer kan åbnes med venstreklik (på knapper) eller højreklik (på andre elementer). Det viser forskellige menupunkter, herunder afkrydsningsfelter, radioknapper, skyder og undermenuer." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontroller hvordan webstedslinks forhåndsvises i chat" msgid "Control how you join voice channels" msgstr "Styr hvordan du tilslutter dig stemmekanaler" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Styr, hvordan du deltager i stemmekanaler i fællesskaber." @@ -5012,7 +5011,7 @@ msgstr "Styr klistermærkeanimationer" msgid "Control the visibility of favorites throughout the app." msgstr "Styr synligheden af favoritter i hele appen." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Styr, om tastaturgenvejsforslag vises i værktøjstip." @@ -5071,7 +5070,7 @@ msgstr "Kopieret" msgid "Copied to clipboard" msgstr "Kopieret til udklipsholder" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL kopieret til udklipsholder" @@ -5149,7 +5148,7 @@ msgstr "Kopier fil-link" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopier FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopier FluxerTag" msgid "Copy GIF" msgstr "Kopier GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopier guild-id" @@ -5222,7 +5221,7 @@ msgstr "Kopier tekst" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Hygge" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Opret" @@ -5331,14 +5330,14 @@ msgstr "Opret og administrer apps og bots til din konto." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Opret og del tilpassede emoji- og stickerpakker med Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Opret applikation" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Opret applikation" msgid "Create Category" msgstr "Opret kategori" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Oprettet {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Oprettet af {0}" @@ -5569,7 +5568,7 @@ msgstr "Det beskårne billede er for stort. Vælg et mindre område eller en min msgid "Current Community" msgstr "Aktuelt fællesskab" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Aktuel enhed" @@ -5606,7 +5605,7 @@ msgstr "Sidder fast i 1885 og vises offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Nuværende status: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Sekundær fare" msgid "Danger secondary clicked!" msgstr "Sekundær fareklikket!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Farezone" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Slet alle mine beskeder" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Slet applikation" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Slet vedhæftning" @@ -6063,7 +6062,7 @@ msgstr "Slet vedhæftning" msgid "Delete Attachment" msgstr "Slet vedhæftning" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Slet kategori" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Slet kanal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Slet medier" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Slet besked" @@ -6215,7 +6214,7 @@ msgstr "Tæt" msgid "Dense layout" msgstr "Tæt layout" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Udrullet" @@ -6281,7 +6280,7 @@ msgstr "Destinationskanal" msgid "Destination URL:" msgstr "Destinations-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Frakoblet banner" @@ -6362,7 +6361,7 @@ msgstr "Forskellige størrelser (status understøet)" msgid "Different Sizes & Member Counts" msgstr "Forskellige størrelser og medlemstal" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direkte besked" @@ -6541,7 +6540,7 @@ msgstr "Deaktivering af din konto logger dig ud af alle sessioner. Du kan genakt msgid "Disallow @mention." msgstr "Tillad ikke @omtale." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Forhindre uregistrerede konti" @@ -6747,7 +6746,7 @@ msgstr "Vis ikke beskedforhåndsvisninger i DM-listen" msgid "Don't show this again" msgstr "Vis ikke dette igen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Vis ikke skriveindikatorer i kanallisten" @@ -6760,7 +6759,7 @@ msgstr "Vis ikke skriveindikatorer i kanallisten" msgid "Done" msgstr "Færdig" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Rediger kategori" msgid "Edit Channel" msgstr "Rediger kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Rediger overskrivninger for roller og medlemmer i denne kanal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Embed-startskærm" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Embed-startskærm billeder kan ikke animeres. Brug venligst JPEG, PNG eller WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Indlejret lyd" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emojinavne skal være mindst 2 tegn og må kun indeholde alfanumeriske tegn og understregninger. Tilladte filtyper: JPEG, PNG, WebP, GIF. Vi komprimerer billeder til 128x128 pixels. Maks størrelse: {0} KB pr. emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emojipakke" @@ -7473,7 +7472,7 @@ msgstr "Indtast telefon" msgid "Enter picture-in-picture" msgstr "Gå til billede-i-billede" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Aktivér valgtilstand" @@ -7536,7 +7535,7 @@ msgstr "Indtast den nye e-mail, du vil bruge. Vi sender en kode dertil næste ga msgid "Enter the SMS code you received." msgstr "Indtast SMS-koden, du modtog." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "tryk enter for at <0><1>gemme" @@ -7604,7 +7603,7 @@ msgstr "Fejl ved gengivelse af LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape-tasten afslutter tastaturtilstand" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "tryk escape for at <0><1>annullere" @@ -7667,7 +7666,7 @@ msgstr "Forlad billede-i-billede" msgid "Exit Preview" msgstr "Forlad forhåndsvisning" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Afslut valgtilstand" @@ -7701,7 +7700,7 @@ msgstr "Udløbet (inden for 30 dage)" msgid "Expired {absolute}" msgstr "Udløbet {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Udløbet mellem {earliest} og {latest}" @@ -7709,7 +7708,7 @@ msgstr "Udløbet mellem {earliest} og {latest}" msgid "Expired on {date}" msgstr "Udløbet den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Udløbet den {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Udløber" msgid "Expires {absolute} ({relativeText})" msgstr "Udløber {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Udløber mellem {earliest} og {latest}" @@ -7730,7 +7729,7 @@ msgstr "Udløber mellem {earliest} og {latest}" msgid "Expires on {date}" msgstr "Udløber den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Udløber den {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Udtrykspakker er en Plutonium-funktion" msgid "Expression picker categories" msgstr "Kategorier i udtryksvælger" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Rydning af udtryk" @@ -7839,10 +7838,6 @@ msgstr "Kunne ikke kopiere til udklipsholder" msgid "Failed to copy URL" msgstr "Kunne ikke kopiere URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Kunne ikke oprette applikation. Tjek dine input og prøv igen." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Kunne ikke oprette rolle" @@ -8100,7 +8095,7 @@ msgstr "Kunne ikke ophæve udelukkelse. Prøv igen." msgid "Failed to revoke invite" msgstr "Kunne ikke tilbagekalde invitation" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Kunne ikke rotere. Prøv igen." @@ -8413,7 +8408,7 @@ msgstr "Fitnessvenner" msgid "Flags" msgstr "Flag" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Fleksible tekstkanalnavne" @@ -8577,7 +8572,7 @@ msgstr "Madglade venner" msgid "For 1 hour" msgstr "I 1 time" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "I 1 time" msgid "For 15 minutes" msgstr "I 15 minutter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "I 15 minutter" msgid "For 24 hours" msgstr "I 24 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "I 3 dage" msgid "For 3 hours" msgstr "I 3 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "I 3 timer" msgid "For 8 hours" msgstr "I 8 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Glem abonnementer" msgid "Forgot Password" msgstr "Glemt adgangskode" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Glemt din adgangskode?" @@ -8795,7 +8790,7 @@ msgstr "Spol frem {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Forward Message" msgstr "Videresend besked" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Videresendt" @@ -9065,7 +9060,7 @@ msgstr "Hent Fluxer skrivebordsappen for systemdækkende push-to-talk og nogle a #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Gå tilbage til den tidligere fokuserede tekstkanal" msgid "Go forward in navigation history" msgstr "Gå frem i navigationens historik" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Gå til fællesskab" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Gruppeinvitationer" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Gruppebesked" @@ -9548,7 +9543,7 @@ msgstr "Hej, {username}, velkommen! Du kan klare alt." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hej, {username}! Når du rammer 88 mph, sker der nogle vilde ting!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Skjult" @@ -9569,7 +9564,7 @@ msgstr "Skjul favoritter" msgid "Hide Join Messages" msgstr "Skjul tilmeldingsbeskeder" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Skjul tastaturhint i værktøjstip" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Skjul dempede kanaler" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Hvis du vil eksportere dine data eller slette dine beskeder først, skal du besøge Privatlivsdashboardet i Brugerindstillinger før du fortsætter." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "billede" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Indgange med ikoner" msgid "Insert emoji" msgstr "Indsæt emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Installer emojipakke" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Installer klistermærkepakke" @@ -10153,7 +10148,7 @@ msgstr "Installeret den {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Installation af emoji- og klistermærkepakker kræver et premium-abonnement." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Øjeblikkelige invitationer" @@ -10286,7 +10281,7 @@ msgstr "Indstillinger for inviter link" msgid "Invite Links" msgstr "Invitér-links" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Invitationsmodal" msgid "Invite modal preview" msgstr "Forhåndsvisning af invite-modal" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitation sendt til {0}" msgid "Invite sent to {guildName}" msgstr "Invitation sendt til {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Inviter splash" @@ -10354,7 +10349,7 @@ msgstr "Inviter til {0}" msgid "Invite to Community" msgstr "Inviter til fællesskab" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitation utilgængelig" @@ -10369,12 +10364,12 @@ msgstr "Inviteret af {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Inviteret af {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Inviteret af {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Invitationer er midlertidigt sat på pause i dette fællesskab" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Invitationer er låst for preview-fællesskaber. Gør krav på din konto ved at angive e-mail og adgangskode for at aktivere invitationer." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitationer deaktiveret" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitationer deaktiveret" @@ -10482,13 +10477,13 @@ msgstr "Deltag i et fællesskab med klistermærker for at komme i gang!" msgid "Join call" msgstr "Deltag i opkald" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Deltag i fællesskab" @@ -10497,15 +10492,23 @@ msgstr "Deltag i fællesskab" msgid "Join community form" msgstr "Formular til at deltage i fællesskab" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Deltag i Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Deltag i Fluxer HQ for at chatte med teamet og holde dig opdateret med det seneste!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Deltag i gruppe" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Deltag i gruppebesked" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Deltagelsesnotifikationer" @@ -10620,7 +10623,7 @@ msgstr "Hop til ældste ulæste besked" msgid "Jump to page" msgstr "Hop til side" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Hop til nu" @@ -10690,7 +10693,7 @@ msgstr "Tastaturgenvejstaster" msgid "Keyboard" msgstr "Tastatur" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Tastaturtips" @@ -10815,7 +10818,7 @@ msgstr "Lær om Plutonium" msgid "Leave blank for a random username" msgstr "Lad stå tomt for et tilfældigt brugernavn" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Forlader du allerede?" msgid "Left" msgstr "Forladt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Venstrestillet" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Koble kanal" @@ -11027,7 +11030,7 @@ msgstr "Indlæser udelukkelser..." msgid "Loading communities..." msgstr "Indlæser fællesskaber..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Indlæser billede" @@ -11039,8 +11042,8 @@ msgstr "Indlæser invitationer..." msgid "Loading more..." msgstr "Indlæser mere..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Indlæser pladsholder" @@ -11064,7 +11067,7 @@ msgstr "Indlæser tema..." msgid "Loading verification methods..." msgstr "Indlæser verificeringsmetoder..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Indlæser: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokal lydløs" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Log ind via din browser, og indtast derefter den viste kode for at tilf msgid "Log in via browser" msgstr "Log ind via browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Log ind via browser eller brugerdefineret instans" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Log ud" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Log ud {0} enheder" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Log ud fra {sessionCount} enheder" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Log ud 1 enhed" @@ -11141,7 +11144,7 @@ msgstr "Log ud fra alle enheder" msgid "Log out all other devices" msgstr "Log ud fra alle andre enheder" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Log ud af alle andre enheder" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marker som 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "nævnelser:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "nævnelser:" msgid "Message" msgstr "Besked" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Besked " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Besked @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Besked #" @@ -11838,7 +11842,7 @@ msgstr "Beskeder og medier" msgid "Messages Deleted" msgstr "Beskeder slettet" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Beskeder kunne ikke indlæses" @@ -12016,7 +12020,7 @@ msgstr "Mere" msgid "More Actions" msgstr "Flere handlinger" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Flere emoji-pladser" @@ -12028,7 +12032,7 @@ msgstr "Flere valgmuligheder" msgid "More Options" msgstr "Flere valgmuligheder" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Flere klistermærkepladser" @@ -12162,8 +12166,8 @@ msgstr "Lydløs kanal" msgid "Mute Channel" msgstr "Lydløs kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Lydløs indtil {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Lydløs fællesskab forhindrer ulæste indikatorer og notifikationer i at dukke op, medmindre du bliver nævnt" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Fælles fællesskaber ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Fælles venner ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Fælles grupper ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Min ansøgning" @@ -12247,7 +12251,7 @@ msgstr "Mit fantastiske klistermærke" msgid "My Category" msgstr "Min kategori" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mine enheder" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigation" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Brug for en konto?" @@ -12364,7 +12368,7 @@ msgstr "Netværk" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Netværksfejl" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Intet fællesskabsbanner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Ingen beskrivelse angivet." @@ -12684,15 +12688,15 @@ msgstr "Ingen mikrofoner fundet" msgid "No more scheduled messages." msgstr "Ingen flere planlagte beskeder." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Ingen fælles fællesskaber fundet." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Ingen fælles venner fundet." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Ingen fælles grupper fundet." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Ikke noget for dig? Du kan slå denne funktion fra når som helst." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Notifikationsoverskrivelser" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Underret brugere med denne rolle, der har tilladelse til at se denne kan msgid "now" msgstr "nu" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Nu" @@ -13090,7 +13094,7 @@ msgstr "Ved klik" msgid "on:" msgstr "på:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Når den slettes, fjernes applikationen og dens legitimationsoplysninger permanent." @@ -13252,7 +13256,7 @@ msgstr "Kun private beskeder" msgid "Open Fluxer" msgstr "Åbn Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Åbn billede i fuld visning" @@ -13368,7 +13372,7 @@ msgstr "Åbn Visionary Community" msgid "Opening..." msgstr "Åbner..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatør" @@ -13441,7 +13445,7 @@ msgstr "Original besked blev slettet" msgid "Other" msgstr "Andet" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Andre enheder" @@ -13501,7 +13505,7 @@ msgstr "Overskriv status for uafkrævet konto" msgid "Override unread gift inventory status" msgstr "Overskriv status for ulæst gavebeholdning" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Oversigt" @@ -13695,7 +13699,7 @@ msgstr "Tilladelser" msgid "Permissions granted" msgstr "Tilladelser givet" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Personlige noter" @@ -13868,12 +13872,12 @@ msgstr "Afspil" msgid "Play animated emojis" msgstr "Afspil animerede emojis" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Afspil lyd" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Indsæt venligst linket til den besked, du rapporterer." msgid "Please provide an email address." msgstr "Angiv venligst en e-mailadresse." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Prøv igen eller gå tilbage til applikationslisten." @@ -13989,7 +13993,7 @@ msgstr "Plutonium-fordele" msgid "Plutonium Subscription" msgstr "Plutonium-abonnement" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Privatlivsdashboard" msgid "Privacy Policy" msgstr "Privatlivspolitik" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Rens denne sticker fra lager og CDN" msgid "Push Notification Inactive Timeout" msgstr "Timeout for inaktive pushnotifikationer" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Pushnotifikationer" @@ -14412,7 +14416,7 @@ msgstr "Reaktionsinteraktion deaktiveret" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaktioner" @@ -14583,7 +14587,7 @@ msgstr "Opdater pushabonnement" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerer" @@ -14591,19 +14595,19 @@ msgstr "Regenerer" msgid "Regenerate backup codes" msgstr "Genopret backupkoder" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerér bot-token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerér klienthemmelighed?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerering ugyldiggør den nuværende hemmelighed. Opdater al kode, der bruger den gamle værdi." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerering ugyldiggør det nuværende token. Opdater al kode, der bruger den gamle værdi." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Fjern filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Fjern filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Rapport indsendt med succes. Vores sikkerhedsteam gennemgår den snart." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Rapporter bruger" @@ -15105,7 +15109,7 @@ msgstr "Anmodede scopes" msgid "Require 2FA for moderation actions" msgstr "Krav om 2FA for moderatorhandlinger" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Kræver dobbeltklik for at deltage i tale-kanaler" @@ -15144,7 +15148,7 @@ msgstr "Kræver alt fra Medium, plus at have været medlem af serveren i mindst msgid "Requires Plutonium" msgstr "Kræver Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Omplanlæg besked" @@ -15290,11 +15294,11 @@ msgstr "Tilmeld igen" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Prøv igen" @@ -15359,7 +15363,7 @@ msgstr "Tilbagekald" msgid "Revoke Ban" msgstr "Ophæv udelukkelse" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Tilbagekald enhed" @@ -15386,7 +15390,7 @@ msgstr "Spol tilbage {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Right" msgstr "Højre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Højrejusteret" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Søg efter medlemmer..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Søg i beskeder" @@ -15834,13 +15838,13 @@ msgstr "Søg efter roller eller medlemmer..." msgid "Search saved media" msgstr "Søg i gemt medier" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Søgeomfang" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Søgeomfang: {0}" @@ -15857,7 +15861,7 @@ msgstr "Søg i indstillinger..." msgid "Search stickers..." msgstr "Søg efter klistermærker..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Søgeforslag" @@ -15938,7 +15942,7 @@ msgstr "Sikkerhedsnøgle / adgangsnøgle" msgid "Security key verification failed. Please try again." msgstr "Verifikation af sikkerhedsnøgle mislykkedes. Prøv igen." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Se alle enheder, der aktuelt er logget ind på din konto. Tilbagekald sessioner, du ikke genkender." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Vælg konto" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Vælg alle" @@ -16040,7 +16044,7 @@ msgstr "Vælg mediestørrelse til indlejret indhold fra links" msgid "Select media size for uploaded attachments" msgstr "Vælg mediestørrelse til uploadede vedhæftninger" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Vælg gensyn" @@ -16151,9 +16155,9 @@ msgstr "Send kode" msgid "Send Code" msgstr "Send kode" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Send venneanmodning" @@ -16170,7 +16174,7 @@ msgstr "Send besked · Højreklik for at planlægge" msgid "Send Message Disabled" msgstr "Afsendelse af besked deaktiveret" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Send beskeder" @@ -16624,7 +16628,7 @@ msgstr "Vis gaveknap" msgid "Show inline images and videos" msgstr "Vis indlejrede billeder og videoer" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Vis kun skriverindikatoren uden avatarer" @@ -16788,11 +16792,11 @@ msgstr "Vis gaven som allerede indløst" msgid "Show this role separately" msgstr "Vis denne rolle separat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Vis skriveindikator med brugeravatarer i kanallisten" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Vis skrivning på valgt kanal" @@ -17151,7 +17155,7 @@ msgstr "Spansk (Spanien)" msgid "Speak" msgstr "Tal" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Tal besked" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Begynd at dele" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Start videoopkald" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Start taleopkald" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Klistermærkedensitet" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Klistermærkepakke" @@ -17427,7 +17431,7 @@ msgstr "Stop ringelyd" msgid "Stop Sharing" msgstr "Stop deling" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Stop med at tale" @@ -17570,19 +17574,19 @@ msgstr "Undertrykke alle rolle-@mentions" msgid "Suppress All Role @mentions" msgstr "Undertrykke alle rolle-@mentions" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Undertrykke embeds" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekst" msgid "Text (NSFW)" msgstr "Tekst (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Tekstkanal" @@ -18028,10 +18032,10 @@ msgstr "Denne handling kræver bekræftelse for at fortsætte." msgid "This application" msgstr "Denne applikation" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Dette vedhæftede element er udløbet" @@ -18039,7 +18043,7 @@ msgstr "Dette vedhæftede element er udløbet" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Denne bot beder om Administrator-adgangen. Vi anbefaler ikke at give den til produktionsapps, medmindre du har fuld tillid til udvikleren. Overvej at bede dem om at anmode om et reduceret sæt tilladelser. Luk siden, hvis du er i tvivl." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Dette kan ikke fortrydes. Fjernelse af applikationen sletter også dens bot." @@ -18101,7 +18105,7 @@ msgstr "Dette fællesskab har nået sin maksimale medlemsgrænse og accepterer i msgid "This community has temporarily disabled invites." msgstr "Dette fællesskab har midlertidigt deaktiveret invitationer." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Dette fællesskab har midlertidigt deaktiveret invitationer. Du kan prøve igen senere." @@ -18178,7 +18182,7 @@ msgstr "Denne invitation kan bruges ubegrænset." msgid "This invite link never expires." msgstr "Dette invitationlink udløber aldrig." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Dette er starten på <0>{displayName}. Tilføj venner for at starte en samtale!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Dette er starten på din direkte beskedhistorik med <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Dette var en @silent-besked." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Dette vil skabe en brud i rum-tidskontinuummet og kan ikke fortrydes." msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Dette skjuler alle favoritrelaterede brugerfladeelementer, inklusive knapper og menupunkter. Dine eksisterende favoritter bevares og kan genaktiveres når som helst under <0>Brugerindstillinger → Udseende & Følelse → Favoritter." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Dette ændrer den eksisterende planlagte besked i stedet for at sende øjeblikkeligt." @@ -18387,8 +18391,8 @@ msgstr "Dette fjerner den gemte session for denne konto." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Dette vil erstatte dit nuværende brugerdefinerede tema. Du kan redigere det senere i dine brugerindstillinger." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniature for {title}" @@ -18485,7 +18489,7 @@ msgstr "Toast-meddelelser vises øverst i midten af skærmen." msgid "today" msgstr "i dag" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "I dag" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Prøv igen" @@ -18737,7 +18741,7 @@ msgstr "Prøv et andet navn eller tjek stavningen." msgid "Try another search term" msgstr "Prøv et andet søgeord" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Prøv at bede om en ny invitation." @@ -18864,7 +18868,7 @@ msgstr "Skaleringssygning" msgid "Type your message here..." msgstr "Skriv din besked her..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Skrivningsevents" @@ -18877,11 +18881,11 @@ msgstr "Skriveindikator" msgid "Typing Indicator" msgstr "Skriveindikator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Skriveindikator + avatarer" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Kun skriveindikator" @@ -18961,11 +18965,11 @@ msgstr "Kan ikke starte opkald" msgid "Unable to start email change" msgstr "Kan ikke starte e-mailændring" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Ikke tilgængelig for alle" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Ikke tilgængelig for alle undtagen personale" @@ -18978,7 +18982,7 @@ msgstr "Ikke tilgængelig for alle undtagen personale" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Fjern blokering af denne bruger, før du sender en venneanmodning." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Fjern blokering af bruger" @@ -19165,7 +19169,7 @@ msgstr "Ukendt fejl" msgid "Unknown Gift" msgstr "Ukendt gave" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Ukendt invitation" @@ -19205,11 +19209,11 @@ msgstr "ukendt-rolle" msgid "Unlimited" msgstr "Ubegrænset" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Ubegrænsede emojis" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Ubegrænsede klistermærker" @@ -19254,7 +19258,7 @@ msgstr "Lås klistermærker op i DM'er med Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Fjern lydløs kategori" msgid "Unmute Channel" msgstr "Fjern lydløs kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Fjern lydløs favoritter" msgid "Unmute User" msgstr "Fjern lydløs bruger" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Uden navn" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Indtil jeg ændrer det" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Ubekræftet e-mail" msgid "Up to 4K/60fps" msgstr "Op til 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Opdater" @@ -19629,7 +19633,7 @@ msgstr "Upload indgangslyd" msgid "Upload Failed" msgstr "Upload mislykkedes" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Upload fil" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Bruger flyttede kanal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Brugerprofil" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Brugerprofil: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Værdier" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity-URL" @@ -20059,14 +20063,14 @@ msgstr "Verificering kan være påkrævet, før du kan se dine backupkoder." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verificeret fællesskab" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verificeret guild" @@ -20167,8 +20171,8 @@ msgstr "Videokvalitet" msgid "Video Settings" msgstr "Videoindstillinger" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videominiature" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Se koder" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Se fællesskabsprofil" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Se gavebeholdning" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Se global profil" @@ -20329,7 +20333,7 @@ msgstr "Valg af overtrædelseskategori" msgid "Violent or Graphic Content" msgstr "Voldeligt eller grafisk indhold" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-stemme" @@ -20341,7 +20345,7 @@ msgstr "Synlige knapper" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Opkald" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Stemme-kanal" @@ -20442,7 +20446,7 @@ msgstr "Stemmekanal" msgid "Voice Channel Full" msgstr "Stemmekanalen er fuld" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Adfærd ved deltagelse i stemmekanal" @@ -20559,7 +20563,7 @@ msgstr "Vi kunne ikke tilslutte os denne fællesskab lige nu." msgid "We couldn't load the invites at this time." msgstr "Vi kunne ikke indlæse invitationerne lige nu." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Vi kunne ikke indlæse denne applikation" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Vi har problemer med at oprette forbindelse til Fluxers servere. Det kan være et midlertidigt netværksproblem eller planlagt vedligeholdelse." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Vi har problemer med at oprette forbindelse til rumtidskontinuummet. Tjek din forbindelse og prøv igen." @@ -20759,7 +20763,7 @@ msgstr "Weekendkrigere" msgid "Welcome and system messages will appear here." msgstr "Velkomst- og systembeskeder vises her." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Velkommen tilbage" @@ -20820,7 +20824,7 @@ msgstr "Hvad sker der?" msgid "What's included in your export:" msgstr "Hvad er inkluderet i din eksport:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Når det er slået fra (standard), vises der ikke skriveindikatorer i den kanal, du kigger på." @@ -20836,7 +20840,7 @@ msgstr "Når det er aktiveret, holder et hurtigt tryk på din push-to-talk-genve msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Når det er aktiveret, åbner det debug-menuer i hele appen, så du kan inspicere og kopiere rå JSON-objekter fra interne datastrukturer som beskeder, kanaler, brugere og fællesskaber. Indeholder også værktøjer til at debugge Fluxer Markdown-parserens ydeevne og AST for enhver besked." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Når det er aktiveret, skjules genvejsmærker i tooltips." @@ -20868,7 +20872,7 @@ msgstr "Når det er aktiveret, bruger appen din computers lokalitet til at beste msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Når det er aktiveret, kan du markere kanaler som favoritter, og de vises i Favoritter-sektionen. Når det er slået fra, skjules alle UI-elementer relateret til favoritter (knapper, menupunkter). Dine eksisterende favoritter bevares." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Når det er aktiveret, skal du dobbeltklikke på stemmekanaler for at tilslutte dig. Når det er slået fra (standard), åbnes kanalen med ét klik." @@ -20970,7 +20974,7 @@ msgstr "Årligt {yearlyPrice}" msgid "yesterday" msgstr "i går" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "I går" @@ -21013,7 +21017,7 @@ msgstr "Du redigerer din profil for dette fællesskab. Denne profil er kun synli msgid "You are in slowmode. Please wait before sending another message." msgstr "Du er i slowmode. Vent venligst, før du sender endnu en besked." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Du er nu udvikler!" @@ -21113,7 +21117,7 @@ msgstr "Du kan bruge links og Markdown til at formatere din tekst. Med <0/> kan msgid "You can't add new reactions while you're on timeout." msgstr "Du kan ikke tilføje nye reaktioner, mens du er i timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Du kan ikke blive venner med dig selv" @@ -21128,7 +21132,7 @@ msgstr "Du kan ikke interagere med reaktioner i søgeresultaterne, da det kan fo msgid "You can't join while you're on timeout." msgstr "Du kan ikke deltage, mens du er i timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Du kan ikke slå din mikrofon til, fordi en moderator har slået den fra 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Du har ikke tilladelse til at sende beskeder i denne kanal." @@ -21439,7 +21443,7 @@ msgstr "Du vises som offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Du vælger hvilke tilladelser botten får på næste skærm." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Du skal logge ind igen på alle udloggede enheder" @@ -21508,7 +21512,7 @@ msgstr "Du er i talekanalen" msgid "You're sending messages too quickly" msgstr "Du sender beskeder for hurtigt" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 810cbbe6..1d518204 100644 --- a/fluxer_app/src/locales/de/messages.po +++ b/fluxer_app/src/locales/de/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# Element} other {# Elemente}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Mitglied} other {# Mitglieder}}" @@ -566,18 +566,18 @@ msgstr "Bilder im {label}-Format können nicht animiert werden. Bitte verwenden #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Mitglied" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Mitglieder" @@ -612,11 +612,11 @@ msgstr "{minutes} Minuten und {seconds} Sekunden" msgid "{minutes} minutes and 1 second" msgstr "{minutes} Minuten und 1 Sekunde" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} gemeinsame Gemeinschaft" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} gemeinsame Gemeinschaften" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} Teilnehmer in Anruf" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "{remaining} Zeichen übrig" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} Zeichen übrig. Hol dir Plutonium, um bis zu {premiumMaxLength} Zeichen zu schreiben." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Mitglied" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Mitglieder" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone-Erwähnungen" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Akzentfarbe" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Akzeptieren" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Freundschaftsanfrage annehmen" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Einladung annehmen" @@ -1364,8 +1364,8 @@ msgstr "Einladung annehmen" msgid "Accept the incoming call" msgstr "Den eingehenden Anruf annehmen" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Das Annehmen dieser Einladung installiert das Paket automatisch." @@ -1594,7 +1594,7 @@ msgstr "Lieblingskanäle hinzufügen" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} erlaubt." msgid "Already have an account?" msgstr "Hast du schon ein Konto?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Bereits beigetreten" @@ -2191,7 +2191,7 @@ msgstr "Animierte Avatare & Banner" msgid "Animated Avatars Require Plutonium" msgstr "Animierte Avatare erfordern Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animiertes Banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animierte Emojis ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animiertes GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animiertes GIF-Video" @@ -2219,7 +2219,7 @@ msgstr "Animiertes GIF-Video" msgid "Animated GIF Video" msgstr "Animiertes GIF-Video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animiertes Symbol" @@ -2277,7 +2277,7 @@ msgstr "Jeder kann diese Rolle @erwähnen. Mitglieder mit \"@everyone/@here und msgid "API Endpoint" msgstr "API-Endpunkt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Anwendungsinformationen" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Anwendungsname" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Der Anwendungsname ist erforderlich" @@ -2554,7 +2553,7 @@ msgstr "Möchtest du wirklich den Bann von <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Anhang {0}" msgid "Attachment Actions" msgstr "Anhangaktionen" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Anhang abgelaufen" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autovervollständigung" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatisch" @@ -2859,7 +2858,7 @@ msgstr "Zurück" msgid "Back to Applications" msgstr "Zurück zu Anwendungen" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Zurück zur Liste" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Zurück zur Anmeldung" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Zurück zu Overrides" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Zurück zu Rollen" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Zurück zu Einstellungen" @@ -3003,7 +3002,7 @@ msgstr "Gesperrte Benutzer" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Zeichenbegrenzung für Bio" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Angeforderter Bot-Bereich" msgid "Bot token" msgstr "Bot-Token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot-Token wurde neu generiert. Aktualisiere jeden Code, der das alte Token verwendet." @@ -3435,7 +3434,7 @@ msgstr "Kameraeinstellungen" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kameraeinstellungen" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kameraeinstellungen" msgid "Cancel" msgstr "Abbrechen" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Freundschaftsanfrage abbrechen" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Achtung! Du hast ungespeicherte Änderungen." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategorie" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategoriename" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategorieeinstellungen" @@ -3617,7 +3616,7 @@ msgstr "Vorsicht" msgid "Center" msgstr "Zentrum" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Zentriert" @@ -3765,7 +3764,7 @@ msgstr "Bitrate auf {0} geändert." msgid "Changed the voice region to {0}." msgstr "Sprachregion auf {0} geändert." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "Kanal" @@ -3828,11 +3827,11 @@ msgstr "Kanal-ID in die Zwischenablage kopiert" msgid "Channel link copied" msgstr "Kanal-Link kopiert" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Tippenanzeige-Modus in der Kanalliste" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Tippenanzeige in Kanalliste" @@ -3891,7 +3890,7 @@ msgstr "Kanal aus Favoriten entfernt" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanal-Einstellungen" @@ -4052,7 +4051,7 @@ msgstr "Wähle, wie Zeiten in der App angezeigt werden." msgid "Choose how typing indicators appear in the channel list" msgstr "Wähle, wie Schreibanzeigen in der Kanalliste erscheinen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Wähle, wie Schreibanzeigen in der Kanalliste erscheinen, wenn jemand tippt." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Beanspruche dein Konto, um dieses Geschenk einzulösen." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Beanspruche dein Konto, um Freundschaftsanfragen zu senden." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Berechtigungen löschen" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Suche löschen" msgid "Clear search input" msgstr "Suchfeld löschen" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Auswahl aufheben" @@ -4314,7 +4313,7 @@ msgstr "Klicke das Upload-Symbol neben einem Sound, um ihn mit deiner eigenen Au msgid "Click the verification link in the email." msgstr "Klicke den Verifizierungslink in der E-Mail." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klicke, um eine Notiz hinzuzufügen" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klicke, um dein Geschenk einzulösen!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klicke zum Kopieren" @@ -4388,7 +4387,7 @@ msgstr "Klicke, um alle Reaktionen zu sehen" msgid "Client secret" msgstr "Client-Geheimnis" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Client-Geheimnis neu generiert. Aktualisiere jeden Code, der das alte Geheimnis verwendet." @@ -4649,8 +4648,8 @@ msgstr "Community fördert Hass auf Grundlage geschützter Merkmale" msgid "Community promotes or facilitates illegal activities" msgstr "Community fördert oder erleichtert illegale Aktivitäten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontextmenüs" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontextmenüs lassen sich per Linksklick (bei Buttons) oder Rechtsklick (bei anderen Elementen) öffnen. Das zeigt verschiedene Menüeinträge wie Checkboxen, Optionsfelder, Schieberegler und Untermenüs." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Steuere, wie Website-Links im Chat angezeigt werden." msgid "Control how you join voice channels" msgstr "Steuere, wie du Sprachkanäle betrittst" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Steuere, wie du Community-Voice-Kanälen beitrittst." @@ -5012,7 +5011,7 @@ msgstr "Sticker-Animationen steuern" msgid "Control the visibility of favorites throughout the app." msgstr "Steuere die Sichtbarkeit von Favoriten in der gesamten App." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Steuere, ob Tastenkürzel-Hinweise in Tooltips erscheinen." @@ -5071,7 +5070,7 @@ msgstr "Kopiert" msgid "Copied to clipboard" msgstr "In die Zwischenablage kopiert" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL in die Zwischenablage kopiert" @@ -5149,7 +5148,7 @@ msgstr "Dateilink kopieren" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTag kopieren" @@ -5157,7 +5156,7 @@ msgstr "FluxerTag kopieren" msgid "Copy GIF" msgstr "GIF kopieren" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Server-ID kopieren" @@ -5222,7 +5221,7 @@ msgstr "Text kopieren" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Gemütlich" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Erstellen" @@ -5331,14 +5330,14 @@ msgstr "Erstelle und verwalte Anwendungen und Bots für dein Konto." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Erstelle und teile eigene Emoji- und Stickerpakete mit Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Anwendung erstellen" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Anwendung erstellen" msgid "Create Category" msgstr "Kategorie erstellen" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Erstellt am {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Erstellt von {0}" @@ -5569,7 +5568,7 @@ msgstr "Das zugeschnittene Bild ist zu groß. Wähle bitte einen kleineren Berei msgid "Current Community" msgstr "Aktuelle Community" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Aktuelles Gerät" @@ -5606,7 +5605,7 @@ msgstr "Derzeit im Jahr 1885 feststeckend, erscheinst du offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Derzeit: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Sekundäre Gefahr" msgid "Danger secondary clicked!" msgstr "Sekundäre Gefahr angeklickt!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Gefahrenzone" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Alle meine Nachrichten löschen" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Anwendung löschen" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Anhang löschen" @@ -6063,7 +6062,7 @@ msgstr "Anhang löschen" msgid "Delete Attachment" msgstr "Anhang löschen" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Kategorie löschen" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Kanal löschen" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Medien löschen" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Nachricht löschen" @@ -6215,7 +6214,7 @@ msgstr "Kompakt" msgid "Dense layout" msgstr "Kompaktes Layout" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Bereitgestellt" @@ -6281,7 +6280,7 @@ msgstr "Zielkanal" msgid "Destination URL:" msgstr "Ziel-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Abgetrenntes Banner" @@ -6362,7 +6361,7 @@ msgstr "Verschiedene Größen (Status wird unterstützt)" msgid "Different Sizes & Member Counts" msgstr "Verschiedene Größen & Mitgliederzahlen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direktnachricht" @@ -6541,7 +6540,7 @@ msgstr "Das Deaktivieren deines Kontos meldet dich überall ab. Du kannst dein K msgid "Disallow @mention." msgstr "@mention verbieten." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Nicht beanspruchte Konten verhindern" @@ -6747,7 +6746,7 @@ msgstr "Keine Nachrichtenvorschauen in der DM-Liste anzeigen" msgid "Don't show this again" msgstr "Nicht nochmal anzeigen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Tippen-Indikatoren in der Kanalliste nicht anzeigen" @@ -6760,7 +6759,7 @@ msgstr "Tippen-Indikatoren in der Kanalliste nicht anzeigen" msgid "Done" msgstr "Fertig" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Kategorie bearbeiten" msgid "Edit Channel" msgstr "Kanal bearbeiten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Überschreibungen für Rollen und Mitglieder in diesem Kanal bearbeiten." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash-Einbettung" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Splash-Einbettungsbilder dürfen nicht animiert sein. Bitte verwende JPEG, PNG oder WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Eingebetteter Ton" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emoji-Namen müssen mindestens 2 Zeichen lang sein und dürfen nur alphanumerische Zeichen sowie Unterstriche enthalten. Zulässige Dateitypen: JPEG, PNG, WebP, GIF. Wir komprimieren Bilder auf 128×128 Pixel. Höchstgröße: {0} KB pro Emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji-Paket" @@ -7473,7 +7472,7 @@ msgstr "Telefonnummer eingeben" msgid "Enter picture-in-picture" msgstr "Bild-im-Bild starten" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Auswahlmodus starten" @@ -7536,7 +7535,7 @@ msgstr "Gib die neue E-Mail-Adresse ein, die du nutzen möchtest. Wir senden dir msgid "Enter the SMS code you received." msgstr "Gib den SMS-Code ein, den du erhalten hast." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "Eingabe zum <0><1>Speichern" @@ -7604,7 +7603,7 @@ msgstr "Fehler beim Rendern von LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape-Taste beendet den Tastaturmodus" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "Escape zum <0><1>Abbrechen" @@ -7667,7 +7666,7 @@ msgstr "Bild-im-Bild beenden" msgid "Exit Preview" msgstr "Vorschau beenden" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Auswahlmodus verlassen" @@ -7701,7 +7700,7 @@ msgstr "Abgelaufen (innerhalb der letzten 30 Tage)" msgid "Expired {absolute}" msgstr "Abgelaufen am {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Abgelaufen zwischen {earliest} und {latest}" @@ -7709,7 +7708,7 @@ msgstr "Abgelaufen zwischen {earliest} und {latest}" msgid "Expired on {date}" msgstr "Abgelaufen am {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Abgelaufen am {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Läuft ab" msgid "Expires {absolute} ({relativeText})" msgstr "Läuft ab am {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Läuft ab zwischen {earliest} und {latest}" @@ -7730,7 +7729,7 @@ msgstr "Läuft ab zwischen {earliest} und {latest}" msgid "Expires on {date}" msgstr "Läuft ab am {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Läuft ab am {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Expression-Pakete sind eine Plutonium-Funktion" msgid "Expression picker categories" msgstr "Expression-Auswahlkategorien" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Expression-Bereinigung" @@ -7839,10 +7838,6 @@ msgstr "Kopieren in die Zwischenablage fehlgeschlagen" msgid "Failed to copy URL" msgstr "URL konnte nicht kopiert werden" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Anwendung konnte nicht erstellt werden. Bitte überprüfe deine Eingaben und versuche es erneut." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Rolle konnte nicht erstellt werden" @@ -8100,7 +8095,7 @@ msgstr "Der Bann konnte nicht aufgehoben werden. Bitte versuche es erneut." msgid "Failed to revoke invite" msgstr "Die Einladung konnte nicht zurückgezogen werden" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Die Rotation ist fehlgeschlagen. Bitte versuche es erneut." @@ -8413,7 +8408,7 @@ msgstr "Fitnessfreunde" msgid "Flags" msgstr "Flaggen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexible Namen für Textkanäle" @@ -8577,7 +8572,7 @@ msgstr "Foodie-Freunde" msgid "For 1 hour" msgstr "Für 1 Stunde" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Für 1 Stunde" msgid "For 15 minutes" msgstr "Für 15 Minuten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Für 15 Minuten" msgid "For 24 hours" msgstr "Für 24 Stunden" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Für 3 Tage" msgid "For 3 hours" msgstr "Für 3 Stunden" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Für 3 Stunden" msgid "For 8 hours" msgstr "Für 8 Stunden" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Abonnements vergessen" msgid "Forgot Password" msgstr "Passwort vergessen" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Passwort vergessen?" @@ -8795,7 +8790,7 @@ msgstr "Um {DEFAULT_SEEK_AMOUNT} Sekunden vorspulen" msgid "Forward Message" msgstr "Nachricht weiterleiten" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Weitergeleitet" @@ -9065,7 +9060,7 @@ msgstr "Hol dir die Fluxer-Desktop-App für systemweites Push-to-Talk und einige #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Zum zuvor fokussierten Textkanal zurückkehren" msgid "Go forward in navigation history" msgstr "Vorwärts in der Navigationshistorie" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Zur Community gehen" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Gruppeneinladungen" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Gruppennachricht" @@ -9548,7 +9543,7 @@ msgstr "Hey, {username}, willkommen! Du kannst alles schaffen." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hey, {username}! Wenn du 88 mph erreichst, wirst du echt etwas erleben!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Versteckt" @@ -9569,7 +9564,7 @@ msgstr "Favoriten ausblenden" msgid "Hide Join Messages" msgstr "Beitrittsnachrichten ausblenden" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Tastaturhinweise in Tooltips ausblenden" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Stummgeschaltete Kanäle ausblenden" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Wenn du zuerst deine Daten exportieren oder deine Nachrichten löschen möchtest, besuche bitte vorab das Datenschutz-Dashboard in den Benutzereinstellungen." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "Bild" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Eingaben mit Symbolen" msgid "Insert emoji" msgstr "Emoji einfügen" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Emoji-Paket installieren" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Sticker-Paket installieren" @@ -10153,7 +10148,7 @@ msgstr "Installiert am {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Zum Installieren von Emoji- und Sticker-Paketen ist ein Premium-Abo erforderlich." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Soforteinladungen" @@ -10286,7 +10281,7 @@ msgstr "Einladungslink-Einstellungen" msgid "Invite Links" msgstr "Einladungslinks" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Einladungs-Modal" msgid "Invite modal preview" msgstr "Einladungs-Modal-Vorschau" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Einladung für {0} gesendet" msgid "Invite sent to {guildName}" msgstr "Einladung gesendet an {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Einladungssplash" @@ -10354,7 +10349,7 @@ msgstr "Einladen zu {0}" msgid "Invite to Community" msgstr "Zur Community einladen" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Einladung nicht verfügbar" @@ -10369,12 +10364,12 @@ msgstr "Eingeladen von {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Eingeladen von {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Eingeladen von {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Einladungen sind in dieser Community derzeit pausiert" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Einladungen sind für Vorschau-Communities gesperrt. Beanspruche dein Konto, indem du eine E-Mail und ein Passwort festlegst, um Einladungen zu aktivieren." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Einladungen deaktiviert" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Einladungen deaktiviert" @@ -10482,13 +10477,13 @@ msgstr "Tritt einer Community mit Stickern bei, um loszulegen!" msgid "Join call" msgstr "Anruf beitreten" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Community beitreten" @@ -10497,15 +10492,23 @@ msgstr "Community beitreten" msgid "Join community form" msgstr "Community-Beitrittsformular" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Tritt Fluxer HQ bei" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Tritt Fluxer HQ bei, um mit dem Team zu chatten und auf dem Laufenden zu bleiben!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Gruppe beitreten" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Gruppen-DM beitreten" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Beitrittsbenachrichtigungen" @@ -10620,7 +10623,7 @@ msgstr "Zur ältesten ungelesenen Nachricht springen" msgid "Jump to page" msgstr "Zur Seite springen" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Zur Gegenwart springen" @@ -10690,7 +10693,7 @@ msgstr "Tastenkürzel" msgid "Keyboard" msgstr "Tastatur" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Tastaturhinweise" @@ -10815,7 +10818,7 @@ msgstr "Mehr über Plutonium erfahren" msgid "Leave blank for a random username" msgstr "Leer lassen für einen zufälligen Benutzernamen" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Schon wieder weg?" msgid "Left" msgstr "Verlassen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Links ausgerichtet" @@ -10945,7 +10948,7 @@ msgstr "Link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Kanal verlinken" @@ -11027,7 +11030,7 @@ msgstr "Sperren werden geladen..." msgid "Loading communities..." msgstr "Communities werden geladen..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Bild wird geladen" @@ -11039,8 +11042,8 @@ msgstr "Einladungen werden geladen..." msgid "Loading more..." msgstr "Mehr wird geladen..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Platzhalter wird geladen" @@ -11064,7 +11067,7 @@ msgstr "Thema wird geladen..." msgid "Loading verification methods..." msgstr "Verifizierungsmethoden werden geladen..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Lädt: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokal stumm" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Melde dich über deinen Browser an und gib den angezeigten Code ein, um msgid "Log in via browser" msgstr "Über Browser anmelden" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Über Browser oder eigene Instanz anmelden" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Abmelden" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Melde {0} Geräte ab" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Von {sessionCount} Geräten abmelden" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Ein Gerät abmelden" @@ -11141,7 +11144,7 @@ msgstr "Alle Geräte abmelden" msgid "Log out all other devices" msgstr "Von allen anderen Geräten abmelden" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Alle anderen Geräte abmelden" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Als 18+ markieren (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "Erwähnungen:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "Erwähnungen:" msgid "Message" msgstr "Nachricht" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Nachricht " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Nachricht @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Nachricht #" @@ -11838,7 +11842,7 @@ msgstr "Nachrichten & Medien" msgid "Messages Deleted" msgstr "Nachrichten gelöscht" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Nachrichten konnten nicht geladen werden" @@ -12016,7 +12020,7 @@ msgstr "Mehr" msgid "More Actions" msgstr "Weitere Aktionen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Mehr Emoji-Plätze" @@ -12028,7 +12032,7 @@ msgstr "Mehr Optionen" msgid "More Options" msgstr "Weitere Optionen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Mehr Sticker-Plätze" @@ -12162,8 +12166,8 @@ msgstr "Kanal stummschalten" msgid "Mute Channel" msgstr "Kanal stummschalten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Stummgeschaltet bis {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Wenn du eine Community stummschaltest, werden ungelesene Hinweise und Benachrichtigungen nur angezeigt, wenn du erwähnt wirst." -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Gemeinsame Communities ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Gemeinsame Freunde ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Gemeinsame Gruppen ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Meine Anwendung" @@ -12247,7 +12251,7 @@ msgstr "Mein großartiger Sticker" msgid "My Category" msgstr "Meine Kategorie" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Meine Geräte" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigation" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Benötigst du ein Konto?" @@ -12364,7 +12368,7 @@ msgstr "Netzwerk" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Netzwerkfehler" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Kein Community-Banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Keine Beschreibung angegeben." @@ -12684,15 +12688,15 @@ msgstr "Keine Mikrofone erkannt" msgid "No more scheduled messages." msgstr "Keine geplanten Nachrichten mehr." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Keine gemeinsamen Communities gefunden." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Keine gemeinsamen Freunde gefunden." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Keine gemeinsamen Gruppen gefunden." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Nicht dein Ding? Diese Funktion kannst du jederzeit deaktivieren." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Benachrichtigungsüberschreibungen" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Benachrichtige Benutzer mit dieser Rolle, die diesen Kanal sehen dürfen msgid "now" msgstr "jetzt" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Jetzt" @@ -13090,7 +13094,7 @@ msgstr "Beim Klick" msgid "on:" msgstr "an:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Nach der Löschung werden die Anwendung und ihre Zugangsdaten dauerhaft entfernt." @@ -13252,7 +13256,7 @@ msgstr "Nur DMs öffnen" msgid "Open Fluxer" msgstr "Fluxer öffnen" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Bild in voller Ansicht öffnen" @@ -13368,7 +13372,7 @@ msgstr "Visionary-Community öffnen" msgid "Opening..." msgstr "Wird geöffnet..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Ursprüngliche Nachricht wurde gelöscht" msgid "Other" msgstr "Andere" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Andere Geräte" @@ -13501,7 +13505,7 @@ msgstr "Status eines nicht beanspruchten Kontos überschreiben" msgid "Override unread gift inventory status" msgstr "Status ungelesener Geschenkbestände überschreiben" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Überblick" @@ -13695,7 +13699,7 @@ msgstr "Berechtigungen" msgid "Permissions granted" msgstr "Berechtigungen erteilt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Persönliche Notizen" @@ -13868,12 +13872,12 @@ msgstr "Abspielen" msgid "Play animated emojis" msgstr "Animierte Emojis abspielen" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Audio abspielen" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Bitte füge den Link zur gemeldeten Nachricht ein." msgid "Please provide an email address." msgstr "Bitte gib eine E-Mail-Adresse an." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Bitte versuche es erneut oder kehre zur Liste der Anwendungen zurück." @@ -13989,7 +13993,7 @@ msgstr "Plutonium-Vorteile" msgid "Plutonium Subscription" msgstr "Plutonium-Abonnement" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Datenschutz-Dashboard" msgid "Privacy Policy" msgstr "Datenschutzrichtlinie" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Diesen Sticker aus Speicher und CDN entfernen" msgid "Push Notification Inactive Timeout" msgstr "Push-Benachrichtigungs-Timeout bei Inaktivität" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push-Benachrichtigungen" @@ -14412,7 +14416,7 @@ msgstr "Reaktionsinteraktion deaktiviert" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaktionen" @@ -14583,7 +14587,7 @@ msgstr "Push-Abonnement aktualisieren" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Neu generieren" @@ -14591,19 +14595,19 @@ msgstr "Neu generieren" msgid "Regenerate backup codes" msgstr "Backup-Codes neu generieren" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Bot-Token neu generieren?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Client-Geheimnis neu generieren?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Das Neu-generieren macht das aktuelle Geheimnis ungültig. Aktualisiere alle Codes, die den alten Wert nutzen." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Das Neu-generieren macht das aktuelle Token ungültig. Aktualisiere alle Codes, die den alten Wert nutzen." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Filter entfernen" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Filter entfernen" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Meldung erfolgreich gesendet. Unser Sicherheitsteam prüft sie in Kürze #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Benutzer melden" @@ -15105,7 +15109,7 @@ msgstr "Angeforderte Bereiche" msgid "Require 2FA for moderation actions" msgstr "2FA für Moderationsaktionen erforderlich" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Doppelklick erforderlich, um Sprachkanälen beizutreten" @@ -15144,7 +15148,7 @@ msgstr "Erfordert alles aus Mittel sowie eine mindestens 10 Minuten bestehende S msgid "Requires Plutonium" msgstr "Erfordert Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Nachricht neu planen" @@ -15290,11 +15294,11 @@ msgstr "Erneut abonnieren" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Erneut versuchen" @@ -15359,7 +15363,7 @@ msgstr "Widerrufen" msgid "Revoke Ban" msgstr "Sperre aufheben" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Gerät widerrufen" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} Sekunden zurückspulen" msgid "Right" msgstr "Rechts" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Rechtsbündig" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Mitglieder durchsuchen…" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Nachrichten durchsuchen" @@ -15834,13 +15838,13 @@ msgstr "Rollen oder Mitglieder durchsuchen…" msgid "Search saved media" msgstr "Gespeicherte Medien durchsuchen" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Suchumfang" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Suchumfang: {0}" @@ -15857,7 +15861,7 @@ msgstr "Einstellungen durchsuchen…" msgid "Search stickers..." msgstr "Sticker durchsuchen…" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Vorschläge durchsuchen" @@ -15938,7 +15942,7 @@ msgstr "Sicherheitsschlüssel / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verifizierung des Sicherheitsschlüssels fehlgeschlagen. Bitte versuche es erneut." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Sieh dir alle Geräte an, die derzeit in deinem Konto angemeldet sind. Hebe alle Sitzungen auf, die du nicht erkennst." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Konto wählen" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Alles auswählen" @@ -16040,7 +16044,7 @@ msgstr "Wähle die Mediengröße für eingebettete Inhalte aus Links" msgid "Select media size for uploaded attachments" msgstr "Wähle die Mediengröße für hochgeladene Anhänge" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Gegenseitige Ansicht auswählen" @@ -16151,9 +16155,9 @@ msgstr "Code senden" msgid "Send Code" msgstr "Code senden" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Freundschaftsanfrage senden" @@ -16170,7 +16174,7 @@ msgstr "Nachricht senden · Rechtsklick zum Planen" msgid "Send Message Disabled" msgstr "Nachricht senden deaktiviert" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Nachrichten senden" @@ -16624,7 +16628,7 @@ msgstr "Geschenk-Schaltfläche anzeigen" msgid "Show inline images and videos" msgstr "Inline-Bilder und -Videos anzeigen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Nur den Tippindikator ohne Avatare anzeigen" @@ -16788,11 +16792,11 @@ msgstr "Das Geschenk als bereits eingelöst anzeigen" msgid "Show this role separately" msgstr "Diese Rolle separat anzeigen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Tippindikator mit Benutzeravataren in der Kanalliste anzeigen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Tippindikator im ausgewählten Kanal anzeigen" @@ -17151,7 +17155,7 @@ msgstr "Spanisch (Spanien)" msgid "Speak" msgstr "Sprechen" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Nachricht sprechen" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Freigabe starten" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Videoanruf starten" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Sprachanruf starten" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Sticker-Dichte" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Sticker-Pack" @@ -17427,7 +17431,7 @@ msgstr "Klingeln stoppen" msgid "Stop Sharing" msgstr "Freigabe stoppen" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Sprechen stoppen" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Einbettungen unterdrücken" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Textkanal" @@ -18028,10 +18032,10 @@ msgstr "Für diese Aktion ist eine Verifizierung erforderlich, um fortzufahren." msgid "This application" msgstr "Diese Anwendung" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Dieser Anhang ist abgelaufen" @@ -18039,7 +18043,7 @@ msgstr "Dieser Anhang ist abgelaufen" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Dieser Bot fordert die Administratorberechtigung an. Wir empfehlen nicht, diese für Produktions-Apps zu gewähren, es sei denn, du vertraust dem Entwickler vollständig. Bitte bitte sie, eine reduzierte Berechtigungsliste anzufordern. Schließe diese Seite, wenn du unsicher bist." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Das kann nicht rückgängig gemacht werden. Das Entfernen der Anwendung löscht auch ihren Bot." @@ -18101,7 +18105,7 @@ msgstr "Diese Community hat die maximale Mitgliederzahl erreicht und nimmt derze msgid "This community has temporarily disabled invites." msgstr "Diese Community hat Einladungen vorübergehend deaktiviert." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Diese Community hat Einladungen vorübergehend deaktiviert. Probiere es später erneut." @@ -18178,7 +18182,7 @@ msgstr "Diese Einladung kann unbegrenzt genutzt werden." msgid "This invite link never expires." msgstr "Dieser Einladungslink läuft niemals ab." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Dies ist der Anfang von <0>{displayName}. Füge Freunde hinzu, um eine Unterhaltung zu starten!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Dies ist der Beginn deiner Direktnachrichten-Historie mit <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Dies war eine @silent-Nachricht." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Das wird einen Riss im Raum-Zeit-Kontinuum erzeugen und kann nicht rück msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Dadurch werden alle favoritenbezogenen Elemente der Benutzeroberfläche einschließlich Schaltflächen und Menüpunkte ausgeblendet. Deine bestehenden Favoriten bleiben erhalten und können jederzeit unter <0>Benutzereinstellungen → Darstellung → Favoriten wieder aktiviert werden." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Dadurch wird die bestehende geplante Nachricht geändert, anstatt sofort gesendet zu werden." @@ -18387,8 +18391,8 @@ msgstr "Dadurch wird die gespeicherte Sitzung für dieses Konto entfernt." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Dies ersetzt dein aktuelles benutzerdefiniertes Design. Du kannst es später in deinen Benutzereinstellungen bearbeiten." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Vorschaubild für {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts erscheinen in der oberen Bildschirmmitte." msgid "today" msgstr "heute" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Heute" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Versuche es erneut" @@ -18737,7 +18741,7 @@ msgstr "Versuche einen anderen Namen oder überprüfe deine Rechtschreibung." msgid "Try another search term" msgstr "Versuche einen anderen Suchbegriff" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Bitte um eine neue Einladung." @@ -18864,7 +18868,7 @@ msgstr "Schriftgröße" msgid "Type your message here..." msgstr "Gib hier deine Nachricht ein..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Tippereignisse" @@ -18877,11 +18881,11 @@ msgstr "Schreibanzeige" msgid "Typing Indicator" msgstr "Schreibanzeige" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Schreibanzeige + Avatare" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Nur Schreibanzeige" @@ -18961,11 +18965,11 @@ msgstr "Anruf konnte nicht gestartet werden" msgid "Unable to start email change" msgstr "E-Mail-Änderung konnte nicht gestartet werden" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Für alle nicht verfügbar" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Nur für Personal verfügbar" @@ -18978,7 +18982,7 @@ msgstr "Nur für Personal verfügbar" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Entsperre diesen Nutzer, bevor du eine Freundschaftsanfrage sendest." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Nutzer entsperren" @@ -19165,7 +19169,7 @@ msgstr "Unbekannter Fehler" msgid "Unknown Gift" msgstr "Unbekanntes Geschenk" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Unbekannte Einladung" @@ -19205,11 +19209,11 @@ msgstr "unbekannte-rolle" msgid "Unlimited" msgstr "Unbegrenzt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Unbegrenzte Emojis" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Unbegrenzte Sticker" @@ -19254,7 +19258,7 @@ msgstr "Schalte Sticker in DMs mit Plutonium frei" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Kategorie entstummschalten" msgid "Unmute Channel" msgstr "Kanal entstummschalten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Favoriten entstummschalten" msgid "Unmute User" msgstr "Nutzer entstummschalten" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Unbenannt" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Bis ich es ändere" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Unbestätigte E-Mail" msgid "Up to 4K/60fps" msgstr "Bis zu 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Aktualisieren" @@ -19629,7 +19633,7 @@ msgstr "Eingangssound hochladen" msgid "Upload Failed" msgstr "Upload fehlgeschlagen" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Datei hochladen" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Benutzer hat Kanal gewechselt" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Benutzerprofil" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Benutzerprofil: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Werte" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity-URL" @@ -20059,14 +20063,14 @@ msgstr "Vor dem Anzeigen deiner Backup-Codes kann eine Verifizierung erforderlic #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verifizierte Community" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verifizierte Gilde" @@ -20167,8 +20171,8 @@ msgstr "Videoqualität" msgid "Video Settings" msgstr "Videoeinstellungen" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Video-Vorschaubild" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Codes anzeigen" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Community-Profil anzeigen" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Geschenkbestand anzeigen" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Globales Profil anzeigen" @@ -20329,7 +20333,7 @@ msgstr "Auswahl der Verstoßkategorie" msgid "Violent or Graphic Content" msgstr "Gewalttätige oder grafische Inhalte" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-Stimme" @@ -20341,7 +20345,7 @@ msgstr "Sichtbare Schaltflächen" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Sprachanrufe" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Sprachkanal" @@ -20442,7 +20446,7 @@ msgstr "Sprachkanal" msgid "Voice Channel Full" msgstr "Sprachkanal voll" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Beitrittsverhalten für Sprachkanäle" @@ -20559,7 +20563,7 @@ msgstr "Wir konnten dieser Community derzeit nicht beitreten." msgid "We couldn't load the invites at this time." msgstr "Wir konnten die Einladungen derzeit nicht laden." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Diese Anwendung konnte nicht geladen werden" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Wir haben Probleme, eine Verbindung zu Fluxers Servern herzustellen. Dies könnte ein temporäres Netzwerkproblem oder eine geplante Wartung sein." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Wir haben Probleme, eine Verbindung zum Raum-Zeit-Kontinuum herzustellen. Bitte überprüfe deine Verbindung und versuche es erneut." @@ -20759,7 +20763,7 @@ msgstr "Wochenendkrieger" msgid "Welcome and system messages will appear here." msgstr "Begrüßungs- und Systemnachrichten erscheinen hier." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Willkommen zurück" @@ -20820,7 +20824,7 @@ msgstr "Was geht?" msgid "What's included in your export:" msgstr "Was in deinem Export enthalten ist:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Wenn deaktiviert (Standard), erscheinen Tippanzeigen nicht im Kanal, den du gerade ansiehst." @@ -20836,7 +20840,7 @@ msgstr "Wenn aktiviert, hält ein kurzer Tastendruck auf dein Push-to-Talk-Kürz msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Wenn aktiviert, werden Debug-Menüs in der ganzen App sichtbar, mit denen du rohe JSON-Objekte interner Datenstrukturen wie Nachrichten, Kanäle, Benutzer und Communities inspizieren und kopieren kannst. Enthält auch Werkzeuge zur Fehlersuche für die Fluxer Markdown-Parser-Leistung und AST für jede Nachricht." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Wenn aktiviert, werden Shortcut-Abzeichen in Tooltipps ausgeblendet." @@ -20868,7 +20872,7 @@ msgstr "Wenn aktiviert, verwendet die App die Ländereinstellung deines Computer msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Wenn aktiviert, kannst du Kanäle favorisieren und sie erscheinen im Favoriten-Bereich. Wenn deaktiviert, werden alle favoritenbezogenen UI-Elemente (Schaltflächen, Menüpunkte) verborgen. Deine bestehenden Favoriten bleiben erhalten." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Wenn aktiviert, musst du Sprachkanäle doppelklicken, um beizutreten. Wenn deaktiviert (Standard), tritt ein einzelner Klick sofort bei." @@ -20970,7 +20974,7 @@ msgstr "Jährlich {yearlyPrice}" msgid "yesterday" msgstr "gestern" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Gestern" @@ -21013,7 +21017,7 @@ msgstr "Du bearbeitest dein Community-Profil. Dieses Profil ist nur in dieser Co msgid "You are in slowmode. Please wait before sending another message." msgstr "Du bist im Slowmode. Bitte warte, bevor du eine weitere Nachricht sendest." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Du bist jetzt Entwickler!" @@ -21113,7 +21117,7 @@ msgstr "Du kannst Links und Markdown verwenden, um deinen Text zu formatieren. M msgid "You can't add new reactions while you're on timeout." msgstr "Du kannst während deiner Auszeit keine neuen Reaktionen hinzufügen." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Du kannst dich nicht selbst befreunden" @@ -21128,7 +21132,7 @@ msgstr "Du kannst mit Reaktionen in Suchergebnissen nicht interagieren, da es da msgid "You can't join while you're on timeout." msgstr "Du kannst während deiner Auszeit nicht beitreten." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Du kannst dich nicht selbst stumm schalten, weil dich ein Moderator stum 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Du hast keine Berechtigung, in diesem Kanal Nachrichten zu senden." @@ -21439,7 +21443,7 @@ msgstr "Du erscheinst als offline." msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Im nächsten Bildschirm legst du fest, welche Berechtigungen der Bot erhält." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Du musst dich auf allen ausgeloggten Geräten erneut anmelden." @@ -21508,7 +21512,7 @@ msgstr "Du bist im Sprachkanal" msgid "You're sending messages too quickly" msgstr "Du sendest Nachrichten zu schnell" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 f2eb6b0a..238b1b72 100644 --- a/fluxer_app/src/locales/el/messages.po +++ b/fluxer_app/src/locales/el/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# στοιχείο} other {# στοιχεία}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Μέλος} other {# Μέλη}}" @@ -566,18 +566,18 @@ msgstr "Οι εικόνες {label} δεν μπορούν να είναι animat #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Μέλος" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Μέλη" @@ -612,11 +612,11 @@ msgstr "{minutes} λεπτά και {seconds} δευτερόλεπτα" msgid "{minutes} minutes and 1 second" msgstr "{minutes} λεπτά και 1 δευτερόλεπτο" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} αμοιβαία κοινότητα" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} αμοιβαίες κοινότητες" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} συμμετέχοντες στην κλήση" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Σε σύνδεση" @@ -650,15 +650,15 @@ msgstr "Απομένουν {remaining} χαρακτήρες" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Απομένουν {remaining} χαρακτήρες. Πάρε Plutonium για να γράψεις έως {premiumMaxLength} χαρακτήρες." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Μέλος" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Μέλη" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Σε σύνδεση" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "αναφορές @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Χρώμα έμφασης" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Αποδοχή" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Αποδοχή αιτήματος φιλίας" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Αποδοχή πρόσκλησης" @@ -1364,8 +1364,8 @@ msgstr "Αποδοχή Πρόσκλησης" msgid "Accept the incoming call" msgstr "Αποδοχή εισερχόμενης κλήσης" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Η αποδοχή αυτής της πρόσκλησης εγκαθιστά αυτόματα το πακέτο." @@ -1594,7 +1594,7 @@ msgstr "Προσθήκη Αγαπημένων Καναλιών" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Επιτράπηκε το {0}." msgid "Already have an account?" msgstr "Έχετε ήδη λογαριασμό;" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Έχετε ήδη γίνει μέλος" @@ -2191,7 +2191,7 @@ msgstr "Κινούμενες εικόνες προφίλ & πανό" msgid "Animated Avatars Require Plutonium" msgstr "Οι κινούμενες εικόνες προφίλ απαιτούν Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Κινούμενο πανό" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Κινούμενα emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Κινούμενο GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Βίντεο κινούμενου GIF" @@ -2219,7 +2219,7 @@ msgstr "Βίντεο κινούμενου GIF" msgid "Animated GIF Video" msgstr "Βίντεο κινούμενου GIF" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Κινούμενο εικονίδιο" @@ -2277,7 +2277,7 @@ msgstr "Οποιοσδήποτε μπορεί να αναφέρει αυτόν msgid "API Endpoint" msgstr "Τερματικό API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Πληροφορίες εφαρμογής" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Όνομα εφαρμογής" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Απαιτείται όνομα εφαρμογής" @@ -2554,7 +2553,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να ανακαλέσε msgid "Are you sure you want to revoke this invite? This action cannot be undone." msgstr "Είστε σίγουροι ότι θέλετε να ανακαλέσετε αυτή την πρόσκληση; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί." -#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "Είστε σίγουροι ότι θέλετε να καταργήσετε όλα τα ενσωματώματα συνδέσμων σε αυτό το μήνυμα; Αυτή η ενέργεια θα κρύψει όλα τα ενσωματώματα από αυτό το μήνυμα." @@ -2603,7 +2602,7 @@ msgstr "Συνημμένο {0}" msgid "Attachment Actions" msgstr "Ενέργειες συνημμένου" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Το συνημμένο έληξε" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Αυτόματη συμπλήρωση" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Αυτόματο" @@ -2859,7 +2858,7 @@ msgstr "Πίσω" msgid "Back to Applications" msgstr "Επιστροφή στις Εφαρμογές" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Επιστροφή στη λίστα" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Επιστροφή στη σύνδεση" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Επιστροφή στις παρακάμψεις" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Επιστροφή στους Ρόλους" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Επιστροφή στις Ρυθμίσεις" @@ -3003,7 +3002,7 @@ msgstr "Αποκλεισμένοι χρήστες" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Πανό" @@ -3096,7 +3095,7 @@ msgstr "Όριο χαρακτήρων για βιογραφικό" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Ζητήθηκε πεδίο bot" msgid "Bot token" msgstr "Διακριτικό bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Το διακριτικό bot δημιουργήθηκε ξανά. Ενημερώστε κάθε κώδικα που χρησιμοποιεί το παλιό διακριτικό." @@ -3435,7 +3434,7 @@ msgstr "Ρυθμίσεις κάμερας" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Ρυθμίσεις κάμερας" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Ρυθμίσεις κάμερας" msgid "Cancel" msgstr "Ακύρωση" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Ακύρωση αιτήματος φιλίας" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Προσοχή! Έχετε μη αποθηκευμένες αλλαγές." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Κατηγορία" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Όνομα κατηγορίας" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Ρυθμίσεις κατηγορίας" @@ -3617,7 +3616,7 @@ msgstr "Προσοχή" msgid "Center" msgstr "Κέντρο" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Κεντραρισμένο" @@ -3765,7 +3764,7 @@ msgstr "Η ρυθμόμεση άλλαξε σε {0}." msgid "Changed the voice region to {0}." msgstr "Η περιοχή φωνής άλλαξε σε {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "κανάλι" @@ -3828,11 +3827,11 @@ msgstr "Το ID του καναλιού αντιγράφηκε στο πρόχε msgid "Channel link copied" msgstr "Ο σύνδεσμος του καναλιού αντιγράφηκε" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Λειτουργία δείκτη πληκτρολόγησης λίστας καναλιών" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Δείκτες πληκτρολόγησης λίστας καναλιών" @@ -3891,7 +3890,7 @@ msgstr "Το κανάλι αφαιρέθηκε από τα αγαπημένα" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Ρυθμίσεις καναλιού" @@ -4052,7 +4051,7 @@ msgstr "Επιλέξτε πώς εμφανίζονται οι ώρες σε όλ msgid "Choose how typing indicators appear in the channel list" msgstr "Επιλέξτε πώς εμφανίζονται οι δείκτες πληκτρολόγησης στη λίστα καναλιών" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Επιλέξτε πώς εμφανίζονται οι δείκτες πληκτρολόγησης στη λίστα καναλιών όταν κάποιος γράφει σε ένα κανάλι." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "ΔClaim το λογαριασμό σου για να εξαργυρώσεις αυτό το δώρο." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "ΔClaim το λογαριασμό σου για να στείλεις αιτήματα φιλίας." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Καθαρισμός Δικαιωμάτων" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Καθαρισμός αναζήτησης" msgid "Clear search input" msgstr "Καθαρισμός πεδίου αναζήτησης" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Καθαρισμός επιλογής" @@ -4314,7 +4313,7 @@ msgstr "Κάντε κλικ στο εικονίδιο μεταφόρτωσης msgid "Click the verification link in the email." msgstr "Κάντε κλικ στον σύνδεσμο επαλήθευσης στο email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Κάντε κλικ για να προσθέσετε σημείωση" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Κάντε κλικ για να διεκδικήσετε το δώρο σας!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Κάντε κλικ για αντιγραφή" @@ -4388,7 +4387,7 @@ msgstr "Κάντε κλικ για να δείτε όλες τις αντιδρ msgid "Client secret" msgstr "Μυστικό πελάτη" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Το μυστικό πελάτη ξαναδημιουργήθηκε. Ενημερώστε οποιονδήποτε κώδικα χρησιμοποιεί το παλιό μυστικό." @@ -4649,8 +4648,8 @@ msgstr "Η κοινότητα προωθεί μίσος βασισμένο σε msgid "Community promotes or facilitates illegal activities" msgstr "Η κοινότητα προωθεί ή διευκολύνει παράνομες δραστηριότητες" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Μενού περιεχομένου" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Τα μενού περιεχομένου ανοίγουν με αριστερό κλικ (στα κουμπιά) ή δεξί κλικ (στα υπόλοιπα στοιχεία). Αυτό δείχνει διάφορα στοιχεία μενού όπως πλαίσια ελέγχου, ραδιοκουμπιά, ρυθμιστικά και υπομενού." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Ελέγξτε πώς προβάλλονται οι σύνδεσμοι msgid "Control how you join voice channels" msgstr "Έλεγχος του τρόπου σύνδεσης σε φωνητικά κανάλια" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Ελέγξτε πώς εισέρχεστε σε φωνητικά κανάλια στις κοινότητες." @@ -5012,7 +5011,7 @@ msgstr "Έλεγχος κινούμενων αυτοκόλλητων" msgid "Control the visibility of favorites throughout the app." msgstr "Ελέγξτε την ορατότητα των αγαπημένων σε όλη την εφαρμογή." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Ελέγξτε αν εμφανίζονται υπενθυμίσεις συντομεύσεων πληκτρολογίου μέσα στα επεξηγηματικά κείμενα." @@ -5071,7 +5070,7 @@ msgstr "Αντιγράφηκε" msgid "Copied to clipboard" msgstr "Αντιγράφηκε στο πρόχειρο" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Η διεύθυνση URL αντιγράφηκε στο πρόχειρο" @@ -5149,7 +5148,7 @@ msgstr "Αντιγραφή συνδέσμου αρχείου" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Αντιγραφή FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Αντιγραφή FluxerTag" msgid "Copy GIF" msgstr "Αντιγραφή GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Αντιγραφή αναγνωριστικού κοινότητας" @@ -5222,7 +5221,7 @@ msgstr "Αντιγραφή κειμένου" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Ζεστό" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Δημιουργία" @@ -5331,14 +5330,14 @@ msgstr "Δημιουργήστε και διαχειριστείτε εφαρμ msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Δημιουργήστε και μοιραστείτε προσαρμοσμένα emoji και πακέτα αυτοκόλλητων με το Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Δημιουργία Εφαρμογής" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Δημιουργία Εφαρμογής" msgid "Create Category" msgstr "Δημιουργία Κατηγορίας" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Δημιουργήθηκε στις {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Δημιουργήθηκε από {0}" @@ -5569,7 +5568,7 @@ msgstr "Η περικομμένη εικόνα είναι πολύ μεγάλη. msgid "Current Community" msgstr "Τρέχουσα κοινότητα" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Τρέχουσα συσκευή" @@ -5606,7 +5605,7 @@ msgstr "Είναι κολλημένο στο 1885, εμφανιζόμενο ως #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Τώρα: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Δευτερεύουσα ενέργεια κινδύνου" msgid "Danger secondary clicked!" msgstr "Η δευτερεύουσα ενέργεια κινδύνου πατήθηκε!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Ζώνη κινδύνου" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "Απενεργοποιείται ως προεπιλογή σε κινητές συσκευές για εξοικονόμηση μπαταρίας και δεδομένων." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Διαγραφή όλων των μηνυμάτων μου" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Διαγραφή εφαρμογής" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Διαγραφή συνημμένου" @@ -6063,7 +6062,7 @@ msgstr "Διαγραφή συνημμένου" msgid "Delete Attachment" msgstr "Διαγραφή συνημμένου" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Διαγραφή κατηγορίας" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Διαγραφή καναλιού" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Διαγραφή μέσου" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Διαγραφή μηνύματος" @@ -6215,7 +6214,7 @@ msgstr "Συμπαγές" msgid "Dense layout" msgstr "Συμπαγής διάταξη" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Αναπτυγμένο" @@ -6281,7 +6280,7 @@ msgstr "Κανάλι προορισμού" msgid "Destination URL:" msgstr "Διεύθυνση URL προορισμού:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Αποσπώμενη σημαία" @@ -6362,7 +6361,7 @@ msgstr "Διαφορετικά μεγέθη (Υποστηρίζεται κατά msgid "Different Sizes & Member Counts" msgstr "Διαφορετικά μεγέθη και αριθμός μελών" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Άμεσο μήνυμα" @@ -6541,7 +6540,7 @@ msgstr "Η απενεργοποίηση του λογαριασμού θα σε msgid "Disallow @mention." msgstr "Απαγόρευση @αναφοράς." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Απαγόρευση μη διεκδικημένων λογαριασμών" @@ -6747,7 +6746,7 @@ msgstr "Μην εμφανίζεις προεπισκοπήσεις μηνυμά msgid "Don't show this again" msgstr "Μην το εμφανίσεις ξανά" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Μην εμφανίζεις δείκτες πληκτρολόγησης στη λίστα καναλιών" @@ -6760,7 +6759,7 @@ msgstr "Μην εμφανίζεις δείκτες πληκτρολόγησης msgid "Done" msgstr "Έτοιμο" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Επεξεργασία κατηγορίας" msgid "Edit Channel" msgstr "Επεξεργασία καναλιού" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Επεξεργασία υπερκαλύψεων για ρόλους και μέλη σε αυτό το κανάλι." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Ενσωμάτωση splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Οι εικόνες splash ενσωμάτωσης δεν μπορούν να είναι κινούμενες. Χρησιμοποίησε JPEG, PNG ή WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Ενσωματωμένος ήχος" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Τα ονόματα emoji πρέπει να έχουν τουλάχιστον 2 χαρακτήρες και να περιέχουν μόνο αλφαριθμητικούς χαρακτήρες και κάτω παύλες. Επιτρεπτοί τύποι αρχείων: JPEG, PNG, WebP, GIF. Συμπιέζουμε τις εικόνες στα 128x128 pixels. Μέγιστο μέγεθος: {0} KB ανά emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Πακέτο emoji" @@ -7473,7 +7472,7 @@ msgstr "Εισαγωγή τηλεφώνου" msgid "Enter picture-in-picture" msgstr "Εισαγωγή σε picture-in-picture" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Εισαγωγή λειτουργίας επιλογής" @@ -7536,7 +7535,7 @@ msgstr "Εισάγετε το νέο email που θέλετε να χρησιμ msgid "Enter the SMS code you received." msgstr "Εισάγετε τον κωδικό SMS που λάβατε." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "πατήστε enter για <0><1>αποθήκευση" @@ -7604,7 +7603,7 @@ msgstr "Σφάλμα απόδοσης LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Το πλήκτρο Escape βγαίνει από τη λειτουργία πληκτρολόγησης" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "πατήστε escape για <0><1>ακύρωση" @@ -7667,7 +7666,7 @@ msgstr "Έξοδος από picture-in-picture" msgid "Exit Preview" msgstr "Έξοδος προεπισκόπησης" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Έξοδος λειτουργίας επιλογής" @@ -7701,7 +7700,7 @@ msgstr "Έληξε (εντός 30 ημερών)" msgid "Expired {absolute}" msgstr "Έληξε {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Έληξε μεταξύ {earliest} και {latest}" @@ -7709,7 +7708,7 @@ msgstr "Έληξε μεταξύ {earliest} και {latest}" msgid "Expired on {date}" msgstr "Έληξε στις {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Έληξε στις {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Λήγει" msgid "Expires {absolute} ({relativeText})" msgstr "Λήγει {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Λήγει μεταξύ {earliest} και {latest}" @@ -7730,7 +7729,7 @@ msgstr "Λήγει μεταξύ {earliest} και {latest}" msgid "Expires on {date}" msgstr "Λήγει στις {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Λήγει στις {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Τα πακέτα εκφράσεων είναι δυνατότητα τ msgid "Expression picker categories" msgstr "Κατηγορίες επιλογέα εκφράσεων" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Καθαρισμός εκφράσεων" @@ -7839,10 +7838,6 @@ msgstr "Αποτυχία αντιγραφής στο πρόχειρο" msgid "Failed to copy URL" msgstr "Αποτυχία αντιγραφής URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Αποτυχία δημιουργίας εφαρμογής. Ελέγξτε τα στοιχεία σας και δοκιμάστε ξανά." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Αποτυχία δημιουργίας ρόλου" @@ -8100,7 +8095,7 @@ msgstr "Αποτυχία άρσης αποκλεισμού. Παρακαλώ δ msgid "Failed to revoke invite" msgstr "Αποτυχία ανάκλησης πρόσκλησης" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Αποτυχία περιστροφής. Παρακαλώ δοκιμάστε ξανά." @@ -8413,7 +8408,7 @@ msgstr "Φίλοι Γυμναστικής" msgid "Flags" msgstr "Σημαίες" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Ευέλικτα ονόματα κειμενικών καναλιών" @@ -8577,7 +8572,7 @@ msgstr "Φίλοι του Φαγητού" msgid "For 1 hour" msgstr "Για 1 ώρα" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Για 1 Ώρα" msgid "For 15 minutes" msgstr "Για 15 λεπτά" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Για 15 Λεπτά" msgid "For 24 hours" msgstr "Για 24 ώρες" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Για 3 ημέρες" msgid "For 3 hours" msgstr "Για 3 ώρες" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Για 3 Ώρες" msgid "For 8 hours" msgstr "Για 8 ώρες" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Ξέχνα τις συνδρομές" msgid "Forgot Password" msgstr "Ξεχάσατε τον κωδικό;" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Ξεχάσατε τον κωδικό σας;" @@ -8795,7 +8790,7 @@ msgstr "Προώθηση κατά {DEFAULT_SEEK_AMOUNT} δευτερόλεπτα msgid "Forward Message" msgstr "Προώθηση Μηνύματος" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Προωθήθηκε" @@ -9065,7 +9060,7 @@ msgstr "Πάρτε την εφαρμογή Fluxer για υπολογιστή γ #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Επιστροφή στο προηγούμενο εστιασμένο κ msgid "Go forward in navigation history" msgstr "Προχώρηση στο ιστορικό πλοήγησης" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Μετάβαση στην Κοινότητα" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Προσκλήσεις ομάδας" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Μήνυμα ομάδας" @@ -9548,7 +9543,7 @@ msgstr "Γεια σου, {username}, καλώς ήρθες! Μπορείς να msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Γεια σου, {username}! Όταν φτάσει τα 88 μίλια/ώρα, θα δεις σοβαρά πράγματα!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Κρυφό" @@ -9569,7 +9564,7 @@ msgstr "Απόκρυψη Αγαπημένων" msgid "Hide Join Messages" msgstr "Απόκρυψη μηνυμάτων εισόδου" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Απόκρυψη υποδείξεων πληκτρολογίου στα tooltips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Απόκρυψη απενεργοποιημένων καναλιών" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Αν θέλετε πρώτα να εξάγετε τα δεδομένα σας ή να διαγράψετε τα μηνύματά σας, επισκεφθείτε το στοιχείο Πίνακας ιδιωτικότητας στις Ρυθμίσεις χρήστη πριν προχωρήσετε." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "εικόνα" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Είσοδοι με εικονίδια" msgid "Insert emoji" msgstr "Εισαγωγή emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Εγκατάσταση πακέτου emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Εγκατάσταση πακέτου αυτοκόλλητων" @@ -10153,7 +10148,7 @@ msgstr "Εγκαταστάθηκε στις {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Η εγκατάσταση πακέτων emoji και αυτοκόλλητων απαιτεί premium συνδρομή." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Άμεσες προσκλήσεις" @@ -10286,7 +10281,7 @@ msgstr "Ρυθμίσεις συνδέσμου πρόσκλησης" msgid "Invite Links" msgstr "Σύνδεσμοι πρόσκλησης" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Παράθυρο πρόσκλησης" msgid "Invite modal preview" msgstr "Προεπισκόπηση παραθύρου πρόσκλησης" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Η πρόσκληση στάλθηκε για το {0}" msgid "Invite sent to {guildName}" msgstr "Πρόσκληση στάλθηκε στο {guildName}." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Σελίδα πρόσκλησης" @@ -10354,7 +10349,7 @@ msgstr "Πρόσκληση στο {0}" msgid "Invite to Community" msgstr "Πρόσκληση στην Κοινότητα" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Η πρόσκληση δεν είναι διαθέσιμη" @@ -10369,12 +10364,12 @@ msgstr "Προσκλήθηκε από {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Προσκλήθηκε από {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Προσκλήθηκε από {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Οι προσκλήσεις έχουν παγώσει προσωρινά msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Οι προσκλήσεις είναι κλειδωμένες για κοινότητες προεπισκόπησης. Ιδιωτικοποιήστε τον λογαριασμό σας ορίζοντας email και κωδικό για να ενεργοποιήσετε τις προσκλήσεις." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Οι προσκλήσεις απενεργοποιήθηκαν" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Οι προσκλήσεις απενεργοποιήθηκαν" @@ -10482,13 +10477,13 @@ msgstr "Μπες σε μια κοινότητα με αυτοκόλλητα γι msgid "Join call" msgstr "Συμμετοχή σε κλήση" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Εγγραφή στην κοινότητα" @@ -10497,15 +10492,23 @@ msgstr "Εγγραφή στην κοινότητα" msgid "Join community form" msgstr "Φόρμα συμμετοχής κοινότητας" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Είστε έτοιμοι για το Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Ελάτε στο Fluxer HQ για να μιλήσετε με την ομάδα και να μένετε ενημερωμένοι για τα τελευταία!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Συμμετοχή σε ομάδα" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Συμμετοχή σε ομαδικό DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Ειδοποιήσεις συμμετοχής" @@ -10620,7 +10623,7 @@ msgstr "Μετάβαση στο Παλαιότερο Αδιάβαστο Μήνυ msgid "Jump to page" msgstr "Μετάβαση στη σελίδα" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Μετάβαση στο Τρέχον" @@ -10690,7 +10693,7 @@ msgstr "Συντομεύσεις πληκτρολογίου" msgid "Keyboard" msgstr "Πληκτρολόγιο" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Υποδείξεις πληκτρολογίου" @@ -10815,7 +10818,7 @@ msgstr "Μάθε για το Plutonium" msgid "Leave blank for a random username" msgstr "Άφησέ το κενό για τυχαίο όνομα χρήστη" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Φεύγεις τόσο νωρίς;" msgid "Left" msgstr "Έφυγε" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Στοίχιση αριστερά" @@ -10945,7 +10948,7 @@ msgstr "σύνδεσμος" msgid "Link" msgstr "Σύνδεσμος" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Σύνδεση καναλιού" @@ -11027,7 +11030,7 @@ msgstr "Φόρτωση αποκλεισμών..." msgid "Loading communities..." msgstr "Φόρτωση κοινοτήτων..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Φόρτωση εικόνας" @@ -11039,8 +11042,8 @@ msgstr "Φόρτωση προσκλήσεων..." msgid "Loading more..." msgstr "Φόρτωση περισσότερων..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Δείκτης φόρτωσης" @@ -11064,7 +11067,7 @@ msgstr "Φόρτωση θέματος..." msgid "Loading verification methods..." msgstr "Φόρτωση μεθόδων επαλήθευσης..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Φόρτωση: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Τοπική Σίγαση" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Συνδεθείτε μέσω του προγράμματος περιή msgid "Log in via browser" msgstr "Σύνδεση μέσω προγράμματος περιήγησης" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Σύνδεση μέσω προγράμματος περιήγησης ή προσαρμοσμένης εγκατάστασης" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Αποσύνδεση" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Αποσύνδεση {0} συσκευών" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Αποσύνδεση από {sessionCount} συσκευές" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Αποσύνδεση 1 συσκευής" @@ -11141,7 +11144,7 @@ msgstr "Αποσύνδεση από όλες τις συσκευές" msgid "Log out all other devices" msgstr "Αποσύνδεση από όλες τις άλλες συσκευές" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Αποσύνδεση από όλες τις άλλες συσκευές" @@ -11181,7 +11184,7 @@ msgstr "Λόρεμ ίπσουμ δολόρ σιτ αμέτ" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Λόρεμ ίπσουμ δολόρ σιτ αμέτ, κονσέκτετούρ αδίπισκινγκ ελίτ. Σεντ ντο είυσμοντ τέμπορ ιτσιδιντ ούτ λαμπορέ ετ δολόρε μάγνα αλίουα." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Σήμανση ως 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "αναφορές:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "αναφορές:" msgid "Message" msgstr "Μήνυμα" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Μήνυμα " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Μήνυμα @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Μήνυμα #" @@ -11838,7 +11842,7 @@ msgstr "Μηνύματα & Μέσα" msgid "Messages Deleted" msgstr "Μηνύματα Διαγράφηκαν" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Τα μηνύματα απέτυχαν να φορτώσουν" @@ -12016,7 +12020,7 @@ msgstr "Περισσότερα" msgid "More Actions" msgstr "Περισσότερες ενέργειες" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Περισσότερες θέσεις emoji" @@ -12028,7 +12032,7 @@ msgstr "Περισσότερες επιλογές" msgid "More Options" msgstr "Περισσότερες Επιλογές" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Περισσότερες θέσεις αυτοκόλλητων" @@ -12162,8 +12166,8 @@ msgstr "Σίγαση καναλιού" msgid "Mute Channel" msgstr "Σίγαση Καναλιού" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Σιωπηλό μέχρι {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Η σίγαση μιας κοινότητας εμποδίζει την εμφάνιση μη αναγνωσμένων ενδείξεων και ειδοποιήσεων, εκτός εάν σας αναφέρουν." -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Κοινότητες σε αμοιβαία βάση ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Κοινοί Φίλοι ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Κοινές Ομάδες ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Η εφαρμογή μου" @@ -12247,7 +12251,7 @@ msgstr "Το φοβερό αυτοκόλλητό μου" msgid "My Category" msgstr "Η κατηγορία μου" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Οι συσκευές μου" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Πλοήγηση" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Χρειάζεστε λογαριασμό;" @@ -12364,7 +12368,7 @@ msgstr "Δίκτυο" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Σφάλμα δικτύου" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Χωρίς πανό κοινότητας" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Δεν παρέχεται περιγραφή." @@ -12684,15 +12688,15 @@ msgstr "Δεν ανιχνεύτηκαν μικρόφωνα" msgid "No more scheduled messages." msgstr "Δεν υπάρχουν άλλα προγραμματισμένα μηνύματα." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Δεν βρέθηκαν κοινότητες με κοινή συμμετοχή." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Δεν βρέθηκαν κοινοί φίλοι." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Δεν βρέθηκαν κοινοί όμιλοι." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Δεν είναι του γούστου σου; Μπορείς να απενεργοποιήσεις αυτή τη λειτουργία όποτε θέλεις." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Παράκαμψη ειδοποιήσεων" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Ειδοποίησε τους χρήστες με αυτόν τον ρό msgid "now" msgstr "τώρα" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Τώρα" @@ -13090,7 +13094,7 @@ msgstr "Με κλικ" msgid "on:" msgstr "σε:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Μόλις διαγραφεί, η εφαρμογή και τα διαπιστευτήριά της αφαιρούνται οριστικά." @@ -13252,7 +13256,7 @@ msgstr "Άνοιξε μόνο DM" msgid "Open Fluxer" msgstr "Άνοιξε το Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Άνοιξε την εικόνα σε πλήρη προβολή" @@ -13368,7 +13372,7 @@ msgstr "Άνοιξε την κοινότητα Visionary" msgid "Opening..." msgstr "Άνοιγμα…" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Χειριστής" @@ -13441,7 +13445,7 @@ msgstr "Το αρχικό μήνυμα διαγράφηκε" msgid "Other" msgstr "Άλλο" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Άλλες συσκευές" @@ -13501,7 +13505,7 @@ msgstr "Παράκαμψε την κατάσταση μη διεκδικούμε msgid "Override unread gift inventory status" msgstr "Παράκαμψε την κατάσταση μη αναγνωσμένου αποθέματος δώρων" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Επισκόπηση" @@ -13695,7 +13699,7 @@ msgstr "Άδειες" msgid "Permissions granted" msgstr "Επιτρεπόμενες άδειες" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Προσωπικές σημειώσεις" @@ -13868,12 +13872,12 @@ msgstr "Αναπαραγωγή" msgid "Play animated emojis" msgstr "Αναπαραγωγή κινούμενων emoji" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Αναπαραγωγή ήχου" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Επικόλλησε τον σύνδεσμο του μηνύματος msgid "Please provide an email address." msgstr "Παρακαλώ δώσε μια διεύθυνση email." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Παρακαλώ δοκίμασε ξανά ή επέστρεψε στη λίστα εφαρμογών." @@ -13989,7 +13993,7 @@ msgstr "Προνόμια Plutonium" msgid "Plutonium Subscription" msgstr "Συνδρομή Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Πίνακας απορρήτου" msgid "Privacy Policy" msgstr "Πολιτική απορρήτου" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Καθάρισε αυτό το αυτοκόλλητο από την απ msgid "Push Notification Inactive Timeout" msgstr "Χρονικό όριο αδράνειας ειδοποιήσεων" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Ειδοποιήσεις push" @@ -14412,7 +14416,7 @@ msgstr "Αλληλεπίδραση αντιδράσεων απενεργοποι #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Αντιδράσεις" @@ -14583,7 +14587,7 @@ msgstr "Ανανέωση συνδρομής push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Επαναδημιουργία" @@ -14591,19 +14595,19 @@ msgstr "Επαναδημιουργία" msgid "Regenerate backup codes" msgstr "Επαναδημιουργία εφεδρικών κωδικών" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Επαναδημιουργία token bot;" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Επαναδημιουργία client secret;" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Η επαναδημιουργία θα ακυρώσει το τρέχον secret. Ενημέρωσε κάθε κώδικα που χρησιμοποιεί την παλιά τιμή." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Η επαναδημιουργία θα ακυρώσει το τρέχον token. Ενημέρωσε κάθε κώδικα που χρησιμοποιεί την παλιά τιμή." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Αφαίρεση φίλτρου" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Αφαίρεση φίλτρου" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Η αναφορά υποβλήθηκε με επιτυχία. Η Ομά #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Αναφορά χρήστη" @@ -15105,7 +15109,7 @@ msgstr "Ζητούμενα δικαιώματα" msgid "Require 2FA for moderation actions" msgstr "Απαιτήστε 2FA για ενέργειες διαχείρισης" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Απαιτήστε διπλό κλικ για είσοδο σε φωνητικά κανάλια" @@ -15144,7 +15148,7 @@ msgstr "Απαιτεί τα πάντα από το επίπεδο Μέτριο msgid "Requires Plutonium" msgstr "Απαιτεί Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Επαναπρογραμματισμός μηνύματος" @@ -15290,11 +15294,11 @@ msgstr "Επανασυνδρομή" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Επανάληψη" @@ -15359,7 +15363,7 @@ msgstr "Ανάκληση" msgid "Revoke Ban" msgstr "Ανάκληση αποκλεισμού" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Ανάκληση συσκευής" @@ -15386,7 +15390,7 @@ msgstr "Επαναφορά {DEFAULT_SEEK_AMOUNT} δευτερολέπτων" msgid "Right" msgstr "Δεξιά" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Δεξιά στοίχιση" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Αναζήτηση μελών..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Αναζήτηση μηνυμάτων" @@ -15834,13 +15838,13 @@ msgstr "Αναζήτηση ρόλων ή μελών..." msgid "Search saved media" msgstr "Αναζήτηση αποθηκευμένων μέσων" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Πεδίο αναζήτησης" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Πεδίο αναζήτησης: {0}" @@ -15857,7 +15861,7 @@ msgstr "Αναζήτηση ρυθμίσεων..." msgid "Search stickers..." msgstr "Αναζήτηση αυτοκόλλητων..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Προτάσεις αναζήτησης" @@ -15938,7 +15942,7 @@ msgstr "Κλειδί ασφαλείας / Κωδικός πρόσβασης" msgid "Security key verification failed. Please try again." msgstr "Η επαλήθευση του κλειδιού ασφαλείας απέτυχε. Προσπαθήστε ξανά." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Δείτε όλες τις συσκευές που είναι συνδεδεμένες στον λογαριασμό σας. Ανακαλέστε τις συνεδρίες που δεν αναγνωρίζετε." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Επιλέξτε λογαριασμό" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Επιλογή όλων" @@ -16040,7 +16044,7 @@ msgstr "Επιλέξτε μέγεθος μέσου για ενσωματωμέν msgid "Select media size for uploaded attachments" msgstr "Επιλέξτε μέγεθος μέσου για ανεβασμένα συνημμένα" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Επιλέξτε κοινή προβολή" @@ -16151,9 +16155,9 @@ msgstr "Αποστολή κώδικα" msgid "Send Code" msgstr "Αποστολή κώδικα" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Αποστολή αιτήματος φιλίας" @@ -16170,7 +16174,7 @@ msgstr "Αποστολή μηνύματος · Δεξί κλικ για προγ msgid "Send Message Disabled" msgstr "Αποστολή μηνύματος απενεργοποιημένη" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Αποστολή μηνυμάτων" @@ -16624,7 +16628,7 @@ msgstr "Εμφάνιση κουμπιού δώρου" msgid "Show inline images and videos" msgstr "Εμφάνιση εικόνων και βίντεο ενσωματωμένων" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Εμφάνιση μόνο του δείκτη πληκτρολόγησης χωρίς εικόνες προφίλ" @@ -16788,11 +16792,11 @@ msgstr "Εμφάνισε το δώρο ως ήδη εξαργυρωμένο" msgid "Show this role separately" msgstr "Εμφάνισε αυτόν τον ρόλο ξεχωριστά" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Εμφάνισε δείκτη πληκτρολόγησης με εικόνες προφίλ στη λίστα καναλιών" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Εμφάνισε ότι πληκτρολογεί κάποιος στο επιλεγμένο κανάλι" @@ -17151,7 +17155,7 @@ msgstr "Ισπανικά (Ισπανία)" msgid "Speak" msgstr "Μίλησε" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Μίλησε μήνυμα" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Ξεκίνα κοινή χρήση" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Ξεκίνα βιντεοκλήση" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Ξεκίνα φωνητική κλήση" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Πυκνότητα αυτοκόλλητων" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Πακέτο αυτοκόλλητων" @@ -17427,7 +17431,7 @@ msgstr "Σταμάτα το κουδούνισμα" msgid "Stop Sharing" msgstr "Διακοπή κοινής χρήσης" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Σταμάτα να μιλάς" @@ -17570,19 +17574,19 @@ msgstr "Απόκρυψη όλων των αναφορών ρόλων" msgid "Suppress All Role @mentions" msgstr "Απόκρυψη Όλων των αναφορών ρόλων" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Απόκρυψη ενσωματώσεων" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Κείμενο" msgid "Text (NSFW)" msgstr "Κείμενο (ακατάλληλο)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Κανάλι κειμένου" @@ -18028,10 +18032,10 @@ msgstr "Αυτή η ενέργεια απαιτεί επαλήθευση για msgid "This application" msgstr "Αυτή η εφαρμογή" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Αυτό το συνημμένο έχει λήξει" @@ -18039,7 +18043,7 @@ msgstr "Αυτό το συνημμένο έχει λήξει" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Αυτό το bot ζητά την άδεια Διαχειριστή. Δεν προτείνουμε να την χορηγήσετε σε παραγωγικές εφαρμογές εκτός αν εμπιστεύεστε πλήρως τον προγραμματιστή. Σκεφτείτε να τους ζητήσετε να ζητήσουν μειωμένο σύνολο αδειών. Κλείστε αυτήν τη σελίδα αν δεν είστε βέβαιοι." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Αυτό δεν μπορεί να αναιρεθεί. Η αφαίρεση της εφαρμογής διαγράφει και το bot της." @@ -18101,7 +18105,7 @@ msgstr "Αυτή η κοινότητα έχει φτάσει το ανώτατο msgid "This community has temporarily disabled invites." msgstr "Αυτή η κοινότητα έχει προσωρινά απενεργοποιήσει τις προσκλήσεις." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Αυτή η κοινότητα έχει προσωρινά απενεργοποιήσει τις προσκλήσεις. Μπορείτε να δοκιμάσετε ξανά αργότερα." @@ -18178,7 +18182,7 @@ msgstr "Αυτή η πρόσκληση έχει απεριόριστες χρή msgid "This invite link never expires." msgstr "Αυτός ο σύνδεσμος πρόσκλησης δεν λήγει ποτέ." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Αυτή είναι η αρχή του <0>{displayName}. Προσθέστε φίλους για να ξεκινήσετε μια συνομιλία!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Αυτή είναι η αρχή του ιστορικού άμεσων μηνυμάτων σας με τον <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Αυτό ήταν ένα @silent μήνυμα." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "Αυτό θα δημιουργήσει ένα ρήγμα στο χωροχρονικό συνεχές και δεν μπορεί να αναιρεθεί." @@ -18351,7 +18355,7 @@ msgstr "Αυτό θα δημιουργήσει ένα ρήγμα στο χωρο msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Αυτό θα αποκρύψει όλα τα στοιχεία διεπαφής που σχετίζονται με τα αγαπημένα, συμπεριλαμβανομένων κουμπιών και μενού. Τα υπάρχοντα αγαπημένα σας θα διατηρηθούν και μπορούν να επανενεργοποιηθούν οποτεδήποτε από τις <0>Ρυθμίσεις χρήστη → Εμφάνιση & Αίσθηση → Αγαπημένα." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Αυτό θα τροποποιήσει το υπάρχον προγραμματισμένο μήνυμα αντί να αποσταλεί άμεσα." @@ -18387,8 +18391,8 @@ msgstr "Αυτό θα αφαιρέσει την αποθηκευμένη συν msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Αυτό θα αντικαταστήσει το τρέχον προσαρμοσμένο θέμα σας. Μπορείτε να το επεξεργαστείτε αργότερα στις Ρυθμίσεις χρήστη σας." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Μικρογραφία για {title}" @@ -18485,7 +18489,7 @@ msgstr "Τα μηνύματα ειδοποίησης εμφανίζονται σ msgid "today" msgstr "σήμερα" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Σήμερα" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "Δοκιμάστε διαφορετικό όρο αναζήτησης ή φίλτρο" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Δοκιμάστε ξανά" @@ -18737,7 +18741,7 @@ msgstr "Δοκιμάστε άλλο όνομα ή ελέγξτε την ορθο msgid "Try another search term" msgstr "Δοκιμάστε άλλο όρο αναζήτησης" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Δοκιμάστε να ζητήσετε νέα πρόσκληση." @@ -18864,7 +18868,7 @@ msgstr "Κλίμακα γραμματοσειράς" msgid "Type your message here..." msgstr "Πληκτρολογήστε εδώ το μήνυμά σας..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Γεγονότα πληκτρολόγησης" @@ -18877,11 +18881,11 @@ msgstr "Δείκτης πληκτρολόγησης" msgid "Typing Indicator" msgstr "Δείκτης πληκτρολόγησης" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Δείκτης πληκτρολόγησης + avatar" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Μόνο δείκτης πληκτρολόγησης" @@ -18961,11 +18965,11 @@ msgstr "Αδύνατη η έναρξη κλήσης" msgid "Unable to start email change" msgstr "Αδύνατη η έναρξη αλλαγής email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Μη διαθέσιμο για όλους" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Μη διαθέσιμο για όλους εκτός προσωπικού" @@ -18978,7 +18982,7 @@ msgstr "Μη διαθέσιμο για όλους εκτός προσωπικο #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Καταργήστε πρώτα τον αποκλεισμό αυτού #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Κατάργηση αποκλεισμού χρήστη" @@ -19165,7 +19169,7 @@ msgstr "Άγνωστο σφάλμα" msgid "Unknown Gift" msgstr "Άγνωστο δώρο" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Άγνωστη πρόσκληση" @@ -19205,11 +19209,11 @@ msgstr "άγνωστος-ρόλος" msgid "Unlimited" msgstr "Απεριόριστο" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Απεριόριστα emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Απεριόριστα αυτοκόλλητα" @@ -19254,7 +19258,7 @@ msgstr "Ξεκλειδώστε αυτοκόλλητα στις προσωπικ #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Κατάργηση σίγασης κατηγορίας" msgid "Unmute Channel" msgstr "Κατάργηση σίγασης καναλιού" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Κατάργηση σίγασης αγαπημένων" msgid "Unmute User" msgstr "Κατάργηση σίγασης χρήστη" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Χωρίς όνομα" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Μέχρι να το αλλάξω" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Μη επαληθευμένο email" msgid "Up to 4K/60fps" msgstr "Μέχρι 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Ενημέρωση" @@ -19629,7 +19633,7 @@ msgstr "Ανεβάστε ήχο εισόδου" msgid "Upload Failed" msgstr "Η αποστολή απέτυχε" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Αποστολή αρχείου" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Ο χρήστης μεταφέρθηκε σε κανάλι" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Προφίλ χρήστη" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Προφίλ χρήστη: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Τιμές" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Προσαρμοσμένο URL" @@ -20059,14 +20063,14 @@ msgstr "Μπορεί να απαιτείται επαλήθευση πριν δ #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Επαληθευμένη κοινότητα" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Επαληθευμένη συντεχνία" @@ -20167,8 +20171,8 @@ msgstr "Ποιότητα Βίντεο" msgid "Video Settings" msgstr "Ρυθμίσεις βίντεο" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Μικρογραφία βίντεο" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Προβολή κωδικών" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Προβολή προφίλ κοινότητας" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Προβολή αποθέματος δώρων" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Προβολή παγκόσμιου προφίλ" @@ -20329,7 +20333,7 @@ msgstr "Επιλογή κατηγορίας παράβασης" msgid "Violent or Graphic Content" msgstr "Βίαιο ή γραφικό περιεχόμενο" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Φωνή VIP" @@ -20341,7 +20345,7 @@ msgstr "Ορατά κουμπιά" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Κλήσεις Φωνής" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Φωνητικό κανάλι" @@ -20442,7 +20446,7 @@ msgstr "Φωνητικό Κανάλι" msgid "Voice Channel Full" msgstr "Το φωνητικό κανάλι είναι γεμάτο" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Συμπεριφορά εισόδου σε φωνητικό κανάλι" @@ -20559,7 +20563,7 @@ msgstr "Δεν μπορέσαμε να συμμετάσχουμε σε αυτή msgid "We couldn't load the invites at this time." msgstr "Δεν μπορέσαμε να φορτώσουμε τις προσκλήσεις αυτή τη στιγμή." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν την εφαρμογή" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Έχουμε πρόβλημα σύνδεσης στους διακομιστές του Fluxer. Μπορεί να είναι προσωρινό δίκτυο ή προγραμματισμένη συντήρηση." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Έχουμε πρόβλημα σύνδεσης με το χωροχρονικό συνεχές. Ελέγξτε τη σύνδεσή σας και δοκιμάστε ξανά." @@ -20759,7 +20763,7 @@ msgstr "Μαχητές Σαββατοκύριακου" msgid "Welcome and system messages will appear here." msgstr "Τα καλωσορίσματα και τα συστηματικά μηνύματα θα εμφανίζονται εδώ." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Καλώς ήρθατε και πάλι" @@ -20820,7 +20824,7 @@ msgstr "Τι συμβαίνει;" msgid "What's included in your export:" msgstr "Τι περιλαμβάνεται στην εξαγωγή σου:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Όταν είναι απενεργοποιημένο (προεπιλογή), οι δείκτες πληκτρολόγησης δεν θα εμφανίζονται στο κανάλι που παρακολουθείς." @@ -20836,7 +20840,7 @@ msgstr "Όταν είναι ενεργοποιημένο, ένα γρήγορο msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Όταν είναι ενεργοποιημένο, αποκαλύπτει μενού εντοπισμού σφαλμάτων σε όλη την εφαρμογή για να ελέγξετε και να αντιγράψετε ακατέργαστα αντικείμενα JSON εσωτερικών δομών δεδομένων όπως μηνύματα, κανάλια, χρήστες και κοινότητες. Περιλαμβάνει επίσης εργαλεία για τον εντοπισμό σφαλμάτων της απόδοσης του Fluxer Markdown parser και του AST για οποιοδήποτε μήνυμα." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Όταν είναι ενεργοποιημένο, τα σήματα συντομεύσεων κρύβονται στα αναδυόμενα παράθυρα." @@ -20868,7 +20872,7 @@ msgstr "Όταν είναι ενεργοποιημένο, χρησιμοποιε msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Όταν είναι ενεργοποιημένο, μπορείτε να προσθέσετε αγαπημένα κανάλια και θα εμφανιστούν στην ενότητα Αγαπημένα. Όταν είναι απενεργοποιημένο, όλα τα στοιχεία UI που σχετίζονται με τα αγαπημένα (κουμπιά, επιλογές μενού) θα κρύβονται. Τα υπάρχοντα αγαπημένα θα παραμείνουν." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Όταν είναι ενεργοποιημένο, θα χρειάζεται διπλό κλικ στα φωνητικά κανάλια για να τα εντάξεις. Όταν είναι απενεργοποιημένο (προεπιλογή), ένα μόνο κλικ σε εντάσσει αμέσως." @@ -20970,7 +20974,7 @@ msgstr "Ετησίως {yearlyPrice}" msgid "yesterday" msgstr "χθες" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Χθες" @@ -21013,7 +21017,7 @@ msgstr "Επεξεργάζεστε το προφίλ σας ανά κοινότ msgid "You are in slowmode. Please wait before sending another message." msgstr "Είστε σε αργό ρυθμό. Περιμένετε πριν στείλετε άλλο μήνυμα." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Τώρα είστε προγραμματιστής!" @@ -21113,7 +21117,7 @@ msgstr "Μπορείς να χρησιμοποιήσεις συνδέσμους msgid "You can't add new reactions while you're on timeout." msgstr "Δεν μπορείς να προσθέσεις νέες αντιδράσεις όσο βρίσκεσαι σε χρονικό όριο." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Δεν μπορείς να γίνεις φίλος με τον εαυτό σου" @@ -21128,7 +21132,7 @@ msgstr "Δεν μπορείς να αλληλεπιδράσεις με αντι msgid "You can't join while you're on timeout." msgstr "Δεν μπορείς να συμμετάσχεις όσο βρίσκεσαι σε χρονικό όριο." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Δεν μπορείς να αποσιγάσεις τον εαυτό σο msgid "You do not have access to the channel where this message was sent." msgstr "Δεν έχεις πρόσβαση στο κανάλι όπου στάλθηκε αυτό το μήνυμα." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Δεν έχεις άδεια να στέλνεις μηνύματα σε αυτό το κανάλι." @@ -21439,7 +21443,7 @@ msgstr "Θα εμφανίζεσαι ως εκτός σύνδεσης" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Θα ρυθμίσεις ποιες άδειες λαμβάνει το bot στην επόμενη οθόνη." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Θα πρέπει να συνδεθείς ξανά σε όλες τις συσκευές που έχουν αποσυνδεθεί" @@ -21508,7 +21512,7 @@ msgstr "Είσαι στο φωνητικό κανάλι" msgid "You're sending messages too quickly" msgstr "Στέλνεις μηνύματα πολύ γρήγορα" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 46488f3f..c1244ebd 100644 --- a/fluxer_app/src/locales/en-GB/messages.po +++ b/fluxer_app/src/locales/en-GB/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# item} other {# items}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Member} other {# Members}}" @@ -566,18 +566,18 @@ msgstr "{label} images cannot be animated. Please use JPEG, PNG, or WebP." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Member" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Members" @@ -612,11 +612,11 @@ msgstr "{minutes} minutes and {seconds} seconds" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutes and 1 second" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} mutual community" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} mutual communities" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participants in call" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "{remaining} characters left" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Member" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Members" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone mentions" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Accent Colour" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accept" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Accept Friend Request" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Accept invite" @@ -1364,8 +1364,8 @@ msgstr "Accept Invite" msgid "Accept the incoming call" msgstr "Accept the incoming call" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Accepting this invite installs the pack automatically." @@ -1594,7 +1594,7 @@ msgstr "Add Favourite Channels" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Allowed {0}." msgid "Already have an account?" msgstr "Already have an account?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Already joined" @@ -2191,7 +2191,7 @@ msgstr "Animated avatars & banners" msgid "Animated Avatars Require Plutonium" msgstr "Animated Avatars Require Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animated banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animated Emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animated GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animated GIF video" @@ -2219,7 +2219,7 @@ msgstr "Animated GIF video" msgid "Animated GIF Video" msgstr "Animated GIF Video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animated icon" @@ -2277,7 +2277,7 @@ msgstr "Anyone can @mention this role. Members with \"Use @everyone/@here and @r msgid "API Endpoint" msgstr "API Endpoint" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Application information" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Application Name" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Application name is required" @@ -2554,7 +2553,7 @@ msgstr "Are you sure you want to revoke the ban for <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Attachment {0}" msgid "Attachment Actions" msgstr "Attachment Actions" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Attachment expired" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autocomplete" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatic" @@ -2859,7 +2858,7 @@ msgstr "Back" msgid "Back to Applications" msgstr "Back to Applications" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Back to list" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Back to login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Back to Overrides" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Back to Roles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Back to Settings" @@ -3003,7 +3002,7 @@ msgstr "Banned Users" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Bio character limit" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot scope requested" msgid "Bot token" msgstr "Bot token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot token regenerated. Update any code that uses the old token." @@ -3435,7 +3434,7 @@ msgstr "Camera Settings" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Camera Settings" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Camera Settings" msgid "Cancel" msgstr "Cancel" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Cancel Friend Request" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Careful! You have unsaved changes." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Category" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Category Name" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Category Settings" @@ -3617,7 +3616,7 @@ msgstr "Caution" msgid "Center" msgstr "Centre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centred" @@ -3765,7 +3764,7 @@ msgstr "Changed the bitrate to {0}." msgid "Changed the voice region to {0}." msgstr "Changed the voice region to {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "channel" @@ -3828,11 +3827,11 @@ msgstr "Channel ID copied to clipboard" msgid "Channel link copied" msgstr "Channel link copied" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Channel list typing indicator mode" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Channel List Typing Indicators" @@ -3891,7 +3890,7 @@ msgstr "Channel removed from favourites" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Channel Settings" @@ -4052,7 +4051,7 @@ msgstr "Choose how times are displayed throughout the app." msgid "Choose how typing indicators appear in the channel list" msgstr "Choose how typing indicators appear in the channel list" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Choose how typing indicators appear in the channel list when someone is typing in a channel." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Claim your account to redeem this gift." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Claim your account to send friend requests." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Clear Permissions" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Clear search" msgid "Clear search input" msgstr "Clear search input" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Clear Selection" @@ -4314,7 +4313,7 @@ msgstr "Click the upload icon next to any sound to customise it with your own au msgid "Click the verification link in the email." msgstr "Click the verification link in the email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Click to add a note" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Click to claim your gift!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Click to copy" @@ -4388,7 +4387,7 @@ msgstr "Click to view all reactions" msgid "Client secret" msgstr "Client secret" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Client secret regenerated. Update any code that uses the old secret." @@ -4649,8 +4648,8 @@ msgstr "Community promotes hatred based on protected characteristics" msgid "Community promotes or facilitates illegal activities" msgstr "Community promotes or facilitates illegal activities" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Context Menus" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Control how website links are previewed in chat" msgid "Control how you join voice channels" msgstr "Control how you join voice channels" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Control how you join voice channels in communities." @@ -5012,7 +5011,7 @@ msgstr "Control sticker animations" msgid "Control the visibility of favorites throughout the app." msgstr "Control the visibility of favourites throughout the app." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Control whether keyboard shortcut hints appear inside tooltips." @@ -5071,7 +5070,7 @@ msgstr "Copied" msgid "Copied to clipboard" msgstr "Copied to clipboard" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Copied URL to clipboard" @@ -5149,7 +5148,7 @@ msgstr "Copy File Link" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copy FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copy FluxerTag" msgid "Copy GIF" msgstr "Copy GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copy Guild ID" @@ -5222,7 +5221,7 @@ msgstr "Copy Text" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Cozy" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Create" @@ -5331,14 +5330,14 @@ msgstr "Create and manage applications and bots for your account." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Create and share custom emoji and sticker packs with Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Create Application" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Create Application" msgid "Create Category" msgstr "Create Category" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Created {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Created by {0}" @@ -5569,7 +5568,7 @@ msgstr "Cropped image is too large. Please choose a smaller area or a smaller fi msgid "Current Community" msgstr "Current Community" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Current Device" @@ -5606,7 +5605,7 @@ msgstr "Currently stuck in 1885, appearing offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Currently: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Danger Secondary" msgid "Danger secondary clicked!" msgstr "Danger secondary clicked!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Danger zone" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Delete all my messages" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Delete Application" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Delete attachment" @@ -6063,7 +6062,7 @@ msgstr "Delete attachment" msgid "Delete Attachment" msgstr "Delete Attachment" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Delete Category" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Delete Channel" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Delete media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Delete Message" @@ -6215,7 +6214,7 @@ msgstr "Dense" msgid "Dense layout" msgstr "Dense layout" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Deployed" @@ -6281,7 +6280,7 @@ msgstr "Destination Channel" msgid "Destination URL:" msgstr "Destination URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Detached banner" @@ -6362,7 +6361,7 @@ msgstr "Different Sizes (Status Supported)" msgid "Different Sizes & Member Counts" msgstr "Different Sizes & Member Counts" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direct message" @@ -6541,7 +6540,7 @@ msgstr "Disabling your account will log you out of all sessions. You can re-enab msgid "Disallow @mention." msgstr "Disallow @mention." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Disallow unclaimed accounts" @@ -6747,7 +6746,7 @@ msgstr "Don't show message previews in the DM list" msgid "Don't show this again" msgstr "Don't show this again" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Don't show typing indicators in the channel list" @@ -6760,7 +6759,7 @@ msgstr "Don't show typing indicators in the channel list" msgid "Done" msgstr "Done" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Edit Category" msgid "Edit Channel" msgstr "Edit Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Edit overwrites for roles and members in this channel." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Embed splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Embedded audio" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emoji names must be at least 2 characters long and can only contain alphanumeric characters and underscores. Allowed file types: JPEG, PNG, WebP, GIF. We compress images to 128x128 pixels. Maximum size: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji pack" @@ -7473,7 +7472,7 @@ msgstr "Enter Phone" msgid "Enter picture-in-picture" msgstr "Enter picture-in-picture" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Enter Selection Mode" @@ -7536,7 +7535,7 @@ msgstr "Enter the new email you want to use. We'll send a code there next." msgid "Enter the SMS code you received." msgstr "Enter the SMS code you received." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "enter to <0><1>save" @@ -7604,7 +7603,7 @@ msgstr "Error rendering LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape key exits keyboard mode" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "escape to <0><1>cancel" @@ -7667,7 +7666,7 @@ msgstr "Exit picture-in-picture" msgid "Exit Preview" msgstr "Exit Preview" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Exit Selection Mode" @@ -7701,7 +7700,7 @@ msgstr "Expired (Within 30 Days)" msgid "Expired {absolute}" msgstr "Expired {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Expired between {earliest} and {latest}" @@ -7709,7 +7708,7 @@ msgstr "Expired between {earliest} and {latest}" msgid "Expired on {date}" msgstr "Expired on {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Expired on {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Expires" msgid "Expires {absolute} ({relativeText})" msgstr "Expires {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Expires between {earliest} and {latest}" @@ -7730,7 +7729,7 @@ msgstr "Expires between {earliest} and {latest}" msgid "Expires on {date}" msgstr "Expires on {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Expires on {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Expression Packs are a Plutonium feature" msgid "Expression picker categories" msgstr "Expression picker categories" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Expression purge" @@ -7839,10 +7838,6 @@ msgstr "Failed to copy to clipboard" msgid "Failed to copy URL" msgstr "Failed to copy URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Failed to create application. Please check your inputs and try again." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Failed to create role" @@ -8100,7 +8095,7 @@ msgstr "Failed to revoke ban. Please try again." msgid "Failed to revoke invite" msgstr "Failed to revoke invite" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Failed to rotate. Please try again." @@ -8413,7 +8408,7 @@ msgstr "Fitness Friends" msgid "Flags" msgstr "Flags" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexible text channel names" @@ -8577,7 +8572,7 @@ msgstr "Foodie Friends" msgid "For 1 hour" msgstr "For 1 hour" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "For 1 Hour" msgid "For 15 minutes" msgstr "For 15 minutes" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "For 15 Minutes" msgid "For 24 hours" msgstr "For 24 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "For 3 days" msgid "For 3 hours" msgstr "For 3 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "For 3 Hours" msgid "For 8 hours" msgstr "For 8 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Forget subscriptions" msgid "Forgot Password" msgstr "Forgot Password" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Forgot your password?" @@ -8795,7 +8790,7 @@ msgstr "Forward {DEFAULT_SEEK_AMOUNT} seconds" msgid "Forward Message" msgstr "Forward Message" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Forwarded" @@ -9065,7 +9060,7 @@ msgstr "Get the Fluxer desktop app for system-wide push-to-talk and a few other #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Go back to the previously focused text channel" msgid "Go forward in navigation history" msgstr "Go forward in navigation history" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Go to Community" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Group Invites" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Group message" @@ -9548,7 +9543,7 @@ msgstr "Hey, {username}, welcome! You can accomplish anything." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Hidden" @@ -9569,7 +9564,7 @@ msgstr "Hide Favourites" msgid "Hide Join Messages" msgstr "Hide Join Messages" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Hide keyboard hints in tooltips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Hide muted channels" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "If you want to export your data or delete your messages first, please visit the Privacy Dashboard section in User Settings before proceeding." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "image" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Inputs with Icons" msgid "Insert emoji" msgstr "Insert emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Install Emoji Pack" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Install Sticker Pack" @@ -10153,7 +10148,7 @@ msgstr "Installed on {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Installing emoji and sticker packs requires a premium subscription." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Instant invites" @@ -10286,7 +10281,7 @@ msgstr "Invite link settings" msgid "Invite Links" msgstr "Invite Links" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Invite Modal" msgid "Invite modal preview" msgstr "Invite modal preview" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invite sent for {0}" msgid "Invite sent to {guildName}" msgstr "Invite sent to {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Invite splash" @@ -10354,7 +10349,7 @@ msgstr "Invite to {0}" msgid "Invite to Community" msgstr "Invite to Community" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invite Unavailable" @@ -10369,12 +10364,12 @@ msgstr "Invited by {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invited by {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invited by {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Invites are currently paused in this community" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invites disabled" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invites Disabled" @@ -10482,13 +10477,13 @@ msgstr "Join a community with stickers to get started!" msgid "Join call" msgstr "Join call" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Join Community" @@ -10497,15 +10492,23 @@ msgstr "Join Community" msgid "Join community form" msgstr "Join community form" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Join Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Join Fluxer HQ to chat with the team and stay up to date on the latest!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Join Group" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Join Group DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Join notifications" @@ -10620,7 +10623,7 @@ msgstr "Jump to Oldest Unread Message" msgid "Jump to page" msgstr "Jump to page" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Jump to Present" @@ -10690,7 +10693,7 @@ msgstr "Keybinds" msgid "Keyboard" msgstr "Keyboard" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Keyboard Hints" @@ -10815,7 +10818,7 @@ msgstr "Learn about Plutonium" msgid "Leave blank for a random username" msgstr "Leave blank for a random username" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Leaving so soon?" msgid "Left" msgstr "Left" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Left aligned" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Link channel" @@ -11027,7 +11030,7 @@ msgstr "Loading bans..." msgid "Loading communities..." msgstr "Loading communities..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Loading image" @@ -11039,8 +11042,8 @@ msgstr "Loading invites..." msgid "Loading more..." msgstr "Loading more..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Loading placeholder" @@ -11064,7 +11067,7 @@ msgstr "Loading theme..." msgid "Loading verification methods..." msgstr "Loading verification methods..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Loading: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Local Mute" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Log in using your browser, then enter the code shown to add the account. msgid "Log in via browser" msgstr "Log in via browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Log in via browser or custom instance" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Log Out" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Log out {0} devices" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Log out {sessionCount} devices" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Log out 1 device" @@ -11141,7 +11144,7 @@ msgstr "Log Out All Devices" msgid "Log out all other devices" msgstr "Log out all other devices" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Log Out All Other Devices" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Mark as 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "mentions:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "mentions:" msgid "Message" msgstr "Message" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Message " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Message @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Message #" @@ -11838,7 +11842,7 @@ msgstr "Messages & Media" msgid "Messages Deleted" msgstr "Messages Deleted" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Messages failed to load" @@ -12016,7 +12020,7 @@ msgstr "More" msgid "More Actions" msgstr "More Actions" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "More emoji slots" @@ -12028,7 +12032,7 @@ msgstr "More options" msgid "More Options" msgstr "More Options" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "More sticker slots" @@ -12162,8 +12166,8 @@ msgstr "Mute channel" msgid "Mute Channel" msgstr "Mute Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Muted until {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Mutual Communities ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Mutual Friends ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Mutual Groups ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "My Application" @@ -12247,7 +12251,7 @@ msgstr "My awesome sticker" msgid "My Category" msgstr "My Category" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "My Devices" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigation" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Need an account?" @@ -12364,7 +12368,7 @@ msgstr "Network" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Network error" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "No community banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "No description provided." @@ -12684,15 +12688,15 @@ msgstr "No microphones detected" msgid "No more scheduled messages." msgstr "No more scheduled messages." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "No mutual communities found." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "No mutual friends found." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "No mutual groups found." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Not your cup of tea? You can disable this feature anytime." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Notification Overrides" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Notify users with this role who have permission to view this channel." msgid "now" msgstr "now" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Now" @@ -13090,7 +13094,7 @@ msgstr "On click" msgid "on:" msgstr "on:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Once deleted, the application and its credentials are permanently removed." @@ -13252,7 +13256,7 @@ msgstr "Open DMs Only" msgid "Open Fluxer" msgstr "Open Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Open image in full view" @@ -13368,7 +13372,7 @@ msgstr "Open Visionary Community" msgid "Opening..." msgstr "Opening..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Original message was deleted" msgid "Other" msgstr "Other" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Other Devices" @@ -13501,7 +13505,7 @@ msgstr "Override unclaimed account status" msgid "Override unread gift inventory status" msgstr "Override unread gift inventory status" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Overview" @@ -13695,7 +13699,7 @@ msgstr "Permissions" msgid "Permissions granted" msgstr "Permissions granted" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Personal notes" @@ -13868,12 +13872,12 @@ msgstr "Play" msgid "Play animated emojis" msgstr "Play animated emojis" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Play audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Please paste the message link you are reporting." msgid "Please provide an email address." msgstr "Please provide an email address." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Please retry or go back to the applications list." @@ -13989,7 +13993,7 @@ msgstr "Plutonium perks" msgid "Plutonium Subscription" msgstr "Plutonium Subscription" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Privacy Dashboard" msgid "Privacy Policy" msgstr "Privacy Policy" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Purge this sticker from storage and CDN" msgid "Push Notification Inactive Timeout" msgstr "Push Notification Inactive Timeout" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push notifications" @@ -14412,7 +14416,7 @@ msgstr "Reaction Interaction Disabled" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reactions" @@ -14583,7 +14587,7 @@ msgstr "Refresh push subscription" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerate" @@ -14591,19 +14595,19 @@ msgstr "Regenerate" msgid "Regenerate backup codes" msgstr "Regenerate backup codes" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerate bot token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerate client secret?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerating will invalidate the current secret. Update any code that uses the old value." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerating will invalidate the current token. Update any code that uses the old value." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Remove filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Remove filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Report submitted successfully. Our Safety Team will review it shortly." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Report User" @@ -15105,7 +15109,7 @@ msgstr "Requested scopes" msgid "Require 2FA for moderation actions" msgstr "Require 2FA for moderation actions" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Require double-click to join voice channels" @@ -15144,7 +15148,7 @@ msgstr "Requires everything in Medium, plus being a member of the server for at msgid "Requires Plutonium" msgstr "Requires Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reschedule Message" @@ -15290,11 +15294,11 @@ msgstr "Resubscribe" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Retry" @@ -15359,7 +15363,7 @@ msgstr "Revoke" msgid "Revoke Ban" msgstr "Revoke Ban" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revoke device" @@ -15386,7 +15390,7 @@ msgstr "Rewind {DEFAULT_SEEK_AMOUNT} seconds" msgid "Right" msgstr "Right" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Right aligned" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Search members..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Search messages" @@ -15834,13 +15838,13 @@ msgstr "Search roles or members..." msgid "Search saved media" msgstr "Search saved media" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Search scope" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Search scope: {0}" @@ -15857,7 +15861,7 @@ msgstr "Search settings..." msgid "Search stickers..." msgstr "Search stickers..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Search suggestions" @@ -15938,7 +15942,7 @@ msgstr "Security Key / Passkey" msgid "Security key verification failed. Please try again." msgstr "Security key verification failed. Please try again." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "See all devices that are currently logged into your account. Revoke any sessions that you don't recognise." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Select account" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Select All" @@ -16040,7 +16044,7 @@ msgstr "Select media size for embedded content from links" msgid "Select media size for uploaded attachments" msgstr "Select media size for uploaded attachments" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Select mutual view" @@ -16151,9 +16155,9 @@ msgstr "Send code" msgid "Send Code" msgstr "Send Code" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Send Friend Request" @@ -16170,7 +16174,7 @@ msgstr "Send Message · Right-click to schedule" msgid "Send Message Disabled" msgstr "Send Message Disabled" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Send messages" @@ -16624,7 +16628,7 @@ msgstr "Show Gift Button" msgid "Show inline images and videos" msgstr "Show inline images and videos" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Show just the typing indicator without avatars" @@ -16788,11 +16792,11 @@ msgstr "Show the gift as already redeemed" msgid "Show this role separately" msgstr "Show this role separately" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Show typing indicator with user avatars in the channel list" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Show typing on selected channel" @@ -17151,7 +17155,7 @@ msgstr "Spanish (Spain)" msgid "Speak" msgstr "Speak" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Speak Message" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Start Sharing" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Start Video Call" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Start Voice Call" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Sticker density" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Sticker pack" @@ -17427,7 +17431,7 @@ msgstr "Stop Ringing" msgid "Stop Sharing" msgstr "Stop Sharing" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Stop Speaking" @@ -17570,19 +17574,19 @@ msgstr "Suppress all role @mentions" msgid "Suppress All Role @mentions" msgstr "Suppress All Role @mentions" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suppress embeds" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Text channel" @@ -18028,10 +18032,10 @@ msgstr "This action requires verification to continue." msgid "This application" msgstr "This application" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "This attachment has expired" @@ -18039,7 +18043,7 @@ msgstr "This attachment has expired" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "This cannot be undone. Removing the application also deletes its bot." @@ -18101,7 +18105,7 @@ msgstr "This community has reached its maximum member limit and is not accepting msgid "This community has temporarily disabled invites." msgstr "This community has temporarily disabled invites." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "This community has temporarily disabled invites. You can try again later." @@ -18178,7 +18182,7 @@ msgstr "This invite has unlimited uses." msgid "This invite link never expires." msgstr "This invite link never expires." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "This is the beginning of <0>{displayName}. Add friends to start a conversation!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "This is the beginning of your direct message history with <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "This was a @silent message." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "This will create a rift in the space-time continuum and cannot be undone msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "This will hide all favourites-related UI elements including buttons and menu items. Your existing favourites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favourites." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "This will modify the existing scheduled message rather than sending immediately." @@ -18387,8 +18391,8 @@ msgstr "This will remove the saved session for this account." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "This will replace your current custom theme. You can edit it later in your User Settings." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Thumbnail for {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts appear in the top-centre of the screen." msgid "today" msgstr "today" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Today" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Try again" @@ -18737,7 +18741,7 @@ msgstr "Try another name or check your spelling." msgid "Try another search term" msgstr "Try another search term" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Try asking for a new invite." @@ -18864,7 +18868,7 @@ msgstr "Type Scale" msgid "Type your message here..." msgstr "Type your message here..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Typing events" @@ -18877,11 +18881,11 @@ msgstr "Typing indicator" msgid "Typing Indicator" msgstr "Typing Indicator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Typing indicator + avatars" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Typing indicator only" @@ -18961,11 +18965,11 @@ msgstr "Unable to Start Call" msgid "Unable to start email change" msgstr "Unable to start email change" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Unavailable for everyone" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Unavailable for everyone but staff" @@ -18978,7 +18982,7 @@ msgstr "Unavailable for everyone but staff" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Unblock this user before sending a friend request." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Unblock User" @@ -19165,7 +19169,7 @@ msgstr "Unknown error" msgid "Unknown Gift" msgstr "Unknown Gift" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Unknown Invite" @@ -19205,11 +19209,11 @@ msgstr "unknown-role" msgid "Unlimited" msgstr "Unlimited" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Unlimited emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Unlimited stickers" @@ -19254,7 +19258,7 @@ msgstr "Unlock stickers in DMs with Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Unmute Category" msgid "Unmute Channel" msgstr "Unmute Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Unmute Favourites" msgid "Unmute User" msgstr "Unmute User" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Unnamed" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Until I change it" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Unverified Email" msgid "Up to 4K/60fps" msgstr "Up to 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Update" @@ -19629,7 +19633,7 @@ msgstr "Upload Entrance Sound" msgid "Upload Failed" msgstr "Upload Failed" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Upload file" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "User Moved Channel" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "User Profile" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "User Profile: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Values" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity URL" @@ -20059,14 +20063,14 @@ msgstr "Verification may be required before viewing your backup codes." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verified Community" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verified guild" @@ -20167,8 +20171,8 @@ msgstr "Video Quality" msgid "Video Settings" msgstr "Video Settings" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Video thumbnail" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "View Codes" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "View Community Profile" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "View Gift Inventory" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "View Global Profile" @@ -20329,7 +20333,7 @@ msgstr "Violation category selection" msgid "Violent or Graphic Content" msgstr "Violent or Graphic Content" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP voice" @@ -20341,7 +20345,7 @@ msgstr "Visible Buttons" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Voice Calls" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Voice channel" @@ -20442,7 +20446,7 @@ msgstr "Voice Channel" msgid "Voice Channel Full" msgstr "Voice Channel Full" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Voice Channel Join Behaviour" @@ -20559,7 +20563,7 @@ msgstr "We couldn't join this community at this time." msgid "We couldn't load the invites at this time." msgstr "We couldn't load the invites at this time." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "We couldn't load this application" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "We're having trouble connecting to Fluxer's servers. This could be a temporary network issue or scheduled maintenance." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "We're having trouble connecting to the space-time continuum. Please check your connection and try again." @@ -20759,7 +20763,7 @@ msgstr "Weekend Warriors" msgid "Welcome and system messages will appear here." msgstr "Welcome and system messages will appear here." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Welcome back" @@ -20820,7 +20824,7 @@ msgstr "What's happening?" msgid "What's included in your export:" msgstr "What's included in your export:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "When disabled (default), typing indicators won't appear on the channel you're currently viewing." @@ -20836,7 +20840,7 @@ msgstr "When enabled, quickly tapping your push-to-talk shortcut will keep your msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "When enabled, shortcut badges are hidden in tooltip popups." @@ -20868,7 +20872,7 @@ msgstr "When enabled, uses your computer's locale to determine 12/24-hour format msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "When enabled, you can favourite channels and they'll appear in the Favourites section. When disabled, all favourite-related UI elements (buttons, menu items) will be hidden. Your existing favourites will be preserved." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." @@ -20970,7 +20974,7 @@ msgstr "Yearly {yearlyPrice}" msgid "yesterday" msgstr "yesterday" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Yesterday" @@ -21013,7 +21017,7 @@ msgstr "You are editing your per-community profile. This profile will only be vi msgid "You are in slowmode. Please wait before sending another message." msgstr "You are in slowmode. Please wait before sending another message." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "You are now a developer!" @@ -21113,7 +21117,7 @@ msgstr "You can use links and Markdown to format your text. With <0/>, you can w msgid "You can't add new reactions while you're on timeout." msgstr "You can't add new reactions while you're on timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "You can't befriend yourself" @@ -21128,7 +21132,7 @@ msgstr "You can't interact with reactions in search results as it might disrupt msgid "You can't join while you're on timeout." msgstr "You can't join while you're on timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "You cannot unmute yourself because you have been muted by a moderator." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "You do not have permission to send messages in this channel." @@ -21439,7 +21443,7 @@ msgstr "You'll appear offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "You'll configure which permissions the bot receives on the next screen." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "You'll have to log back in on all logged out devices" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 f00bb539..5d296031 100644 --- a/fluxer_app/src/locales/en-US/messages.po +++ b/fluxer_app/src/locales/en-US/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# item} other {# items}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Member} other {# Members}}" @@ -566,18 +566,18 @@ msgstr "{label} images cannot be animated. Please use JPEG, PNG, or WebP." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Member" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Members" @@ -612,11 +612,11 @@ msgstr "{minutes} minutes and {seconds} seconds" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutes and 1 second" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} mutual commmunity" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} mutual communities" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participants in call" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "{remaining} characters left" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Member" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Members" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone mentions" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Accent Color" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accept" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Accept Friend Request" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Accept invite" @@ -1364,8 +1364,8 @@ msgstr "Accept Invite" msgid "Accept the incoming call" msgstr "Accept the incoming call" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Accepting this invite installs the pack automatically." @@ -1594,7 +1594,7 @@ msgstr "Add Favorite Channels" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Allowed {0}." msgid "Already have an account?" msgstr "Already have an account?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Already joined" @@ -2191,7 +2191,7 @@ msgstr "Animated avatars & banners" msgid "Animated Avatars Require Plutonium" msgstr "Animated Avatars Require Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animated banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animated Emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animated GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animated GIF video" @@ -2219,7 +2219,7 @@ msgstr "Animated GIF video" msgid "Animated GIF Video" msgstr "Animated GIF Video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animated icon" @@ -2277,7 +2277,7 @@ msgstr "Anyone can @mention this role. Members with \"Use @everyone/@here and @r msgid "API Endpoint" msgstr "API Endpoint" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Application information" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Application Name" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Application name is required" @@ -2554,7 +2553,7 @@ msgstr "Are you sure you want to revoke the ban for <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Attachment {0}" msgid "Attachment Actions" msgstr "Attachment Actions" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Attachment expired" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autocomplete" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatic" @@ -2859,7 +2858,7 @@ msgstr "Back" msgid "Back to Applications" msgstr "Back to Applications" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Back to list" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Back to login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Back to Overrides" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Back to Roles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Back to Settings" @@ -3003,7 +3002,7 @@ msgstr "Banned Users" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Bio character limit" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot scope requested" msgid "Bot token" msgstr "Bot token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot token regenerated. Update any code that uses the old token." @@ -3435,7 +3434,7 @@ msgstr "Camera Settings" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Camera Settings" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Camera Settings" msgid "Cancel" msgstr "Cancel" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Cancel Friend Request" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Careful! You have unsaved changes." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Category" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Category Name" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Category Settings" @@ -3617,7 +3616,7 @@ msgstr "Caution" msgid "Center" msgstr "Center" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centered" @@ -3765,7 +3764,7 @@ msgstr "Changed the bitrate to {0}." msgid "Changed the voice region to {0}." msgstr "Changed the voice region to {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "channel" @@ -3828,11 +3827,11 @@ msgstr "Channel ID copied to clipboard" msgid "Channel link copied" msgstr "Channel link copied" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Channel list typing indicator mode" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Channel List Typing Indicators" @@ -3891,7 +3890,7 @@ msgstr "Channel removed from favorites" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Channel Settings" @@ -4052,7 +4051,7 @@ msgstr "Choose how times are displayed throughout the app." msgid "Choose how typing indicators appear in the channel list" msgstr "Choose how typing indicators appear in the channel list" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Choose how typing indicators appear in the channel list when someone is typing in a channel." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Claim your account to redeem this gift." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Claim your account to send friend requests." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Clear Permissions" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Clear search" msgid "Clear search input" msgstr "Clear search input" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Clear Selection" @@ -4314,7 +4313,7 @@ msgstr "Click the upload icon next to any sound to customize it with your own au msgid "Click the verification link in the email." msgstr "Click the verification link in the email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Click to add a note" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Click to claim your gift!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Click to copy" @@ -4388,7 +4387,7 @@ msgstr "Click to view all reactions" msgid "Client secret" msgstr "Client secret" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Client secret regenerated. Update any code that uses the old secret." @@ -4649,8 +4648,8 @@ msgstr "Community promotes hatred based on protected characteristics" msgid "Community promotes or facilitates illegal activities" msgstr "Community promotes or facilitates illegal activities" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Context Menus" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Control how website links are previewed in chat" msgid "Control how you join voice channels" msgstr "Control how you join voice channels" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Control how you join voice channels in communities." @@ -5012,7 +5011,7 @@ msgstr "Control sticker animations" msgid "Control the visibility of favorites throughout the app." msgstr "Control the visibility of favorites throughout the app." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Control whether keyboard shortcut hints appear inside tooltips." @@ -5071,7 +5070,7 @@ msgstr "Copied" msgid "Copied to clipboard" msgstr "Copied to clipboard" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Copied URL to clipboard" @@ -5149,7 +5148,7 @@ msgstr "Copy File Link" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copy FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copy FluxerTag" msgid "Copy GIF" msgstr "Copy GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copy Guild ID" @@ -5222,7 +5221,7 @@ msgstr "Copy Text" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Cozy" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Create" @@ -5331,14 +5330,14 @@ msgstr "Create and manage applications and bots for your account." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Create and share custom emoji and sticker packs with Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Create Application" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Create Application" msgid "Create Category" msgstr "Create Category" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Created {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Created by {0}" @@ -5569,7 +5568,7 @@ msgstr "Cropped image is too large. Please choose a smaller area or a smaller fi msgid "Current Community" msgstr "Current Community" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Current Device" @@ -5606,7 +5605,7 @@ msgstr "Currently stuck in 1885, appearing offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Currently: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Danger Secondary" msgid "Danger secondary clicked!" msgstr "Danger secondary clicked!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Danger zone" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Delete all my messages" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Delete Application" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Delete attachment" @@ -6063,7 +6062,7 @@ msgstr "Delete attachment" msgid "Delete Attachment" msgstr "Delete Attachment" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Delete Category" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Delete Channel" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Delete media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Delete Message" @@ -6215,7 +6214,7 @@ msgstr "Dense" msgid "Dense layout" msgstr "Dense layout" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Deployed" @@ -6281,7 +6280,7 @@ msgstr "Destination Channel" msgid "Destination URL:" msgstr "Destination URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Detached banner" @@ -6362,7 +6361,7 @@ msgstr "Different Sizes (Status Supported)" msgid "Different Sizes & Member Counts" msgstr "Different Sizes & Member Counts" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direct message" @@ -6541,7 +6540,7 @@ msgstr "Disabling your account will log you out of all sessions. You can re-enab msgid "Disallow @mention." msgstr "Disallow @mention." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Disallow unclaimed accounts" @@ -6747,7 +6746,7 @@ msgstr "Don't show message previews in the DM list" msgid "Don't show this again" msgstr "Don't show this again" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Don't show typing indicators in the channel list" @@ -6760,7 +6759,7 @@ msgstr "Don't show typing indicators in the channel list" msgid "Done" msgstr "Done" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Edit Category" msgid "Edit Channel" msgstr "Edit Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Edit overwrites for roles and members in this channel." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Embed splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Embedded audio" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emoji names must be at least 2 characters long and can only contain alphanumeric characters and underscores. Allowed file types: JPEG, PNG, WebP, GIF. We compress images to 128x128 pixels. Maximum size: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji pack" @@ -7473,7 +7472,7 @@ msgstr "Enter Phone" msgid "Enter picture-in-picture" msgstr "Enter picture-in-picture" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Enter Selection Mode" @@ -7536,7 +7535,7 @@ msgstr "Enter the new email you want to use. We'll send a code there next." msgid "Enter the SMS code you received." msgstr "Enter the SMS code you received." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "enter to <0><1>save" @@ -7604,7 +7603,7 @@ msgstr "Error rendering LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape key exits keyboard mode" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "escape to <0><1>cancel" @@ -7667,7 +7666,7 @@ msgstr "Exit picture-in-picture" msgid "Exit Preview" msgstr "Exit Preview" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Exit Selection Mode" @@ -7701,7 +7700,7 @@ msgstr "Expired (Within 30 Days)" msgid "Expired {absolute}" msgstr "Expired {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Expired between {earliest} and {latest}" @@ -7709,7 +7708,7 @@ msgstr "Expired between {earliest} and {latest}" msgid "Expired on {date}" msgstr "Expired on {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Expired on {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Expires" msgid "Expires {absolute} ({relativeText})" msgstr "Expires {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Expires between {earliest} and {latest}" @@ -7730,7 +7729,7 @@ msgstr "Expires between {earliest} and {latest}" msgid "Expires on {date}" msgstr "Expires on {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Expires on {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Expression Packs are a Plutonium feature" msgid "Expression picker categories" msgstr "Expression picker categories" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Expression purge" @@ -7839,10 +7838,6 @@ msgstr "Failed to copy to clipboard" msgid "Failed to copy URL" msgstr "Failed to copy URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Failed to create application. Please check your inputs and try again." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Failed to create role" @@ -8100,7 +8095,7 @@ msgstr "Failed to revoke ban. Please try again." msgid "Failed to revoke invite" msgstr "Failed to revoke invite" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Failed to rotate. Please try again." @@ -8413,7 +8408,7 @@ msgstr "Fitness Friends" msgid "Flags" msgstr "Flags" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexible text channel names" @@ -8577,7 +8572,7 @@ msgstr "Foodie Friends" msgid "For 1 hour" msgstr "For 1 hour" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "For 1 Hour" msgid "For 15 minutes" msgstr "For 15 minutes" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "For 15 Minutes" msgid "For 24 hours" msgstr "For 24 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "For 3 days" msgid "For 3 hours" msgstr "For 3 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "For 3 Hours" msgid "For 8 hours" msgstr "For 8 hours" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Forget subscriptions" msgid "Forgot Password" msgstr "Forgot Password" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Forgot your password?" @@ -8795,7 +8790,7 @@ msgstr "Forward {DEFAULT_SEEK_AMOUNT} seconds" msgid "Forward Message" msgstr "Forward Message" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Forwarded" @@ -9065,7 +9060,7 @@ msgstr "Get the Fluxer desktop app for system-wide push-to-talk and a few other #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Go back to the previously focused text channel" msgid "Go forward in navigation history" msgstr "Go forward in navigation history" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Go to Community" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Group Invites" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Group message" @@ -9548,7 +9543,7 @@ msgstr "Hey, {username}, welcome! You can accomplish anything." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Hidden" @@ -9569,7 +9564,7 @@ msgstr "Hide Favorites" msgid "Hide Join Messages" msgstr "Hide Join Messages" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Hide keyboard hints in tooltips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Hide muted channels" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "If you want to export your data or delete your messages first, please visit the Privacy Dashboard section in User Settings before proceeding." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "image" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Inputs with Icons" msgid "Insert emoji" msgstr "Insert emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Install Emoji Pack" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Install Sticker Pack" @@ -10153,7 +10148,7 @@ msgstr "Installed on {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Installing emoji and sticker packs requires a premium subscription." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Instant invites" @@ -10286,7 +10281,7 @@ msgstr "Invite link settings" msgid "Invite Links" msgstr "Invite Links" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Invite Modal" msgid "Invite modal preview" msgstr "Invite modal preview" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invite sent for {0}" msgid "Invite sent to {guildName}" msgstr "Invite sent to {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Invite splash" @@ -10354,7 +10349,7 @@ msgstr "Invite to {0}" msgid "Invite to Community" msgstr "Invite to Community" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invite Unavailable" @@ -10369,12 +10364,12 @@ msgstr "Invited by {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invited by {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invited by {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Invites are currently paused in this community" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invites disabled" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invites Disabled" @@ -10482,13 +10477,13 @@ msgstr "Join a community with stickers to get started!" msgid "Join call" msgstr "Join call" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Join Community" @@ -10497,15 +10492,23 @@ msgstr "Join Community" msgid "Join community form" msgstr "Join community form" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Join Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Join Fluxer HQ to chat with the team and stay up to date on the latest!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Join Group" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Join Group DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Join notifications" @@ -10620,7 +10623,7 @@ msgstr "Jump to Oldest Unread Message" msgid "Jump to page" msgstr "Jump to page" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Jump to Present" @@ -10690,7 +10693,7 @@ msgstr "Keybinds" msgid "Keyboard" msgstr "Keyboard" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Keyboard Hints" @@ -10815,7 +10818,7 @@ msgstr "Learn about Plutonium" msgid "Leave blank for a random username" msgstr "Leave blank for a random username" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Leaving so soon?" msgid "Left" msgstr "Left" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Left aligned" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Link channel" @@ -11027,7 +11030,7 @@ msgstr "Loading bans..." msgid "Loading communities..." msgstr "Loading communities..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Loading image" @@ -11039,8 +11042,8 @@ msgstr "Loading invites..." msgid "Loading more..." msgstr "Loading more..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Loading placeholder" @@ -11064,7 +11067,7 @@ msgstr "Loading theme..." msgid "Loading verification methods..." msgstr "Loading verification methods..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Loading: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Local Mute" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Log in using your browser, then enter the code shown to add the account. msgid "Log in via browser" msgstr "Log in via browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Log in via browser or custom instance" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Log Out" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Log out {0} devices" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Log out {sessionCount} devices" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Log out 1 device" @@ -11141,7 +11144,7 @@ msgstr "Log Out All Devices" msgid "Log out all other devices" msgstr "Log out all other devices" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Log Out All Other Devices" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Mark as 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "mentions:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "mentions:" msgid "Message" msgstr "Message" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Message " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Message @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Message #" @@ -11838,7 +11842,7 @@ msgstr "Messages & Media" msgid "Messages Deleted" msgstr "Messages Deleted" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Messages failed to load" @@ -12016,7 +12020,7 @@ msgstr "More" msgid "More Actions" msgstr "More Actions" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "More emoji slots" @@ -12028,7 +12032,7 @@ msgstr "More options" msgid "More Options" msgstr "More Options" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "More sticker slots" @@ -12162,8 +12166,8 @@ msgstr "Mute channel" msgid "Mute Channel" msgstr "Mute Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Muted until {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Mutual Communities ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Mutual Friends ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Mutual Groups ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "My Application" @@ -12247,7 +12251,7 @@ msgstr "My awesome sticker" msgid "My Category" msgstr "My Category" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "My Devices" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigation" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Need an account?" @@ -12364,7 +12368,7 @@ msgstr "Network" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Network error" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "No community banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "No description provided." @@ -12684,15 +12688,15 @@ msgstr "No microphones detected" msgid "No more scheduled messages." msgstr "No more scheduled messages." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "No mutual communities found." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "No mutual friends found." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "No mutual groups found." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Not your cup of tea? You can disable this feature anytime." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Notification Overrides" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Notify users with this role who have permission to view this channel." msgid "now" msgstr "now" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Now" @@ -13090,7 +13094,7 @@ msgstr "On click" msgid "on:" msgstr "on:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Once deleted, the application and its credentials are permanently removed." @@ -13252,7 +13256,7 @@ msgstr "Open DMs Only" msgid "Open Fluxer" msgstr "Open Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Open image in full view" @@ -13368,7 +13372,7 @@ msgstr "Open Visionary Community" msgid "Opening..." msgstr "Opening..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Original message was deleted" msgid "Other" msgstr "Other" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Other Devices" @@ -13501,7 +13505,7 @@ msgstr "Override unclaimed account status" msgid "Override unread gift inventory status" msgstr "Override unread gift inventory status" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Overview" @@ -13695,7 +13699,7 @@ msgstr "Permissions" msgid "Permissions granted" msgstr "Permissions granted" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Personal notes" @@ -13868,12 +13872,12 @@ msgstr "Play" msgid "Play animated emojis" msgstr "Play animated emojis" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Play audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Please paste the message link you are reporting." msgid "Please provide an email address." msgstr "Please provide an email address." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Please retry or go back to the applications list." @@ -13989,7 +13993,7 @@ msgstr "Plutonium perks" msgid "Plutonium Subscription" msgstr "Plutonium Subscription" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Privacy Dashboard" msgid "Privacy Policy" msgstr "Privacy Policy" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Purge this sticker from storage and CDN" msgid "Push Notification Inactive Timeout" msgstr "Push Notification Inactive Timeout" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push notifications" @@ -14412,7 +14416,7 @@ msgstr "Reaction Interaction Disabled" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reactions" @@ -14583,7 +14587,7 @@ msgstr "Refresh push subscription" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerate" @@ -14591,19 +14595,19 @@ msgstr "Regenerate" msgid "Regenerate backup codes" msgstr "Regenerate backup codes" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerate bot token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerate client secret?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerating will invalidate the current secret. Update any code that uses the old value." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerating will invalidate the current token. Update any code that uses the old value." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Remove filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Remove filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Report submitted successfully. Our Safety Team will review it shortly." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Report User" @@ -15105,7 +15109,7 @@ msgstr "Requested scopes" msgid "Require 2FA for moderation actions" msgstr "Require 2FA for moderation actions" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Require double-click to join voice channels" @@ -15144,7 +15148,7 @@ msgstr "Requires everything in Medium, plus being a member of the server for at msgid "Requires Plutonium" msgstr "Requires Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reschedule Message" @@ -15290,11 +15294,11 @@ msgstr "Resubscribe" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Retry" @@ -15359,7 +15363,7 @@ msgstr "Revoke" msgid "Revoke Ban" msgstr "Revoke Ban" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revoke device" @@ -15386,7 +15390,7 @@ msgstr "Rewind {DEFAULT_SEEK_AMOUNT} seconds" msgid "Right" msgstr "Right" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Right aligned" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Search members..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Search messages" @@ -15834,13 +15838,13 @@ msgstr "Search roles or members..." msgid "Search saved media" msgstr "Search saved media" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Search scope" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Search scope: {0}" @@ -15857,7 +15861,7 @@ msgstr "Search settings..." msgid "Search stickers..." msgstr "Search stickers..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Search suggestions" @@ -15938,7 +15942,7 @@ msgstr "Security Key / Passkey" msgid "Security key verification failed. Please try again." msgstr "Security key verification failed. Please try again." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Select account" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Select All" @@ -16040,7 +16044,7 @@ msgstr "Select media size for embedded content from links" msgid "Select media size for uploaded attachments" msgstr "Select media size for uploaded attachments" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Select mutual view" @@ -16151,9 +16155,9 @@ msgstr "Send code" msgid "Send Code" msgstr "Send Code" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Send Friend Request" @@ -16170,7 +16174,7 @@ msgstr "Send Message · Right-click to schedule" msgid "Send Message Disabled" msgstr "Send Message Disabled" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Send messages" @@ -16624,7 +16628,7 @@ msgstr "Show Gift Button" msgid "Show inline images and videos" msgstr "Show inline images and videos" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Show just the typing indicator without avatars" @@ -16788,11 +16792,11 @@ msgstr "Show the gift as already redeemed" msgid "Show this role separately" msgstr "Show this role separately" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Show typing indicator with user avatars in the channel list" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Show typing on selected channel" @@ -17151,7 +17155,7 @@ msgstr "Spanish (Spain)" msgid "Speak" msgstr "Speak" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Speak Message" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Start Sharing" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Start Video Call" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Start Voice Call" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Sticker density" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Sticker pack" @@ -17427,7 +17431,7 @@ msgstr "Stop Ringing" msgid "Stop Sharing" msgstr "Stop Sharing" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Stop Speaking" @@ -17570,19 +17574,19 @@ msgstr "Suppress all role @mentions" msgid "Suppress All Role @mentions" msgstr "Suppress All Role @mentions" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suppress embeds" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Text channel" @@ -18028,10 +18032,10 @@ msgstr "This action requires verification to continue." msgid "This application" msgstr "This application" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "This attachment has expired" @@ -18039,7 +18043,7 @@ msgstr "This attachment has expired" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "This cannot be undone. Removing the application also deletes its bot." @@ -18101,7 +18105,7 @@ msgstr "This community has reached its maximum member limit and is not accepting msgid "This community has temporarily disabled invites." msgstr "This community has temporarily disabled invites." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "This community has temporarily disabled invites. You can try again later." @@ -18178,7 +18182,7 @@ msgstr "This invite has unlimited uses." msgid "This invite link never expires." msgstr "This invite link never expires." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "This is the beginning of <0>{displayName}. Add friends to start a conversation!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "This is the beginning of your direct message history with <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "This was a @silent message." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "This will create a rift in the space-time continuum and cannot be undone msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "This will modify the existing scheduled message rather than sending immediately." @@ -18387,8 +18391,8 @@ msgstr "This will remove the saved session for this account." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "This will replace your current custom theme. You can edit it later in your User Settings." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Thumbnail for {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts appear in the top-center of the screen." msgid "today" msgstr "today" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Today" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Try again" @@ -18737,7 +18741,7 @@ msgstr "Try another name or check your spelling." msgid "Try another search term" msgstr "Try another search term" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Try asking for a new invite." @@ -18864,7 +18868,7 @@ msgstr "Type Scale" msgid "Type your message here..." msgstr "Type your message here..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Typing events" @@ -18877,11 +18881,11 @@ msgstr "Typing indicator" msgid "Typing Indicator" msgstr "Typing Indicator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Typing indicator + avatars" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Typing indicator only" @@ -18961,11 +18965,11 @@ msgstr "Unable to Start Call" msgid "Unable to start email change" msgstr "Unable to start email change" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Unavailable for everyone" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Unavailable for everyone but staff" @@ -18978,7 +18982,7 @@ msgstr "Unavailable for everyone but staff" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Unblock this user before sending a friend request." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Unblock User" @@ -19165,7 +19169,7 @@ msgstr "Unknown error" msgid "Unknown Gift" msgstr "Unknown Gift" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Unknown Invite" @@ -19205,11 +19209,11 @@ msgstr "unknown-role" msgid "Unlimited" msgstr "Unlimited" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Unlimited emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Unlimited stickers" @@ -19254,7 +19258,7 @@ msgstr "Unlock stickers in DMs with Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Unmute Category" msgid "Unmute Channel" msgstr "Unmute Channel" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Unmute Favorites" msgid "Unmute User" msgstr "Unmute User" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Unnamed" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Until I change it" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Unverified Email" msgid "Up to 4K/60fps" msgstr "Up to 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Update" @@ -19629,7 +19633,7 @@ msgstr "Upload Entrance Sound" msgid "Upload Failed" msgstr "Upload Failed" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Upload file" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "User Moved Channel" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "User Profile" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "User Profile: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Values" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity URL" @@ -20059,14 +20063,14 @@ msgstr "Verification may be required before viewing your backup codes." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verified Community" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verified guild" @@ -20167,8 +20171,8 @@ msgstr "Video Quality" msgid "Video Settings" msgstr "Video Settings" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Video thumbnail" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "View Codes" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "View Community Profile" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "View Gift Inventory" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "View Global Profile" @@ -20329,7 +20333,7 @@ msgstr "Violation category selection" msgid "Violent or Graphic Content" msgstr "Violent or Graphic Content" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP voice" @@ -20341,7 +20345,7 @@ msgstr "Visible Buttons" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Voice Calls" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Voice channel" @@ -20442,7 +20446,7 @@ msgstr "Voice Channel" msgid "Voice Channel Full" msgstr "Voice Channel Full" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Voice Channel Join Behavior" @@ -20559,7 +20563,7 @@ msgstr "We couldn't join this community at this time." msgid "We couldn't load the invites at this time." msgstr "We couldn't load the invites at this time." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "We couldn't load this application" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "We're having trouble connecting to Fluxer's servers. This could be a temporary network issue or scheduled maintenance." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "We're having trouble connecting to the space-time continuum. Please check your connection and try again." @@ -20759,7 +20763,7 @@ msgstr "Weekend Warriors" msgid "Welcome and system messages will appear here." msgstr "Welcome and system messages will appear here." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Welcome back" @@ -20820,7 +20824,7 @@ msgstr "What's happening?" msgid "What's included in your export:" msgstr "What's included in your export:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "When disabled (default), typing indicators won't appear on the channel you're currently viewing." @@ -20836,7 +20840,7 @@ msgstr "When enabled, quickly tapping your push-to-talk shortcut will keep your msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "When enabled, shortcut badges are hidden in tooltip popups." @@ -20868,7 +20872,7 @@ msgstr "When enabled, uses your computer's locale to determine 12/24-hour format msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." @@ -20974,7 +20978,7 @@ msgstr "Yearly {yearlyPrice}" msgid "yesterday" msgstr "yesterday" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Yesterday" @@ -21017,7 +21021,7 @@ msgstr "You are editing your per-community profile. This profile will only be vi msgid "You are in slowmode. Please wait before sending another message." msgstr "You are in slowmode. Please wait before sending another message." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "You are now a developer!" @@ -21117,7 +21121,7 @@ msgstr "You can use links and Markdown to format your text. With <0/>, you can w msgid "You can't add new reactions while you're on timeout." msgstr "You can't add new reactions while you're on timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "You can't befriend yourself" @@ -21132,7 +21136,7 @@ msgstr "You can't interact with reactions in search results as it might disrupt msgid "You can't join while you're on timeout." msgstr "You can't join while you're on timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21217,7 +21221,7 @@ msgstr "You cannot unmute yourself because you have been muted by a moderator." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "You do not have permission to send messages in this channel." @@ -21443,7 +21447,7 @@ msgstr "You'll appear offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "You'll configure which permissions the bot receives on the next screen." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "You'll have to log back in on all logged out devices" @@ -21512,7 +21516,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:912 +#: src/components/channel/Messages.tsx:923 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 bc7f7b45..d71daf2f 100644 --- a/fluxer_app/src/locales/es-419/messages.po +++ b/fluxer_app/src/locales/es-419/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# elemento} other {# elementos}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# miembro} other {# miembros}}" @@ -566,18 +566,18 @@ msgstr "Las imágenes {label} no pueden ser animadas. Por favor, usa JPEG, PNG o #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Miembro" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Miembros" @@ -612,11 +612,11 @@ msgstr "{minutes} minutos y {seconds} segundos" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutos y 1 segundo" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} comunidad mutua" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} comunidades mutuas" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participantes en llamada" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} en línea" @@ -650,15 +650,15 @@ msgstr "Te quedan {remaining} caracteres" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Te quedan {remaining} caracteres. Obtén Plutonium para escribir hasta {premiumMaxLength} caracteres." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Miembro" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Miembros" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} en línea" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "Menciones de @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Color de acento" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Aceptar" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Aceptar solicitud de amistad" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Aceptar invitación" @@ -1364,8 +1364,8 @@ msgstr "Aceptar invitación" msgid "Accept the incoming call" msgstr "Aceptar la llamada entrante" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Aceptar esta invitación instala el paquete automáticamente." @@ -1594,7 +1594,7 @@ msgstr "Agregar canales favoritos" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Permitido {0}." msgid "Already have an account?" msgstr "¿Ya tienes una cuenta?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Ya te uniste" @@ -2191,7 +2191,7 @@ msgstr "Avatares y banners animados" msgid "Animated Avatars Require Plutonium" msgstr "Los avatares animados requieren Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Banner animado" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji animado ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animado" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Video GIF animado" @@ -2219,7 +2219,7 @@ msgstr "Video GIF animado" msgid "Animated GIF Video" msgstr "Video GIF animado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Icono animado" @@ -2277,7 +2277,7 @@ msgstr "Cualquiera puede @mencionar este rol. Los miembros con \"Usar @everyone/ msgid "API Endpoint" msgstr "Endpoint de la API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Información de la aplicación" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nombre de la aplicación" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "El nombre de la aplicación es obligatorio" @@ -2554,7 +2553,7 @@ msgstr "¿Estás seguro de que quieres revocar la prohibición para <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Adjunto {0}" msgid "Attachment Actions" msgstr "Acciones de Adjunto" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Adjunto expirado" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autocompletar" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automático" @@ -2859,7 +2858,7 @@ msgstr "Atrás" msgid "Back to Applications" msgstr "Volver a Aplicaciones" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Volver a la lista" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Volver al inicio de sesión" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Volver a Anulaciones" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Volver a Roles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Volver a Configuración" @@ -3003,7 +3002,7 @@ msgstr "Usuarios bloqueados" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Límite de caracteres de la biografía" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Alcance del bot solicitado" msgid "Bot token" msgstr "Token del bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token del bot regenerado. Actualiza cualquier código que use el token anterior." @@ -3435,7 +3434,7 @@ msgstr "Configuración de cámara" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Configuración de cámara" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Configuración de cámara" msgid "Cancel" msgstr "Cancelar" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Cancelar solicitud de amistad" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "¡Cuidado! Tienes cambios sin guardar." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categoría" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nombre de la categoría" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Configuración de categoría" @@ -3617,7 +3616,7 @@ msgstr "Precaución" msgid "Center" msgstr "Centro" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrado" @@ -3765,7 +3764,7 @@ msgstr "Cambió la tasa de bits a {0}." msgid "Changed the voice region to {0}." msgstr "Se cambió la región de voz a {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "canal" @@ -3828,11 +3827,11 @@ msgstr "ID del canal copiado al portapapeles" msgid "Channel link copied" msgstr "Enlace del canal copiado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Modo de indicador de escritura en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicadores de escritura en la lista de canales" @@ -3891,7 +3890,7 @@ msgstr "Canal eliminado de favoritos" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Configuración del canal" @@ -4052,7 +4051,7 @@ msgstr "Elige cómo se muestran las horas en toda la aplicación." msgid "Choose how typing indicators appear in the channel list" msgstr "Elige cómo aparecen los indicadores de escritura en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Elige cómo aparecen los indicadores de escritura en la lista de canales cuando alguien está escribiendo en un canal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Reclama tu cuenta para canjear este regalo." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Reclama tu cuenta para enviar solicitudes de amistad." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Borrar permisos" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Borrar búsqueda" msgid "Clear search input" msgstr "Borrar entrada de búsqueda" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Borrar selección" @@ -4314,7 +4313,7 @@ msgstr "Haz clic en el ícono de subida junto a cualquier sonido para personaliz msgid "Click the verification link in the email." msgstr "Haz clic en el enlace de verificación en el correo electrónico." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Haz clic para agregar una nota" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "¡Haz clic para reclamar tu regalo!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Haz clic para copiar" @@ -4388,7 +4387,7 @@ msgstr "Haz clic para ver todas las reacciones" msgid "Client secret" msgstr "Secreto del cliente" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Secreto del cliente regenerado. Actualiza cualquier código que use el secreto anterior." @@ -4649,8 +4648,8 @@ msgstr "La comunidad promueve odio basado en características protegidas" msgid "Community promotes or facilitates illegal activities" msgstr "La comunidad promueve o facilita actividades ilegales" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menús contextuales" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Los menús contextuales se pueden abrir con clic izquierdo (en botones) o clic derecho (en otros elementos). Esto demuestra varios elementos del menú, incluyendo casillas de verificación, botones de opción, controles deslizantes y submenús." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Controla cómo se previsualizan los enlaces de sitios web en el chat" msgid "Control how you join voice channels" msgstr "Controlar cómo te unes a canales de voz" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Controla cómo te unes a canales de voz en comunidades." @@ -5012,7 +5011,7 @@ msgstr "Controlar animaciones de stickers" msgid "Control the visibility of favorites throughout the app." msgstr "Controla la visibilidad de los favoritos en toda la aplicación." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Controla si las sugerencias de atajos de teclado aparecen dentro de las sugerencias." @@ -5071,7 +5070,7 @@ msgstr "Copiado" msgid "Copied to clipboard" msgstr "Copiado al portapapeles" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiada al portapapeles" @@ -5149,7 +5148,7 @@ msgstr "Copiar enlace del archivo" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copiar FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copiar FluxerTag" msgid "Copy GIF" msgstr "Copiar GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copiar ID del gremio" @@ -5222,7 +5221,7 @@ msgstr "Copiar texto" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Acogedor" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Crear" @@ -5331,14 +5330,14 @@ msgstr "Crear y administrar aplicaciones y bots para tu cuenta." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Crear y compartir paquetes de emojis y stickers personalizados con Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Crear aplicación" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Crear aplicación" msgid "Create Category" msgstr "Crear categoría" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Creado {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Creado por {0}" @@ -5569,7 +5568,7 @@ msgstr "La imagen recortada es demasiado grande. Por favor, elige un área más msgid "Current Community" msgstr "Comunidad actual" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dispositivo actual" @@ -5606,7 +5605,7 @@ msgstr "Actualmente atascado en 1885, apareciendo como desconectado" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Actualmente: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Peligro Secundario" msgid "Danger secondary clicked!" msgstr "¡Peligro secundario clicado!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona de peligro" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Eliminar todos mis mensajes" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Eliminar aplicación" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Eliminar adjunto" @@ -6063,7 +6062,7 @@ msgstr "Eliminar adjunto" msgid "Delete Attachment" msgstr "Eliminar adjunto" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Eliminar categoría" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Eliminar canal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Eliminar medios" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Eliminar mensaje" @@ -6215,7 +6214,7 @@ msgstr "Compacto" msgid "Dense layout" msgstr "Diseño compacto" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Implementado" @@ -6281,7 +6280,7 @@ msgstr "Canal de destino" msgid "Destination URL:" msgstr "URL de destino:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner desacoplado" @@ -6362,7 +6361,7 @@ msgstr "Diferentes tamaños (estado compatible)" msgid "Different Sizes & Member Counts" msgstr "Diferentes tamaños y recuentos de miembros" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Mensaje directo" @@ -6541,7 +6540,7 @@ msgstr "Desactivar tu cuenta cerrará tu sesión en todas las sesiones. Puedes v msgid "Disallow @mention." msgstr "No permitir @mención." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "No permitir cuentas no reclamadas" @@ -6747,7 +6746,7 @@ msgstr "No mostrar vistas previas de mensajes en la lista de MD" msgid "Don't show this again" msgstr "No volver a mostrar esto" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "No mostrar indicadores de escritura en la lista de canales" @@ -6760,7 +6759,7 @@ msgstr "No mostrar indicadores de escritura en la lista de canales" msgid "Done" msgstr "Hecho" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Editar categoría" msgid "Edit Channel" msgstr "Editar canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Editar sobrescrituras para roles y miembros en este canal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Pantalla de inicio incrustada" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Las imágenes de pantalla de inicio incrustadas no pueden ser animadas. Por favor usa JPEG, PNG o WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio incrustado" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Los nombres de emoji deben tener al menos 2 caracteres y solo pueden contener caracteres alfanuméricos y guiones bajos. Tipos de archivo permitidos: JPEG, PNG, WebP, GIF. Comprimimos las imágenes a 128x128 píxeles. Tamaño máximo: {0} KB por emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Paquete de emojis" @@ -7473,7 +7472,7 @@ msgstr "Ingresar teléfono" msgid "Enter picture-in-picture" msgstr "Entrar en imagen en imagen" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Entrar en modo de selección" @@ -7536,7 +7535,7 @@ msgstr "Ingresa el nuevo correo electrónico que quieres usar. Te enviaremos un msgid "Enter the SMS code you received." msgstr "Ingresa el código SMS que recibiste." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "presiona Enter para <0><1>guardar" @@ -7604,7 +7603,7 @@ msgstr "Error al renderizar LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "La tecla Escape sale del modo teclado" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "presiona Escape para <0><1>cancelar" @@ -7667,7 +7666,7 @@ msgstr "Salir de imagen en imagen" msgid "Exit Preview" msgstr "Salir de vista previa" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Salir del modo de selección" @@ -7701,7 +7700,7 @@ msgstr "Vencido (en los últimos 30 días)" msgid "Expired {absolute}" msgstr "Vencido {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Vencido entre {earliest} y {latest}" @@ -7709,7 +7708,7 @@ msgstr "Vencido entre {earliest} y {latest}" msgid "Expired on {date}" msgstr "Vencido el {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Vencido el {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Vence" msgid "Expires {absolute} ({relativeText})" msgstr "Vence {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Vence entre {earliest} y {latest}" @@ -7730,7 +7729,7 @@ msgstr "Vence entre {earliest} y {latest}" msgid "Expires on {date}" msgstr "Vence el {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Vence el {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Los paquetes de expresiones son una función de Plutonium" msgid "Expression picker categories" msgstr "Categorías del selector de expresiones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Purga de expresiones" @@ -7839,10 +7838,6 @@ msgstr "No se pudo copiar al portapapeles" msgid "Failed to copy URL" msgstr "No se pudo copiar la URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "No se pudo crear la aplicación. Por favor, verifica tus entradas e inténtalo de nuevo." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "No se pudo crear el rol" @@ -8100,7 +8095,7 @@ msgstr "No se pudo revocar la prohibición. Por favor, inténtalo de nuevo." msgid "Failed to revoke invite" msgstr "No se pudo revocar la invitación" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "No se pudo rotar. Por favor, inténtalo de nuevo." @@ -8413,7 +8408,7 @@ msgstr "Amigos del fitness" msgid "Flags" msgstr "Banderas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nombres de canales de texto flexibles" @@ -8577,7 +8572,7 @@ msgstr "Amigos foodies" msgid "For 1 hour" msgstr "Por 1 hora" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Por 1 hora" msgid "For 15 minutes" msgstr "Por 15 minutos" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Por 15 minutos" msgid "For 24 hours" msgstr "Por 24 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Por 3 días" msgid "For 3 hours" msgstr "Por 3 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Por 3 horas" msgid "For 8 hours" msgstr "Por 8 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Olvidar suscripciones" msgid "Forgot Password" msgstr "Olvidé mi contraseña" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" @@ -8795,7 +8790,7 @@ msgstr "Adelantar {DEFAULT_SEEK_AMOUNT} segundos" msgid "Forward Message" msgstr "Reenviar mensaje" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Reenviado" @@ -9065,7 +9060,7 @@ msgstr "Obtén la aplicación de escritorio de Fluxer para push-to-talk en todo #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Volver al canal de texto enfocado anteriormente" msgid "Go forward in navigation history" msgstr "Avanzar en el historial de navegación" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Ir a Comunidad" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Invitaciones de grupo" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Mensaje grupal" @@ -9548,7 +9543,7 @@ msgstr "¡Hola, {username}, bienvenido! Puedes lograr cualquier cosa." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "¡Hola, {username}! Cuando llegue a 88 mph, ¡verás cosas serias!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Oculto" @@ -9569,7 +9564,7 @@ msgstr "Ocultar favoritos" msgid "Hide Join Messages" msgstr "Ocultar mensajes de ingreso" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ocultar sugerencias de teclado en las sugerencias" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ocultar canales silenciados" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Si deseas exportar tus datos o eliminar tus mensajes primero, por favor visita la sección Panel de privacidad en Configuración de usuario antes de proceder." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "imagen" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Entradas con iconos" msgid "Insert emoji" msgstr "Insertar emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Instalar paquete de emojis" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Instalar paquete de stickers" @@ -10153,7 +10148,7 @@ msgstr "Instalado el {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalar paquetes de emojis y stickers requiere una suscripción premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Invitaciones instantáneas" @@ -10286,7 +10281,7 @@ msgstr "Configuración del enlace de invitación" msgid "Invite Links" msgstr "Enlaces de invitación" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal de invitación" msgid "Invite modal preview" msgstr "Vista previa del modal de invitación" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitación enviada para {0}" msgid "Invite sent to {guildName}" msgstr "Invitación enviada a {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Pantalla de invitación" @@ -10354,7 +10349,7 @@ msgstr "Invitar a {0}" msgid "Invite to Community" msgstr "Invitar a la comunidad" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitación no disponible" @@ -10369,12 +10364,12 @@ msgstr "Invitado por {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invitado por {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invitado por {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Las invitaciones están pausadas actualmente en esta comunidad" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Las invitaciones están bloqueadas para comunidades en vista previa. Reclama tu cuenta configurando un correo electrónico y contraseña para habilitar las invitaciones." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitaciones deshabilitadas" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitaciones deshabilitadas" @@ -10482,13 +10477,13 @@ msgstr "¡Únete a una comunidad con pegatinas para comenzar!" msgid "Join call" msgstr "Unirse a la llamada" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Unirse a la comunidad" @@ -10497,15 +10492,23 @@ msgstr "Unirse a la comunidad" msgid "Join community form" msgstr "Formulario para unirse a la comunidad" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Únete a Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Únete a Fluxer HQ para chatear con el equipo y mantenerte al día con lo último!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Unirse al grupo" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Unirse al MD grupal" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notificaciones de unirse" @@ -10620,7 +10623,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:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Saltar al presente" @@ -10690,7 +10693,7 @@ msgstr "Atajos de teclado" msgid "Keyboard" msgstr "Teclado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Pistas del teclado" @@ -10815,7 +10818,7 @@ msgstr "Aprende sobre Plutonium" msgid "Leave blank for a random username" msgstr "Déjalo en blanco para un nombre de usuario aleatorio" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "¿Ya te vas tan pronto?" msgid "Left" msgstr "Izquierda" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Alineado a la izquierda" @@ -10945,7 +10948,7 @@ msgstr "enlace" msgid "Link" msgstr "Enlace" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Vincular canal" @@ -11027,7 +11030,7 @@ msgstr "Cargando prohibiciones..." msgid "Loading communities..." msgstr "Cargando comunidades..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Cargando imagen" @@ -11039,8 +11042,8 @@ msgstr "Cargando invitaciones..." msgid "Loading more..." msgstr "Cargando más..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Marcador de posición de carga" @@ -11064,7 +11067,7 @@ msgstr "Cargando tema..." msgid "Loading verification methods..." msgstr "Cargando métodos de verificación..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Cargando: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Silenciar localmente" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Inicia sesión usando tu navegador, luego ingresa el código mostrado pa msgid "Log in via browser" msgstr "Iniciar sesión por navegador" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Iniciar sesión por navegador o instancia personalizada" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Cerrar sesión" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Cerrar sesión en {0} dispositivos" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Cerrar sesión en {sessionCount} dispositivos" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Cerrar sesión en 1 dispositivo" @@ -11141,7 +11144,7 @@ msgstr "Cerrar sesión en todos los dispositivos" msgid "Log out all other devices" msgstr "Cerrar sesión en todos los demás dispositivos" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Cerrar sesión en todos los demás dispositivos" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marcar como +18 (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "menciones:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "menciones:" msgid "Message" msgstr "Mensaje" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Mensaje " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Mensaje @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Mensaje #" @@ -11838,7 +11842,7 @@ msgstr "Mensajes y medios" msgid "Messages Deleted" msgstr "Mensajes eliminados" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "No se pudieron cargar los mensajes" @@ -12016,7 +12020,7 @@ msgstr "Más" msgid "More Actions" msgstr "Más acciones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Más espacios para emojis" @@ -12028,7 +12032,7 @@ msgstr "Más opciones" msgid "More Options" msgstr "Más opciones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Más espacios para stickers" @@ -12162,8 +12166,8 @@ msgstr "Silenciar canal" msgid "Mute Channel" msgstr "Silenciar canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Silenciado hasta {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Silenciar una comunidad evita que aparezcan indicadores de no leídos y notificaciones a menos que te mencionen" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Comunidades mutuas ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Amigos mutuos ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Grupos mutuos ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Mi aplicación" @@ -12247,7 +12251,7 @@ msgstr "Mi sticker increíble" msgid "My Category" msgstr "Mi categoría" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mis dispositivos" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navegación" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "¿Necesitas una cuenta?" @@ -12364,7 +12368,7 @@ msgstr "Red" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Error de red" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Sin banner de comunidad" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "No se proporcionó descripción." @@ -12684,15 +12688,15 @@ msgstr "No se detectaron micrófonos" msgid "No more scheduled messages." msgstr "No hay más mensajes programados." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "No se encontraron comunidades mutuas." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "No se encontraron amigos mutuos." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "No se encontraron grupos mutuos." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "¿No es lo tuyo? Puedes desactivar esta función en cualquier momento." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Anulaciones de notificaciones" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Notificar a los usuarios con este rol que tengan permiso para ver este c msgid "now" msgstr "ahora" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Ahora" @@ -13090,7 +13094,7 @@ msgstr "Al hacer clic" msgid "on:" msgstr "en:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Una vez eliminada, la aplicación y sus credenciales se eliminan permanentemente." @@ -13252,7 +13256,7 @@ msgstr "Abrir solo MD" msgid "Open Fluxer" msgstr "Abrir Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Abrir imagen en vista completa" @@ -13368,7 +13372,7 @@ msgstr "Abrir Comunidad Visionaria" msgid "Opening..." msgstr "Abriendo..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operador" @@ -13441,7 +13445,7 @@ msgstr "El mensaje original fue eliminado" msgid "Other" msgstr "Otro" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Otros dispositivos" @@ -13501,7 +13505,7 @@ msgstr "Anular estado de cuenta no reclamada" msgid "Override unread gift inventory status" msgstr "Anular estado de inventario de regalos no leídos" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Resumen" @@ -13695,7 +13699,7 @@ msgstr "Permisos" msgid "Permissions granted" msgstr "Permisos otorgados" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Notas personales" @@ -13868,12 +13872,12 @@ msgstr "Reproducir" msgid "Play animated emojis" msgstr "Reproducir emojis animados" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Reproducir audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Pega el enlace del mensaje que estás reportando." msgid "Please provide an email address." msgstr "Proporciona una dirección de correo electrónico." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Vuelve a intentarlo o regresa a la lista de aplicaciones." @@ -13989,7 +13993,7 @@ msgstr "Beneficios de Plutonium" msgid "Plutonium Subscription" msgstr "Suscripción a Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Panel de privacidad" msgid "Privacy Policy" msgstr "Política de privacidad" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Eliminar esta pegatina del almacenamiento y la CDN" msgid "Push Notification Inactive Timeout" msgstr "Tiempo de inactividad para notificaciones push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notificaciones push" @@ -14412,7 +14416,7 @@ msgstr "Interacción de reacción deshabilitada" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reacciones" @@ -14583,7 +14587,7 @@ msgstr "Actualizar suscripción push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerar" @@ -14591,19 +14595,19 @@ msgstr "Regenerar" msgid "Regenerate backup codes" msgstr "Regenerar códigos de respaldo" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "¿Regenerar token del bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "¿Regenerar secreto del cliente?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerar invalidará el secreto actual. Actualiza cualquier código que use el valor anterior." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerar invalidará el token actual. Actualiza cualquier código que use el valor anterior." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Eliminar filtro" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Eliminar filtro" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Reporte enviado exitosamente. Nuestro equipo de seguridad lo revisará p #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Reportar usuario" @@ -15105,7 +15109,7 @@ msgstr "Alcances solicitados" msgid "Require 2FA for moderation actions" msgstr "Requerir 2FA para acciones de moderación" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Requerir doble clic para unirse a canales de voz" @@ -15144,7 +15148,7 @@ msgstr "Requiere todo lo de Medio, más ser miembro del servidor durante al meno msgid "Requires Plutonium" msgstr "Requiere Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reprogramar mensaje" @@ -15290,11 +15294,11 @@ msgstr "Volver a suscribirse" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Reintentar" @@ -15359,7 +15363,7 @@ msgstr "Revocar" msgid "Revoke Ban" msgstr "Revocar prohibición" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revocar dispositivo" @@ -15386,7 +15390,7 @@ msgstr "Rebobinar {DEFAULT_SEEK_AMOUNT} segundos" msgid "Right" msgstr "Derecha" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Alineado a la derecha" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Buscar miembros..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Buscar mensajes" @@ -15834,13 +15838,13 @@ msgstr "Buscar roles o miembros..." msgid "Search saved media" msgstr "Buscar medios guardados" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Ámbito de búsqueda" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Ámbito de búsqueda: {0}" @@ -15857,7 +15861,7 @@ msgstr "Buscar ajustes..." msgid "Search stickers..." msgstr "Buscar pegatinas..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sugerencias de búsqueda" @@ -15938,7 +15942,7 @@ msgstr "Clave de seguridad / Passkey" msgid "Security key verification failed. Please try again." msgstr "La verificación de la clave de seguridad falló. Por favor, inténtalo de nuevo." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Ve todos los dispositivos que actualmente tienen sesión iniciada en tu cuenta. Revoca cualquier sesión que no reconozcas." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Seleccionar cuenta" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Seleccionar todo" @@ -16040,7 +16044,7 @@ msgstr "Seleccionar tamaño de medios para contenido incrustado desde enlaces" msgid "Select media size for uploaded attachments" msgstr "Seleccionar tamaño de medios para archivos adjuntos subidos" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Seleccionar vista mutua" @@ -16151,9 +16155,9 @@ msgstr "Enviar código" msgid "Send Code" msgstr "Enviar código" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Enviar solicitud de amistad" @@ -16170,7 +16174,7 @@ msgstr "Enviar mensaje · Haz clic derecho para programar" msgid "Send Message Disabled" msgstr "Enviar mensaje deshabilitado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Enviar mensajes" @@ -16624,7 +16628,7 @@ msgstr "Mostrar botón de regalo" msgid "Show inline images and videos" msgstr "Mostrar imágenes y videos en línea" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Mostrar solo el indicador de escritura sin avatares" @@ -16788,11 +16792,11 @@ msgstr "Mostrar el regalo como ya canjeado" msgid "Show this role separately" msgstr "Mostrar este rol por separado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Mostrar indicador de escritura con avatares de usuarios en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Mostrar escritura en canal seleccionado" @@ -17151,7 +17155,7 @@ msgstr "Español (España)" msgid "Speak" msgstr "Hablar" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Hablar mensaje" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Comenzar a compartir" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Iniciar videollamada" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Iniciar llamada de voz" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densidad de pegatinas" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Paquete de pegatinas" @@ -17427,7 +17431,7 @@ msgstr "Dejar de sonar" msgid "Stop Sharing" msgstr "Dejar de compartir" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Dejar de hablar" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suprimir incrustaciones" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Texto" msgid "Text (NSFW)" msgstr "Texto (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Canal de texto" @@ -18028,10 +18032,10 @@ msgstr "Esta acción requiere verificación para continuar." msgid "This application" msgstr "Esta aplicación" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Este archivo adjunto ha expirado" @@ -18039,7 +18043,7 @@ msgstr "Este archivo adjunto ha expirado" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Este bot está solicitando el permiso de Administrador. No recomendamos otorgar esto a aplicaciones en producción a menos que confíes completamente en el desarrollador. Considera pedirles que soliciten un conjunto reducido de permisos. Cierra esta página si no estás seguro." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Esto no se puede deshacer. Eliminar la aplicación también borra su bot." @@ -18101,7 +18105,7 @@ msgstr "Esta comunidad ha alcanzado su límite máximo de miembros y no está ac msgid "This community has temporarily disabled invites." msgstr "Esta comunidad ha desactivado temporalmente las invitaciones." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Esta comunidad ha desactivado temporalmente las invitaciones. Puedes intentarlo más tarde." @@ -18178,7 +18182,7 @@ msgstr "Esta invitación tiene usos ilimitados." msgid "This invite link never expires." msgstr "Este enlace de invitación nunca expira." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Este es el comienzo de <0>{displayName}. ¡Agrega amigos para comenzar una conversación!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Este es el comienzo de tu historial de mensajes directos con <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Este fue un mensaje @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Esto creará una grieta en el continuo espacio-tiempo y no se puede desh msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Esto ocultará todos los elementos de la interfaz relacionados con favoritos, incluidos botones y elementos del menú. Tus favoritos existentes se conservarán y se pueden volver a habilitar en cualquier momento desde <0>Configuración del Usuario → Apariencia → Favoritos." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Esto modificará el mensaje programado existente en lugar de enviarlo inmediatamente." @@ -18387,8 +18391,8 @@ msgstr "Esto eliminará la sesión guardada de esta cuenta." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Esto reemplazará tu tema personalizado actual. Puedes editarlo más tarde en tu Configuración de Usuario." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatura para {title}" @@ -18485,7 +18489,7 @@ msgstr "Los toasts aparecen en la parte superior-centro de la pantalla." msgid "today" msgstr "hoy" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Hoy" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Inténtalo de nuevo" @@ -18737,7 +18741,7 @@ msgstr "Prueba otro nombre o revisa tu ortografía." msgid "Try another search term" msgstr "Prueba otro término de búsqueda" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Intenta pedir una nueva invitación." @@ -18864,7 +18868,7 @@ msgstr "Escala de tipos" msgid "Type your message here..." msgstr "Escribe tu mensaje aquí..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Eventos de escritura" @@ -18877,11 +18881,11 @@ msgstr "Indicador de escritura" msgid "Typing Indicator" msgstr "Indicador de escritura" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicador de escritura + avatares" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Solo indicador de escritura" @@ -18961,11 +18965,11 @@ msgstr "No se puede iniciar la llamada" msgid "Unable to start email change" msgstr "No se puede iniciar el cambio de correo electrónico" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "No disponible para todos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "No disponible para todos excepto el personal" @@ -18978,7 +18982,7 @@ msgstr "No disponible para todos excepto el personal" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Desbloquea a este usuario antes de enviar una solicitud de amistad." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Desbloquear usuario" @@ -19165,7 +19169,7 @@ msgstr "Error desconocido" msgid "Unknown Gift" msgstr "Regalo desconocido" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Invitación desconocida" @@ -19205,11 +19209,11 @@ msgstr "rol-desconocido" msgid "Unlimited" msgstr "Ilimitado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emoji ilimitado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Stickers ilimitados" @@ -19254,7 +19258,7 @@ msgstr "Desbloquea stickers en mensajes directos con Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Activar sonido de categoría" msgid "Unmute Channel" msgstr "Activar sonido de canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Activar sonido de favoritos" msgid "Unmute User" msgstr "Activar sonido de usuario" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Sin nombre" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Hasta que lo cambie" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Correo no verificado" msgid "Up to 4K/60fps" msgstr "Hasta 4K/60 fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Actualizar" @@ -19629,7 +19633,7 @@ msgstr "Subir sonido de entrada" msgid "Upload Failed" msgstr "Error al subir" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Subir archivo" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Usuario movió canal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Perfil de usuario" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Perfil de usuario: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valores" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personalizada" @@ -20059,14 +20063,14 @@ msgstr "Puede ser necesaria la verificación antes de ver tus códigos de respal #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Comunidad verificada" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Gremio verificado" @@ -20167,8 +20171,8 @@ msgstr "Calidad de video" msgid "Video Settings" msgstr "Configuración de video" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatura de video" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Ver códigos" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Ver perfil de la comunidad" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Ver inventario de regalos" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Ver perfil global" @@ -20329,7 +20333,7 @@ msgstr "Selección de categoría de infracción" msgid "Violent or Graphic Content" msgstr "Contenido violento o gráfico" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voz VIP" @@ -20341,7 +20345,7 @@ msgstr "Botones visibles" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionario" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Llamadas de voz" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Canal de voz" @@ -20442,7 +20446,7 @@ msgstr "Canal de voz" msgid "Voice Channel Full" msgstr "Canal de voz lleno" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportamiento al unirse al canal de voz" @@ -20559,7 +20563,7 @@ msgstr "No pudimos unirnos a esta comunidad en este momento." msgid "We couldn't load the invites at this time." msgstr "No pudimos cargar las invitaciones en este momento." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "No pudimos cargar esta aplicación" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Estamos teniendo problemas para conectarnos a los servidores de Fluxer. Esto podría ser un problema temporal de red o mantenimiento programado." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Estamos teniendo problemas para conectarnos al continuo espacio-tiempo. Por favor, revisa tu conexión e inténtalo de nuevo." @@ -20759,7 +20763,7 @@ msgstr "Guerreros de Fin de Semana" msgid "Welcome and system messages will appear here." msgstr "Los mensajes de bienvenida y del sistema aparecerán aquí." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Bienvenido de vuelta" @@ -20820,7 +20824,7 @@ msgstr "¿Qué está pasando?" msgid "What's included in your export:" msgstr "Qué incluye tu exportación:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Cuando está deshabilitado (por defecto), los indicadores de escritura no aparecerán en el canal que estás viendo actualmente." @@ -20836,7 +20840,7 @@ msgstr "Cuando está habilitado, pulsar rápidamente tu acceso directo de pulsar msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Cuando está habilitado, muestra menús de depuración en toda la aplicación para inspeccionar y copiar objetos JSON sin procesar de estructuras de datos internas como mensajes, canales, usuarios y comunidades. También incluye herramientas para depurar el rendimiento del analizador Markdown de Fluxer y el AST de cualquier mensaje dado." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Cuando está habilitado, las insignias de atajos están ocultas en las ventanas emergentes de información sobre herramientas." @@ -20868,7 +20872,7 @@ msgstr "Cuando está habilitado, usa la configuración regional de tu computador msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Cuando está habilitado, puedes marcar canales como favoritos y aparecerán en la sección de Favoritos. Cuando está deshabilitado, todos los elementos de la interfaz de usuario relacionados con favoritos (botones, elementos del menú) estarán ocultos. Tus favoritos existentes se conservarán." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Cuando está habilitado, necesitarás hacer doble clic en los canales de voz para unirte a ellos. Cuando está deshabilitado (por defecto), hacer un solo clic te unirá al canal inmediatamente." @@ -20970,7 +20974,7 @@ msgstr "Anual {yearlyPrice}" msgid "yesterday" msgstr "ayer" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Ayer" @@ -21013,7 +21017,7 @@ msgstr "Estás editando tu perfil por comunidad. Este perfil solo será visible msgid "You are in slowmode. Please wait before sending another message." msgstr "Estás en modo lento. Por favor, espera antes de enviar otro mensaje." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "¡Ahora eres un desarrollador!" @@ -21113,7 +21117,7 @@ msgstr "Puedes usar enlaces y Markdown para dar formato a tu texto. Con <0/>, pu msgid "You can't add new reactions while you're on timeout." msgstr "No puedes agregar nuevas reacciones mientras estás en tiempo de espera." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "No puedes hacerte amigo de ti mismo" @@ -21128,7 +21132,7 @@ msgstr "No puedes interactuar con reacciones en los resultados de búsqueda, ya msgid "You can't join while you're on timeout." msgstr "No puedes unirte mientras estás en tiempo de espera." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "No puedes quitar el silencio porque un moderador te ha silenciado." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "No tienes permiso para enviar mensajes en este canal." @@ -21439,7 +21443,7 @@ msgstr "Aparecerás como desconectado" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Configurarás qué permisos recibe el bot en la siguiente pantalla." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Tendrás que iniciar sesión de nuevo en todos los dispositivos donde hayas cerrado sesión" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 8c6ac67e..eafbd68c 100644 --- a/fluxer_app/src/locales/es-ES/messages.po +++ b/fluxer_app/src/locales/es-ES/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# elemento} other {# elementos}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# miembro} other {# miembros}}" @@ -566,18 +566,18 @@ msgstr "Las imágenes de {label} no pueden ser animadas. Por favor, usa JPEG, PN #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Miembro" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Miembros" @@ -612,11 +612,11 @@ msgstr "{minutes} minutos y {seconds} segundos" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutos y 1 segundo" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} comunidad mutua" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} comunidades mutuas" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participantes en la llamada" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} en línea" @@ -650,15 +650,15 @@ msgstr "Te quedan {remaining} caracteres" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Te quedan {remaining} caracteres. Obtén Plutonium para escribir hasta {premiumMaxLength} caracteres." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Miembro" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Miembros" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} en línea" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "Menciones de @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Color de acento" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Aceptar" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Aceptar solicitud de amistad" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Aceptar invitación" @@ -1364,8 +1364,8 @@ msgstr "Aceptar invitación" msgid "Accept the incoming call" msgstr "Aceptar la llamada entrante" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Aceptar esta invitación instala el paquete automáticamente." @@ -1594,7 +1594,7 @@ msgstr "Añadir canales favoritos" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Permitido {0}." msgid "Already have an account?" msgstr "¿Ya tienes una cuenta?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Ya te has unido" @@ -2191,7 +2191,7 @@ msgstr "Avatares y banners animados" msgid "Animated Avatars Require Plutonium" msgstr "Los avatares animados requieren Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Banner animado" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji animado ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animado" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Vídeo GIF animado" @@ -2219,7 +2219,7 @@ msgstr "Vídeo GIF animado" msgid "Animated GIF Video" msgstr "Vídeo GIF animado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Icono animado" @@ -2277,7 +2277,7 @@ msgstr "Cualquiera puede @mencionar este rol. Los miembros con \"Usar @everyone/ msgid "API Endpoint" msgstr "Punto final de la API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Información de la aplicación" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nombre de la aplicación" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "El nombre de la aplicación es obligatorio" @@ -2554,7 +2553,7 @@ msgstr "¿Estás seguro de que quieres revocar la prohibición para <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Adjunto {0}" msgid "Attachment Actions" msgstr "Acciones del Adjunto" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Adjunto caducado" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autocompletado" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automático" @@ -2859,7 +2858,7 @@ msgstr "Atrás" msgid "Back to Applications" msgstr "Volver a aplicaciones" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Volver a la lista" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Volver al inicio de sesión" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Volver a anulaciones" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Volver a roles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Volver a ajustes" @@ -3003,7 +3002,7 @@ msgstr "Usuarios expulsados" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Cabecera" @@ -3096,7 +3095,7 @@ msgstr "Límite de caracteres de la biografía" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Ámbito del bot solicitado" msgid "Bot token" msgstr "Token del bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token del bot regenerado. Actualiza cualquier código que use el token antiguo." @@ -3435,7 +3434,7 @@ msgstr "Configuración de la cámara" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Configuración de la cámara" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Configuración de la cámara" msgid "Cancel" msgstr "Cancelar" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Cancelar solicitud de amistad" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "¡Cuidado! Tienes cambios sin guardar." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categoría" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nombre de la categoría" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Configuración de categoría" @@ -3617,7 +3616,7 @@ msgstr "Precaución" msgid "Center" msgstr "Centro" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrado" @@ -3765,7 +3764,7 @@ msgstr "Tasa de bits cambiada a {0}." msgid "Changed the voice region to {0}." msgstr "Se cambió la región de voz a {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "canal" @@ -3828,11 +3827,11 @@ msgstr "ID del canal copiado al portapapeles" msgid "Channel link copied" msgstr "Enlace del canal copiado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Modo de indicador de escritura en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicadores de escritura en la lista de canales" @@ -3891,7 +3890,7 @@ msgstr "Canal eliminado de favoritos" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Configuración del canal" @@ -4052,7 +4051,7 @@ msgstr "Elige cómo se muestran las horas en toda la aplicación." msgid "Choose how typing indicators appear in the channel list" msgstr "Elige cómo aparecen los indicadores de escritura en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Elige cómo aparecen los indicadores de escritura en la lista de canales cuando alguien está escribiendo en un canal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Reclama tu cuenta para canjear este regalo." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Reclama tu cuenta para enviar solicitudes de amistad." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Borrar permisos" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Borrar búsqueda" msgid "Clear search input" msgstr "Borrar entrada de búsqueda" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Borrar selección" @@ -4314,7 +4313,7 @@ msgstr "Haz clic en el icono de subida junto a cualquier sonido para personaliza msgid "Click the verification link in the email." msgstr "Haz clic en el enlace de verificación en el correo electrónico." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Haz clic para añadir una nota" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "¡Haz clic para reclamar tu regalo!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Haz clic para copiar" @@ -4388,7 +4387,7 @@ msgstr "Haz clic para ver todas las reacciones" msgid "Client secret" msgstr "Secreto del cliente" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Secreto del cliente regenerado. Actualiza cualquier código que use el secreto antiguo." @@ -4649,8 +4648,8 @@ msgstr "La comunidad promueve el odio basado en características protegidas" msgid "Community promotes or facilitates illegal activities" msgstr "La comunidad promueve o facilita actividades ilegales" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menús contextuales" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Los menús contextuales se pueden abrir con clic izquierdo (en botones) o clic derecho (en otros elementos). Esto demuestra varios elementos del menú, incluyendo casillas de verificación, botones de opción, controles deslizantes y submenús." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Controla cómo se prevén los enlaces web en el chat" msgid "Control how you join voice channels" msgstr "Controlar cómo te unes a canales de voz" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Controla cómo te unes a los canales de voz en las comunidades." @@ -5012,7 +5011,7 @@ msgstr "Controlar animaciones de stickers" msgid "Control the visibility of favorites throughout the app." msgstr "Controla la visibilidad de los favoritos en toda la aplicación." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Controla si los atajos de teclado aparecen dentro de las sugerencias." @@ -5071,7 +5070,7 @@ msgstr "Copiado" msgid "Copied to clipboard" msgstr "Copiado al portapapeles" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiada al portapapeles" @@ -5149,7 +5148,7 @@ msgstr "Copiar enlace del archivo" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copiar FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copiar FluxerTag" msgid "Copy GIF" msgstr "Copiar GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copiar ID del gremio" @@ -5222,7 +5221,7 @@ msgstr "Copiar texto" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Acogedor" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Crear" @@ -5331,14 +5330,14 @@ msgstr "Crea y gestiona aplicaciones y bots para tu cuenta." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Crea y comparte paquetes de emojis y pegatinas personalizados con Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Crear aplicación" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Crear aplicación" msgid "Create Category" msgstr "Crear categoría" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Creado {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Creado por {0}" @@ -5569,7 +5568,7 @@ msgstr "La imagen recortada es demasiado grande. Por favor, elige un área más msgid "Current Community" msgstr "Comunidad actual" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dispositivo actual" @@ -5606,7 +5605,7 @@ msgstr "Actualmente atascado en 1885, apareciendo como desconectado" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Actualmente: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Peligro Secundario" msgid "Danger secondary clicked!" msgstr "¡Peligro secundario pulsado!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona de peligro" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Eliminar todos mis mensajes" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Eliminar aplicación" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Eliminar adjunto" @@ -6063,7 +6062,7 @@ msgstr "Eliminar adjunto" msgid "Delete Attachment" msgstr "Eliminar adjunto" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Eliminar categoría" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Eliminar canal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Eliminar medios" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Eliminar mensaje" @@ -6215,7 +6214,7 @@ msgstr "Compacto" msgid "Dense layout" msgstr "Diseño compacto" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Desplegado" @@ -6281,7 +6280,7 @@ msgstr "Canal de destino" msgid "Destination URL:" msgstr "URL de destino:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner desacoplado" @@ -6362,7 +6361,7 @@ msgstr "Diferentes tamaños (estado compatible)" msgid "Different Sizes & Member Counts" msgstr "Diferentes tamaños y número de miembros" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Mensaje directo" @@ -6541,7 +6540,7 @@ msgstr "Desactivar tu cuenta cerrará tu sesión en todas las sesiones. Puedes v msgid "Disallow @mention." msgstr "No permitir @mención." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "No permitir cuentas no reclamadas" @@ -6747,7 +6746,7 @@ msgstr "No mostrar vistas previas de mensajes en la lista de mensajes directos" msgid "Don't show this again" msgstr "No mostrar esto de nuevo" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "No mostrar indicadores de escritura en la lista de canales" @@ -6760,7 +6759,7 @@ msgstr "No mostrar indicadores de escritura en la lista de canales" msgid "Done" msgstr "Hecho" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Editar categoría" msgid "Edit Channel" msgstr "Editar canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Editar sobrescrituras para roles y miembros en este canal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Pantalla de inicio incrustada" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Las imágenes de pantalla de inicio incrustadas no pueden estar animadas. Por favor, usa JPEG, PNG o WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio incrustado" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Los nombres de emoji deben tener al menos 2 caracteres y solo pueden contener caracteres alfanuméricos y guiones bajos. Tipos de archivo permitidos: JPEG, PNG, WebP, GIF. Comprimimos las imágenes a 128x128 píxeles. Tamaño máximo: {0} KB por emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Paquete de emojis" @@ -7473,7 +7472,7 @@ msgstr "Introducir teléfono" msgid "Enter picture-in-picture" msgstr "Entrar en imagen en imagen" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Entrar en modo de selección" @@ -7536,7 +7535,7 @@ msgstr "Introduce el nuevo correo que quieres usar. Te enviaremos un código all msgid "Enter the SMS code you received." msgstr "Introduce el código SMS que recibiste." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "intro para <0><1>guardar" @@ -7604,7 +7603,7 @@ msgstr "Error al renderizar LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "La tecla Escape sale del modo teclado" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "esc para <0><1>cancelar" @@ -7667,7 +7666,7 @@ msgstr "Salir de imagen en imagen" msgid "Exit Preview" msgstr "Salir de vista previa" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Salir del modo de selección" @@ -7701,7 +7700,7 @@ msgstr "Caducado (en los últimos 30 días)" msgid "Expired {absolute}" msgstr "Caducado {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Caducado entre {earliest} y {latest}" @@ -7709,7 +7708,7 @@ msgstr "Caducado entre {earliest} y {latest}" msgid "Expired on {date}" msgstr "Caducado el {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Caducado el {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Caduca" msgid "Expires {absolute} ({relativeText})" msgstr "Caduca {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Caduca entre {earliest} y {latest}" @@ -7730,7 +7729,7 @@ msgstr "Caduca entre {earliest} y {latest}" msgid "Expires on {date}" msgstr "Caduca el {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Caduca el {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Los paquetes de expresiones son una función de Plutonium" msgid "Expression picker categories" msgstr "Categorías del selector de expresiones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Purga de expresiones" @@ -7839,10 +7838,6 @@ msgstr "Error al copiar al portapapeles" msgid "Failed to copy URL" msgstr "Error al copiar la URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Error al crear la aplicación. Comprueba tus datos e inténtalo de nuevo." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Error al crear el rol" @@ -8100,7 +8095,7 @@ msgstr "Error al revocar la prohibición. Inténtalo de nuevo." msgid "Failed to revoke invite" msgstr "Error al revocar la invitación" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Error al rotar. Inténtalo de nuevo." @@ -8413,7 +8408,7 @@ msgstr "Amigos del fitness" msgid "Flags" msgstr "Banderas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nombres de canales de texto flexibles" @@ -8577,7 +8572,7 @@ msgstr "Amigos foodies" msgid "For 1 hour" msgstr "Durante 1 hora" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Durante 1 hora" msgid "For 15 minutes" msgstr "Durante 15 minutos" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Durante 15 minutos" msgid "For 24 hours" msgstr "Durante 24 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Durante 3 días" msgid "For 3 hours" msgstr "Durante 3 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Durante 3 horas" msgid "For 8 hours" msgstr "Durante 8 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Olvidar suscripciones" msgid "Forgot Password" msgstr "Contraseña olvidada" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "¿Has olvidado tu contraseña?" @@ -8795,7 +8790,7 @@ msgstr "Adelantar {DEFAULT_SEEK_AMOUNT} segundos" msgid "Forward Message" msgstr "Reenviar mensaje" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Reenviado" @@ -9065,7 +9060,7 @@ msgstr "Obtén la aplicación de escritorio de Fluxer para pulsar para hablar en #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Volver al canal de texto previamente enfocado" msgid "Go forward in navigation history" msgstr "Avanzar en el historial de navegación" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Ir a Comunidad" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Invitaciones de grupo" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Mensaje grupal" @@ -9548,7 +9543,7 @@ msgstr "¡Oye, {username}, bienvenido! Puedes lograr cualquier cosa." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "¡Oye, {username}! Cuando alcance las 88 mph, ¡verás cosas serias!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Oculto" @@ -9569,7 +9564,7 @@ msgstr "Ocultar favoritos" msgid "Hide Join Messages" msgstr "Ocultar mensajes de unión" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ocultar sugerencias de teclado en las sugerencias emergentes" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ocultar canales silenciados" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Si quieres exportar tus datos o borrar tus mensajes primero, visita la sección Panel de privacidad en Ajustes de usuario antes de continuar." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "imagen" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Entradas con iconos" msgid "Insert emoji" msgstr "Insertar emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Instalar paquete de emojis" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Instalar paquete de pegatinas" @@ -10153,7 +10148,7 @@ msgstr "Instalado el {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalar paquetes de emojis y pegatinas requiere una suscripción premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Invitaciones instantáneas" @@ -10286,7 +10281,7 @@ msgstr "Configuración del enlace de invitación" msgid "Invite Links" msgstr "Enlaces de invitación" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal de invitación" msgid "Invite modal preview" msgstr "Vista previa del modal de invitación" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitación enviada para {0}" msgid "Invite sent to {guildName}" msgstr "Invitación enviada a {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Pantalla de invitación" @@ -10354,7 +10349,7 @@ msgstr "Invitar a {0}" msgid "Invite to Community" msgstr "Invitar a la comunidad" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitación no disponible" @@ -10369,12 +10364,12 @@ msgstr "Invitado por {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invitado por {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invitado por {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Las invitaciones están pausadas actualmente en esta comunidad" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Las invitaciones están bloqueadas para las comunidades en vista previa. Reclama tu cuenta estableciendo un correo electrónico y una contraseña para habilitar las invitaciones." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitaciones deshabilitadas" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitaciones deshabilitadas" @@ -10482,13 +10477,13 @@ msgstr "¡Únete a una comunidad con pegatinas para empezar!" msgid "Join call" msgstr "Unirse a la llamada" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Unirse a la comunidad" @@ -10497,15 +10492,23 @@ msgstr "Unirse a la comunidad" msgid "Join community form" msgstr "Formulario para unirse a la comunidad" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Únete a Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Únete a Fluxer HQ para chatear con el equipo y mantenerte al día con las últimas novedades!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Unirse al grupo" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Unirse al DM grupal" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notificaciones de unión" @@ -10620,7 +10623,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:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Saltar al presente" @@ -10690,7 +10693,7 @@ msgstr "Atajos de teclado" msgid "Keyboard" msgstr "Teclado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Pistas del teclado" @@ -10815,7 +10818,7 @@ msgstr "Aprende sobre Plutonium" msgid "Leave blank for a random username" msgstr "Déjalo en blanco para un nombre de usuario aleatorio" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "¿Ya te vas?" msgid "Left" msgstr "Izquierda" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Alineado a la izquierda" @@ -10945,7 +10948,7 @@ msgstr "enlace" msgid "Link" msgstr "Enlace" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Vincular canal" @@ -11027,7 +11030,7 @@ msgstr "Cargando prohibiciones..." msgid "Loading communities..." msgstr "Cargando comunidades..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Cargando imagen" @@ -11039,8 +11042,8 @@ msgstr "Cargando invitaciones..." msgid "Loading more..." msgstr "Cargando más..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Marcador de posición de carga" @@ -11064,7 +11067,7 @@ msgstr "Cargando tema..." msgid "Loading verification methods..." msgstr "Cargando métodos de verificación..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Cargando: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Silenciar localmente" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Inicia sesión con tu navegador, luego introduce el código que se muest msgid "Log in via browser" msgstr "Iniciar sesión mediante navegador" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Iniciar sesión mediante navegador o instancia personalizada" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Cerrar sesión" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Cerrar sesión en {0} dispositivos" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Cerrar sesión en {sessionCount} dispositivos" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Cerrar sesión en 1 dispositivo" @@ -11141,7 +11144,7 @@ msgstr "Cerrar sesión en todos los dispositivos" msgid "Log out all other devices" msgstr "Cerrar sesión en todos los demás dispositivos" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Cerrar sesión en todos los demás dispositivos" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marcar como 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "menciones:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "menciones:" msgid "Message" msgstr "Mensaje" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Mensaje " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Mensaje @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Mensaje #" @@ -11838,7 +11842,7 @@ msgstr "Mensajes y medios" msgid "Messages Deleted" msgstr "Mensajes eliminados" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "No se pudieron cargar los mensajes" @@ -12016,7 +12020,7 @@ msgstr "Más" msgid "More Actions" msgstr "Más acciones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Más espacios para emojis" @@ -12028,7 +12032,7 @@ msgstr "Más opciones" msgid "More Options" msgstr "Más opciones" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Más espacios para pegatinas" @@ -12162,8 +12166,8 @@ msgstr "Silenciar canal" msgid "Mute Channel" msgstr "Silenciar canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Silenciado hasta {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Silenciar una comunidad evita que aparezcan indicadores de no leídos y notificaciones a menos que se te mencione" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Comunidades mutuas ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Amigos mutuos ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Grupos mutuos ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Mi aplicación" @@ -12247,7 +12251,7 @@ msgstr "Mi pegatina increíble" msgid "My Category" msgstr "Mi categoría" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mis dispositivos" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navegación" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "¿Necesitas una cuenta?" @@ -12364,7 +12368,7 @@ msgstr "Red" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Error de red" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Sin banner de comunidad" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "No se ha proporcionado descripción." @@ -12684,15 +12688,15 @@ msgstr "No se detectaron micrófonos" msgid "No more scheduled messages." msgstr "No hay más mensajes programados." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "No se encontraron comunidades en común." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "No se encontraron amigos en común." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "No se encontraron grupos en común." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "¿No es lo tuyo? Puedes desactivar esta función en cualquier momento." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Anulaciones de notificación" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Notificar a los usuarios con este rol que tienen permiso para ver este c msgid "now" msgstr "ahora" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Ahora" @@ -13090,7 +13094,7 @@ msgstr "Al hacer clic" msgid "on:" msgstr "en:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Una vez eliminada, la aplicación y sus credenciales se eliminarán permanentemente." @@ -13252,7 +13256,7 @@ msgstr "Abrir solo DMs" msgid "Open Fluxer" msgstr "Abrir Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Abrir imagen en vista completa" @@ -13368,7 +13372,7 @@ msgstr "Abrir Comunidad Visionaria" msgid "Opening..." msgstr "Abriendo..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operador" @@ -13441,7 +13445,7 @@ msgstr "El mensaje original fue eliminado" msgid "Other" msgstr "Otro" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Otros dispositivos" @@ -13501,7 +13505,7 @@ msgstr "Anular estado de cuenta no reclamada" msgid "Override unread gift inventory status" msgstr "Anular estado de inventario de regalos no leídos" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Resumen" @@ -13695,7 +13699,7 @@ msgstr "Permisos" msgid "Permissions granted" msgstr "Permisos concedidos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Notas personales" @@ -13868,12 +13872,12 @@ msgstr "Reproducir" msgid "Play animated emojis" msgstr "Reproducir emojis animados" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Reproducir audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Por favor, pega el enlace del mensaje que estás reportando." msgid "Please provide an email address." msgstr "Por favor, proporciona una dirección de correo electrónico." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Por favor, inténtalo de nuevo o vuelve a la lista de aplicaciones." @@ -13989,7 +13993,7 @@ msgstr "Ventajas de Plutonium" msgid "Plutonium Subscription" msgstr "Suscripción a Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Panel de privacidad" msgid "Privacy Policy" msgstr "Política de privacidad" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Eliminar esta pegatina del almacenamiento y la CDN" msgid "Push Notification Inactive Timeout" msgstr "Tiempo de inactividad de notificaciones push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notificaciones push" @@ -14412,7 +14416,7 @@ msgstr "Interacción de reacción deshabilitada" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reacciones" @@ -14583,7 +14587,7 @@ msgstr "Actualizar suscripción push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerar" @@ -14591,19 +14595,19 @@ msgstr "Regenerar" msgid "Regenerate backup codes" msgstr "Regenerar códigos de respaldo" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "¿Regenerar token del bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "¿Regenerar secreto del cliente?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerar invalidará el secreto actual. Actualiza cualquier código que use el valor antiguo." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerar invalidará el token actual. Actualiza cualquier código que use el valor antiguo." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Eliminar filtro" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Eliminar filtro" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Denuncia enviada con éxito. Nuestro equipo de seguridad la revisará en #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Denunciar usuario" @@ -15105,7 +15109,7 @@ msgstr "Ámbitos solicitados" msgid "Require 2FA for moderation actions" msgstr "Requerir 2FA para acciones de moderación" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Requerir doble clic para unirse a canales de voz" @@ -15144,7 +15148,7 @@ msgstr "Requiere todo lo de Medio, más ser miembro del servidor durante al meno msgid "Requires Plutonium" msgstr "Requiere Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reprogramar mensaje" @@ -15290,11 +15294,11 @@ msgstr "Volver a suscribirse" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Reintentar" @@ -15359,7 +15363,7 @@ msgstr "Revocar" msgid "Revoke Ban" msgstr "Revocar prohibición" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revocar dispositivo" @@ -15386,7 +15390,7 @@ msgstr "Rebobinar {DEFAULT_SEEK_AMOUNT} segundos" msgid "Right" msgstr "Derecha" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Alineado a la derecha" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Buscar miembros..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Buscar mensajes" @@ -15834,13 +15838,13 @@ msgstr "Buscar roles o miembros..." msgid "Search saved media" msgstr "Buscar medios guardados" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Ámbito de búsqueda" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Ámbito de búsqueda: {0}" @@ -15857,7 +15861,7 @@ msgstr "Buscar ajustes..." msgid "Search stickers..." msgstr "Buscar pegatinas..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sugerencias de búsqueda" @@ -15938,7 +15942,7 @@ msgstr "Clave de seguridad / Clave de acceso" msgid "Security key verification failed. Please try again." msgstr "La verificación de la clave de seguridad ha fallado. Por favor, inténtalo de nuevo." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Ve todos los dispositivos que están actualmente conectados a tu cuenta. Revoca cualquier sesión que no reconozcas." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Seleccionar cuenta" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Seleccionar todo" @@ -16040,7 +16044,7 @@ msgstr "Selecciona el tamaño del contenido incrustado de los enlaces" msgid "Select media size for uploaded attachments" msgstr "Selecciona el tamaño de los archivos adjuntos subidos" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Seleccionar vista mutua" @@ -16151,9 +16155,9 @@ msgstr "Enviar código" msgid "Send Code" msgstr "Enviar código" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Enviar solicitud de amistad" @@ -16170,7 +16174,7 @@ msgstr "Enviar mensaje · Clic derecho para programar" msgid "Send Message Disabled" msgstr "Enviar mensaje desactivado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Enviar mensajes" @@ -16624,7 +16628,7 @@ msgstr "Mostrar botón de regalo" msgid "Show inline images and videos" msgstr "Mostrar imágenes y vídeos en línea" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Mostrar solo el indicador de escritura sin avatares" @@ -16788,11 +16792,11 @@ msgstr "Mostrar el regalo como ya canjeado" msgid "Show this role separately" msgstr "Mostrar este rol por separado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Mostrar indicador de escritura con avatares de usuarios en la lista de canales" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Mostrar escritura en el canal seleccionado" @@ -17151,7 +17155,7 @@ msgstr "Español (España)" msgid "Speak" msgstr "Hablar" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Hablar mensaje" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Comenzar a compartir" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Comenzar videollamada" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Comenzar llamada de voz" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densidad de pegatinas" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Paquete de pegatinas" @@ -17427,7 +17431,7 @@ msgstr "Dejar de sonar" msgid "Stop Sharing" msgstr "Dejar de compartir" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Dejar de hablar" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suprimir incrustaciones" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Texto" msgid "Text (NSFW)" msgstr "Texto (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Canal de texto" @@ -18028,10 +18032,10 @@ msgstr "Esta acción requiere verificación para continuar." msgid "This application" msgstr "Esta aplicación" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Este adjunto ha caducado" @@ -18039,7 +18043,7 @@ msgstr "Este adjunto ha caducado" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Este bot está solicitando el permiso de Administrador. No recomendamos conceder esto a aplicaciones en producción a menos que confíes plenamente en el desarrollador. Considera pedirles que soliciten un conjunto reducido de permisos. Cierra esta página si no estás seguro." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Esto no se puede deshacer. Eliminar la aplicación también borra su bot." @@ -18101,7 +18105,7 @@ msgstr "Esta comunidad ha alcanzado su límite máximo de miembros y no está ac msgid "This community has temporarily disabled invites." msgstr "Esta comunidad ha desactivado temporalmente las invitaciones." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Esta comunidad ha desactivado temporalmente las invitaciones. Puedes intentarlo de nuevo más tarde." @@ -18178,7 +18182,7 @@ msgstr "Esta invitación tiene usos ilimitados." msgid "This invite link never expires." msgstr "Este enlace de invitación nunca caduca." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Este es el comienzo de <0>{displayName}. ¡Añade amigos para empezar una conversación!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Este es el comienzo de tu historial de mensajes directos con <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Este fue un mensaje @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Esto creará una grieta en el continuo espacio-temporal y no se puede de msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Esto ocultará todos los elementos de la interfaz relacionados con favoritos, incluidos botones y elementos del menú. Tus favoritos existentes se conservarán y se pueden reactivar en cualquier momento desde <0>Ajustes de usuario → Apariencia → Favoritos." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Esto modificará el mensaje programado existente en lugar de enviarlo inmediatamente." @@ -18387,8 +18391,8 @@ msgstr "Esto eliminará la sesión guardada de esta cuenta." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Esto reemplazará tu tema personalizado actual. Puedes editarlo más tarde en tus Ajustes de usuario." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatura para {title}" @@ -18485,7 +18489,7 @@ msgstr "Los toasts aparecen en la parte superior central de la pantalla." msgid "today" msgstr "hoy" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Hoy" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Inténtalo de nuevo" @@ -18737,7 +18741,7 @@ msgstr "Prueba otro nombre o revisa tu ortografía." msgid "Try another search term" msgstr "Prueba otro término de búsqueda" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Intenta pedir una nueva invitación." @@ -18864,7 +18868,7 @@ msgstr "Escala tipográfica" msgid "Type your message here..." msgstr "Escribe tu mensaje aquí..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Eventos de escritura" @@ -18877,11 +18881,11 @@ msgstr "Indicador de escritura" msgid "Typing Indicator" msgstr "Indicador de escritura" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicador de escritura + avatares" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Solo indicador de escritura" @@ -18961,11 +18965,11 @@ msgstr "No se puede iniciar la llamada" msgid "Unable to start email change" msgstr "No se puede iniciar el cambio de correo electrónico" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "No disponible para todos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "No disponible para todos excepto el personal" @@ -18978,7 +18982,7 @@ msgstr "No disponible para todos excepto el personal" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Desbloquea a este usuario antes de enviar una solicitud de amistad." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Desbloquear usuario" @@ -19165,7 +19169,7 @@ msgstr "Error desconocido" msgid "Unknown Gift" msgstr "Regalo desconocido" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Invitación desconocida" @@ -19205,11 +19209,11 @@ msgstr "rol-desconocido" msgid "Unlimited" msgstr "Ilimitado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emojis ilimitados" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Pegatinas ilimitadas" @@ -19254,7 +19258,7 @@ msgstr "Desbloquea pegatinas en MD con Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Activar sonido de la categoría" msgid "Unmute Channel" msgstr "Activar sonido del canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Activar sonido de los favoritos" msgid "Unmute User" msgstr "Activar sonido del usuario" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Sin nombre" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Hasta que lo cambie" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Correo no verificado" msgid "Up to 4K/60fps" msgstr "Hasta 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Actualizar" @@ -19629,7 +19633,7 @@ msgstr "Subir sonido de entrada" msgid "Upload Failed" msgstr "Error al subir" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Subir archivo" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Usuario movido de canal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Perfil de usuario" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Perfil de usuario: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valores" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personalizada" @@ -20059,14 +20063,14 @@ msgstr "Puede ser necesaria la verificación antes de ver tus códigos de respal #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Comunidad verificada" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Gremio verificado" @@ -20167,8 +20171,8 @@ msgstr "Calidad de vídeo" msgid "Video Settings" msgstr "Ajustes de vídeo" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatura del vídeo" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Ver códigos" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Ver perfil de la comunidad" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Ver inventario de regalos" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Ver perfil global" @@ -20329,7 +20333,7 @@ msgstr "Selección de categoría de infracción" msgid "Violent or Graphic Content" msgstr "Contenido violento o gráfico" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voz VIP" @@ -20341,7 +20345,7 @@ msgstr "Botones visibles" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionario" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Llamadas de voz" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Canal de voz" @@ -20442,7 +20446,7 @@ msgstr "Canal de voz" msgid "Voice Channel Full" msgstr "Canal de voz lleno" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportamiento al unirse a un canal de voz" @@ -20559,7 +20563,7 @@ msgstr "No hemos podido unirnos a esta comunidad en este momento." msgid "We couldn't load the invites at this time." msgstr "No hemos podido cargar las invitaciones en este momento." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "No hemos podido cargar esta aplicación" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Estamos teniendo problemas para conectarnos a los servidores de Fluxer. Esto podría ser un problema temporal de red o un mantenimiento programado." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Estamos teniendo problemas para conectarnos al continuo espacio-tiempo. Por favor, comprueba tu conexión e inténtalo de nuevo." @@ -20759,7 +20763,7 @@ msgstr "Guerreros de fin de semana" msgid "Welcome and system messages will appear here." msgstr "Los mensajes de bienvenida y del sistema aparecerán aquí." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Bienvenido de nuevo" @@ -20820,7 +20824,7 @@ msgstr "¿Qué está pasando?" msgid "What's included in your export:" msgstr "Qué incluye tu exportación:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Cuando está desactivado (por defecto), los indicadores de escritura no aparecerán en el canal que estás viendo actualmente." @@ -20836,7 +20840,7 @@ msgstr "Cuando está activado, pulsar rápidamente tu atajo de pulsar para habla msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Cuando está activado, muestra menús de depuración por toda la aplicación para inspeccionar y copiar objetos JSON sin procesar de estructuras de datos internas como mensajes, canales, usuarios y comunidades. También incluye herramientas para depurar el rendimiento del analizador de Markdown de Fluxer y el AST de cualquier mensaje." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Cuando está activado, las insignias de atajos se ocultan en las ventanas emergentes de información sobre herramientas." @@ -20868,7 +20872,7 @@ msgstr "Cuando está activado, usa la configuración regional de tu ordenador pa msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Cuando está activado, puedes marcar canales como favoritos y aparecerán en la sección Favoritos. Cuando está desactivado, todos los elementos de la interfaz relacionados con favoritos (botones, elementos del menú) se ocultarán. Tus favoritos existentes se conservarán." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Cuando está activado, necesitarás hacer doble clic en los canales de voz para unirte a ellos. Cuando está desactivado (por defecto), un solo clic te unirá al canal inmediatamente." @@ -20970,7 +20974,7 @@ msgstr "Anual {yearlyPrice}" msgid "yesterday" msgstr "ayer" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Ayer" @@ -21013,7 +21017,7 @@ msgstr "Estás editando tu perfil por comunidad. Este perfil solo será visible msgid "You are in slowmode. Please wait before sending another message." msgstr "Estás en modo lento. Por favor, espera antes de enviar otro mensaje." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "¡Ahora eres un desarrollador!" @@ -21113,7 +21117,7 @@ msgstr "Puedes usar enlaces y Markdown para formatear tu texto. Con <0/>, puedes msgid "You can't add new reactions while you're on timeout." msgstr "No puedes añadir nuevas reacciones mientras estás en tiempo de espera." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "No puedes hacerte amigo de ti mismo" @@ -21128,7 +21132,7 @@ msgstr "No puedes interactuar con reacciones en los resultados de búsqueda porq msgid "You can't join while you're on timeout." msgstr "No puedes unirte mientras estás en tiempo de espera." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "No puedes desactivar el silencio porque un moderador te ha silenciado." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "No tienes permiso para enviar mensajes en este canal." @@ -21439,7 +21443,7 @@ msgstr "Aparecerás como desconectado" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Configurarás qué permisos recibe el bot en la siguiente pantalla." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Tendrás que volver a iniciar sesión en todos los dispositivos desconectados" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 eabc94eb..a70c6c8f 100644 --- a/fluxer_app/src/locales/fi/messages.po +++ b/fluxer_app/src/locales/fi/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# kohde} other {# kohdetta}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# jäsen} other {# jäsentä}}" @@ -566,18 +566,18 @@ msgstr "{label} kuvia ei voida animoida. Käytä JPEG-, PNG- tai WebP-muotoa." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} jäsen" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} jäsentä" @@ -612,11 +612,11 @@ msgstr "{minutes} minuuttia ja {seconds} sekuntia" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minuuttia ja 1 sekunti" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} yhteisö" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} yhteisöä" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} osallistujaa puhelussa" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} verkossa" @@ -650,15 +650,15 @@ msgstr "{remaining} merkkiä jäljellä" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} merkkiä jäljellä. Hanki Plutoniumia kirjoittaaksesi jopa {premiumMaxLength} merkkiä." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} jäsen" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} jäsentä" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} verkossa" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone-maininnat" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Korostusväri" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Hyväksy" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Hyväksy ystäväpyyntö" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Hyväksy kutsu" @@ -1364,8 +1364,8 @@ msgstr "Hyväksy kutsu" msgid "Accept the incoming call" msgstr "Vastaa saapuvaan puheluun" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Kutsun hyväksyminen asentaa paketin automaattisesti." @@ -1594,7 +1594,7 @@ msgstr "Lisää suosikkikanavat" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Sallittu {0}." msgid "Already have an account?" msgstr "Onko sinulla jo tili?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Olet jo liittynyt" @@ -2191,7 +2191,7 @@ msgstr "Animoidut avatarit ja bannerit" msgid "Animated Avatars Require Plutonium" msgstr "Animoidut avatarit vaativat Plutoniumin" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animoitu banneri" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animoidut hymiöt ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animoitu GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animoitu GIF-video" @@ -2219,7 +2219,7 @@ msgstr "Animoitu GIF-video" msgid "Animated GIF Video" msgstr "Animoitu GIF-video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animoitu kuvake" @@ -2277,7 +2277,7 @@ msgstr "Kuka tahansa voi @mainita tämän roolin. Jäsenet, joilla on \"Käytä msgid "API Endpoint" msgstr "API-päätepiste" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Sovellustiedot" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Sovelluksen nimi" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Sovelluksen nimi on pakollinen" @@ -2554,7 +2553,7 @@ msgstr "Haluatko varmasti peruuttaa porttikiellon käyttäjälle <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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ä." @@ -2603,7 +2602,7 @@ msgstr "Liite {0}" msgid "Attachment Actions" msgstr "Liitteen toiminnot" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Liite vanhentunut" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automaattinen täydennys" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automaattinen" @@ -2859,7 +2858,7 @@ msgstr "Takaisin" msgid "Back to Applications" msgstr "Takaisin sovelluksiin" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Takaisin luetteloon" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Takaisin kirjautumiseen" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Takaisin ylikirjoituksiin" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Takaisin rooleihin" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Takaisin asetuksiin" @@ -3003,7 +3002,7 @@ msgstr "Estetyt käyttäjät" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banneri" @@ -3096,7 +3095,7 @@ msgstr "Bio-merkkirajoitus" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Pyydetyt botin käyttöoikeudet" msgid "Bot token" msgstr "Botin tunniste" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Botin tunniste uusittu. Päivitä kaikki vanhaa tunnistetta käyttävä koodi." @@ -3435,7 +3434,7 @@ msgstr "Kameran asetukset" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kameran asetukset" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kameran asetukset" msgid "Cancel" msgstr "Peruuta" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Peruuta ystäväpyyntö" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Varo! Sinulla on tallentamattomia muutoksia." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Luokka" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Luokan nimi" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Luokan asetukset" @@ -3617,7 +3616,7 @@ msgstr "Varoitus" msgid "Center" msgstr "Keskusta" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Keskitetty" @@ -3765,7 +3764,7 @@ msgstr "Bitrate muutettiin arvoon {0}." msgid "Changed the voice region to {0}." msgstr "Puhealue vaihdettiin {0}:aan." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanava" @@ -3828,11 +3827,11 @@ msgstr "Kanavan tunniste kopioitiin leikepöydälle" msgid "Channel link copied" msgstr "Kanavan linkki kopioitu" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Kanavalistan kirjoitusilmaisimen tila" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Kanavalistan kirjoitusilmaisimet" @@ -3891,7 +3890,7 @@ msgstr "Kanava poistettu suosikeista" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanavan asetukset" @@ -4052,7 +4051,7 @@ msgstr "Valitse, miten ajat näytetään koko sovelluksessa." msgid "Choose how typing indicators appear in the channel list" msgstr "Valitse, miten kirjoitustilailmaisimet näkyvät kanavalistassa" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Valitse, miten kirjoitustilailmaisimet näkyvät kanavalistassa, kun joku kirjoittaa kanavalla." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Vahvista tili lunastaaksesi tämän lahjan." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Vahvista tili lähettääksesi kaveripyyntöjä." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Tyhjennä oikeudet" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Tyhjennä haku" msgid "Clear search input" msgstr "Tyhjennä hakukenttä" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Tyhjennä valinta" @@ -4314,7 +4313,7 @@ msgstr "Napsauta minkä tahansa äänen vieressä olevaa latauskuvaketta mukautt msgid "Click the verification link in the email." msgstr "Napsauta sähköpostissa olevaa vahvistuslinkkiä." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Napsauta lisätäksesi muistiinpanon" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Napsauta lunastaaksesi lahjasi!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Napsauta kopioidaksesi" @@ -4388,7 +4387,7 @@ msgstr "Napsauta nähdäksesi kaikki reaktiot" msgid "Client secret" msgstr "Asiakassalaisuus" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Asiakassalaisuus on luotu uudelleen. Päivitä kaikki koodit, jotka käyttävät vanhaa salasanaa." @@ -4649,8 +4648,8 @@ msgstr "Yhteisö levittää vihaa suojattujen ominaisuuksien perusteella" msgid "Community promotes or facilitates illegal activities" msgstr "Yhteisö edistää tai helpottaa laitonta toimintaa" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontekstivalikot" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontekstivalikot voi avata vasemmalla klikkauksella (painikkeissa) tai oikealla klikkauksella (muissa elementeissä). Tämä havainnollistaa eri valikkokohteita, kuten valintaruutuja, radiopainikkeita, liukusäätimiä ja alivalikoita." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Hallinnoi, miten verkkosivustojen linkkejä esikatsellaan chatissa" msgid "Control how you join voice channels" msgstr "Hallitse, miten liityt äänikanaviin" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Hallitse, miten liityt äänikanaviin yhteisöissä." @@ -5012,7 +5011,7 @@ msgstr "Hallitse tarrojen animaatioita" msgid "Control the visibility of favorites throughout the app." msgstr "Hallitse suosikkien näkyvyyttä koko sovelluksessa." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Hallitse, näkyvätkö pikanäppäinvihjeet työkaluvihjeissä." @@ -5071,7 +5070,7 @@ msgstr "Kopioitu" msgid "Copied to clipboard" msgstr "Kopioitu leikepöydälle" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL kopioitu leikepöydälle" @@ -5149,7 +5148,7 @@ msgstr "Kopioi tiedostolinkki" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopioi FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopioi FluxerTag" msgid "Copy GIF" msgstr "Kopioi GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopioi yhteisön tunnus" @@ -5222,7 +5221,7 @@ msgstr "Kopioi teksti" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Kodikas" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Luo" @@ -5331,14 +5330,14 @@ msgstr "Luo ja hallinnoi sovelluksia ja botteja tilillesi." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Luo ja jaa omia emojipaketteja ja tarroja Fluxer Plutoniumin avulla." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Luo sovellus" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Luo sovellus" msgid "Create Category" msgstr "Luo kategoria" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Luotu {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Luonut {0}" @@ -5569,7 +5568,7 @@ msgstr "Rajattu kuva on liian suuri. Valitse pienempi alue tai tiedosto (max {ma msgid "Current Community" msgstr "Nykyinen yhteisö" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Nykyinen laite" @@ -5606,7 +5605,7 @@ msgstr "Jämähtänyt vuoteen 1885, näyttää offline-tilassa" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Tällä hetkellä: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Vaara (toissijainen)" msgid "Danger secondary clicked!" msgstr "Toissijainen vaarapainike klikattu!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Vaaravyöhyke" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Poista kaikki viestini" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Poista sovellus" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Poista liite" @@ -6063,7 +6062,7 @@ msgstr "Poista liite" msgid "Delete Attachment" msgstr "Poista liite" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Poista kategoria" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Poista kanava" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Poista media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Poista viesti" @@ -6215,7 +6214,7 @@ msgstr "Tiivis" msgid "Dense layout" msgstr "Tiivis asettelu" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Julkaistu" @@ -6281,7 +6280,7 @@ msgstr "Kohdekanava" msgid "Destination URL:" msgstr "Kohde-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Irrotettu banneri" @@ -6362,7 +6361,7 @@ msgstr "Eri kokoja (tila tuettu)" msgid "Different Sizes & Member Counts" msgstr "Eri kokoja ja jäsenmäärät" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Yksityisviesti" @@ -6541,7 +6540,7 @@ msgstr "Tilin poistaminen käytöstä kirjaa sinut ulos kaikista istunnoista. Vo msgid "Disallow @mention." msgstr "Estä @maininta." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Estä vaatimattomat tilit" @@ -6747,7 +6746,7 @@ msgstr "Älä näytä viestin esikatseluja YV-listassa" msgid "Don't show this again" msgstr "Älä näytä tätä uudelleen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Älä näytä kirjoitusilmaisimia kanavalistassa" @@ -6760,7 +6759,7 @@ msgstr "Älä näytä kirjoitusilmaisimia kanavalistassa" msgid "Done" msgstr "Valmis" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Muokkaa luokkaa" msgid "Edit Channel" msgstr "Muokkaa kanavaa" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Muokkaa tämän kanavan rooli- ja jäsenylikirjoituksia." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Upotuskuva" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Upotuskuvia ei voi animoida. Käytä JPEGiä, PNG:tä tai WebP:iä." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Upotettu ääni" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emojien nimien on oltava vähintään 2 merkkiä pitkiä ja niissä saa olla vain kirjaimia, numeroita ja alaviivoja. Sallitut tiedostotyypit: JPEG, PNG, WebP, GIF. Pakkaamme kuvat 128x128 pikseliin. Maksimikoko: {0} KB emojiä kohti." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emojipaketti" @@ -7473,7 +7472,7 @@ msgstr "Syötä puhelinnumero" msgid "Enter picture-in-picture" msgstr "Siirry kuva kuvassa -tilaan" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Siirry valintatilaan" @@ -7536,7 +7535,7 @@ msgstr "Syötä uusi sähköpostiosoitteesi. Lähetämme sinne vahvistuskoodin." msgid "Enter the SMS code you received." msgstr "Syötä vastaanottamasi SMS-koodi." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "paina enteriä <0><1>tallentaaksesi" @@ -7604,7 +7603,7 @@ msgstr "LaTeXin renderöinti epäonnistui: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc-näppäin poistuu näppäimistötilasta" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "poistu painamalla esc <0><1>peruuttaaksesi" @@ -7667,7 +7666,7 @@ msgstr "Poistu kuva kuvassa -tilasta" msgid "Exit Preview" msgstr "Poistu esikatselusta" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Poistu valintatilasta" @@ -7701,7 +7700,7 @@ msgstr "Vanhentunut (alle 30 päivää sitten)" msgid "Expired {absolute}" msgstr "Vanhentunut {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Vanhentunut ajanjaksolla {earliest}–{latest}" @@ -7709,7 +7708,7 @@ msgstr "Vanhentunut ajanjaksolla {earliest}–{latest}" msgid "Expired on {date}" msgstr "Vanhentunut {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Vanhentunut {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Vanhenee" msgid "Expires {absolute} ({relativeText})" msgstr "Vanhenee {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Vanhenee ajanjaksolla {earliest}–{latest}" @@ -7730,7 +7729,7 @@ msgstr "Vanhenee ajanjaksolla {earliest}–{latest}" msgid "Expires on {date}" msgstr "Vanhenee {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Vanhenee {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Ilmaisupaketit ovat Plutonium-ominaisuus" msgid "Expression picker categories" msgstr "Ilmaisuvalitsimen kategoriat" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Ilmaisujen puhdistus" @@ -7839,10 +7838,6 @@ msgstr "Kopiointi leikepöydälle epäonnistui" msgid "Failed to copy URL" msgstr "URL-osoitteen kopiointi epäonnistui" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Sovelluksen luonti epäonnistui. Tarkista syötteet ja yritä uudelleen." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Roolin luominen epäonnistui" @@ -8100,7 +8095,7 @@ msgstr "Estäyksen kumoaminen epäonnistui. Yritä uudelleen." msgid "Failed to revoke invite" msgstr "Kutsun peruuttaminen epäonnistui" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Kääntäminen epäonnistui. Yritä uudelleen." @@ -8413,7 +8408,7 @@ msgstr "Kuntoilukaverit" msgid "Flags" msgstr "Liput" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Joustavat tekstikanavanimet" @@ -8577,7 +8572,7 @@ msgstr "Ruokahullut kaverit" msgid "For 1 hour" msgstr "1 tunnin ajan" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 tunniksi" msgid "For 15 minutes" msgstr "15 minuutiksi" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 minuuttia" msgid "For 24 hours" msgstr "24 tunnin ajan" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 päiväksi" msgid "For 3 hours" msgstr "3 tunnin ajan" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 tunniksi" msgid "For 8 hours" msgstr "8 tunnin ajan" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Unohda tilaukset" msgid "Forgot Password" msgstr "Unohditko salasanan" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Unohditko salasanasi?" @@ -8795,7 +8790,7 @@ msgstr "Siirry {DEFAULT_SEEK_AMOUNT} sekuntia eteenpäin" msgid "Forward Message" msgstr "Välitä viesti" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Välitetty" @@ -9065,7 +9060,7 @@ msgstr "Hanki Fluxerin työpöytäohjelma järjestelmätason paina-puhu ja muut #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Palaa aiemmin valittuun tekstikanavaan" msgid "Go forward in navigation history" msgstr "Siirry navigointihistoriassa eteenpäin" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Siirry yhteisöön" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Ryhmäkutsut" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Ryhmäviesti" @@ -9548,7 +9543,7 @@ msgstr "Hei, {username}, tervetuloa! Saat kaiken onnistumaan." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hei, {username}! Kun se saavuttaa 88 mph, näet kovaa kamaa!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Piilotettu" @@ -9569,7 +9564,7 @@ msgstr "Piilota suosikit" msgid "Hide Join Messages" msgstr "Piilota liittymisviestit" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Piilota näppäinohjeet työkaluvihjeistä" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Piilota mykistetyt kanavat" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Jos haluat ensin viedä tietosi tai poistaa viestisi, käy Käyttäjäasetusten Tietosuoja-kohta ennen jatkamista." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "kuva" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Kuvakkeelliset syötöt" msgid "Insert emoji" msgstr "Lisää emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Asenna emojipaketti" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Asenna tarrapaketti" @@ -10153,7 +10148,7 @@ msgstr "Asennettu {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Emojien ja tarrapakettien asentamiseen tarvitaan premium-tilaus." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Välittömät kutsut" @@ -10286,7 +10281,7 @@ msgstr "Kutsulinkin asetukset" msgid "Invite Links" msgstr "Kutsulinkit" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Kutsumodaali" msgid "Invite modal preview" msgstr "Esikatselu kutsumodaalista" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Kutsu lähetetty kohteelle {0}" msgid "Invite sent to {guildName}" msgstr "Kutsu lähetetty {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Kutsusplash" @@ -10354,7 +10349,7 @@ msgstr "Kutsu kohteeseen {0}" msgid "Invite to Community" msgstr "Kutsu yhteisöön" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Kutsu ei saatavilla" @@ -10369,12 +10364,12 @@ msgstr "Kutsujana {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Kutsujana {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Kutsujana {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Kutsut ovat tällä hetkellä tauolla tässä yhteisössä" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Kutsut on lukittu esikatseluyhteisöissä. Vahvista tilisi sähköpostilla ja salasanalla avaaksesi kutsut." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Kutsut pois käytöstä" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Kutsut pois käytöstä" @@ -10482,13 +10477,13 @@ msgstr "Liity yhteisöön, jossa on tarroja, niin pääset alkuun!" msgid "Join call" msgstr "Liity puheluun" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Liity yhteisöön" @@ -10497,15 +10492,23 @@ msgstr "Liity yhteisöön" msgid "Join community form" msgstr "Liity yhteisöön -lomake" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Liity Fluxer HQ:hun" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Liity Fluxer HQ:hun keskustellaksesi tiimin kanssa ja pysyäksesi ajan tasalla uusimmista!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Liity ryhmään" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Liity ryhmäkeskusteluun" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Liity ilmoituksiin" @@ -10620,7 +10623,7 @@ msgstr "Hyppää vanhimpaan lukemattomaan viestiin" msgid "Jump to page" msgstr "Siirry sivulle" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Siirry nykyhetkeen" @@ -10690,7 +10693,7 @@ msgstr "Pikanäppäimet" msgid "Keyboard" msgstr "Näppäimistö" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Näppäinvinkit" @@ -10815,7 +10818,7 @@ msgstr "Lisätietoja Plutoniumista" msgid "Leave blank for a random username" msgstr "Jätä tyhjäksi satunnaista käyttäjänimeä varten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Lähdetkö jo?" msgid "Left" msgstr "Poistui" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Tasaus vasemmalle" @@ -10945,7 +10948,7 @@ msgstr "linkki" msgid "Link" msgstr "Linkki" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Linkitä kanava" @@ -11027,7 +11030,7 @@ msgstr "Ladataan porttikieltoja..." msgid "Loading communities..." msgstr "Ladataan yhteisöjä..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Kuvaa ladataan" @@ -11039,8 +11042,8 @@ msgstr "Ladataan kutsuja..." msgid "Loading more..." msgstr "Ladataan lisää..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Paikalla pidettävää sisältöä ladataan" @@ -11064,7 +11067,7 @@ msgstr "Aihetta ladataan..." msgid "Loading verification methods..." msgstr "Ladataan vahvistusmenetelmiä..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Ladataan: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Mykistä tämä laite" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Kirjaudu selaimella ja anna näkyviin tuleva koodi lisätäksesi tilin." msgid "Log in via browser" msgstr "Kirjaudu selaimen kautta" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Kirjaudu selaimen tai oman instanssin kautta" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Kirjaudu ulos" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Kirjaudu ulos {0} laitteesta" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Kirjaudu ulos {sessionCount} laitteesta" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Kirjaudu ulos yhdeltä laitteelta" @@ -11141,7 +11144,7 @@ msgstr "Kirjaudu ulos kaikista laitteista" msgid "Log out all other devices" msgstr "Kirjaudu ulos kaikista muista laitteista" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Kirjaudu ulos muilta laitteilta" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Merkitse 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "maininnat:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "maininnat:" msgid "Message" msgstr "Viesti" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Viesti " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Viesti @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Viesti #" @@ -11838,7 +11842,7 @@ msgstr "Viestit ja media" msgid "Messages Deleted" msgstr "Viestit poistettu" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Viestien lataus epäonnistui" @@ -12016,7 +12020,7 @@ msgstr "Lisää" msgid "More Actions" msgstr "Lisätoiminnot" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Lisää emoji-paikkoja" @@ -12028,7 +12032,7 @@ msgstr "Lisävaihtoehtoja" msgid "More Options" msgstr "Lisävaihtoehdot" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Lisää tarra-paikkoja" @@ -12162,8 +12166,8 @@ msgstr "Mykistä kanava" msgid "Mute Channel" msgstr "Mykistä kanava" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Mykistetty {0} asti" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Yhteisön mykistäminen estää lukemattomat merkinnät ja ilmoitukset, ellei sinua mainita" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Yhteiset yhteisöt ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Yhteiset ystävät ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Yhteiset ryhmät ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Oma sovellus" @@ -12247,7 +12251,7 @@ msgstr "Mahtava tarrani" msgid "My Category" msgstr "Oma luokka" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Laitteeni" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigointi" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Tarvitsetko tilin?" @@ -12364,7 +12368,7 @@ msgstr "Verkko" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Verkkovirhe" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Ei yhteisöbanneria" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Kuvausta ei ole annettu." @@ -12684,15 +12688,15 @@ msgstr "Mikrofoneja ei havaittu" msgid "No more scheduled messages." msgstr "Lisää ajastettuja viestejä ei ole." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Yhteisiä yhteisöjä ei löytynyt." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Yhteisiä ystäviä ei löytynyt." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Yhteisiä ryhmiä ei löytynyt." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Ei miellytä? Voit poistaa tämän ominaisuuden käytöstä milloin tahansa." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Ilmoitusten ylikirjoitukset" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Ilmoita käyttäjille, joilla on tämä rooli ja oikeus nähdä tämä k msgid "now" msgstr "nyt" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Nyt" @@ -13090,7 +13094,7 @@ msgstr "Klikattaessa" msgid "on:" msgstr "päällä:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Kun sovellus on poistettu, se ja sen valtuustiedot poistuvat pysyvästi." @@ -13252,7 +13256,7 @@ msgstr "Vain yksityisviestit" msgid "Open Fluxer" msgstr "Avaa Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Avaa kuva koko näkymässä" @@ -13368,7 +13372,7 @@ msgstr "Avaa Visionary-yhteisö" msgid "Opening..." msgstr "Avataan..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operaattori" @@ -13441,7 +13445,7 @@ msgstr "Alkuperäinen viesti poistettiin" msgid "Other" msgstr "Muu" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Muut laitteet" @@ -13501,7 +13505,7 @@ msgstr "Ohita rekisteröimättömän tilin tila" msgid "Override unread gift inventory status" msgstr "Ohita lukemattoman lahjakannan tila" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Yhteenveto" @@ -13695,7 +13699,7 @@ msgstr "Oikeudet" msgid "Permissions granted" msgstr "Oikeudet myönnetty" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Henkilökohtaiset muistiinpanot" @@ -13868,12 +13872,12 @@ msgstr "Toista" msgid "Play animated emojis" msgstr "Toista animoidut emojit" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Toista ääni" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Liitä raportoitavan viestin linkki." msgid "Please provide an email address." msgstr "Anna sähköpostiosoite." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Yritä uudelleen tai palaa sovelluslistaan." @@ -13989,7 +13993,7 @@ msgstr "Plutonium-edut" msgid "Plutonium Subscription" msgstr "Plutonium-tilaus" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Tietosuojapaneeli" msgid "Privacy Policy" msgstr "Tietosuojakäytäntö" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Tyhjennä tämä tarra tallennustilasta ja CDN:stä" msgid "Push Notification Inactive Timeout" msgstr "Push-ilmoituksen passiivisuusaika" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push-ilmoitukset" @@ -14412,7 +14416,7 @@ msgstr "Reaktioiden vuorovaikutus pois käytöstä" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaktiot" @@ -14583,7 +14587,7 @@ msgstr "Päivitä push-tilaus" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Luo uudelleen" @@ -14591,19 +14595,19 @@ msgstr "Luo uudelleen" msgid "Regenerate backup codes" msgstr "Luo varakoodit uudelleen" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Uudelleenluodaanko botin token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Uudelleenluodaanko asiakassalaisuus?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Uudelleenluominen mitätöi nykyisen salaisuuden. Päivitä kaikki koodit, jotka käyttävät vanhaa arvoa." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Uudelleenluominen mitätöi nykyisen tokenin. Päivitä kaikki koodit, jotka käyttävät vanhaa arvoa." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Poista suodin" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Poista suodin" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Ilmoitus lähetetty onnistuneesti. Turvatiimimme käsittelee sen pian." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Ilmoita käyttäjä" @@ -15105,7 +15109,7 @@ msgstr "Pyydetyt käyttöoikeudet" msgid "Require 2FA for moderation actions" msgstr "Vaadi 2FA moderaattoritoimiin" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Vaadi kaksoisnapsautus puhekanavalle liittymiseen" @@ -15144,7 +15148,7 @@ msgstr "Vaatii kaikki keskitason vaatimukset ja vähintään 10 minuutin jäseny msgid "Requires Plutonium" msgstr "Vaatii Plutoniumin" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Ajoita viesti uudelleen" @@ -15290,11 +15294,11 @@ msgstr "Tilaa uudelleen" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Yritä uudelleen" @@ -15359,7 +15363,7 @@ msgstr "Peruuta" msgid "Revoke Ban" msgstr "Peruuta esto" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Peruuta laite" @@ -15386,7 +15390,7 @@ msgstr "Kelaa taaksepäin {DEFAULT_SEEK_AMOUNT} sekuntia" msgid "Right" msgstr "Oikea" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Oikealle tasattu" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Etsi jäseniä..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Etsi viestejä" @@ -15834,13 +15838,13 @@ msgstr "Hae rooleja tai jäseniä..." msgid "Search saved media" msgstr "Hae tallennettua mediaa" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Hakualue" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Hakualue: {0}" @@ -15857,7 +15861,7 @@ msgstr "Hae asetuksia..." msgid "Search stickers..." msgstr "Hae tarroja..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Hakuehdotukset" @@ -15938,7 +15942,7 @@ msgstr "Turva-avain / tunnusluku" msgid "Security key verification failed. Please try again." msgstr "Turva-avaimen vahvistus epäonnistui. Yritä uudelleen." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Näe kaikki laitteet, jotka ovat tällä hetkellä tililläsi kirjautuneina. Peruuta tuntemattomat istunnot." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Valitse tili" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Valitse kaikki" @@ -16040,7 +16044,7 @@ msgstr "Valitse upotettujen linkkien median koko" msgid "Select media size for uploaded attachments" msgstr "Valitse ladattujen liitteiden median koko" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Valitse molemminpuolinen näkymä" @@ -16151,9 +16155,9 @@ msgstr "Lähetä koodi" msgid "Send Code" msgstr "Lähetä koodi" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Lähetä ystäväpyyntö" @@ -16170,7 +16174,7 @@ msgstr "Lähetä viesti · Oikealla napsautuksella ajoitus" msgid "Send Message Disabled" msgstr "Viestin lähetys pois päältä" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Lähetä viestejä" @@ -16624,7 +16628,7 @@ msgstr "Näytä lahjapainike" msgid "Show inline images and videos" msgstr "Näytä rivinsisäiset kuvat ja videot" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Näytä vain kirjoitusilmaisin ilman profiilikuvia" @@ -16788,11 +16792,11 @@ msgstr "Näytä lahja jo lunastettuna" msgid "Show this role separately" msgstr "Näytä tämä rooli erikseen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Näytä kirjoitusilmaisin käyttäjäavatareineen kanavalistassa" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Näytä kirjoitus valitulla kanavalla" @@ -17151,7 +17155,7 @@ msgstr "Espanja (Espanja)" msgid "Speak" msgstr "Puhu" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Puhu viesti" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Aloita jakaminen" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Aloita videopuhelu" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Aloita äänipuhelu" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Tarrasuhde" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Tarrapaketti" @@ -17427,7 +17431,7 @@ msgstr "Lopeta soitto" msgid "Stop Sharing" msgstr "Lopeta jakaminen" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Lopeta puhuminen" @@ -17570,19 +17574,19 @@ msgstr "Piilota kaikki rooliviittaukset" msgid "Suppress All Role @mentions" msgstr "Piilota kaikki rooliviittaukset" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Piilota upotukset" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Teksti" msgid "Text (NSFW)" msgstr "Teksti (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Tekstikanava" @@ -18028,10 +18032,10 @@ msgstr "Tämän toiminnon jatkaminen vaatii vahvistuksen." msgid "This application" msgstr "Tämä sovellus" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Liitetiedosto on vanhentunut" @@ -18039,7 +18043,7 @@ msgstr "Liitetiedosto on vanhentunut" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Tämä botti pyytää ylläpitäjän oikeutta. Emme suosittele myöntämään tätä tuotantosovelluksille, ellei kehittäjä ole täysin luotettava. Pyydä heitä hakemaan pienempää määrää oikeuksia. Sulje tämä sivu, jos et ole varma." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Tätä ei voi peruuttaa. Sovelluksen poistaminen poistaa myös sen botin." @@ -18101,7 +18105,7 @@ msgstr "Tämä yhteisö on saavuttanut maksimijäsenmäärän eikä ota tällä msgid "This community has temporarily disabled invites." msgstr "Tämä yhteisö on tilapäisesti poistanut kutsut käytöstä." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Tämä yhteisö on tilapäisesti poistanut kutsut käytöstä. Voit yrittää uudelleen myöhemmin." @@ -18178,7 +18182,7 @@ msgstr "Tällä kutsulla on rajattomasti käyttöjä." msgid "This invite link never expires." msgstr "Tämä kutsumislinkki ei vanhene koskaan." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Tämä on <0>{displayName} aloitus. Lisää ystäviä aloittaaksesi keskustelun!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Tämä on suoran viestihistoriasi alku käyttäjän <0>{0} kanssa." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Tämä oli @silent-viesti." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Tämä aiheuttaa repeämän aika-avaruuden jatkuvuuteen eikä sitä voi msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Tämä piilottaa kaikki suosikkeihin liittyvät käyttöliittymäelementit, mukaan lukien painikkeet ja valikkokohteet. Olemassa olevat suosikit säilyvät ja ne voi ottaa uudelleen käyttöön milloin tahansa kohdasta <0>Käyttäjäasetukset → Ulkoasu → Suosikit." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Tämä muokkaa olemassa olevaa ajastettua viestiä sen sijaan, että se lähetettäisiin heti." @@ -18387,8 +18391,8 @@ msgstr "Tämä poistaa tallennetun istunnon tälle tilille." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Tämä korvaa nykyisen mukautetun teemasi. Voit muokata sitä myöhemmin käyttäjäasetuksissa." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Esikatselukuva kohteelle {title}" @@ -18485,7 +18489,7 @@ msgstr "Ilmoitukset näkyvät näytön yläkeskellä." msgid "today" msgstr "tänään" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Tänään" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Yritä uudelleen" @@ -18737,7 +18741,7 @@ msgstr "Kokeile toista nimeä tai tarkista kirjoitusasu." msgid "Try another search term" msgstr "Kokeile toista hakusanaa" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Pyydä uutta kutsua." @@ -18864,7 +18868,7 @@ msgstr "Kirjoitustaso" msgid "Type your message here..." msgstr "Kirjoita viestisi tähän..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Kirjoitustapahtumat" @@ -18877,11 +18881,11 @@ msgstr "Kirjoitusilmaisin" msgid "Typing Indicator" msgstr "Kirjoitusindikaattori" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Kirjoitusilmaisin + avatarit" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Vain kirjoitusilmaisin" @@ -18961,11 +18965,11 @@ msgstr "Puhelua ei voi aloittaa" msgid "Unable to start email change" msgstr "Sähköpostin vaihto ei lähde käyntiin" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Kaikilta pois käytöstä" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Henkilöstöä lukuun ottamatta pois käytöstä" @@ -18978,7 +18982,7 @@ msgstr "Henkilöstöä lukuun ottamatta pois käytöstä" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Poista tämän käyttäjän esto ennen kaveripyynnön lähettämistä." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Poista käyttäjän esto" @@ -19165,7 +19169,7 @@ msgstr "Tuntematon virhe" msgid "Unknown Gift" msgstr "Tuntematon lahja" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Tuntematon kutsu" @@ -19205,11 +19209,11 @@ msgstr "tuntematon-rooli" msgid "Unlimited" msgstr "Rajoittamaton" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Rajoittamaton emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Rajoittamattomat tarrat" @@ -19254,7 +19258,7 @@ msgstr "Avaa tarroja DM:ssä Plutoniumin avulla" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Poista mykistys kategoriasta" msgid "Unmute Channel" msgstr "Poista mykistys kanavalta" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Poista mykistys suosikeista" msgid "Unmute User" msgstr "Poista mykistys käyttäjältä" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Nimeämätön" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Kunnes muutan sitä" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Vahvistamaton sähköposti" msgid "Up to 4K/60fps" msgstr "Jopa 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Päivitä" @@ -19629,7 +19633,7 @@ msgstr "Lataa sisäänmarssiääni" msgid "Upload Failed" msgstr "Lataus epäonnistui" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Lataa tiedosto" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Käyttäjä siirrettiin kanavalle" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Käyttäjäprofiili" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Käyttäjäprofiili: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Arvot" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Oma URL" @@ -20059,14 +20063,14 @@ msgstr "Varmistus voi olla pakollinen ennen varmistuskoodien katselua." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Varmennettu yhteisö" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Varmennettu kilta" @@ -20167,8 +20171,8 @@ msgstr "Videon laatu" msgid "Video Settings" msgstr "Videoasetukset" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videokuvake" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Näytä koodit" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Näytä yhteisöprofiili" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Näytä lahjavarasto" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Näytä globaali profiili" @@ -20329,7 +20333,7 @@ msgstr "Rikkomusluokan valinta" msgid "Violent or Graphic Content" msgstr "Väkivaltainen tai graafinen sisältö" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-ääni" @@ -20341,7 +20345,7 @@ msgstr "Näkyvät painikkeet" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Puhelut" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Puhekanava" @@ -20442,7 +20446,7 @@ msgstr "Puhekanava" msgid "Voice Channel Full" msgstr "Puhekanava täynnä" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Puhekanavaan liittymisen käytös" @@ -20559,7 +20563,7 @@ msgstr "Emme voi liittyä tähän yhteisöön tällä hetkellä." msgid "We couldn't load the invites at this time." msgstr "Emme voineet ladata kutsuja tällä hetkellä." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Emme voineet ladata tätä sovellusta" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Meillä on vaikeuksia muodostaa yhteyttä Fluxerin palvelimiin. Kyseessä voi olla tilapäinen verkkohäiriö tai huoltokatko." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Meillä on vaikeuksia yhdistää aika-avaruuteen. Tarkista yhteytesi ja yritä uudelleen." @@ -20759,7 +20763,7 @@ msgstr "Viikonlopun soturit" msgid "Welcome and system messages will appear here." msgstr "Tervetuloa- ja järjestelmäviestit näkyvät täällä." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Tervetuloa takaisin" @@ -20820,7 +20824,7 @@ msgstr "Mitä tapahtuu?" msgid "What's included in your export:" msgstr "Mitä vientiisi sisältyy:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Kun ominaisuus on pois päältä (oletus), kirjoitusilmaisimet eivät näy kanavalla, jota parhaillaan katsot." @@ -20836,7 +20840,7 @@ msgstr "Kun ominaisuus on päällä, pikatallentimen napautus pitää mikrofonin msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Kun ominaisuus on päällä, paljastaa koko sovelluksessa virheenkorjausvalikoita, joiden avulla voit tarkastella ja kopioida raakaa JSON-rakennetta viesteille, kanaville, käyttäjille ja yhteisöille. Mukana on myös työkaluja Fluxer Markdown -parsereiden suorituskyvyn ja AST-rakenteen tarkasteluun mille tahansa viestille." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Kun ominaisuus on päällä, pikanäppäintunnukset piilotetaan työkaluvihjeissä." @@ -20868,7 +20872,7 @@ msgstr "Kun ominaisuus on päällä, tietokoneesi alueasetukset määrittävät msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Kun ominaisuus on päällä, voit merkitä kanavia suosikeiksi ja ne näkyvät suosikkiosiossa. Kun se on pois päältä, kaikki suosikkeihin liittyvät käyttöliittymäelementit piilotetaan. Nykyiset suosikkisi säilyvät." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Kun ominaisuus on päällä, puhekanaville liittyminen vaatii kaksoisnapsautuksen. Kun se on pois päältä (oletus), yhdellä napsautuksella liityt heti." @@ -20970,7 +20974,7 @@ msgstr "Vuotuinen {yearlyPrice}" msgid "yesterday" msgstr "eilen" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Eilen" @@ -21013,7 +21017,7 @@ msgstr "Muokkaat yhteisökohtaista profiiliasi. Tämä profiili näkyy vain täs msgid "You are in slowmode. Please wait before sending another message." msgstr "Olet hitaassa tilassa. Odota ennen seuraavan viestin lähettämistä." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Olet nyt kehittäjä!" @@ -21113,7 +21117,7 @@ msgstr "Voit käyttää linkkejä ja Markdownia muotoillaksesi tekstiäsi. <0/> msgid "You can't add new reactions while you're on timeout." msgstr "Et voi lisätä uusia reaktioita ollessasi aikakatkaisussa." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Et voi lisätä itseäsi kaveriksi" @@ -21128,7 +21132,7 @@ msgstr "Et voi vuorovaikuttaa reaktioiden kanssa hakutuloksissa, sillä se saatt msgid "You can't join while you're on timeout." msgstr "Et voi liittyä, kun olet aikakatkaisussa." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Et voi poistaa hiljentämistäsi, koska moderaattori on hiljentänyt sin 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Sinulla ei ole oikeutta lähettää viestejä tässä kanavassa." @@ -21439,7 +21443,7 @@ msgstr "Näytät offline-tilassa" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Määrität botin oikeudet seuraavassa näytössä." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Sinun on kirjauduttava uudelleen kaikilla uloskirjautuneilla laitteilla" @@ -21508,7 +21512,7 @@ msgstr "Olet äänikanavalla" msgid "You're sending messages too quickly" msgstr "Lähetät viestejä liian nopeasti" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 399fd11e..74c190cb 100644 --- a/fluxer_app/src/locales/fr/messages.po +++ b/fluxer_app/src/locales/fr/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# élément} other {# éléments}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -566,18 +566,18 @@ msgstr "Les images {label} ne peuvent pas être animées. Veuillez utiliser JPEG #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Membre" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Membres" @@ -612,11 +612,11 @@ msgstr "{minutes} minutes et {seconds} secondes" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutes et 1 seconde" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} communauté mutuelle" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} communautés mutuelles" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participants en appel" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} en ligne" @@ -650,15 +650,15 @@ msgstr "Il reste {remaining} caractères" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Il reste {remaining} caractères. Obtiens Plutonium pour écrire jusqu’à {premiumMaxLength} caractères." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Membre" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Membres" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} en ligne" @@ -812,7 +812,7 @@ msgstr "{value}\\u202f%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "mentions @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Couleur d'accent" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accepter" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Accepter la demande d'ami" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Accepter l'invitation" @@ -1364,8 +1364,8 @@ msgstr "Accepter l'invitation" msgid "Accept the incoming call" msgstr "Accepter l'appel entrant" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Accepter cette invitation installe automatiquement le pack." @@ -1594,7 +1594,7 @@ msgstr "Ajouter des canaux favoris" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} autorisé." msgid "Already have an account?" msgstr "Tu as déjà un compte ?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Déjà rejoint" @@ -2191,7 +2191,7 @@ msgstr "Avatars et bannières animés" msgid "Animated Avatars Require Plutonium" msgstr "Les avatars animés nécessitent Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Bannière animée" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Émojis animés ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animé" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Vidéo GIF animée" @@ -2219,7 +2219,7 @@ msgstr "Vidéo GIF animée" msgid "Animated GIF Video" msgstr "Vidéo GIF animée" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Icône animée" @@ -2277,7 +2277,7 @@ msgstr "Tout le monde peut @mentionner ce rôle. Les membres avec «\\u00a0Utili msgid "API Endpoint" msgstr "Point de terminaison API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informations sur l'application" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nom de l'application" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Le nom de l'application est requis" @@ -2554,7 +2553,7 @@ msgstr "Es-tu sûr de vouloir lever l'interdiction de <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Pièce jointe {0}" msgid "Attachment Actions" msgstr "Actions sur les pièces jointes" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Pièce jointe expirée" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Saisie automatique" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatique" @@ -2859,7 +2858,7 @@ msgstr "Retour" msgid "Back to Applications" msgstr "Retour aux applications" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Retour à la liste" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Retour à la connexion" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Retour aux remplacements" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Retour aux rôles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Retour aux paramètres" @@ -3003,7 +3002,7 @@ msgstr "Utilisateurs bannis" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Bannière" @@ -3096,7 +3095,7 @@ msgstr "Limite de caractères de la bio" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Portée demandée pour le bot" msgid "Bot token" msgstr "Jeton du bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Jeton du bot régénéré. Mets à jour tout code utilisant l’ancien jeton." @@ -3435,7 +3434,7 @@ msgstr "Paramètres caméra" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Paramètres caméra" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Paramètres caméra" msgid "Cancel" msgstr "Annuler" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Annuler la demande d’ami" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Attention\\u202f! Tu as des modifications non enregistrées." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Catégorie" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nom de la catégorie" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Paramètres de la catégorie" @@ -3617,7 +3616,7 @@ msgstr "Attention" msgid "Center" msgstr "Centre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centré" @@ -3765,7 +3764,7 @@ msgstr "Débit binaire modifié à {0}." msgid "Changed the voice region to {0}." msgstr "Région vocale modifiée en {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "salon" @@ -3828,11 +3827,11 @@ msgstr "ID du salon copié dans le presse-papiers" msgid "Channel link copied" msgstr "Lien du salon copié" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Mode indicateur de saisie de la liste de salons" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicateurs de saisie dans la liste des salons" @@ -3891,7 +3890,7 @@ msgstr "Salon retiré des favoris" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Paramètres du salon" @@ -4052,7 +4051,7 @@ msgstr "Choisis comment les horaires s'affichent dans toute l'application." msgid "Choose how typing indicators appear in the channel list" msgstr "Choisis comment les indicateurs de frappe apparaissent dans la liste des canaux" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Choisis comment les indicateurs de saisie apparaissent dans la liste des salons quand quelqu'un écrit." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Revendiquer votre compte pour échanger ce cadeau." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Revendiquer votre compte pour envoyer des demandes d'ami." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Réinitialiser les permissions" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Effacer la recherche" msgid "Clear search input" msgstr "Effacer la zone de recherche" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Effacer la sélection" @@ -4314,7 +4313,7 @@ msgstr "Clique sur l'icône de téléchargement à côté d'un son pour le perso msgid "Click the verification link in the email." msgstr "Clique sur le lien de vérification dans l'e-mail." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Clique pour ajouter une note" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Clique pour récupérer ton cadeau\\u202f!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Clique pour copier" @@ -4388,7 +4387,7 @@ msgstr "Clique pour voir toutes les réactions" msgid "Client secret" msgstr "Secret client" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Secret client régénéré. Mets à jour tout code utilisant l'ancien secret." @@ -4649,8 +4648,8 @@ msgstr "La communauté promeut la haine basée sur des caractéristiques protég msgid "Community promotes or facilitates illegal activities" msgstr "La communauté promeut ou facilite des activités illégales" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menus contextuels" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Les menus contextuels peuvent s'ouvrir avec un clic gauche (sur les boutons) ou un clic droit (sur les autres éléments). Ceci montre différents éléments de menu, y compris des cases à cocher, des boutons radio, des curseurs et des sous-menus." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Contrôler comment les liens de sites Web sont prévisualisés dans le c msgid "Control how you join voice channels" msgstr "Contrôler comment tu rejoins les salons vocaux" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Contrôle comment tu rejoins les salons vocaux dans les communautés." @@ -5012,7 +5011,7 @@ msgstr "Contrôler les animations d'autocollants" msgid "Control the visibility of favorites throughout the app." msgstr "Contrôle la visibilité des favoris dans toute l'application." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Contrôle si les indices de raccourcis clavier apparaissent dans les infobulles." @@ -5071,7 +5070,7 @@ msgstr "Copié" msgid "Copied to clipboard" msgstr "Copié dans le presse-papiers" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiée dans le presse-papiers" @@ -5149,7 +5148,7 @@ msgstr "Copier le lien du fichier" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copier le FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copier le FluxerTag" msgid "Copy GIF" msgstr "Copier le GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copier l'ID de la guilde" @@ -5222,7 +5221,7 @@ msgstr "Copier le texte" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Confortable" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Créer" @@ -5331,14 +5330,14 @@ msgstr "Crée et gère des applications et bots pour ton compte." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Crée et partage des packs d'emojis et stickers personnalisés avec Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Créer une application" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Créer une application" msgid "Create Category" msgstr "Créer une catégorie" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Créé le {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Créé par {0}" @@ -5569,7 +5568,7 @@ msgstr "L'image rognée est trop grande. Choisis une zone ou un fichier plus pet msgid "Current Community" msgstr "Communauté actuelle" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Appareil actuel" @@ -5606,7 +5605,7 @@ msgstr "Coincé en 1885, apparaît hors ligne" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Actuellement : {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Danger secondaire" msgid "Danger secondary clicked!" msgstr "Danger secondaire cliqué !" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zone dangereuse" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Supprimer tous mes messages" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Supprimer l'application" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Supprimer la pièce jointe" @@ -6063,7 +6062,7 @@ msgstr "Supprimer la pièce jointe" msgid "Delete Attachment" msgstr "Supprimer la pièce jointe" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Supprimer la catégorie" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Supprimer le canal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Supprimer le média" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Supprimer le message" @@ -6215,7 +6214,7 @@ msgstr "Dense" msgid "Dense layout" msgstr "Disposition dense" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Déployé" @@ -6281,7 +6280,7 @@ msgstr "Canal de destination" msgid "Destination URL:" msgstr "URL de destination :" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Bannière détachée" @@ -6362,7 +6361,7 @@ msgstr "Tailles différentes (statut pris en charge)" msgid "Different Sizes & Member Counts" msgstr "Tailles et nombres de membres différents" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Message direct" @@ -6541,7 +6540,7 @@ msgstr "Désactiver ton compte te déconnectera de toutes les sessions. Tu peux msgid "Disallow @mention." msgstr "Interdire la mention @." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Interdire les comptes non revendiqués" @@ -6747,7 +6746,7 @@ msgstr "Ne pas afficher les aperçus de messages dans la liste MP" msgid "Don't show this again" msgstr "Ne plus afficher ceci" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Ne pas afficher les indicateurs de saisie dans la liste des canaux" @@ -6760,7 +6759,7 @@ msgstr "Ne pas afficher les indicateurs de saisie dans la liste des canaux" msgid "Done" msgstr "Terminé" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Modifier la catégorie" msgid "Edit Channel" msgstr "Modifier le canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Modifier les permissions spécifiques pour les rôles et membres dans ce canal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Écran d'accueil d'intégration" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Les images d'écran d'accueil d'intégration ne peuvent pas être animées. Utilise JPEG, PNG ou WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio intégré" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Les noms d'emoji doivent comporter au moins 2 caractères et ne peuvent contenir que des lettres, chiffres et underscores. Types de fichiers autorisés : JPEG, PNG, WebP, GIF. Nous compressons les images à 128x128 pixels. Taille maximale : {0} Ko par emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Pack d'emoji" @@ -7473,7 +7472,7 @@ msgstr "Saisis ton numéro" msgid "Enter picture-in-picture" msgstr "Activer l'image dans l'image" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Activer le mode sélection" @@ -7536,7 +7535,7 @@ msgstr "Saisis le nouvel e-mail que tu veux utiliser. Nous t'enverrons un code e msgid "Enter the SMS code you received." msgstr "Saisis le code SMS que tu as reçu." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "appuie sur Entrée pour <0><1>enregistrer" @@ -7604,7 +7603,7 @@ msgstr "Erreur lors du rendu de LaTeX : {0}" msgid "Escape key exits keyboard mode" msgstr "Échap quitte le mode clavier" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "appuie sur Échap pour <0><1>annuler" @@ -7667,7 +7666,7 @@ msgstr "Quitter l'image dans l'image" msgid "Exit Preview" msgstr "Quitter l'aperçu" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Quitter le mode sélection" @@ -7701,7 +7700,7 @@ msgstr "Expiré (dans les 30 derniers jours)" msgid "Expired {absolute}" msgstr "Expiré {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Expiré entre {earliest} et {latest}" @@ -7709,7 +7708,7 @@ msgstr "Expiré entre {earliest} et {latest}" msgid "Expired on {date}" msgstr "Expiré le {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Expiré le {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Expire" msgid "Expires {absolute} ({relativeText})" msgstr "Expire {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Expire entre {earliest} et {latest}" @@ -7730,7 +7729,7 @@ msgstr "Expire entre {earliest} et {latest}" msgid "Expires on {date}" msgstr "Expire le {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Expire le {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Les packs d'expressions sont une fonctionnalité Plutonium" msgid "Expression picker categories" msgstr "Catégories du sélecteur d'expressions" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Purge d'expressions" @@ -7839,10 +7838,6 @@ msgstr "Impossible de copier dans le presse-papiers" msgid "Failed to copy URL" msgstr "Impossible de copier l'URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Impossible de créer l'application. Vérifie tes informations et réessaie." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Impossible de créer le rôle" @@ -8100,7 +8095,7 @@ msgstr "Impossible de lever l'interdiction. Réessaie." msgid "Failed to revoke invite" msgstr "Impossible de révoquer l'invitation" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Impossible de faire pivoter. Réessaie." @@ -8413,7 +8408,7 @@ msgstr "Amis sportifs" msgid "Flags" msgstr "Drapeaux" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Noms de salons textuels flexibles" @@ -8577,7 +8572,7 @@ msgstr "Amis gourmets" msgid "For 1 hour" msgstr "Pendant 1 heure" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Pendant 1 heure" msgid "For 15 minutes" msgstr "Pendant 15 minutes" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Pendant 15 minutes" msgid "For 24 hours" msgstr "Pendant 24 heures" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Pendant 3 jours" msgid "For 3 hours" msgstr "Pendant 3 heures" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Pendant 3 heures" msgid "For 8 hours" msgstr "Pendant 8 heures" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Oublier les abonnements" msgid "Forgot Password" msgstr "Mot de passe oublié" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Tu as oublié ton mot de passe ?" @@ -8795,7 +8790,7 @@ msgstr "Avancer de {DEFAULT_SEEK_AMOUNT} secondes" msgid "Forward Message" msgstr "Transférer le message" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Transféré" @@ -9065,7 +9060,7 @@ msgstr "Télécharge l’app de bureau Fluxer pour avoir le push-to-talk systèm #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Retourner au salon textuel précédemment sélectionné" msgid "Go forward in navigation history" msgstr "Avancer dans l’historique" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Aller à la communauté" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Invitations de groupe" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Message de groupe" @@ -9548,7 +9543,7 @@ msgstr "Hey, {username}, bienvenue\\u202f! Tu peux tout accomplir." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hey, {username}\\u202f! Quand ça atteindra 88 mph, tu verras du sérieux\\u202f!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Masqué" @@ -9569,7 +9564,7 @@ msgstr "Masquer les favoris" msgid "Hide Join Messages" msgstr "Masquer les messages d'arrivée" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Masquer les raccourcis clavier dans les infobulles" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Masquer les salons masqués" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Si tu veux d'abord exporter tes données ou supprimer tes messages, rends-toi dans la section Tableau de bord de la confidentialité dans Paramètres utilisateur avant de continuer." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "image" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Entrées avec icônes" msgid "Insert emoji" msgstr "Insérer un emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Installer un pack d'emojis" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Installer un pack de stickers" @@ -10153,7 +10148,7 @@ msgstr "Installé le {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "L'installation des packs d'emojis et de stickers nécessite un abonnement premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Invitations instantanées" @@ -10286,7 +10281,7 @@ msgstr "Paramètres du lien d'invitation" msgid "Invite Links" msgstr "Liens d'invitation" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Fenêtre d'invitation" msgid "Invite modal preview" msgstr "Aperçu de la fenêtre d'invitation" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitation envoyée pour {0}" msgid "Invite sent to {guildName}" msgstr "Invitation envoyée à {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash d'invitation" @@ -10354,7 +10349,7 @@ msgstr "Inviter sur {0}" msgid "Invite to Community" msgstr "Inviter dans la communauté" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitation indisponible" @@ -10369,12 +10364,12 @@ msgstr "Invité par {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invité par {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invité par {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Les invitations sont actuellement suspendues dans cette communauté" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Les invitations sont verrouillées pour les communautés en aperçu. Réclame ton compte en définissant un e-mail et un mot de passe pour activer les invitations." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitations désactivées" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitations désactivées" @@ -10482,13 +10477,13 @@ msgstr "Rejoins une communauté avec des stickers pour commencer !" msgid "Join call" msgstr "Rejoindre l'appel" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Rejoindre la communauté" @@ -10497,15 +10492,23 @@ msgstr "Rejoindre la communauté" msgid "Join community form" msgstr "Formulaire pour rejoindre la communauté" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Rejoindre Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Rejoins Fluxer HQ pour discuter avec l'équipe et rester à jour sur les dernières nouveautés !" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Rejoindre le groupe" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Rejoindre le DM de groupe" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notifications de participation" @@ -10620,7 +10623,7 @@ msgstr "Aller au plus ancien message non lu" msgid "Jump to page" msgstr "Aller à la page" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Aller au présent" @@ -10690,7 +10693,7 @@ msgstr "Raccourcis clavier" msgid "Keyboard" msgstr "Clavier" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Astuces clavier" @@ -10815,7 +10818,7 @@ msgstr "Découvrir Plutonium" msgid "Leave blank for a random username" msgstr "Laisse vide pour un pseudo aléatoire" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Tu pars si vite ?" msgid "Left" msgstr "Gauche" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Aligné à gauche" @@ -10945,7 +10948,7 @@ msgstr "lien" msgid "Link" msgstr "Lien" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Lier le salon" @@ -11027,7 +11030,7 @@ msgstr "Chargement des bannissements…" msgid "Loading communities..." msgstr "Chargement des communautés…" -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Chargement de l’image" @@ -11039,8 +11042,8 @@ msgstr "Chargement des invitations…" msgid "Loading more..." msgstr "Chargement de plus…" -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Espace réservé de chargement" @@ -11064,7 +11067,7 @@ msgstr "Chargement du thème…" msgid "Loading verification methods..." msgstr "Chargement des méthodes de vérification…" -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Chargement\\u00a0: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Mettre en sourdine localement" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Connecte-toi via ton navigateur, puis saisis le code affiché pour ajout msgid "Log in via browser" msgstr "Connexion via navigateur" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Connexion via navigateur ou instance personnalisée" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Déconnexion" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Déconnecte {0} appareils" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Déconnexion de {sessionCount} appareils" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Déconnecter 1 appareil" @@ -11141,7 +11144,7 @@ msgstr "Déconnexion de tous les appareils" msgid "Log out all other devices" msgstr "Déconnexion de tous les autres appareils" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Déconnecter tous les autres appareils" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marquer comme 18+ (contenu sensible)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "mentions :" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "mentions :" msgid "Message" msgstr "Message" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Message " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Message @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Message #" @@ -11838,7 +11842,7 @@ msgstr "Messages et médias" msgid "Messages Deleted" msgstr "Messages supprimés" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Échec du chargement des messages" @@ -12016,7 +12020,7 @@ msgstr "Plus" msgid "More Actions" msgstr "Plus d’actions" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Plus d’emplacements d’émojis" @@ -12028,7 +12032,7 @@ msgstr "Plus d’options" msgid "More Options" msgstr "Plus d’options" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Plus d’emplacements d’autocollants" @@ -12162,8 +12166,8 @@ msgstr "Mettre le salon en sourdine" msgid "Mute Channel" msgstr "Mettre le salon en sourdine" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Sourdine jusqu'au {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Mettre une communauté en sourdine empêche l'apparition des indicateurs de non-lus et des notifications, sauf si tu es mentionné" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Communautés mutuelles ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Amis mutuels ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Groupes mutuels ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Mon application" @@ -12247,7 +12251,7 @@ msgstr "Mon autocollant génial" msgid "My Category" msgstr "Ma catégorie" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mes appareils" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigation" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Besoin d'un compte ?" @@ -12364,7 +12368,7 @@ msgstr "Réseau" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Erreur réseau" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Pas de bannière de communauté" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Aucune description fournie." @@ -12684,15 +12688,15 @@ msgstr "Aucun microphone détecté" msgid "No more scheduled messages." msgstr "Plus aucun message programmé." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Aucune communauté en commun trouvée." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Aucun ami en commun trouvé." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Aucun groupe en commun trouvé." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Ça ne te plaît pas ? Tu peux désactiver cette fonctionnalité à tout moment." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Remplacement des notifications" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Préviens les utilisateurs avec ce rôle qui peuvent voir ce canal." msgid "now" msgstr "maintenant" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Maintenant" @@ -13090,7 +13094,7 @@ msgstr "Au clic" msgid "on:" msgstr "sur :" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Une fois supprimée, l'application et ses identifiants sont définitivement supprimés." @@ -13252,7 +13256,7 @@ msgstr "Ouvrir uniquement les DM" msgid "Open Fluxer" msgstr "Ouvrir Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Ouvrir l'image en plein écran" @@ -13368,7 +13372,7 @@ msgstr "Ouvrir la communauté Visionnaire" msgid "Opening..." msgstr "Ouverture..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Opérateur" @@ -13441,7 +13445,7 @@ msgstr "Le message original a été supprimé" msgid "Other" msgstr "Autre" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Autres appareils" @@ -13501,7 +13505,7 @@ msgstr "Remplacer l'état du compte non réclamé" msgid "Override unread gift inventory status" msgstr "Remplacer l'état de l'inventaire de cadeaux non lus" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Aperçu" @@ -13695,7 +13699,7 @@ msgstr "Autorisations" msgid "Permissions granted" msgstr "Autorisations accordées" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Notes personnelles" @@ -13868,12 +13872,12 @@ msgstr "Lire" msgid "Play animated emojis" msgstr "Lire les émojis animés" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Lire l’audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Colle le lien du message que tu signales." msgid "Please provide an email address." msgstr "Fournis une adresse e-mail." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Réessaie ou retourne à la liste des applications." @@ -13989,7 +13993,7 @@ msgstr "Avantages Plutonium" msgid "Plutonium Subscription" msgstr "Abonnement Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Tableau de bord confidentialité" msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Supprimer cet autocollant du stockage et du CDN" msgid "Push Notification Inactive Timeout" msgstr "Délai d’inactivité des notifications push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notifications push" @@ -14412,7 +14416,7 @@ msgstr "Interaction de réaction désactivée" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Réactions" @@ -14583,7 +14587,7 @@ msgstr "Actualiser l'abonnement push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Régénérer" @@ -14591,19 +14595,19 @@ msgstr "Régénérer" msgid "Regenerate backup codes" msgstr "Régénérer les codes de secours" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Régénérer le token du bot ?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Régénérer le secret client ?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "La régénération invalidera le secret actuel. Mets à jour tout code utilisant l'ancienne valeur." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "La régénération invalidera le token actuel. Mets à jour tout code utilisant l'ancienne valeur." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Supprimer le filtre" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Supprimer le filtre" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Signalement envoyé avec succès. Notre équipe de sécurité l’examin #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Signaler l’utilisateur" @@ -15105,7 +15109,7 @@ msgstr "Périmètres demandés" msgid "Require 2FA for moderation actions" msgstr "Exiger la 2FA pour les actions de modération" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Exiger un double-clic pour rejoindre les salons vocaux" @@ -15144,7 +15148,7 @@ msgstr "Requiert tout ce qui est dans Moyen, plus être membre du serveur depuis msgid "Requires Plutonium" msgstr "Requiert Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Replanifier le message" @@ -15290,11 +15294,11 @@ msgstr "Se réabonner" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Réessayer" @@ -15359,7 +15363,7 @@ msgstr "Révoquer" msgid "Revoke Ban" msgstr "Révoquer le bannissement" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Révoquer l'appareil" @@ -15386,7 +15390,7 @@ msgstr "Reculer de {DEFAULT_SEEK_AMOUNT} secondes" msgid "Right" msgstr "Droite" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Aligné à droite" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Rechercher des membres..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Rechercher des messages" @@ -15834,13 +15838,13 @@ msgstr "Rechercher des rôles ou des membres..." msgid "Search saved media" msgstr "Rechercher des médias enregistrés" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Champ de recherche" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Champ de recherche : {0}" @@ -15857,7 +15861,7 @@ msgstr "Rechercher dans les paramètres..." msgid "Search stickers..." msgstr "Rechercher des stickers..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Suggestions de recherche" @@ -15938,7 +15942,7 @@ msgstr "Clé de sécurité / Passkey" msgid "Security key verification failed. Please try again." msgstr "La vérification de la clé de sécurité a échoué. Réessaye." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Vois tous les appareils connectés à ton compte. Révoque les sessions inconnues." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Sélectionner un compte" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Tout sélectionner" @@ -16040,7 +16044,7 @@ msgstr "Sélectionne la taille des médias intégrés depuis des liens" msgid "Select media size for uploaded attachments" msgstr "Sélectionne la taille des médias pour les fichiers joints" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Sélectionne la vue partagée" @@ -16151,9 +16155,9 @@ msgstr "Envoyer le code" msgid "Send Code" msgstr "Envoyer le code" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Envoyer une demande d’ami" @@ -16170,7 +16174,7 @@ msgstr "Envoyer un message · Clic droit pour programmer" msgid "Send Message Disabled" msgstr "Envoi de message désactivé" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Envoyer des messages" @@ -16624,7 +16628,7 @@ msgstr "Afficher le bouton Cadeau" msgid "Show inline images and videos" msgstr "Afficher les images et vidéos en ligne" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Afficher uniquement l'indicateur de saisie sans avatars" @@ -16788,11 +16792,11 @@ msgstr "Afficher le cadeau comme déjà utilisé" msgid "Show this role separately" msgstr "Afficher ce rôle séparément" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Afficher l'indicateur de saisie avec les avatars dans la liste des salons" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Afficher la saisie dans le salon sélectionné" @@ -17151,7 +17155,7 @@ msgstr "Espagnol (Espagne)" msgid "Speak" msgstr "Parler" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Parler le message" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Commencer le partage" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Démarrer l’appel vidéo" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Démarrer l’appel vocal" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densité d’autocollants" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Pack d’autocollants" @@ -17427,7 +17431,7 @@ msgstr "Arrêter la sonnerie" msgid "Stop Sharing" msgstr "Arrêter le partage" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Arrêter de parler" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Masquer les intégrations" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Texte" msgid "Text (NSFW)" msgstr "Texte (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Salon textuel" @@ -18028,10 +18032,10 @@ msgstr "Cette action nécessite une vérification pour continuer." msgid "This application" msgstr "Cette application" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Cette pièce jointe a expiré" @@ -18039,7 +18043,7 @@ msgstr "Cette pièce jointe a expiré" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Ce bot demande la permission d'administrateur. Nous ne recommandons pas de l'accorder aux applications en production à moins de faire entièrement confiance au développeur. Demande-lui plutôt de demander un ensemble de permissions réduit. Ferme cette page si tu n'es pas sûr." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Ceci ne peut pas être annulé. Supprimer l'application supprime aussi son bot." @@ -18101,7 +18105,7 @@ msgstr "Cette communauté a atteint son nombre maximal de membres et n'accepte p msgid "This community has temporarily disabled invites." msgstr "Cette communauté a temporairement désactivé les invitations." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Cette communauté a temporairement désactivé les invitations. Tu peux réessayer plus tard." @@ -18178,7 +18182,7 @@ msgstr "Cette invitation a un nombre d'utilisations illimité." msgid "This invite link never expires." msgstr "Ce lien d'invitation n'expire jamais." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Voici le début de <0>{displayName}. Ajoute des amis pour commencer une conversation !" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Ceci est le début de ton historique de messages directs avec <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "C'était un message @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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é." @@ -18351,7 +18355,7 @@ msgstr "Cela créera une faille dans le continuum espace-temps et ne peut être msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Cela masquera tous les éléments d'interface liés aux favoris, y compris les boutons et les éléments de menu. Tes favoris existants seront conservés et peuvent être réactivés à tout moment depuis <0>Paramètres utilisateur → Apparence → Favoris." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Cela modifiera le message programmé existant au lieu de l'envoyer immédiatement." @@ -18387,8 +18391,8 @@ msgstr "Cela supprimera la session enregistrée pour ce compte." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Cela remplacera ton thème personnalisé actuel. Tu pourras le modifier plus tard dans tes paramètres utilisateur." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Vignette pour {title}" @@ -18485,7 +18489,7 @@ msgstr "Les toasts apparaissent en haut au centre de l'écran." msgid "today" msgstr "aujourd'hui" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Aujourd'hui" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Réessaie" @@ -18737,7 +18741,7 @@ msgstr "Essaie un autre nom ou vérifie ton orthographe." msgid "Try another search term" msgstr "Essaie un autre terme de recherche" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Essaie de demander une nouvelle invitation." @@ -18864,7 +18868,7 @@ msgstr "Échelle de police" msgid "Type your message here..." msgstr "Écris ton message ici..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Événements de saisie" @@ -18877,11 +18881,11 @@ msgstr "Indicateur de saisie" msgid "Typing Indicator" msgstr "Indicateur de saisie" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicateur de saisie + avatars" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Indicateur de saisie uniquement" @@ -18961,11 +18965,11 @@ msgstr "Impossible de lancer l’appel" msgid "Unable to start email change" msgstr "Impossible de commencer la modification d’email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Indisponible pour tout le monde" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Indisponible pour tous sauf le staff" @@ -18978,7 +18982,7 @@ msgstr "Indisponible pour tous sauf le staff" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Débloque cet utilisateur avant d’envoyer une demande d’ami." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Débloquer l’utilisateur" @@ -19165,7 +19169,7 @@ msgstr "Erreur inconnue" msgid "Unknown Gift" msgstr "Cadeau inconnu" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Invitation inconnue" @@ -19205,11 +19209,11 @@ msgstr "rôle-inconnu" msgid "Unlimited" msgstr "Illimité" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Émojis illimités" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Autocollants illimités" @@ -19254,7 +19258,7 @@ msgstr "Débloque les autocollants dans les DM avec Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Désactiver le muet de la catégorie" msgid "Unmute Channel" msgstr "Désactiver le muet du canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Désactiver le muet des favoris" msgid "Unmute User" msgstr "Désactiver le muet de l’utilisateur" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Sans nom" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Jusqu’à ce que je le change" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "E-mail non vérifié" msgid "Up to 4K/60fps" msgstr "Jusqu’à 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Mettre à jour" @@ -19629,7 +19633,7 @@ msgstr "Télécharger un son d'arrivée" msgid "Upload Failed" msgstr "Échec du téléchargement" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Télécharger un fichier" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "L’utilisateur a changé de canal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil utilisateur" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil utilisateur : {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valeurs" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personnalisée" @@ -20059,14 +20063,14 @@ msgstr "La vérification peut être requise avant de consulter tes codes de sauv #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Communauté vérifiée" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Guilde vérifiée" @@ -20167,8 +20171,8 @@ msgstr "Qualité vidéo" msgid "Video Settings" msgstr "Paramètres vidéo" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Vignette vidéo" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Afficher les codes" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Afficher le profil de la communauté" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Afficher l'inventaire de cadeaux" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Afficher le profil global" @@ -20329,7 +20333,7 @@ msgstr "Sélection de la catégorie de violation" msgid "Violent or Graphic Content" msgstr "Contenu violent ou explicite" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voix VIP" @@ -20341,7 +20345,7 @@ msgstr "Boutons visibles" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Appels vocaux" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Salon vocal" @@ -20442,7 +20446,7 @@ msgstr "Salon vocal" msgid "Voice Channel Full" msgstr "Salon vocal complet" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportement de connexion au salon vocal" @@ -20559,7 +20563,7 @@ msgstr "Nous n’avons pas pu rejoindre cette communauté pour le moment." msgid "We couldn't load the invites at this time." msgstr "Nous n'avons pas pu charger les invitations pour le moment." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nous n’avons pas pu charger cette application" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Nous avons du mal à nous connecter aux serveurs de Fluxer. Cela peut être un problème réseau temporaire ou une maintenance programmée." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Nous avons du mal à nous connecter au continuum espace-temps. Vérifie ta connexion et réessaie." @@ -20759,7 +20763,7 @@ msgstr "Guerriers du week-end" msgid "Welcome and system messages will appear here." msgstr "Les messages de bienvenue et système apparaîtront ici." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Content de te revoir" @@ -20820,7 +20824,7 @@ msgstr "Que se passe-t-il ?" msgid "What's included in your export:" msgstr "Ce qui est inclus dans ton export :" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Quand désactivé (par défaut), les indicateurs de saisie n'apparaîtront pas dans le canal que tu regardes." @@ -20836,7 +20840,7 @@ msgstr "Quand activé, un appui rapide sur ton raccourci push-to-talk gardera to msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Quand activé, affiche des menus de débogage dans toute l'app pour inspecter et copier les objets JSON bruts des structures internes comme les messages, canaux, utilisateurs et communautés. Inclut aussi des outils pour déboguer le parseur Markdown de Fluxer et l'AST de n'importe quel message." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Quand activé, les badges de raccourcis sont masqués dans les infobulles." @@ -20868,7 +20872,7 @@ msgstr "Quand activé, utilise la locale de ton ordinateur pour déterminer le f msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Quand activé, tu peux ajouter des salons aux favoris et ils apparaîtront dans la section Favoris. Quand désactivé, tous les éléments UI liés aux favoris (boutons, entrées de menu) sont masqués. Tes favoris existants sont conservés." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Quand activé, tu dois double-cliquer sur les salons vocaux pour les rejoindre. Quand désactivé (par défaut), un simple clic suffit." @@ -20970,7 +20974,7 @@ msgstr "Annuel {yearlyPrice}" msgid "yesterday" msgstr "hier" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Hier" @@ -21013,7 +21017,7 @@ msgstr "Tu modifies ton profil par communauté. Ce profil n’est visible que da msgid "You are in slowmode. Please wait before sending another message." msgstr "Tu es en mode ralenti. Patiente avant d’envoyer un nouveau message." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Tu es maintenant développeur !" @@ -21113,7 +21117,7 @@ msgstr "Tu peux utiliser des liens et Markdown pour formater ton texte. Avec <0/ msgid "You can't add new reactions while you're on timeout." msgstr "Tu ne peux pas ajouter de nouvelles réactions pendant ton timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Tu ne peux pas être ami avec toi-même" @@ -21128,7 +21132,7 @@ msgstr "Tu ne peux pas interagir avec les réactions dans les résultats de rech msgid "You can't join while you're on timeout." msgstr "Tu ne peux pas rejoindre pendant ton timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Tu ne peux pas réactiver ton micro car un modérateur t’a rendu muet. 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é." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 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." @@ -21439,7 +21443,7 @@ msgstr "Tu apparaîtras hors ligne" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Tu configureras les permissions du bot sur l'écran suivant." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Tu devras te reconnecter sur tous les appareils déconnectés" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 5da13b28..114b53b7 100644 --- a/fluxer_app/src/locales/he/messages.po +++ b/fluxer_app/src/locales/he/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# פריט} other {# פריטים}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# חבר} other {# חברים}}" @@ -566,18 +566,18 @@ msgstr "תמונות {label} אינן יכולות להיות מונפשות. א #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} חבר" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} חברים" @@ -612,11 +612,11 @@ msgstr "{minutes} דקות ו-{seconds} שניות" msgid "{minutes} minutes and 1 second" msgstr "{minutes} דקות ו-1 שנייה" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} קהילה משותפת" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} קהילות משותפות" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} משתתפים בשיחה" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} מקוונים" @@ -650,15 +650,15 @@ msgstr "{remaining} תווים נותרו" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} תווים נותרו. השג Plutonium כדי לכתוב עד {premiumMaxLength} תווים." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} חבר" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} חברים" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} מקוונים" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "אזכורים של @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "צבע דומיננטי" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "קבל" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "קבל בקשת חברות" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "קבל הזמנה" @@ -1364,8 +1364,8 @@ msgstr "קבל הזמנה" msgid "Accept the incoming call" msgstr "קבל את השיחה הנכנסת" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "קבלת ההזמנה הזו תתקין את החבילה אוטומטית." @@ -1594,7 +1594,7 @@ msgstr "הוסף ערוצים מועדפים" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "אושר {0}." msgid "Already have an account?" msgstr "כבר יש לך חשבון?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "כבר הצטרפת" @@ -2191,7 +2191,7 @@ msgstr "אווטארים ודגלים מונפשים" msgid "Animated Avatars Require Plutonium" msgstr "אווטארים מונפשים דורשים Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "דגל מונפש" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "אמוג'י מונפש ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF מונפש" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "וידאו GIF מונפש" @@ -2219,7 +2219,7 @@ msgstr "וידאו GIF מונפש" msgid "Animated GIF Video" msgstr "וידאו GIF מונפש" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "אייקון מונפש" @@ -2277,7 +2277,7 @@ msgstr "כל אחד יכול להזכיר את התפקיד הזה ב-@. חבר msgid "API Endpoint" msgstr "נקודת קצה של API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "מידע על האפליקציה" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "שם האפליקציה" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "יש לספק שם אפליקציה" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "האם אתה בטוח שברצונך להסתיר את כל ההטמעות של הקישורים בהודעה זו? פעולה זו תסתיר את כל ההטמעות בהודעה." @@ -2603,7 +2602,7 @@ msgstr "קובץ מצורף {0}" msgid "Attachment Actions" msgstr "פעולות קובץ מצורף" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "הקובץ המצורף פג תוקף" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "השלמה אוטומטית" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "אוטומטי" @@ -2859,7 +2858,7 @@ msgstr "חזור" msgid "Back to Applications" msgstr "חזור לאפליקציות" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "חזור לרשימה" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "חזור למסך ההתחברות" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "חזור להתאמות" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "חזור לתפקידים" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "חזור להגדרות" @@ -3003,7 +3002,7 @@ msgstr "משתמשים חסומים" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "באנר" @@ -3096,7 +3095,7 @@ msgstr "מגבלת תווים בביו" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "טווח הרשאות הבוט המבוקש" msgid "Bot token" msgstr "אסימון בוט" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "האסימון של הבוט נוצר מחדש. עדכן קוד שמשתמש באסימון הישן." @@ -3435,7 +3434,7 @@ msgstr "הגדרות מצלמה" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "הגדרות מצלמה" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "הגדרות מצלמה" msgid "Cancel" msgstr "ביטול" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "בטל בקשת חברות" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "זהירות! יש שינויים שלא נשמרו." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "קטגוריה" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "שם קטגוריה" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "הגדרות קטגוריה" @@ -3617,7 +3616,7 @@ msgstr "אזהרה" msgid "Center" msgstr "מרכז" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "ממורכז" @@ -3765,7 +3764,7 @@ msgstr "קצב הסיביות שונה ל־{0}." msgid "Changed the voice region to {0}." msgstr "אזור הקול שונה ל־{0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "ערוץ" @@ -3828,11 +3827,11 @@ msgstr "מזהה הערוץ הועתק ללוח" msgid "Channel link copied" msgstr "קישור הערוץ הועתק" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "מצב מדדי ההקלדה ברשימת הערוצים" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "מדדי הקלדה ברשימת ערוצים" @@ -3891,7 +3890,7 @@ msgstr "הערוץ הוסר מהמועדפים" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "הגדרות ערוץ" @@ -4052,7 +4051,7 @@ msgstr "בחר איך זמנים מוצגים בכל האפליקציה." msgid "Choose how typing indicators appear in the channel list" msgstr "בחר כיצד מופיעים מחווני הקלדה ברשימת הערוצים" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "בחר איך מופיעים מחווני הקלדה ברשימת הערוצים כשמישהו מקליד בערוץ." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "דרוש חשבון שלך כדי להחיל מתנה זו." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "דרוש חשבון שלך כדי לשלוח בקשות חבר." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "נקה הרשאות" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "נקה חיפוש" msgid "Clear search input" msgstr "נקה שדה החיפוש" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "נקה בחירה" @@ -4314,7 +4313,7 @@ msgstr "לחץ על סמל ההעלאה ליד כל צליל כדי להתאים msgid "Click the verification link in the email." msgstr "לחץ על קישור האימות במייל." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "לחץ להוספת הערה" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "לחץ כדי לתבוע את המתנה שלך!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "לחץ להעתקה" @@ -4388,7 +4387,7 @@ msgstr "לחץ כדי להציג את כל התגובות" msgid "Client secret" msgstr "סוד הלקוח" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "סוד הלקוח נוצר מחדש. עדכן כל קוד שמשתמש בסוד הישן." @@ -4649,8 +4648,8 @@ msgstr "הקהילה מקדמת שנאה על בסיס מאפיינים מוגנ msgid "Community promotes or facilitates illegal activities" msgstr "הקהילה מקדמת או מקלה על פעילויות לא חוקיות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "תפריטי הקשר" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "ניתן לפתוח תפריטי הקשר עם לחיצה שמאלית (על כפתורים) או לחיצה ימנית (על אלמנטים אחרים). זה מציג פריטים שונים בתפריט כולל תיבות סימון, כפתורי רדיו, מחוונים ותפריטי משנה." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "שלוט כיצד קישורי אתרים מוצגים בתצוגה מק msgid "Control how you join voice channels" msgstr "שליטה באופן ההצטרפות לערוצי קול" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "שלוט איך אתה מצטרף לערוצי קול בקהילות." @@ -5012,7 +5011,7 @@ msgstr "שליטה באנימציות של מדבקות" msgid "Control the visibility of favorites throughout the app." msgstr "שלוט בנראות המועדפים בכל האפליקציה." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "שלוט אם רמזים לקיצורי מקלדת מופיעים בתוך טולטיפים." @@ -5071,7 +5070,7 @@ msgstr "הועתק" msgid "Copied to clipboard" msgstr "הועתק ללוח" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "כתובת URL הועתקה ללוח" @@ -5149,7 +5148,7 @@ msgstr "העתק קישור לקובץ" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "העתק FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "העתק FluxerTag" msgid "Copy GIF" msgstr "העתק GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "העתק מזהה קהילה" @@ -5222,7 +5221,7 @@ msgstr "העתק טקסט" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "נעים" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "צור" @@ -5331,14 +5330,14 @@ msgstr "צור ונהל אפליקציות ובוטים עבור החשבון ש msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "צור ושתף חבילות אימוג'י ומדבקות מותאמות אישית עם Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "צור אפליקציה" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "צור אפליקציה" msgid "Create Category" msgstr "צור קטגוריה" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "נוצר ב-{createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "נוצר על ידי {0}" @@ -5569,7 +5568,7 @@ msgstr "התמונה החתוכה גדולה מדי. בחר אזור קטן יו msgid "Current Community" msgstr "קהילה נוכחית" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "התקן נוכחי" @@ -5606,7 +5605,7 @@ msgstr "נתקע כרגע ב-1885, מופיע כאוף-ליין" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "כרגע: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "סכנה משנית" msgid "Danger secondary clicked!" msgstr "נלחץ כפתור סכנה משנית!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "אזור סכנה" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "ברירת המחדל היא כבוי במובייל לשמירת חיי סוללה ונתונים." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "מחק את כל ההודעות שלי" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "מחק אפליקציה" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "מחק קובץ מצורף" @@ -6063,7 +6062,7 @@ msgstr "מחק קובץ מצורף" msgid "Delete Attachment" msgstr "מחק קובץ מצורף" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "מחק קטגוריה" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "מחק ערוץ" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "מחק מדיה" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "מחק הודעה" @@ -6215,7 +6214,7 @@ msgstr "צפוף" msgid "Dense layout" msgstr "פריסה צפופה" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "פורס" @@ -6281,7 +6280,7 @@ msgstr "ערוץ יעד" msgid "Destination URL:" msgstr "כתובת יעד:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "שלט מנותק" @@ -6362,7 +6361,7 @@ msgstr "מידות שונות (מצב נתמך)" msgid "Different Sizes & Member Counts" msgstr "מידות שונות ומספרי חברים" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "הודעה ישירה" @@ -6541,7 +6540,7 @@ msgstr "השבתת חשבון תנתק אותך מכל ההתחברויות. ת msgid "Disallow @mention." msgstr "אסור ציון @." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "אסור חשבונות לא מאומתים" @@ -6747,7 +6746,7 @@ msgstr "אל תציג תצוגות מקדימות של הודעות ברשימת msgid "Don't show this again" msgstr "אל תציג את זה שוב" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "אל תציג אינדיקטורים של הקלדה ברשימת הערוצים" @@ -6760,7 +6759,7 @@ msgstr "אל תציג אינדיקטורים של הקלדה ברשימת הער msgid "Done" msgstr "בוצע" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "ערוך קטגוריה" msgid "Edit Channel" msgstr "ערוך ערוץ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "ערוך הרשאות נפרדות לתפקידים וחברים בערוץ הזה." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "מסך פתיחה מוטמע" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "תמונות מסך פתיחה מוטמע לא יכולות להיות מונפשות. השתמש ב־JPEG, PNG או WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "אודיו מובנה" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "שמות האימוג'י חייבים להיות באורך של לפחות 2 תווים ויכולים להכיל רק תווים אלפאנומריים וקו תחתון. סוגי הקבצים המותרים: JPEG, PNG, WebP, GIF. אנו מכווצים את התמונות לגודל של 128x128 פיקסלים. גודל מרבי: {0} KB לאימוג'י." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "חבילת אימוג'י" @@ -7473,7 +7472,7 @@ msgstr "הכנס טלפון" msgid "Enter picture-in-picture" msgstr "היכנס למצב תמונה בתוך תמונה" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "היכנס למצב בחירה" @@ -7536,7 +7535,7 @@ msgstr "הכנס את כתובת המייל החדשה שברצונך להשתמ msgid "Enter the SMS code you received." msgstr "הכנס את קוד ה-SMS שקיבלת." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "הקש Enter כדי <0><1>לשמור" @@ -7604,7 +7603,7 @@ msgstr "שגיאה בעיבוד LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "מקש Escape יוצא ממצב מקלדת" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "הקש Escape כדי <0><1>לבטל" @@ -7667,7 +7666,7 @@ msgstr "צא ממצב תמונה בתוך תמונה" msgid "Exit Preview" msgstr "צא מתצוגה מקדימה" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "צא ממצב בחירה" @@ -7701,7 +7700,7 @@ msgstr "פג תוקף (בתוך 30 יום)" msgid "Expired {absolute}" msgstr "פג תוקף {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "פג תוקף בין {earliest} ל-{latest}" @@ -7709,7 +7708,7 @@ msgstr "פג תוקף בין {earliest} ל-{latest}" msgid "Expired on {date}" msgstr "פג תוקף ב-{date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "פג תוקף ב-{earliest}" @@ -7722,7 +7721,7 @@ msgstr "יפוג" msgid "Expires {absolute} ({relativeText})" msgstr "יפוג ב-{absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "יפוג בין {earliest} ל-{latest}" @@ -7730,7 +7729,7 @@ msgstr "יפוג בין {earliest} ל-{latest}" msgid "Expires on {date}" msgstr "יפוג ב-{date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "יפוג ב-{earliest}" @@ -7766,7 +7765,7 @@ msgstr "חבילות הבעה הן תכונה של Plutonium" msgid "Expression picker categories" msgstr "קטגוריות בורר הבעות" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "ניקוי הבעות" @@ -7839,10 +7838,6 @@ msgstr "העתקה ללוח נכשלה" msgid "Failed to copy URL" msgstr "העתקת ה-URL נכשלה" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "יצירת היישום נכשלה. בדוק את הנתונים ונסה שוב." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "יצירת התפקיד נכשלה" @@ -8100,7 +8095,7 @@ msgstr "ביטול האיסור נכשל. נסה שוב." msgid "Failed to revoke invite" msgstr "ביטול ההזמנה נכשל" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "הסיבוב נכשל. נסה שוב." @@ -8413,7 +8408,7 @@ msgstr "חבר'ה בכושר" msgid "Flags" msgstr "דגלים" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "שמות ערוצי טקסט גמישים" @@ -8577,7 +8572,7 @@ msgstr "חברי אוכל" msgid "For 1 hour" msgstr "למשך 1 שעה" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "לשעה" msgid "For 15 minutes" msgstr "ל־15 דקות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "ל־15 דקות" msgid "For 24 hours" msgstr "למשך 24 שעות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "למשך 3 ימים" msgid "For 3 hours" msgstr "למשך 3 שעות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "למשך 3 שעות" msgid "For 8 hours" msgstr "למשך 8 שעות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "שכח מנויים" msgid "Forgot Password" msgstr "שכחת סיסמה" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "שכחת את הסיסמה שלך?" @@ -8795,7 +8790,7 @@ msgstr "העבר {DEFAULT_SEEK_AMOUNT} שניות קדימה" msgid "Forward Message" msgstr "העבר הודעה" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "הועבר" @@ -9065,7 +9060,7 @@ msgstr "קבל את אפליקציית הדסקטופ של Fluxer כדי להש #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "חזור לערוץ הטקסט ששוקדת עליו קודם" msgid "Go forward in navigation history" msgstr "התקדם בהיסטוריית הניווט" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "עבור לקהילה" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "הזמנות לקבוצה" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "הודעה קבוצתית" @@ -9548,7 +9543,7 @@ msgstr "היי, {username}, ברוך הבא! אתה יכול להשיג הכל." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "היי, {username}! כשזה יגיע ל-88 מייל לשעה, תראה דברים רציניים!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "מוסתר" @@ -9569,7 +9564,7 @@ msgstr "הסתר מועדפים" msgid "Hide Join Messages" msgstr "הסתר הודעות הצטרפות" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "הסתר רמזי מקלדת ב'טולטיפים'" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "הסתר ערוצים מושתקים" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "אם אתה רוצה לייצא את הנתונים שלך או למחוק את ההודעות שלך קודם, בקר בחלק לוח הבקרה של הפרטיות בהגדרות משתמש לפני שתמשיך." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "תמונה" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "קלטים עם אייקונים" msgid "Insert emoji" msgstr "הכנס אימוג׳י" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "התקן חבילת אימוג׳ים" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "התקן חבילת סטיקרים" @@ -10153,7 +10148,7 @@ msgstr "הותקן ב-{installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "התקנת חבילות אימוג׳ים וסטיקרים דורשת מנוי פרימיום." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "הזמנות מיידיות" @@ -10286,7 +10281,7 @@ msgstr "הגדרות קישור הזמנה" msgid "Invite Links" msgstr "קישורי הזמנה" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "חלונית הזמנה" msgid "Invite modal preview" msgstr "תצוגה מקדימה של חלונית ההזמנה" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "הזמנה נשלחה עבור {0}" msgid "Invite sent to {guildName}" msgstr "הזמנה נשלחה ל-{guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "ספלש הזמנה" @@ -10354,7 +10349,7 @@ msgstr "הזמנה ל-{0}" msgid "Invite to Community" msgstr "הזמנה לקהילה" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "ההזמנה לא זמינה" @@ -10369,12 +10364,12 @@ msgstr "הוזמנת על ידי {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "הוזמנת על ידי {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "הוזמנת על ידי {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "ההזמנות מושהות כרגע בקהילה זו" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "ההזמנות נעולות בקהילות תצוגה מקדימה. הפעל את חשבונך על ידי הגדרת אימייל וסיסמה כדי לאפשר הזמנות." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "ההזמנות מנוטרלות" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "הזמנות מנוטרלות" @@ -10482,13 +10477,13 @@ msgstr "הצטרף לקהילה עם סטיקרים כדי להתחיל!" msgid "Join call" msgstr "הצטרף לשיחה" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "הצטרף לקהילה" @@ -10497,15 +10492,23 @@ msgstr "הצטרף לקהילה" msgid "Join community form" msgstr "טופס הצטרפות לקהילה" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "הצטרף למשרד המרכזי של פלוקסר" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "הצטרף למשרד המרכזי של פלוקסר כדי לשוחח עם הצוות ולהתעדכן בחדשות האחרונות!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "הצטרף לקבוצה" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "הצטרף לצ'אט קבוצה" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "הצטרף להתראות" @@ -10620,7 +10623,7 @@ msgstr "קפוץ להודעה הלא נקראת הישנה ביותר" msgid "Jump to page" msgstr "קפוץ לדף" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "קפוץ להווה" @@ -10690,7 +10693,7 @@ msgstr "קיצורי מקשים" msgid "Keyboard" msgstr "מקלדת" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "רמזי מקלדת" @@ -10815,7 +10818,7 @@ msgstr "למד על Plutonium" msgid "Leave blank for a random username" msgstr "השאר ריק כדי לקבל שם משתמש אקראי" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "עוזב כל כך מהר?" msgid "Left" msgstr "עזב" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "מיושר לשמאל" @@ -10945,7 +10948,7 @@ msgstr "קישור" msgid "Link" msgstr "קישור" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "קשר ערוץ" @@ -11027,7 +11030,7 @@ msgstr "טוען חסימות..." msgid "Loading communities..." msgstr "טוען קהילות..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "טוען תמונה" @@ -11039,8 +11042,8 @@ msgstr "טוען הזמנות..." msgid "Loading more..." msgstr "טוען עוד..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "טוען תחליף" @@ -11064,7 +11067,7 @@ msgstr "טוען נושא..." msgid "Loading verification methods..." msgstr "טוען שיטות אימות..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "טוען: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "השתקה מקומית" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "התחבר דרך הדפדפן שלך, ואז הזן את הקוד המ msgid "Log in via browser" msgstr "התחבר דרך הדפדפן" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "התחבר דרך הדפדפן או מופע מותאם" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "התנתק" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "התנתק מ-{0} מכשירים" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "התנתק מ-{sessionCount} מכשירים" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "התנתק ממכשיר אחד" @@ -11141,7 +11144,7 @@ msgstr "התנתק מכל המכשירים" msgid "Log out all other devices" msgstr "התנתק מכל מכשיר אחר" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "התנתק מכל המכשירים האחרים" @@ -11181,7 +11184,7 @@ msgstr "לורם איפסום דולור סיט אמט" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "לורם איפסום דולור סיט אמט, קונסקטetur אדיפיסינג אליט. סד דו אייסמוד טמפור אינסידידונט אוט לבורה את דולור מגנה אליקווה." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "לוטי" @@ -11351,6 +11354,7 @@ msgstr "סמן כ-18+ (תוכן למבוגרים)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "הזכרות:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "הזכרות:" msgid "Message" msgstr "הודעה" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "הודעה " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "הודעה @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "הודעה #" @@ -11838,7 +11842,7 @@ msgstr "הודעות ומדיה" msgid "Messages Deleted" msgstr "הודעות נמחקו" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "הודעות לא נטענו" @@ -12016,7 +12020,7 @@ msgstr "עוד" msgid "More Actions" msgstr "פעולות נוספות" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "עוד מקומות לאמוטיקונים" @@ -12028,7 +12032,7 @@ msgstr "אפשרויות נוספות" msgid "More Options" msgstr "אפשרויות נוספות" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "עוד מקומות למדבקות" @@ -12162,8 +12166,8 @@ msgstr "השתק ערוץ" msgid "Mute Channel" msgstr "השתק ערוץ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "מושתק עד {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "השתקת קהילה מונעת הופעת סמני הודעות לא נקראות והתראות אלא אם מזכירים אותך" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "קהילות משותפות ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "חברים משותפים ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "קבוצות משותפות ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "היישום שלי" @@ -12247,7 +12251,7 @@ msgstr "המדבקה המדהימה שלי" msgid "My Category" msgstr "הקטגוריה שלי" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "המכשירים שלי" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "ניווט" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "צריך חשבון?" @@ -12364,7 +12368,7 @@ msgstr "רשת" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "שגיאת רשת" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "אין באנר קהילה" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "לא סופקה תיאור." @@ -12684,15 +12688,15 @@ msgstr "לא זוהו מיקרופונים" msgid "No more scheduled messages." msgstr "אין עוד הודעות מתוזמנות." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "לא נמצאו קהילות משותפות." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "לא נמצאו חברים משותפים." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "לא נמצאו קבוצות משותפות." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "לא לטעמך? תוכל לבטל את התכונה הזו בכל עת." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "הגדרות התראות מותאמות" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "הודע למשתמשים עם תפקיד זה שמורשים לצפות msgid "now" msgstr "עכשיו" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "עכשיו" @@ -13090,7 +13094,7 @@ msgstr "בלחיצה" msgid "on:" msgstr "ב:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "לאחר המחיקה, האפליקציה ואישורי הגישה שלה מוסרים לצמיתות." @@ -13252,7 +13256,7 @@ msgstr "פתח רק הודעות פרטיות" msgid "Open Fluxer" msgstr "פתח את Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "פתח את התמונה בתצוגה מלאה" @@ -13368,7 +13372,7 @@ msgstr "פתח את קהילת החזון" msgid "Opening..." msgstr "נפתח..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "אופרטור" @@ -13441,7 +13445,7 @@ msgstr "ההודעה המקורית נמחקה" msgid "Other" msgstr "אחר" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "מכשירים אחרים" @@ -13501,7 +13505,7 @@ msgstr "עקוף את סטטוס החשבון הלא מתבע" msgid "Override unread gift inventory status" msgstr "עקוף את סטטוס מלאי המתנות שלא נפתחו" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "סקירה כללית" @@ -13695,7 +13699,7 @@ msgstr "הרשאות" msgid "Permissions granted" msgstr "הרשאות ניתנו" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "הערות אישיות" @@ -13868,12 +13872,12 @@ msgstr "הפעל" msgid "Play animated emojis" msgstr "הפעל אימוג'ים מונפשים" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "הפעל אודיו" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "הדבק את קישור ההודעה שאתה מדווח עליה." msgid "Please provide an email address." msgstr "ספק כתובת אימייל." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "נסה שוב או חזור לרשימת היישומים." @@ -13989,7 +13993,7 @@ msgstr "הטבות Plutonium" msgid "Plutonium Subscription" msgstr "מנוי Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "לוח פרטיות" msgid "Privacy Policy" msgstr "מדיניות פרטיות" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "נקה את המדבקה הזו מהאחסון וה-CDN" msgid "Push Notification Inactive Timeout" msgstr "פסק זמן להתראות דחיפה לא פעילות" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "הודעות דחיפה" @@ -14412,7 +14416,7 @@ msgstr "אינטראקציית תגובות מושבתת" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "תגובות" @@ -14583,7 +14587,7 @@ msgstr "רענון מנוי דחיפה" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "צור מחדש" @@ -14591,19 +14595,19 @@ msgstr "צור מחדש" msgid "Regenerate backup codes" msgstr "צור מחדש קודי גיבוי" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "ליצור מחדש את אסימון הבוט?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "ליצור מחדש את הסוד של הלקוח?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "היצירה מחדש תבטל את הסוד הנוכחי. עדכן קוד המשתמש בערך הישן." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "היצירה מחדש תבטל את האסימון הנוכחי. עדכן קוד המשתמש בערך הישן." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "הסר מסנן" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "הסר מסנן" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "הדיווח הוגש בהצלחה. צוות הבטיחות שלנו י #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "דווח על משתמש" @@ -15105,7 +15109,7 @@ msgstr "היקפים שנדרשו" msgid "Require 2FA for moderation actions" msgstr "דרוש אימות דו-שלבי לפעולות מנהל" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "דרוש לחיצה כפולה כדי להצטרף לערוצי קול" @@ -15144,7 +15148,7 @@ msgstr "דורש את כל הדרישות ברמת Medium, בנוסף להיות msgid "Requires Plutonium" msgstr "דורש Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "קבע מחדש הודעה" @@ -15290,11 +15294,11 @@ msgstr "הירשם מחדש" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "נסה שוב" @@ -15359,7 +15363,7 @@ msgstr "בטל" msgid "Revoke Ban" msgstr "בטל חסימה" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "בטל מכשיר" @@ -15386,7 +15390,7 @@ msgstr "החזר {DEFAULT_SEEK_AMOUNT} שניות לאחור" msgid "Right" msgstr "ימין" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "מיושר לימין" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "חפש חברים..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "חפש הודעות" @@ -15834,13 +15838,13 @@ msgstr "חפש תפקידים או חברים..." msgid "Search saved media" msgstr "חפש מדיה שמורה" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "תחום חיפוש" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "תחום חיפוש: {0}" @@ -15857,7 +15861,7 @@ msgstr "חפש בהגדרות..." msgid "Search stickers..." msgstr "חפש מדבקות..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "הצעות חיפוש" @@ -15938,7 +15942,7 @@ msgstr "מפתח אבטחה / מפתח סיסמה" msgid "Security key verification failed. Please try again." msgstr "אימות מפתח האבטחה נכשל. נסה שוב." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "ראה את כל המכשירים המחוברים כרגע לחשבונך. בטל כל סשן שאינך מזהה." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "בחר חשבון" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "בחר הכל" @@ -16040,7 +16044,7 @@ msgstr "בחר גודל מדיה לתוכן משובץ מקישורים" msgid "Select media size for uploaded attachments" msgstr "בחר גודל מדיה לקבצים מצורפים שהועלו" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "בחר תצוגה משותפת" @@ -16151,9 +16155,9 @@ msgstr "שלח קוד" msgid "Send Code" msgstr "שלח קוד" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "שלח בקשת חברות" @@ -16170,7 +16174,7 @@ msgstr "שלח הודעה · לחץ ימני לתזמון" msgid "Send Message Disabled" msgstr "שליחת הודעה מושבתת" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "שלח הודעות" @@ -16624,7 +16628,7 @@ msgstr "הצג כפתור מתנה" msgid "Show inline images and videos" msgstr "הצג תמונות וסרטונים בתוך השורה" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "הצג רק את מחוון ההקלדה בלי תמונות פרופיל" @@ -16788,11 +16792,11 @@ msgstr "הצג את המתנה ככבר נפדתה" msgid "Show this role separately" msgstr "הצג את התפקיד הזה בנפרד" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "הצג מחוון הקלדה עם תמונות פרופיל ברשימת הערוצים" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "הצג הקלדה בערוץ שנבחר" @@ -17151,7 +17155,7 @@ msgstr "ספרדית (ספרד)" msgid "Speak" msgstr "דבר" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "הקראת הודעה" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "התחל שיתוף" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "התחל שיחת וידאו" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "התחל שיחת קול" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "צפיפות מדבקות" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "חבילת מדבקות" @@ -17427,7 +17431,7 @@ msgstr "הפסק לצלצל" msgid "Stop Sharing" msgstr "הפסק שיתוף" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "הפסק לדבר" @@ -17570,19 +17574,19 @@ msgstr "השתק את כל ההזכרות @תפקיד" msgid "Suppress All Role @mentions" msgstr "השתק את כל ההזכרות @תפקיד" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "השתק תצוגות מקדימות" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "טקסט" msgid "Text (NSFW)" msgstr "טקסט (תוכן למבוגרים)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "ערוץ טקסט" @@ -18028,10 +18032,10 @@ msgstr "פעולה זו דורשת אימות כדי להמשיך." msgid "This application" msgstr "אפליקציה זו" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "הקובץ המצורף פג תוקף" @@ -18039,7 +18043,7 @@ msgstr "הקובץ המצורף פג תוקף" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "הבוט הזה מבקש הרשאת מנהל. איננו ממליצים להעניק זאת לאפליקציות פרודקשן אלא אם אתה סומך לחלוטין על המפתח. שקול לבקש ממנו לבקש סט הרשאות מצומצם יותר. סגור את העמוד אם אינך בטוח." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "זאת לא ניתנת לביטול. הסרת האפליקציה גם מוחקת את הבוט שלה." @@ -18101,7 +18105,7 @@ msgstr "הקהילה הגיעה למגבלת החברים המקסימלית ו msgid "This community has temporarily disabled invites." msgstr "הקהילה השעתה זמנית הזמנות." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "הקהילה השעתה זמנית הזמנות. ניתן לנסות שוב מאוחר יותר." @@ -18178,7 +18182,7 @@ msgstr "להזמנה הזו יש שימושים בלתי מוגבלים." msgid "This invite link never expires." msgstr "קישור ההזמנה הזה לעולם לא יפוג." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "זהו תחילתו של <0>{displayName}. הוסף חברים כדי להתחיל שיחה!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "זהו תחילתה של היסטוריית ההודעות הישירות שלך עם <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "זו הייתה הודעת @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "זה ייצור קרע במרחב-זמן ולא ניתן לחזור בו." @@ -18351,7 +18355,7 @@ msgstr "זה ייצור קרע במרחב-זמן ולא ניתן לחזור בו msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "זה יסתיר את כל רכיבי הממשק הקשורים למועדפים כולל לחצנים ופריטי תפריט. המועדפים הקיימים יישמרו וניתן להפעילם מחדש בכל עת מ-<0>הגדרות משתמש → מראה ותחושה → מועדפים." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "זה ישנה את ההודעה המתוזמנת הקיימת במקום לשלוח מיד." @@ -18387,8 +18391,8 @@ msgstr "זה יסיר את המידע השמור עבור חשבון זה." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "זה יחליף את הנושא המותאם הנוכחי שלך. ניתן לערוך אותו מאוחר יותר בהגדרות המשתמש." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "תמונה ממוזערת עבור {title}" @@ -18485,7 +18489,7 @@ msgstr "ההתראות מופיעות בחלק העליון-מרכז המסך." msgid "today" msgstr "היום" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "היום" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "נסה מונח או פילטר חיפוש אחר" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "נסה שוב" @@ -18737,7 +18741,7 @@ msgstr "נסה שם אחר או בדוק את האיות." msgid "Try another search term" msgstr "נסה מונח חיפוש אחר" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "נסה לבקש הזמנה חדשה." @@ -18864,7 +18868,7 @@ msgstr "קנה מידה" msgid "Type your message here..." msgstr "הקלד כאן את ההודעה שלך..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "אירועי הקלדה" @@ -18877,11 +18881,11 @@ msgstr "מצביע הקלדה" msgid "Typing Indicator" msgstr "מחוון הקלדה" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "מצביע הקלדה + תמונות פרופיל" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "רק מצביע הקלדה" @@ -18961,11 +18965,11 @@ msgstr "לא ניתן להתחיל שיחה" msgid "Unable to start email change" msgstr "לא ניתן להתחיל שינוי אימייל" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "לא זמין לכולם" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "לא זמין לכולם חוץ מאנשי צוות" @@ -18978,7 +18982,7 @@ msgstr "לא זמין לכולם חוץ מאנשי צוות" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "בטל חסימה של המשתמש הזה לפני שליחת בקשת #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "בטל חסימת משתמש" @@ -19165,7 +19169,7 @@ msgstr "שגיאה לא ידועה" msgid "Unknown Gift" msgstr "מתנה לא ידועה" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "הזמנה לא ידועה" @@ -19205,11 +19209,11 @@ msgstr "תפקיד-לא-ידוע" msgid "Unlimited" msgstr "ללא הגבלה" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "אימוג'ים ללא הגבלה" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "מדבקות ללא הגבלה" @@ -19254,7 +19258,7 @@ msgstr "פתח מדבקות בהודעות פרטיות עם Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "בטל השתקה של קטגוריה" msgid "Unmute Channel" msgstr "בטל השתקת ערוץ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "בטל השתקה של מועדפים" msgid "Unmute User" msgstr "בטל השתקת משתמש" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "בלתי בשם" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "עד שאשנה את זה" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "אימייל לא מאומת" msgid "Up to 4K/60fps" msgstr "עד 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "עדכן" @@ -19629,7 +19633,7 @@ msgstr "העלה צליל כניסה" msgid "Upload Failed" msgstr "ההעלאה נכשלה" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "העלה קובץ" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "המשתמש הועבר לערוץ" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "פרופיל משתמש" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "פרופיל משתמש: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "ערכים" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "כתובת URL מותאמת אישית" @@ -20059,14 +20063,14 @@ msgstr "ייתכן שיידרש אימות לפני הצגת קודי הגיבו #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "קהילה מאומתת" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "גילדה מאומתת" @@ -20167,8 +20171,8 @@ msgstr "איכות וידאו" msgid "Video Settings" msgstr "הגדרות וידאו" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "תמונת ממוזערת לוידאו" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "הצג קודים" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "הצג פרופיל קהילה" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "הצג מלאי מתנות" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "הצג פרופיל גלובלי" @@ -20329,7 +20333,7 @@ msgstr "בחירת קטגוריית הפרה" msgid "Violent or Graphic Content" msgstr "תוכן אלים או גרפי" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "קול VIP" @@ -20341,7 +20345,7 @@ msgstr "כפתורים גלויים" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "שיחות קול" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "ערוץ קול" @@ -20442,7 +20446,7 @@ msgstr "ערוץ קול" msgid "Voice Channel Full" msgstr "הערוץ הקולי מלא" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "התנהגות הצטרפות לערוץ הקול" @@ -20559,7 +20563,7 @@ msgstr "לא הצלחנו להצטרף לקהילה הזו כרגע." msgid "We couldn't load the invites at this time." msgstr "לא הצלחנו לטעון את ההזמנות כרגע." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "לא הצלחנו לטעון את האפליקציה הזו" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "יש לנו קושי להתחבר לשרתי Fluxer. ייתכן שמדובר בבעיית רשת זמנית או תחזוקה מתוזמנת." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "יש לנו קושי להתחבר למימד הזמן-מרחב. בדוק את החיבור שלך ונסה שוב." @@ -20759,7 +20763,7 @@ msgstr "לוחמי סופ\"ש" msgid "Welcome and system messages will appear here." msgstr "ברוכים הבאים והודעות מערכת יופיעו כאן." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "ברוך שובך" @@ -20820,7 +20824,7 @@ msgstr "מה קורה?" msgid "What's included in your export:" msgstr "מה כלול ביצוא שלך:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "כאשר מבוטל (ברירת מחדל), אינדיקטורים של כתיבה לא יופיעו בערוץ שאתה צופה בו כרגע." @@ -20836,7 +20840,7 @@ msgstr "כאשר מופעל, הקשה מהירה על קיצור לדחיפה ל msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "כאשר מופעל, חושף תפריטי איתור באגים בכל האפליקציה כדי לבדוק ולהעתיק אובייקטים גולמיים של JSON ממבני נתונים פנימיים כגון הודעות, ערוצים, משתמשים וקהילות. כולל גם כלי איתור לביצועי מפרש Fluxer Markdown ו-AST עבור כל הודעה נתונה." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "כאשר מופעל, תוויות קיצורי דרך מוסתרות בהופעות טיפים." @@ -20868,7 +20872,7 @@ msgstr "כאשר מופעל, משתמש בהגדרת האזור של המחשב msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "כאשר מופעל, תוכל לסמן ערוצים כמועדפים והם יופיעו בסעיף המועדפים. כאשר מבוטל, כל רכיבי הממשק הקשורים למועדפים (כפתורים, פריטי תפריט) יוסתרו. המועדפים הקיימים ישמרו." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "כאשר מופעל, תצטרך ללחוץ פעמיים על ערוצי קול כדי להצטרף אליהם. כאשר מבוטל (ברירת מחדל), לחיצה יחידה תצטרף לערוץ מיד." @@ -20970,7 +20974,7 @@ msgstr "שנתי {yearlyPrice}" msgid "yesterday" msgstr "אתמול" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "אתמול" @@ -21013,7 +21017,7 @@ msgstr "אתה עורך את פרופיל הקהילה הספציפי שלך. פ msgid "You are in slowmode. Please wait before sending another message." msgstr "אתה במצב איטי. המתן לפני שתשלח הודעה נוספת." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "עכשיו אתה מפתח!" @@ -21113,7 +21117,7 @@ msgstr "אתה יכול להשתמש בקישורים וב-Markdown כדי לע msgid "You can't add new reactions while you're on timeout." msgstr "אין לך אפשרות להוסיף תגובות חדשות בזמן שאתה בהשהיה." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "אתה לא יכול להיות חבר עם עצמך" @@ -21128,7 +21132,7 @@ msgstr "אין באפשרותך לקיים אינטראקציה עם תגובו msgid "You can't join while you're on timeout." msgstr "אתה לא יכול להצטרף בזמן שאתה בהשהיה." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "אין באפשרותך להסיר את ההשתקה משום שמנהל msgid "You do not have access to the channel where this message was sent." msgstr "אין לך גישה לערוץ שבו נשלחה ההודעה הזו." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "אין לך הרשאה לשלוח הודעות בערוץ הזה." @@ -21439,7 +21443,7 @@ msgstr "תופיע כלא מקוון" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "תגדיר אילו הרשאות הבוט יקבל במסך הבא." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "תצטרך להתחבר שוב בכל המכשירים שיצאו מהחשבון" @@ -21508,7 +21512,7 @@ msgstr "אתה בערוץ הקול" msgid "You're sending messages too quickly" msgstr "אתה שולח הודעות מהר מדי" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 a8b2ccbf..c6cc2f4c 100644 --- a/fluxer_app/src/locales/hi/messages.po +++ b/fluxer_app/src/locales/hi/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# आइटम} other {# आइटम}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# सदस्य} other {# सदस्य}}" @@ -566,18 +566,18 @@ msgstr "{label} छवियाँ एनिमेटेड नहीं हो #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} सदस्य" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} सदस्यगण" @@ -612,11 +612,11 @@ msgstr "{minutes} मिनट और {seconds} सेकंड" msgid "{minutes} minutes and 1 second" msgstr "{minutes} मिनट और 1 सेकंड" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} आपसी समुदाय" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} आपसी समुदायों" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} कॉल में प्रतिभागी" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} ऑनलाइन" @@ -650,15 +650,15 @@ msgstr "{remaining} अक्षर बचे हैं" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} अक्षर बचे हैं। {premiumMaxLength} अक्षर तक लिखने के लिए प्लूटोनियम पाएं।" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} सदस्य" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} सदस्यगण" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} ऑनलाइन" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone मेंशन" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "एक्सेंट रंग" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "स्वीकार करें" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "फ्रेंड रिक्वेस्ट स्वीकार करें" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "निमंत्रण स्वीकार करें" @@ -1364,8 +1364,8 @@ msgstr "निमंत्रण स्वीकार करें" msgid "Accept the incoming call" msgstr "आ रही कॉल स्वीकार करें" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "इस निमंत्रण को स्वीकार करने से पैक स्वचालित रूप से इंस्टॉल हो जाएगा।" @@ -1594,7 +1594,7 @@ msgstr "पसंदीदा चैनल जोड़ें" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} को अनुमति दी गई।" msgid "Already have an account?" msgstr "पहले से ही एक अकाउंट है?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "पहले से ही जुड़ चुका है" @@ -2191,7 +2191,7 @@ msgstr "एनिमेटेड अवतार और बैनर" msgid "Animated Avatars Require Plutonium" msgstr "एनिमेटेड अवतार के लिए Plutonium चाहिए" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "एनिमेटेड बैनर" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "एनिमेटेड इमोजी ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "एनिमेटेड GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "एनिमेटेड GIF वीडियो" @@ -2219,7 +2219,7 @@ msgstr "एनिमेटेड GIF वीडियो" msgid "Animated GIF Video" msgstr "एनिमेटेड GIF वीडियो" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "एनिमेटेड आइकन" @@ -2277,7 +2277,7 @@ msgstr "कोई भी इस रोल को @mention कर सकता msgid "API Endpoint" msgstr "API एंडपॉइंट" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "एप्लिकेशन जानकारी" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "एप्लिकेशन का नाम" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "एप्लिकेशन का नाम आवश्यक है" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "क्या तुम वाकई इस संदेश पर सभी लिंक एम्बेड को छुपाना चाहते हो? यह कार्रवाई इस संदेश से सभी एम्बेड छुपा देगी।" @@ -2603,7 +2602,7 @@ msgstr "अटैचमेंट {0}" msgid "Attachment Actions" msgstr "अटैचमेंट क्रियाएं" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "अटैचमेंट की समय सीमा समाप्त" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "ऑटोकंप्लीट" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "स्वचालित" @@ -2859,7 +2858,7 @@ msgstr "वापस" msgid "Back to Applications" msgstr "एप्लिकेशन पर वापस" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "सूची पर वापस" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "लॉगिन पर वापस" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "ओवरराइड पर वापस" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "रोल पर वापस" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "सेटिंग्स पर वापस" @@ -3003,7 +3002,7 @@ msgstr "प्रतिबंधित उपयोगकर्ता" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "बैनर" @@ -3096,7 +3095,7 @@ msgstr "जीवनी वर्ण सीमा" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "बॉट स्कोप अनुरोधित" msgid "Bot token" msgstr "बॉट टोकन" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "बॉट टोकन पुनः उत्पन्न किया गया। पुराने टोकन का उपयोग करने वाले किसी भी कोड को अपडेट करें।" @@ -3435,7 +3434,7 @@ msgstr "कैमरा सेटिंग्स" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "कैमरा सेटिंग्स" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "कैमरा सेटिंग्स" msgid "Cancel" msgstr "रद्द करें" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "मित्र अनुरोध रद्द करें" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "सावधान! आपके पास सहेजे बिना बदलाव हैं।" #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "श्रेणी" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "श्रेणी नाम" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "श्रेणी सेटिंग्स" @@ -3617,7 +3616,7 @@ msgstr "सावधानी" msgid "Center" msgstr "केंद्र" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "केंद्रित" @@ -3765,7 +3764,7 @@ msgstr "बिटरेट को {0} में बदल दिया गया msgid "Changed the voice region to {0}." msgstr "वॉइस क्षेत्र को {0} में बदल दिया गया।" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "चैनल" @@ -3828,11 +3827,11 @@ msgstr "चैनल आईडी क्लिपबोर्ड पर कॉ msgid "Channel link copied" msgstr "चैनल लिंक कॉपी किया गया" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "चैनल सूची टाइपिंग संकेतक मोड" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "चैनल सूची टाइपिंग संकेतक" @@ -3891,7 +3890,7 @@ msgstr "चैनल पसंदीदा से हटाया गया" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "चैनल सेटिंग्स" @@ -4052,7 +4051,7 @@ msgstr "ऐप में समय कैसे दिखे, यह चुन msgid "Choose how typing indicators appear in the channel list" msgstr "चैनल सूची में टाइपिंग इंडिकेटर कैसे दिखाई दें, यह चुनें" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "जब कोई चैनल में टाइप कर रहा हो तो चैनल सूची में टाइपिंग संकेत कैसे दिखें, यह चुनें।" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "इस उपहार को भुनाने के लिए अपना खाता दाव करें।" #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "दोस्तों को अनुरोध भेजने के लिए अपना खाता दाव करें।" @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "अनुमतियाँ साफ़ करें" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "खोज साफ़ करें" msgid "Clear search input" msgstr "खोज इनपुट साफ़ करें" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "चयन साफ़ करें" @@ -4314,7 +4313,7 @@ msgstr "किसी भी ध्वनि के बगल में अपल msgid "Click the verification link in the email." msgstr "ईमेल में सत्यापन लिंक पर क्लिक करें।" -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "नोट जोड़ने के लिए क्लिक करें" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "अपना उपहार दावा करने के लिए क्लिक करें!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "कॉपी करने के लिए क्लिक करें" @@ -4388,7 +4387,7 @@ msgstr "सभी प्रतिक्रियाएँ देखने के msgid "Client secret" msgstr "क्लाइंट सीक्रेट" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "क्लाइंट सीक्रेट फिर से बनाया गया है। जो कोड पुराने सीक्रेट का उपयोग करते हैं, उन्हें अपडेट करें।" @@ -4649,8 +4648,8 @@ msgstr "समुदाय सुरक्षित विशेषताओं msgid "Community promotes or facilitates illegal activities" msgstr "समुदाय अवैध गतिविधियों को बढ़ावा देता है या उसे सुविधाजनक बनाता है" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "संदर्भ मेनू" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "संदर्भ मेनू बाएं क्लिक (बटन पर) या दाएं क्लिक (अन्य तत्वों पर) से खोले जा सकते हैं। यह चेकबॉक्स, रेडियो बटन, स्लाइडर और सबमेनू सहित विभिन्न मेनू आइटम दिखाता है।" -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "यह नियंत्रित करें कि चैट मे msgid "Control how you join voice channels" msgstr "नियंत्रित करें कि आप वॉइस चैनल में कैसे शामिल होते हैं" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "समुदायों में वॉइस चैनल कैसे जॉइन करें, यह नियंत्रित करें।" @@ -5012,7 +5011,7 @@ msgstr "स्टिकर एनिमेशन नियंत्रित क msgid "Control the visibility of favorites throughout the app." msgstr "ऐप में पसंदीदा चीज़ों की दृश्यता को नियंत्रित करें।" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "कीबोर्ड शॉर्टकट संकेत टूलटिप के अंदर दिखें या नहीं, यह नियंत्रित करें।" @@ -5071,7 +5070,7 @@ msgstr "कॉपी किया गया" msgid "Copied to clipboard" msgstr "क्लिपबोर्ड में कॉपी किया गया" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL क्लिपबोर्ड में कॉपी किया गया" @@ -5149,7 +5148,7 @@ msgstr "फ़ाइल लिंक कॉपी करें" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTag कॉपी करें" @@ -5157,7 +5156,7 @@ msgstr "FluxerTag कॉपी करें" msgid "Copy GIF" msgstr "GIF कॉपी करें" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "गिल्ड आईडी कॉपी करें" @@ -5222,7 +5221,7 @@ msgstr "पाठ कॉपी करें" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "आरामदायक" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "बनाएँ" @@ -5331,14 +5330,14 @@ msgstr "अपने खाते के लिए एप्लिकेशन msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Fluxer Plutonium के साथ कस्टम इमोजी और स्टिकर पैक बनाओ और साझा करो।" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "एप्लिकेशन बनाओ" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "एप्लिकेशन बनाओ" msgid "Create Category" msgstr "कैटेगरी बनाओ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "{createdAt} को बनाया गया" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "{0} द्वारा बनाया गया" @@ -5569,7 +5568,7 @@ msgstr "क्रॉप की गई छवि बहुत बड़ी है msgid "Current Community" msgstr "वर्तमान समुदाय" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "वर्तमान डिवाइस" @@ -5606,7 +5605,7 @@ msgstr "वर्तमान में 1885 में फँसा हुआ, #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "वर्तमान: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "माध्यमिक खतरा" msgid "Danger secondary clicked!" msgstr "माध्यमिक खतरे पर क्लिक किया गया!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "खतरे का क्षेत्र" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "बैटरी लाइफ और डेटा उपयोग बचाने के लिए मोबाइल पर डिफ़ॉल्ट रूप से बंद रहता है।" #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "मेरे सभी संदेश हटाएँ" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "एप्लिकेशन हटाएँ" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "अटैचमेंट हटाएँ" @@ -6063,7 +6062,7 @@ msgstr "अटैचमेंट हटाएँ" msgid "Delete Attachment" msgstr "अटैचमेंट हटाएँ" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "कैटेगरी हटाएँ" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "चैनल हटाएँ" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "मीडिया हटाएँ" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "संदेश हटाएँ" @@ -6215,7 +6214,7 @@ msgstr "घना" msgid "Dense layout" msgstr "घना लेआउट" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "तैनात" @@ -6281,7 +6280,7 @@ msgstr "लक्ष्य चैनल" msgid "Destination URL:" msgstr "लक्ष्य URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "अलग बैनर" @@ -6362,7 +6361,7 @@ msgstr "भिन्न आकार (स्टेटस समर्थित)" msgid "Different Sizes & Member Counts" msgstr "भिन्न आकार और सदस्य संख्या" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "निजी संदेश" @@ -6541,7 +6540,7 @@ msgstr "खाता अक्षम करने पर आप सभी सत msgid "Disallow @mention." msgstr "@mention की अनुमति न दें।" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "अदृष्ट खातों की अनुमति न दें" @@ -6747,7 +6746,7 @@ msgstr "DM सूची में संदेश पूर्वावलोक msgid "Don't show this again" msgstr "इसे फिर न दिखाएं" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "चैनल सूची में टाइप करने के संकेत न दिखाएं" @@ -6760,7 +6759,7 @@ msgstr "चैनल सूची में टाइप करने के स msgid "Done" msgstr "हो गया" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "श्रेणी संपादित करें" msgid "Edit Channel" msgstr "चैनल संपादित करें" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "इस चैनल में भूमिकाओं और सदस्यों के लिए ओवरराइट संपादित करें।" #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "एम्बेड स्प्लैश" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "एम्बेड स्प्लैश चित्रों को एनिमेट नहीं किया जा सकता। कृपया JPEG, PNG, या WebP का उपयोग करें।" -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "एंबेडेड ऑडियो" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "इमोजी नाम कम से कम 2 अक्षर के होने चाहिए और केवल अल्फ़ान्यूमेरिक अक्षर व अंडरस्कोर रख सकते हैं। अनुमत फ़ाइल प्रकार: JPEG, PNG, WebP, GIF। हम छवियों को 128x128 पिक्सेल में संपीड़ित करते हैं। अधिकतम आकार: प्रति इमोजी {0} KB।" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "इमोजी पैक" @@ -7473,7 +7472,7 @@ msgstr "फ़ोन नंबर दर्ज करें" msgid "Enter picture-in-picture" msgstr "पिक्चर-इन-पिक्चर में जाएँ" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "सेलेक्शन मोड में जाएँ" @@ -7536,7 +7535,7 @@ msgstr "वह नया ईमेल दर्ज करें जिसका msgid "Enter the SMS code you received." msgstr "आपको मिले SMS कोड को दर्ज करें।" -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "सेव करने के लिए <0><1>एंटर" @@ -7604,7 +7603,7 @@ msgstr "LaTeX दिखाने में त्रुटि: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape कुंजी कीबोर्ड मोड से बाहर निकलती है" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "<0><1>रद्द करने के लिए escape दबाएँ" @@ -7667,7 +7666,7 @@ msgstr "पिक्चर-इन-पिक्चर से निकलें" msgid "Exit Preview" msgstr "पूर्वावलोकन बंद करें" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "सेलेक्शन मोड छोड़ें" @@ -7701,7 +7700,7 @@ msgstr "समाप्त (30 दिन के भीतर)" msgid "Expired {absolute}" msgstr "{absolute} को समाप्त" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "{earliest} और {latest} के बीच समाप्त" @@ -7709,7 +7708,7 @@ msgstr "{earliest} और {latest} के बीच समाप्त" msgid "Expired on {date}" msgstr "{date} को समाप्त" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "{earliest} को समाप्त" @@ -7722,7 +7721,7 @@ msgstr "समाप्त होता है" msgid "Expires {absolute} ({relativeText})" msgstr "{absolute} को समाप्त ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "{earliest} और {latest} के बीच समाप्त होता है" @@ -7730,7 +7729,7 @@ msgstr "{earliest} और {latest} के बीच समाप्त होत msgid "Expires on {date}" msgstr "{date} को समाप्त होता है" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "{earliest} को समाप्त होता है" @@ -7766,7 +7765,7 @@ msgstr "एक्सप्रेशन पैक प्लूटोनियम msgid "Expression picker categories" msgstr "एक्सप्रेशन पिकर श्रेणियाँ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "एक्सप्रेशन पर्ज" @@ -7839,10 +7838,6 @@ msgstr "क्लिपबोर्ड पर कॉपी करने मे msgid "Failed to copy URL" msgstr "URL कॉपी करने में विफल" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "एप्लिकेशन बनाने में विफल। कृपया इनपुट चेक करें और पुनः प्रयास करें।" - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "भूमिका बनाने में विफल" @@ -8100,7 +8095,7 @@ msgstr "बैन रद्द करने में विफल। कृप msgid "Failed to revoke invite" msgstr "निमंत्रण रद्द करने में विफल" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "घुमाने में विफल। कृपया पुनः प्रयास करें।" @@ -8413,7 +8408,7 @@ msgstr "फ़िटनेस दोस्त" msgid "Flags" msgstr "झंडियाँ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "लचीले टेक्स्ट चैनल नाम" @@ -8577,7 +8572,7 @@ msgstr "फ़ूडी दोस्त" msgid "For 1 hour" msgstr "1 घंटे के लिए" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 घंटे के लिए" msgid "For 15 minutes" msgstr "15 मिनट के लिए" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 मिनट के लिए" msgid "For 24 hours" msgstr "24 घंटे के लिए" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 दिनों के लिए" msgid "For 3 hours" msgstr "3 घंटे के लिए" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 घंटे के लिए" msgid "For 8 hours" msgstr "8 घंटे के लिए" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "सब्सक्रिप्शन भूलें" msgid "Forgot Password" msgstr "पासवर्ड भूल गए" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "अपना पासवर्ड भूल गए?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} सेकंड आगे बढ़ाएँ" msgid "Forward Message" msgstr "संदेश आगे भेजें" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "आगे भेजा गया" @@ -9065,7 +9060,7 @@ msgstr "सिस्टम-व्यापी पुश-टू-टॉक और #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "पिछले फोकस किए गए टेक्स्ट च msgid "Go forward in navigation history" msgstr "नेविगेशन इतिहास में आगे जाएँ" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "समुदाय पर जाएँ" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "ग्रुप आमंत्रण" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "ग्रुप संदेश" @@ -9548,7 +9543,7 @@ msgstr "अरे, {username}, स्वागत है! तुम कुछ msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "अरे, {username}! जब यह 88mph पहुँचता है, तब तुम कुछ गंभीर देखोगे!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "छिपा हुआ" @@ -9569,7 +9564,7 @@ msgstr "पसंदीदा छिपाएँ" msgid "Hide Join Messages" msgstr "जॉइन संदेश छिपाएँ" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "टूलटिप्स में कीबोर्ड संकेत छिपाएँ" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "म्यूट किए गए चैनल छिपाएँ" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "अगर आप पहले अपना डेटा एक्सपोर्ट करना या संदेश हटाना चाहते हैं, तो आगे बढ़ने से पहले User Settings में Privacy Dashboard सेक्शन पर जाएँ।" #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "छवि" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "आइकन सहित इनपुट" msgid "Insert emoji" msgstr "इमोजी डालें" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "इमोजी पैक इंस्टॉल करें" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "स्टिकर पैक इंस्टॉल करें" @@ -10153,7 +10148,7 @@ msgstr "{installedAt} को इंस्टॉल किया गया" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "इमोजी और स्टिकर पैक इंस्टॉल करने के लिए प्रीमियम सब्सक्रिप्शन चाहिए।" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "तुरंत निमंत्रण" @@ -10286,7 +10281,7 @@ msgstr "निमंत्रण लिंक सेटिंग्स" msgid "Invite Links" msgstr "निमंत्रण लिंक" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "निमंत्रण मोडल" msgid "Invite modal preview" msgstr "निमंत्रण मोडल पूर्वावलोकन" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "{0} के लिए निमंत्रण भेजा गया" msgid "Invite sent to {guildName}" msgstr "{guildName} को आमंत्रण भेजा गया" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "निमंत्रण स्प्लैश" @@ -10354,7 +10349,7 @@ msgstr "{0} में निमंत्रण" msgid "Invite to Community" msgstr "कम्युनिटी में निमंत्रण" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "निमंत्रण उपलब्ध नहीं है" @@ -10369,12 +10364,12 @@ msgstr "{0} द्वारा आमंत्रित किया गया #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "{0}#{1} द्वारा आमंत्रित" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "{inviterTag} द्वारा आमंत्रित" @@ -10410,12 +10405,12 @@ msgstr "इस कम्युनिटी में फिलहाल नि msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "पूर्वावलोकन कम्युनिटी के लिए निमंत्रण लॉक हैं। निमंत्रण सक्षम करने के लिए ईमेल और पासवर्ड सेट करके अपना अकाउंट क्लेम करें।" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "निमंत्रण अक्षम हैं" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "निमंत्रण अक्षम कर दिए गए हैं" @@ -10482,13 +10477,13 @@ msgstr "शुरू करने के लिए स्टिकर वाल msgid "Join call" msgstr "कॉल में शामिल हों" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "कम्युनिटी में शामिल हों" @@ -10497,15 +10492,23 @@ msgstr "कम्युनिटी में शामिल हों" msgid "Join community form" msgstr "कम्युनिटी फ़ॉर्म में शामिल हों" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Fluxer HQ से जुड़ें" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "टीम के साथ बातचीत करने और नवीनतम जानकारी के लिए Fluxer HQ से जुड़ें!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "ग्रुप में शामिल हों" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "ग्रुप डीएम में शामिल हों" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "शामिल होने की सूचनाएँ" @@ -10620,7 +10623,7 @@ msgstr "सबसे पुराने अपठित संदेश पर msgid "Jump to page" msgstr "पेज पर जाएँ" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "वर्तमान पर जाएँ" @@ -10690,7 +10693,7 @@ msgstr "कीबाइंड्स" msgid "Keyboard" msgstr "कीबोर्ड" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "कीबोर्ड संकेत" @@ -10815,7 +10818,7 @@ msgstr "Plutonium के बारे में जानें" msgid "Leave blank for a random username" msgstr "एक यादृच्छिक उपयोगकर्ता नाम के लिए खाली छोड़ दें" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "इतनी जल्दी जा रहे हो?" msgid "Left" msgstr "बायाँ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "बाएँ संरेखित" @@ -10945,7 +10948,7 @@ msgstr "लिंक" msgid "Link" msgstr "लिंक" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "चैनल लिंक करें" @@ -11027,7 +11030,7 @@ msgstr "बैन लोड हो रहे हैं..." msgid "Loading communities..." msgstr "समुदाय लोड हो रहे हैं..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "छवि लोड हो रही है" @@ -11039,8 +11042,8 @@ msgstr "निमंत्रण लोड हो रहे हैं..." msgid "Loading more..." msgstr "और लोड हो रहा है..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "प्लेसहोल्डर लोड हो रहा है" @@ -11064,7 +11067,7 @@ msgstr "थीम लोड हो रही है..." msgid "Loading verification methods..." msgstr "सत्यापन विधियाँ लोड हो रही हैं..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "लोड हो रहा है: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "स्थानीय म्यूट" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "अपने ब्राउज़र का उपयोग करक msgid "Log in via browser" msgstr "ब्राउज़र के जरिए लॉग इन करें" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "ब्राउज़र या कस्टम इंस्टेंस के जरिए लॉग इन करें" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "लॉग आउट" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "{0} डिवाइसों को लॉग आउट करें" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "{sessionCount} डिवाइस से लॉग आउट करें" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "1 डिवाइस लॉग आउट करें" @@ -11141,7 +11144,7 @@ msgstr "सभी उपकरणों से लॉग आउट करें" msgid "Log out all other devices" msgstr "अन्य सभी डिवाइस से लॉग आउट करें" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "अन्य सभी डिवाइसों से लॉग आउट करें" @@ -11181,7 +11184,7 @@ msgstr "लोरेम इप्सम डोलर सिट अमेट" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "लोरेम इप्सम डोलर सिट अमेट, कन्सेक्टेटुर एडिपिसिंग एलिट। सेड डू एयूसमोद टेम्पोर इनसीडिडुंट उत लेबोरे एट डोलोरे मैग्ना अलीकुआ।" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "लॉटी" @@ -11351,6 +11354,7 @@ msgstr "18+ (NSFW) के रूप में चिह्नित करें #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "उल्लेख:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "उल्लेख:" msgid "Message" msgstr "संदेश" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "संदेश " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "संदेश @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "संदेश #" @@ -11838,7 +11842,7 @@ msgstr "संदेश और मीडिया" msgid "Messages Deleted" msgstr "संदेश हटाए गए" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "संदेश लोड नहीं हो सके" @@ -12016,7 +12020,7 @@ msgstr "अधिक" msgid "More Actions" msgstr "अधिक क्रियाएँ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "अधिक इमोजी स्लॉट" @@ -12028,7 +12032,7 @@ msgstr "अधिक विकल्प" msgid "More Options" msgstr "अधिक विकल्प" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "अधिक स्टिकर स्लॉट" @@ -12162,8 +12166,8 @@ msgstr "चैनल म्यूट करें" msgid "Mute Channel" msgstr "चैनल म्यूट करें" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "{0} तक म्यूट किया गया" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "एक कम्युनिटी को म्यूट करने से बिना पढ़े सूचक और सूचनाएँ तब तक नहीं आएँगी जब तक आपका उल्लेख न किया जाए" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "आपसी समुदाय ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "आपसी मित्र ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "आपसी समूह ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "मेरा एप्लिकेशन" @@ -12247,7 +12251,7 @@ msgstr "मेरा शानदार स्टिकर" msgid "My Category" msgstr "मेरी श्रेणी" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "मेरे डिवाइस" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "नेविगेशन" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "खाता चाहिए?" @@ -12364,7 +12368,7 @@ msgstr "नेटवर्क" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "नेटवर्क त्रुटि" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "कोई कम्युनिटी बैनर नहीं" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "कोई विवरण नहीं दिया गया।" @@ -12684,15 +12688,15 @@ msgstr "कोई माइक्रोफ़ोन नहीं मिला" msgid "No more scheduled messages." msgstr "कोई और अनुसूचित संदेश नहीं।" -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "कोई सामान्य कम्युनिटी नहीं मिली।" -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "कोई सामान्य दोस्त नहीं मिला।" -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "कोई सामान्य समूह नहीं मिला।" @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "यह आपकी पसंद नहीं है? आप कभी भी इस फीचर को बंद कर सकते हैं।" #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "सूचना ओवरराइड" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "इस भूमिका वाले उन उपयोगकर् msgid "now" msgstr "अब" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "अब" @@ -13090,7 +13094,7 @@ msgstr "क्लिक पर" msgid "on:" msgstr "पर:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "एक बार हटाए जाने पर, एप्लिकेशन और इसकी प्रमाणपत्र स्थायी रूप से हटा दिए जाते हैं।" @@ -13252,7 +13256,7 @@ msgstr "केवल डीएम खोलें" msgid "Open Fluxer" msgstr "Fluxer खोलें" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "छवि को पूर्ण दृश्य में खोलें" @@ -13368,7 +13372,7 @@ msgstr "विजनरी समुदाय खोलें" msgid "Opening..." msgstr "खुल रहा है..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "ऑपरेटर" @@ -13441,7 +13445,7 @@ msgstr "मूल संदेश हटा दिया गया था" msgid "Other" msgstr "अन्य" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "अन्य उपकरण" @@ -13501,7 +13505,7 @@ msgstr "अदाबी खाते की स्थिति को ओवर msgid "Override unread gift inventory status" msgstr "अनपढ़े उपहार इन्वेंटरी स्थिति को ओवरराइड करें" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "सारांश" @@ -13695,7 +13699,7 @@ msgstr "अनुमतियाँ" msgid "Permissions granted" msgstr "अनुमतियाँ प्रदान की गईं" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "निजी नोट्स" @@ -13868,12 +13872,12 @@ msgstr "चलाएं" msgid "Play animated emojis" msgstr "एनिमेटेड इमोजी चलाएं" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "ऑडियो चलाएं" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "कृपया उस संदेश लिंक को चिपक msgid "Please provide an email address." msgstr "कृपया एक ईमेल पता दें।" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "कृपया पुनः प्रयास करें या एप्लिकेशन सूची पर वापस जाएँ।" @@ -13989,7 +13993,7 @@ msgstr "प्लूटोनियम विशेषताएँ" msgid "Plutonium Subscription" msgstr "प्लूटोनियम सदस्यता" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "गोपनीयता डैशबोर्ड" msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "इस स्टिकर को स्टोरेज और CDN से msgid "Push Notification Inactive Timeout" msgstr "पुश नोटिफिकेशन निष्क्रिय टाइमआउट" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "पुश नोटिफिकेशन" @@ -14412,7 +14416,7 @@ msgstr "प्रतिक्रिया इंटरैक्शन अक् #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "प्रतिक्रियाएँ" @@ -14583,7 +14587,7 @@ msgstr "पुश सब्सक्रिप्शन ताज़ा करे #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "पुनः उत्पन्न करें" @@ -14591,19 +14595,19 @@ msgstr "पुनः उत्पन्न करें" msgid "Regenerate backup codes" msgstr "बैकअप कोड पुनः उत्पन्न करें" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "बॉट टोकन पुनः उत्पन्न करें?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "क्लाइंट सीक्रेट पुनः उत्पन्न करें?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "पुनः उत्पन्न करने से वर्तमान सीक्रेट अमान्य हो जाएगा। कोई भी कोड जो पुराने मान का उपयोग करता है उसे अपडेट करें।" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "पुनः उत्पन्न करने से वर्तमान टोकन अमान्य हो जाएगा। कोई भी कोड जो पुराने मान का उपयोग करता है उसे अपडेट करें।" @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "फ़िल्टर हटाएँ" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "फ़िल्टर हटाएँ" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "रिपोर्ट सफलतापूर्वक सबमिट #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "उपयोगकर्ता रिपोर्ट करें" @@ -15105,7 +15109,7 @@ msgstr "अनुरोधित स्कोप" msgid "Require 2FA for moderation actions" msgstr "मॉडरेशन कार्रवाई के लिए 2FA आवश्यक करें" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "वॉइस चैनलों में शामिल होने के लिए डबल-क्लिक आवश्यक करें" @@ -15144,7 +15148,7 @@ msgstr "माध्यम में जो कुछ भी है उसके msgid "Requires Plutonium" msgstr "प्लूटोनियम आवश्यक है" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "संदेश को पुनर्नियोजित करें" @@ -15290,11 +15294,11 @@ msgstr "फिर से सदस्यता लें" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "पुनः प्रयास करें" @@ -15359,7 +15363,7 @@ msgstr "रद्द करें" msgid "Revoke Ban" msgstr "प्रतिबंध रद्द करें" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "डिवाइस रद्द करें" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} सेकंड पीछे जाएं" msgid "Right" msgstr "दायां" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "दाएं संरेखित" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "सदस्य खोजें..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "संदेश खोजें" @@ -15834,13 +15838,13 @@ msgstr "भूमिकाएँ या सदस्य खोजें..." msgid "Search saved media" msgstr "सहेजे गए मीडिया की खोज करें" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "खोज सीमा" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "खोज सीमा: {0}" @@ -15857,7 +15861,7 @@ msgstr "सेटिंग्स खोजें..." msgid "Search stickers..." msgstr "स्टिकर खोजें..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "सुझाव खोजें" @@ -15938,7 +15942,7 @@ msgstr "सुरक्षा कुंजी / पासकी" msgid "Security key verification failed. Please try again." msgstr "सुरक्षा कुंजी सत्यापन विफल। कृपया पुनः प्रयास करें।" -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "अपने खाते में वर्तमान में लॉग इन सभी डिवाइस देखें। कोई भी ऐसा सत्र रद्द करें जिसे आप नहीं पहचानते।" @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "खाता चुनें" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "सभी चुनें" @@ -16040,7 +16044,7 @@ msgstr "लिंक से एम्बेड की गई सामग्र msgid "Select media size for uploaded attachments" msgstr "अपलोड की गई अटैचमेंट्स के लिए मीडिया आकार चुनें" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "पारस्परिक दृश्य चुनें" @@ -16151,9 +16155,9 @@ msgstr "कोड भेजें" msgid "Send Code" msgstr "कोड भेजें" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "दोस्ती का अनुरोध भेजें" @@ -16170,7 +16174,7 @@ msgstr "संदेश भेजें · शेड्यूल करने msgid "Send Message Disabled" msgstr "संदेश भेजना निष्क्रिय" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "संदेश भेजें" @@ -16624,7 +16628,7 @@ msgstr "गिफ्ट बटन दिखाएँ" msgid "Show inline images and videos" msgstr "इनलाइन चित्र और वीडियो दिखाएँ" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "बस टाइपिंग संकेतक दिखाएँ, बिना अवतार के" @@ -16788,11 +16792,11 @@ msgstr "उपहार को पहले से भुनाया हुआ msgid "Show this role separately" msgstr "इस भूमिका को अलग दिखाएँ" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "चैनल सूची में उपयोगकर्ता अवतार के साथ टाइपिंग संकेतक दिखाएँ" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "चयनित चैनल में टाइपिंग दिखाएँ" @@ -17151,7 +17155,7 @@ msgstr "स्पेनिश (स्पेन)" msgid "Speak" msgstr "बोलें" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "मैसेज बोलें" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "शेयरिंग शुरू करें" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "वीडियो कॉल शुरू करें" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "वॉयस कॉल शुरू करें" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "स्टिकर घनत्व" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "स्टिकर पैक" @@ -17427,7 +17431,7 @@ msgstr "बजना बंद करें" msgid "Stop Sharing" msgstr "शेयरिंग बंद करें" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "बोलना बंद करें" @@ -17570,19 +17574,19 @@ msgstr "सभी रोल @mentions को दबाएँ" msgid "Suppress All Role @mentions" msgstr "सभी रोल @mentions को दबाएँ" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "एम्बेड दबाएँ" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "टेक्स्ट" msgid "Text (NSFW)" msgstr "टेक्स्ट (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "टेक्स्ट चैनल" @@ -18028,10 +18032,10 @@ msgstr "इस कार्रवाई को जारी रखने के msgid "This application" msgstr "यह एप्लिकेशन" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "यह अटैचमेंट समाप्त हो चुका है" @@ -18039,7 +18043,7 @@ msgstr "यह अटैचमेंट समाप्त हो चुका msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "यह बॉट एडमिनिस्ट्रेटर अनुमति मांग रहा है। यदि आप डेवलपर पर पूरी तरह भरोसा नहीं करते तो प्रोडक्शन एप्स को यह अनुमति देने की सलाह नहीं है। उनसे कम अनुमतियों का अनुरोध करने को कहें। यदि आप अनिश्चित हैं तो इस पेज को बंद करें।" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "यह उल्टा नहीं किया जा सकता। एप्लिकेशन को हटाने पर उसका बॉट भी हट जाएगा।" @@ -18101,7 +18105,7 @@ msgstr "इस कम्युनिटी ने अपनी अधिकत msgid "This community has temporarily disabled invites." msgstr "इस कम्युनिटी ने अस्थायी रूप से इनवाइट्स को अक्षम कर दिया है।" -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "इस कम्युनिटी ने अस्थायी रूप से इनवाइट्स को अक्षम कर दिया है। आप बाद में फिर कोशिश कर सकते हैं।" @@ -18178,7 +18182,7 @@ msgstr "इस इनवाइट के असीमित उपयोग ह msgid "This invite link never expires." msgstr "यह आमंत्रण लिंक कभी समाप्त नहीं होता।" -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "यह <0>{displayName} की शुरुआत है। बातचीत शुरू करने के लिए मित्र जोड़ें!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "यह <0>{0} के साथ आपके डायरेक्ट मैसेज इतिहास की शुरुआत है।" @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "यह एक @silent संदेश था।" #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "यह अंतरिक्ष-काल निरंतरता में दरार पैदा करेगा और इसे उल्टा नहीं किया जा सकता।" @@ -18351,7 +18355,7 @@ msgstr "यह अंतरिक्ष-काल निरंतरता म msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "यह सभी पसंदीदा संबंधित UI तत्वों को छिपा देगा, जिनमें बटन और मेनू आइटम शामिल हैं। आपके मौजूदा पसंदीदा सुरक्षित रहेंगे और उन्हें कभी भी <0>User Settings → Look & Feel → Favorites से पुनः सक्षम किया जा सकता है।" -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "यह मौजूदा निर्धारित संदेश को तुरंत भेजने के बजाय संशोधित करेगा।" @@ -18387,8 +18391,8 @@ msgstr "यह इस खाते के सहेजे गए सत्र msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "यह आपकी वर्तमान कस्टम थीम को बदलेगा। आप इसे बाद में अपनी यूज़र सेटिंग्स में संपादित कर सकते हैं।" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title} का थंबनेल" @@ -18485,7 +18489,7 @@ msgstr "टोस्ट स्क्रीन के शीर्ष-कें msgid "today" msgstr "आज" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "आज" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "कोई अलग खोज शब्द या फ़िल्टर आज़माएँ" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "पुनः प्रयास करें" @@ -18737,7 +18741,7 @@ msgstr "कोई अलग नाम आज़माएँ या वर्त msgid "Try another search term" msgstr "कोई अलग खोज शब्द आज़माएँ" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "नया इनवाइट मांगने का प्रयास करें।" @@ -18864,7 +18868,7 @@ msgstr "टाइप स्केल" msgid "Type your message here..." msgstr "अपना संदेश यहां टाइप करें..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "टाइपिंग इवेंट्स" @@ -18877,11 +18881,11 @@ msgstr "टाइपिंग संकेतक" msgid "Typing Indicator" msgstr "टाइपिंग संकेतक" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "टाइपिंग संकेतक + अवतार" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "केवल टाइपिंग संकेतक" @@ -18961,11 +18965,11 @@ msgstr "कॉल शुरू नहीं कर सकते" msgid "Unable to start email change" msgstr "ईमेल परिवर्तन शुरू करने में असमर्थ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "सबके लिए अनुपलब्ध" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "स्टाफ को छोड़कर सभी के लिए अनुपलब्ध" @@ -18978,7 +18982,7 @@ msgstr "स्टाफ को छोड़कर सभी के लिए अ #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "फ्रेंड रिक्वेस्ट भेजने से #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "उपयोगकर्ता अनब्लॉक करें" @@ -19165,7 +19169,7 @@ msgstr "अज्ञात त्रुटि" msgid "Unknown Gift" msgstr "अज्ञात उपहार" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "अज्ञात आमंत्रण" @@ -19205,11 +19209,11 @@ msgstr "अज्ञात-भूमिका" msgid "Unlimited" msgstr "असीमित" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "असीमित इमोजी" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "असीमित स्टीकर्स" @@ -19254,7 +19258,7 @@ msgstr "Plutonium के साथ DMs में स्टीकर्स अन #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "श्रेणी अनम्यूट करें" msgid "Unmute Channel" msgstr "चैनल अनम्यूट करें" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "पसंदीदा अनम्यूट करें" msgid "Unmute User" msgstr "उपयोगकर्ता अनम्यूट करें" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "बिना नाम" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "जब तक मैं इसे बदल न दूँ" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "असत्यापित ईमेल" msgid "Up to 4K/60fps" msgstr "4K/60fps तक" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "अपडेट" @@ -19629,7 +19633,7 @@ msgstr "एंट्रेंस साउंड अपलोड करें" msgid "Upload Failed" msgstr "अपलोड असफल रहा" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "फ़ाइल अपलोड करें" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "उपयोगकर्ता ने चैनल बदल दिया" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "उपयोगकर्ता प्रोफाइल" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "उपयोगकर्ता प्रोफाइल: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "मान" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "वैनिटी URL" @@ -20059,14 +20063,14 @@ msgstr "बैकअप कोड देखने से पहले सत् #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "सत्यापित समुदाय" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "सत्यापित गिल्ड" @@ -20167,8 +20171,8 @@ msgstr "वीडियो गुणवत्ता" msgid "Video Settings" msgstr "वीडियो सेटिंग्स" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "वीडियो थंबनेल" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "कोड देखें" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "समुदाय प्रोफ़ाइल देखें" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "गिफ्ट इन्वेंटरी देखें" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "वैश्विक प्रोफ़ाइल देखें" @@ -20329,7 +20333,7 @@ msgstr "उल्लंघन श्रेणी चयन" msgid "Violent or Graphic Content" msgstr "हिंसात्मक या ग्राफिक सामग्री" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP वॉइस" @@ -20341,7 +20345,7 @@ msgstr "दृश्यमान बटन" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "वॉइस कॉल्स" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "वॉइस चैनल" @@ -20442,7 +20446,7 @@ msgstr "वॉइस चैनल" msgid "Voice Channel Full" msgstr "वॉइस चैनल पूर्ण" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "वॉइस चैनल जॉइन व्यवहार" @@ -20559,7 +20563,7 @@ msgstr "हम अभी इस समुदाय में शामिल न msgid "We couldn't load the invites at this time." msgstr "हम इस समय आमंत्रण लोड नहीं कर सके।" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "हम इस एप्लिकेशन को लोड नहीं कर पाए" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "हमें Fluxer के सर्वर से कनेक्ट करने में परेशानी हो रही है। यह अस्थायी नेटवर्क समस्या या निर्धारित रखरखाव हो सकता है।" #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "हमें स्पेस-टाइम कंटीनियम से कनेक्ट करने में परेशानी हो रही है। कृपया अपना कनेक्शन जांचें और फिर से प्रयास करें।" @@ -20759,7 +20763,7 @@ msgstr "वीकेंड वारियर्स" msgid "Welcome and system messages will appear here." msgstr "स्वागत और सिस्टम संदेश यहाँ दिखाई देंगे।" -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "वापस स्वागत है" @@ -20820,7 +20824,7 @@ msgstr "क्या हो रहा है?" msgid "What's included in your export:" msgstr "आपके एक्सपोर्ट में क्या शामिल है:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "जब अक्षम हो (डिफ़ॉल्ट), टाइपिंग संकेत उस चैनल पर नहीं दिखेंगे जिसे आप वर्तमान में देख रहे हैं।" @@ -20836,7 +20840,7 @@ msgstr "जब सक्षम हो, तो पुश-टू-टॉक शॉ msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "जब सक्षम हो, तो ऐप में डिबगिंग मेनू दिखाता है ताकि संदेशों, चैनलों, यूज़र्स और समुदायों जैसी आंतरिक डेटा स्ट्रक्चर के रॉ JSON ऑब्जेक्ट्स को जांचा और कॉपी किया जा सके। इसमें Fluxer Markdown पार्सर के प्रदर्शन और किसी भी संदेश के AST को डिबग करने के टूल भी शामिल हैं।" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "जब सक्षम हो, शॉर्टकट बैज टूलटिप पॉपअप में छिपे होंगे।" @@ -20868,7 +20872,7 @@ msgstr "जब सक्षम हो, तो ऐप की भाषा से msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "जब सक्षम हो, आप चैनलों को फेवरेट कर सकते हैं और वे फेवरेट्स सेक्शन में दिखेंगे। जब अक्षम हो, फेवरेट से जुड़े सभी UI एलिमेंट्स (बटन, मेनू आइटम) छिप जाएंगे। आपके मौजूदा फेवरेट्स सुरक्षित रहेंगे।" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "जब सक्षम हो, तो वॉइस चैनलों में शामिल होने के लिए डबल-क्लिक करना होगा। जब अक्षम हो (डिफ़ॉल्ट), तो सिंगल-क्लिक करने पर तुरंत जुड़ जाएंगे।" @@ -20970,7 +20974,7 @@ msgstr "सालाना {yearlyPrice}" msgid "yesterday" msgstr "कल" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "कल" @@ -21013,7 +21017,7 @@ msgstr "आप अपना प्रति-समुदाय प्रोफ msgid "You are in slowmode. Please wait before sending another message." msgstr "आप स्लोमोड में हैं। कृपया अगला संदेश भेजने से पहले प्रतीक्षा करें।" -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "आप अब एक डेवलपर हैं!" @@ -21113,7 +21117,7 @@ msgstr "आप अपने टेक्स्ट को फॉर्मेट msgid "You can't add new reactions while you're on timeout." msgstr "जब आप टाइमआउट में हैं तो नए रिएक्शन नहीं जोड़ सकते।" -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "आप खुद को दोस्त नहीं बना सकते" @@ -21128,7 +21132,7 @@ msgstr "खोज परिणामों में रिएक्शनों msgid "You can't join while you're on timeout." msgstr "जब आप टाइमआउट में हैं तो शामिल नहीं हो सकते।" -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "आप खुद को अनम्यूट नहीं कर सक msgid "You do not have access to the channel where this message was sent." msgstr "आपके पास उस चैनल तक पहुंच नहीं है जहां यह संदेश भेजा गया था।" -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "आपके पास इस चैनल में संदेश भेजने की अनुमति नहीं है।" @@ -21439,7 +21443,7 @@ msgstr "तुम ऑफलाइन दिखोगे" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "अगली स्क्रीन पर तुम तय करोगे कि बोट को कौन-कौन सी अनुमतियाँ मिलेंगी।" -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "तुम्हें सभी लॉग आउट किए गए डिवाइसों पर फिर से लॉग इन करना होगा" @@ -21508,7 +21512,7 @@ msgstr "तुम वॉइस चैनल में हो" msgid "You're sending messages too quickly" msgstr "तुम बहुत जल्दी संदेश भेज रहे हो" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 b6c69a4e..55ade2d0 100644 --- a/fluxer_app/src/locales/hr/messages.po +++ b/fluxer_app/src/locales/hr/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# stavka} other {# stavki}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# član} other {# članova}}" @@ -566,18 +566,18 @@ msgstr "Slike {label} ne mogu biti animirane. Molimo koristite JPEG, PNG ili Web #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Član" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Članova" @@ -612,11 +612,11 @@ msgstr "{minutes} minuta i {seconds} sekundi" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minuta i 1 sekunda" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} zajednična zajednica" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} zajedničkih zajednica" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} sudionika u pozivu" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Na mreži" @@ -650,15 +650,15 @@ msgstr "{remaining} preostalih znakova" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} preostalih znakova. Nabavi Plutonium da pišeš do {premiumMaxLength} znakova." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Član" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Članova" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Na mreži" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "spominjanja @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Boja naglaska" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Prihvati" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Prihvati zahtjev za prijateljstvo" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Prihvati pozivnicu" @@ -1364,8 +1364,8 @@ msgstr "Prihvati pozivnicu" msgid "Accept the incoming call" msgstr "Prihvati dolazni poziv" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Prihvaćanjem ove pozivnice paket se automatski instalira." @@ -1594,7 +1594,7 @@ msgstr "Dodaj omiljene kanale" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Dopušteno {0}." msgid "Already have an account?" msgstr "Već imaš račun?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Već pridružen" @@ -2191,7 +2191,7 @@ msgstr "Animirani avatari i transparenti" msgid "Animated Avatars Require Plutonium" msgstr "Animirani avatari zahtijevaju Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animirani transparent" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animirani emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animirani GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animirani GIF video" @@ -2219,7 +2219,7 @@ msgstr "Animirani GIF video" msgid "Animated GIF Video" msgstr "Animirani GIF Video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animirana ikona" @@ -2277,7 +2277,7 @@ msgstr "Svi mogu @spomenuti ovu ulogu. Članovi s \"Koristi @everyone/@here i @r msgid "API Endpoint" msgstr "API krajnja točka" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informacije o aplikaciji" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Naziv aplikacije" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Naziv aplikacije je obavezan" @@ -2554,7 +2553,7 @@ msgstr "Jesi li siguran da želiš opozvati zabranu za <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Prilog {0}" msgid "Attachment Actions" msgstr "Radnje priloga" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Prilog je istekao" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automatsko dovršavanje" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatski" @@ -2859,7 +2858,7 @@ msgstr "Natrag" msgid "Back to Applications" msgstr "Natrag na aplikacije" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Natrag na popis" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Natrag na prijavu" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Natrag na nadjačanja" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Natrag na uloge" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Natrag na postavke" @@ -3003,7 +3002,7 @@ msgstr "Blokirani korisnici" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Baner" @@ -3096,7 +3095,7 @@ msgstr "Ograničenje znakova u biografiji" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Zatražen opseg bota" msgid "Bot token" msgstr "Token bota" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token bota je obnovljen. Ažurirajte sve kodove koji koriste stari token." @@ -3435,7 +3434,7 @@ msgstr "Postavke kamere" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Postavke kamere" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Postavke kamere" msgid "Cancel" msgstr "Odustani" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Otkazivanje zahtjeva za prijateljstvo" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Oprez! Imaš nespremljene promjene." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategorija" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Naziv kategorije" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Postavke kategorije" @@ -3617,7 +3616,7 @@ msgstr "Oprez" msgid "Center" msgstr "Središte" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrirano" @@ -3765,7 +3764,7 @@ msgstr "Promijenjena brzina prijenosa na {0}." msgid "Changed the voice region to {0}." msgstr "Promijenjena je glasovna regija u {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "ID kanala kopiran u međuspremnik" msgid "Channel link copied" msgstr "Poveznica kanala kopirana" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Način indikatora upisivanja na popisu kanala" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indikatori upisivanja na popisu kanala" @@ -3891,7 +3890,7 @@ msgstr "Kanal uklonjen iz favorita" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Postavke kanala" @@ -4052,7 +4051,7 @@ msgstr "Odaberi kako se vremena prikazuju u cijeloj aplikaciji." msgid "Choose how typing indicators appear in the channel list" msgstr "Odaberi kako se indikatori tipkanja prikazuju na popisu kanala" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Odaberi kako se indikatori tipkanja prikazuju na popisu kanala kada netko tipka u kanalu." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Preuzmi svoj račun za otkup ovog poklona." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Preuzmi svoj račun za slanje zahtjeva za prijateljstvo." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Očisti dozvole" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Očisti pretragu" msgid "Clear search input" msgstr "Očisti unos za pretragu" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Očisti odabir" @@ -4314,7 +4313,7 @@ msgstr "Klikni ikonu za učitavanje pored bilo kojeg zvuka da ga prilagodiš svo msgid "Click the verification link in the email." msgstr "Klikni na verifikacijsku poveznicu u e-poruci." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klikni da dodaš bilješku" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klikni da pristupiš svom daru!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klikni za kopiranje" @@ -4388,7 +4387,7 @@ msgstr "Klikni da vidiš sve reakcije" msgid "Client secret" msgstr "Klijentski tajni ključ" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Klijentski tajni ključ je obnovljen. Ažuriraj bilo koji kod koji koristi stari tajni ključ." @@ -4649,8 +4648,8 @@ msgstr "Zajednica promiče mržnju temeljenu na zaštićenim karakteristikama" msgid "Community promotes or facilitates illegal activities" msgstr "Zajednica promiče ili olakšava nezakonite aktivnosti" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontekstni izbornici" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontekstni izbornici mogu se otvoriti lijevim klikom (na gumbima) ili desnim klikom (na drugim elementima). Ovo pokazuje razne stavke izbornika uključujući potvrdne okvire, radio gumbe, klizače i podizbornike." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontroliraj kako se poveznice na web stranice prikazuju u chatu" msgid "Control how you join voice channels" msgstr "Kontroliraj kako se pridružuješ glasovnim kanalima" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Upravljaj kako se pridružuješ glasovnim kanalima u zajednicama." @@ -5012,7 +5011,7 @@ msgstr "Kontroliraj animacije naljepnica" msgid "Control the visibility of favorites throughout the app." msgstr "Upravljaj vidljivošću favorita u cijeloj aplikaciji." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Upravljaj pojavljuju li se savjeti za tipkovne prečace unutar alatnih savjeta." @@ -5071,7 +5070,7 @@ msgstr "Kopirano" msgid "Copied to clipboard" msgstr "Kopirano u međuspremnik" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL kopiran u međuspremnik" @@ -5149,7 +5148,7 @@ msgstr "Kopiraj vezu datoteke" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopiraj FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopiraj FluxerTag" msgid "Copy GIF" msgstr "Kopiraj GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopiraj ID zajednice" @@ -5222,7 +5221,7 @@ msgstr "Kopiraj tekst" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Ugodno" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Stvori" @@ -5331,14 +5330,14 @@ msgstr "Stvori i upravljaj aplikacijama i botovima za svoj račun." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Stvori i podijeli prilagođene emojije i pakete naljepnica s Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Stvori aplikaciju" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Stvori aplikaciju" msgid "Create Category" msgstr "Stvori kategoriju" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Stvoreno {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Stvorio/la {0}" @@ -5569,7 +5568,7 @@ msgstr "Izrezana slika je prevelika. Odaberi manje područje ili manju datoteku msgid "Current Community" msgstr "Trenutna zajednica" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Trenutni uređaj" @@ -5606,7 +5605,7 @@ msgstr "Trenutno zaglavljen u 1885., izgleda kao da je izvan mreže" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Trenutno: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Sekundarna opasnost" msgid "Danger secondary clicked!" msgstr "Sekundarna opasnost kliknuta!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona opasnosti" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Izbriši sve moje poruke" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Izbriši aplikaciju" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Izbriši privitak" @@ -6063,7 +6062,7 @@ msgstr "Izbriši privitak" msgid "Delete Attachment" msgstr "Izbriši privitak" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Izbriši kategoriju" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Izbriši kanal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Izbriši medij" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Izbriši poruku" @@ -6215,7 +6214,7 @@ msgstr "Gusto" msgid "Dense layout" msgstr "Gusti raspored" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Razmješteno" @@ -6281,7 +6280,7 @@ msgstr "Odredišni kanal" msgid "Destination URL:" msgstr "Odredišni URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Odvojeni banner" @@ -6362,7 +6361,7 @@ msgstr "Različite veličine (status podržan)" msgid "Different Sizes & Member Counts" msgstr "Različite veličine i broj članova" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Izravna poruka" @@ -6541,7 +6540,7 @@ msgstr "Onemogućavanje tvog računa će te odjaviti iz svih sesija. Svoj račun msgid "Disallow @mention." msgstr "Zabrani @spominjanje." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Zabrani nezatražene račune" @@ -6747,7 +6746,7 @@ msgstr "Ne prikazuj preglede poruka na popisu DM-ova" msgid "Don't show this again" msgstr "Ne prikazuj ovo opet" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Ne prikazuj pokazatelje tipkanja na popisu kanala" @@ -6760,7 +6759,7 @@ msgstr "Ne prikazuj pokazatelje tipkanja na popisu kanala" msgid "Done" msgstr "Gotovo" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Uredi kategoriju" msgid "Edit Channel" msgstr "Uredi kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Uredi nadjačavanja za uloge i članove u ovom kanalu." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Ugradi splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Ugradne splash slike ne mogu biti animirane. Molimo koristite JPEG, PNG ili WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Ugrađena audio datoteka" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Nazivi emotikona moraju imati najmanje 2 znaka i mogu sadržavati samo alfanumeričke znakove i donje crte. Dopuštene vrste datoteka: JPEG, PNG, WebP, GIF. Slike komprimiramo na 128x128 piksela. Maksimalna veličina: {0} KB po emotikonu." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Paket emotikona" @@ -7473,7 +7472,7 @@ msgstr "Unesi telefon" msgid "Enter picture-in-picture" msgstr "Uđi u prikaz slike u slici" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Uđi u način odabira" @@ -7536,7 +7535,7 @@ msgstr "Unesi novu adresu e-pošte koju želiš koristiti. Zatim ćemo tamo posl msgid "Enter the SMS code you received." msgstr "Unesi SMS kod koji si primio." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "unesi da <0><1>spremiš" @@ -7604,7 +7603,7 @@ msgstr "Pogreška pri prikazu LaTeX-a: {0}" msgid "Escape key exits keyboard mode" msgstr "Tipka Escape izlazi iz načina tipkovnice" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "pritisni escape za <0><1>odustani" @@ -7667,7 +7666,7 @@ msgstr "Izađi iz slike-u-slici" msgid "Exit Preview" msgstr "Izađi iz pregleda" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Izađi iz načina odabira" @@ -7701,7 +7700,7 @@ msgstr "Isteklo (unutar 30 dana)" msgid "Expired {absolute}" msgstr "Isteklo {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Isteklo između {earliest} i {latest}" @@ -7709,7 +7708,7 @@ msgstr "Isteklo između {earliest} i {latest}" msgid "Expired on {date}" msgstr "Isteklo {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Isteklo {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Istječe" msgid "Expires {absolute} ({relativeText})" msgstr "Istječe {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Istječe između {earliest} i {latest}" @@ -7730,7 +7729,7 @@ msgstr "Istječe između {earliest} i {latest}" msgid "Expires on {date}" msgstr "Istječe {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Istječe {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Paketi izraza su značajka Plutoniuma" msgid "Expression picker categories" msgstr "Kategorije biranja izraza" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Čišćenje izraza" @@ -7839,10 +7838,6 @@ msgstr "Kopiranje u međuspremnik nije uspjelo" msgid "Failed to copy URL" msgstr "Kopiranje URL-a nije uspjelo" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Stvaranje aplikacije nije uspjelo. Provjerite unose i pokušajte ponovno." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Stvaranje uloge nije uspjelo" @@ -8100,7 +8095,7 @@ msgstr "Opoziv zabrane nije uspio. Pokušajte ponovno." msgid "Failed to revoke invite" msgstr "Opoziv pozivnice nije uspio" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Rotacija nije uspjela. Pokušajte ponovno." @@ -8413,7 +8408,7 @@ msgstr "Fitnes prijatelji" msgid "Flags" msgstr "Zastavice" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Fleksibilni nazivi tekstualnih kanala" @@ -8577,7 +8572,7 @@ msgstr "Gurmanski prijatelji" msgid "For 1 hour" msgstr "Na 1 sat" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Za 1 sat" msgid "For 15 minutes" msgstr "Za 15 minuta" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Za 15 minuta" msgid "For 24 hours" msgstr "Na 24 sata" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Za 3 dana" msgid "For 3 hours" msgstr "Na 3 sata" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Za 3 sata" msgid "For 8 hours" msgstr "Na 8 sati" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Zaboravi pretplate" msgid "Forgot Password" msgstr "Zaboravljena lozinka" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Zaboravili ste lozinku?" @@ -8795,7 +8790,7 @@ msgstr "Naprijed {DEFAULT_SEEK_AMOUNT} sekundi" msgid "Forward Message" msgstr "Proslijedi poruku" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Proslijeđeno" @@ -9065,7 +9060,7 @@ msgstr "Preuzmi Fluxer desktop aplikaciju za push-to-talk na razini sustava i ne #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Vrati se na prethodno fokusirani tekstualni kanal" msgid "Go forward in navigation history" msgstr "Idi naprijed u povijest navigacije" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Idi na Zajednicu" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Pozivnice u grupu" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Grupna poruka" @@ -9548,7 +9543,7 @@ msgstr "Hej, {username}, dobrodošao/la! Možeš postići sve." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hej, {username}! Kad dosegne 88mph, vidjet ćeš nešto ozbiljno!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Skriveno" @@ -9569,7 +9564,7 @@ msgstr "Sakrij favorite" msgid "Hide Join Messages" msgstr "Sakrij poruke o pridruživanju" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Sakrij tipkovničke savjete u objašnjenjima" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Sakrij prigušene kanale" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Ako želiš prvo izvesti svoje podatke ili izbrisati svoje poruke, posjeti odjeljak Nadzorna ploča privatnosti u Korisničkim postavkama prije nastavka." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "slika" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Unosi s ikonama" msgid "Insert emoji" msgstr "Umetni emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Instaliraj paket emojija" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Instaliraj paket naljepnica" @@ -10153,7 +10148,7 @@ msgstr "Instalirano {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instaliranje paketa emojija i naljepnica zahtijeva premium pretplatu." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Trenutni pozivi" @@ -10286,7 +10281,7 @@ msgstr "Postavke poveznice za pozivnicu" msgid "Invite Links" msgstr "Poveznice za pozivnice" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal pozivnice" msgid "Invite modal preview" msgstr "Pregled modala pozivnice" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Pozivnica poslana za {0}" msgid "Invite sent to {guildName}" msgstr "Pozivnica poslana {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash pozivnice" @@ -10354,7 +10349,7 @@ msgstr "Pozivnica za {0}" msgid "Invite to Community" msgstr "Pozivnica u zajednicu" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Pozivnica nedostupna" @@ -10369,12 +10364,12 @@ msgstr "Pozvao/la {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Pozvao/la {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Pozvao/la {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Pozivnice su trenutno pauzirane u ovoj zajednici" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Pozivnice su zaključane za zajednice u pregledu. Aktivirajte svoj račun postavljanjem e-pošte i lozinke da omogućite pozivnice." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Pozivnice onemogućene" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Pozivnice onemogućene" @@ -10482,13 +10477,13 @@ msgstr "Pridruži se zajednici s naljepnicama da započneš!" msgid "Join call" msgstr "Pridruži se pozivu" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Pridruži se zajednici" @@ -10497,15 +10492,23 @@ msgstr "Pridruži se zajednici" msgid "Join community form" msgstr "Obrazac za pridruživanje zajednici" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Pridruži se Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Pridruži se Fluxer HQ da razgovaraš s timom i ostaneš u toku s najnovijim!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Pridruži se grupi" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Pridruži se grupnom DM-u" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Obavijesti o pridruživanju" @@ -10620,7 +10623,7 @@ msgstr "Skoči na najstariju nepročitanu poruku" msgid "Jump to page" msgstr "Skoči na stranicu" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Skoči na sadašnjost" @@ -10690,7 +10693,7 @@ msgstr "Tipkovničke veze" msgid "Keyboard" msgstr "Tipkovnica" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Savjeti za tipkovnicu" @@ -10815,7 +10818,7 @@ msgstr "Saznaj više o Plutoniju" msgid "Leave blank for a random username" msgstr "Ostavi prazno za slučajno korisničko ime" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Već odlaziš?" msgid "Left" msgstr "Lijevo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Lijevo poravnato" @@ -10945,7 +10948,7 @@ msgstr "poveznica" msgid "Link" msgstr "Poveznica" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Poveži kanal" @@ -11027,7 +11030,7 @@ msgstr "Učitavanje zabrana..." msgid "Loading communities..." msgstr "Učitavanje zajednica..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Učitavanje slike" @@ -11039,8 +11042,8 @@ msgstr "Učitavanje pozivnica..." msgid "Loading more..." msgstr "Učitavanje više..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Učitavanje rezerviranog mjesta" @@ -11064,7 +11067,7 @@ msgstr "Učitavanje teme..." msgid "Loading verification methods..." msgstr "Učitavanje metoda provjere..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Učitavanje: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokalno utišavanje" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Prijavi se pomoću preglednika, zatim unesi prikazani kod da dodaš rač msgid "Log in via browser" msgstr "Prijava putem preglednika" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Prijava putem preglednika ili prilagođene instance" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Odjava" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Odjavi {0} uređaja" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Odjavi {sessionCount} uređaja" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Odjavi 1 uređaj" @@ -11141,7 +11144,7 @@ msgstr "Odjavi se sa svih uređaja" msgid "Log out all other devices" msgstr "Odjavi sve ostale uređaje" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Odjavi sve druge uređaje" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Označi kao 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "spominjanja:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "spominjanja:" msgid "Message" msgstr "Poruka" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Poruka " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Poruka @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Poruka #" @@ -11838,7 +11842,7 @@ msgstr "Poruke i mediji" msgid "Messages Deleted" msgstr "Poruke izbrisane" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Učitavanje poruka nije uspjelo" @@ -12016,7 +12020,7 @@ msgstr "Više" msgid "More Actions" msgstr "Više radnji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Više mjesta za emojije" @@ -12028,7 +12032,7 @@ msgstr "Više opcija" msgid "More Options" msgstr "Više opcija" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Više mjesta za naljepnice" @@ -12162,8 +12166,8 @@ msgstr "Utišaj kanal" msgid "Mute Channel" msgstr "Utišaj kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Utišano do {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Utišavanje zajednice sprječava pojavu indikatora nepročitanog i obavijesti osim ako ste spomenuti" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Zajednice prijatelja ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Zajednički prijatelji ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Zajedničke grupe ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Moja aplikacija" @@ -12247,7 +12251,7 @@ msgstr "Moj super naljepnik" msgid "My Category" msgstr "Moja kategorija" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Moji uređaji" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigacija" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Trebaš račun?" @@ -12364,7 +12368,7 @@ msgstr "Mreža" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Pogreška mreže" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Nema zastave zajednice" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nije naveden opis." @@ -12684,15 +12688,15 @@ msgstr "Nisu otkriveni mikrofoni" msgid "No more scheduled messages." msgstr "Nema više zakazanih poruka." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nisu pronađene zajedničke zajednice." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nisu pronađeni zajednički prijatelji." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nisu pronađene zajedničke grupe." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Nije po vašem ukusu? Ovu značajku možete isključiti bilo kada." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Nadjačavanje obavijesti" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Obavijesti korisnike s ovom ulogom koji imaju dopuštenje za pregled ovo msgid "now" msgstr "sada" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Sada" @@ -13090,7 +13094,7 @@ msgstr "Na klik" msgid "on:" msgstr "na:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Nakon brisanja, aplikacija i njezine vjerodajnice trajno se uklanjaju." @@ -13252,7 +13256,7 @@ msgstr "Otvori samo privatne poruke" msgid "Open Fluxer" msgstr "Otvori Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Otvori sliku u punom prikazu" @@ -13368,7 +13372,7 @@ msgstr "Otvori Visionary zajednicu" msgid "Opening..." msgstr "Otvaranje..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Izvorna poruka je izbrisana" msgid "Other" msgstr "Ostalo" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Ostali uređaji" @@ -13501,7 +13505,7 @@ msgstr "Zaobiđi status nepreuzetog računa" msgid "Override unread gift inventory status" msgstr "Zaobiđi status nepročitanog inventara darova" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Pregled" @@ -13695,7 +13699,7 @@ msgstr "Dozvole" msgid "Permissions granted" msgstr "Dozvole odobrene" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Osobne bilješke" @@ -13868,12 +13872,12 @@ msgstr "Reproduciraj" msgid "Play animated emojis" msgstr "Reproduciraj animirane emojije" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Reproduciraj audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Zalijepi poveznicu poruke koju prijavljuješ." msgid "Please provide an email address." msgstr "Navedi adresu e-pošte." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Pokušaj ponovno ili se vrati na popis aplikacija." @@ -13989,7 +13993,7 @@ msgstr "Plutonium pogodnosti" msgid "Plutonium Subscription" msgstr "Plutonium pretplata" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Nadzorna ploča privatnosti" msgid "Privacy Policy" msgstr "Pravila privatnosti" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Očisti ovaj naljepnicu iz pohrane i CDN-a" msgid "Push Notification Inactive Timeout" msgstr "Vrijeme neaktivnosti push obavijesti" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push obavijesti" @@ -14412,7 +14416,7 @@ msgstr "Interakcija reakcija onemogućena" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reakcije" @@ -14583,7 +14587,7 @@ msgstr "Osvježi push pretplatu" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regeneriraj" @@ -14591,19 +14595,19 @@ msgstr "Regeneriraj" msgid "Regenerate backup codes" msgstr "Regeneriraj rezervne kodove" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerirati token bota?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerirati tajnu klijenta?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regeneriranje će poništiti trenutnu tajnu. Ažurirajte svaki kod koji koristi staru vrijednost." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regeneriranje će poništiti trenutni token. Ažurirajte svaki kod koji koristi staru vrijednost." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Ukloni filtar" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Ukloni filtar" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Prijava je uspješno poslana. Naš tim za sigurnost će je uskoro pregle #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Prijavi korisnika" @@ -15105,7 +15109,7 @@ msgstr "Traženi opsezi" msgid "Require 2FA for moderation actions" msgstr "Zahtijevaj 2FA za moderacijske radnje" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Zahtijevaj dvostruki klik za pridruživanje glasovnim kanalima" @@ -15144,7 +15148,7 @@ msgstr "Zahtijeva sve iz Srednjeg, plus članstvo na poslužitelju najmanje 10 m msgid "Requires Plutonium" msgstr "Zahtijeva Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Ponovno zakazivanje poruke" @@ -15290,11 +15294,11 @@ msgstr "Ponovno se pretplati" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Pokušaj ponovno" @@ -15359,7 +15363,7 @@ msgstr "Opozovi" msgid "Revoke Ban" msgstr "Opozovi zabranu" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Opozovi uređaj" @@ -15386,7 +15390,7 @@ msgstr "Premotaj unatrag {DEFAULT_SEEK_AMOUNT} sekundi" msgid "Right" msgstr "Desno" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Desno poravnano" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Traži članove..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Traži poruke" @@ -15834,13 +15838,13 @@ msgstr "Traži uloge ili članove..." msgid "Search saved media" msgstr "Traži spremljene medije" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Opseg pretrage" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Opseg pretrage: {0}" @@ -15857,7 +15861,7 @@ msgstr "Traži postavke..." msgid "Search stickers..." msgstr "Traži naljepnice..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Prijedlozi pretrage" @@ -15938,7 +15942,7 @@ msgstr "Sigurnosni ključ / Passkey" msgid "Security key verification failed. Please try again." msgstr "Provjera sigurnosnog ključa nije uspjela. Pokušajte ponovno." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Pogledajte sve uređaje koji su trenutno prijavljeni na vaš račun. Opozovite sve sesije koje ne prepoznajete." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Odaberi račun" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Odaberi sve" @@ -16040,7 +16044,7 @@ msgstr "Odaberi veličinu medija za ugrađeni sadržaj iz poveznica" msgid "Select media size for uploaded attachments" msgstr "Odaberi veličinu medija za prenesene privitke" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Odaberi zajednički prikaz" @@ -16151,9 +16155,9 @@ msgstr "Pošalji kod" msgid "Send Code" msgstr "Pošalji kod" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Pošalji zahtjev za prijateljstvo" @@ -16170,7 +16174,7 @@ msgstr "Pošalji poruku · Desni klik za zakazivanje" msgid "Send Message Disabled" msgstr "Slanje poruka onemogućeno" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Slanje poruka" @@ -16624,7 +16628,7 @@ msgstr "Prikaži gumb za poklon" msgid "Show inline images and videos" msgstr "Prikaži slike i videozapise u liniji" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Prikaži samo indikator tipkanja bez avatara" @@ -16788,11 +16792,11 @@ msgstr "Prikaži dar kao već iskorišten" msgid "Show this role separately" msgstr "Prikaži ovu ulogu zasebno" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Prikaži indikator tipkanja s avatarima korisnika na popisu kanala" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Prikaži tipkanje na odabranom kanalu" @@ -17151,7 +17155,7 @@ msgstr "Španjolski (Španjolska)" msgid "Speak" msgstr "Govori" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Govori poruku" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Počni dijeliti" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Pokreni video poziv" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Pokreni glasovni poziv" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Gustoća naljepnica" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Paket naljepnica" @@ -17427,7 +17431,7 @@ msgstr "Zaustavi zvonjenje" msgid "Stop Sharing" msgstr "Zaustavi dijeljenje" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Zaustavi govor" @@ -17570,19 +17574,19 @@ msgstr "Pritisni sve @spominjanja uloga" msgid "Suppress All Role @mentions" msgstr "Pritisni sva @spominjanja uloga" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Pritisni ugrađivanja" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekst" msgid "Text (NSFW)" msgstr "Tekst (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Tekstualni kanal" @@ -18028,10 +18032,10 @@ msgstr "Ova radnja zahtijeva provjeru za nastavak." msgid "This application" msgstr "Ova aplikacija" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Ovaj privitak je istekao" @@ -18039,7 +18043,7 @@ msgstr "Ovaj privitak je istekao" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Ovaj bot zahtijeva dopuštenje Administratora. Ne preporučujemo dodjeljivanje ovoga produkcijskim aplikacijama osim ako u potpunosti vjerujete programeru. Razmislite o tome da ih zamolite da zatraže smanjeni skup dopuštenja. Zatvorite ovu stranicu ako niste sigurni." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Ovo se ne može poništiti. Uklanjanje aplikacije također briše njenog bota." @@ -18101,7 +18105,7 @@ msgstr "Ova zajednica je dosegla svoj maksimalni limit članova i trenutno ne pr msgid "This community has temporarily disabled invites." msgstr "Ova zajednica je privremeno onemogućila pozive." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Ova zajednica je privremeno onemogućila pozive. Možeš pokušati ponovno kasnije." @@ -18178,7 +18182,7 @@ msgstr "Ovaj poziv ima neograničeno korištenje." msgid "This invite link never expires." msgstr "Ova poveznica za pozivnicu nikad ne istječe." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Ovo je početak <0>{displayName}. Dodaj prijatelje kako bi započeo razgovor!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Ovo je početak tvoje povijesti izravnih poruka s <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Ovo je bila @tiha poruka." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Ovo će stvoriti rascjep u prostorno-vremenskom kontinuumu i ne može se msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Ovo će sakriti sve elemente korisničkog sučelja povezane s favoritima uključujući gumbe i stavke izbornika. Vaši postojeći favoriti će biti sačuvani i mogu se ponovno omogućiti bilo kada u <0>Korisničke postavke → Izgled i dojam → Favoriti." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Ovo će izmijeniti postojeću zakazanu poruku umjesto da je odmah pošalje." @@ -18387,8 +18391,8 @@ msgstr "Ovo će ukloniti spremljenu sesiju za ovaj račun." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Ovo će zamijeniti vašu trenutnu prilagođenu temu. Možete je kasnije urediti u svojim korisničkim postavkama." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Sličica za {title}" @@ -18485,7 +18489,7 @@ msgstr "Toastovi se pojavljuju u gornjem središnjem dijelu zaslona." msgid "today" msgstr "danas" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Danas" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Pokušaj ponovno" @@ -18737,7 +18741,7 @@ msgstr "Pokušaj s drugim imenom ili provjeri pravopis." msgid "Try another search term" msgstr "Pokušaj s drugim pojmom za pretraživanje" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Pokušaj zatražiti novu pozivnicu." @@ -18864,7 +18868,7 @@ msgstr "Veličina tipa" msgid "Type your message here..." msgstr "Upiši svoju poruku ovdje..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Događaji tipkanja" @@ -18877,11 +18881,11 @@ msgstr "Pokazatelj tipkanja" msgid "Typing Indicator" msgstr "Pokazatelj tipkanja" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Pokazatelj tipkanja + avatari" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Samo pokazatelj tipkanja" @@ -18961,11 +18965,11 @@ msgstr "Nije moguće započeti poziv" msgid "Unable to start email change" msgstr "Nije moguće započeti promjenu e-pošte" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Nedostupno svima" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Nedostupno svima osim osoblju" @@ -18978,7 +18982,7 @@ msgstr "Nedostupno svima osim osoblju" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Deblokiraj ovog korisnika prije slanja zahtjeva za prijateljstvo." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Deblokiraj korisnika" @@ -19165,7 +19169,7 @@ msgstr "Nepoznata pogreška" msgid "Unknown Gift" msgstr "Nepoznati dar" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Nepoznati poziv" @@ -19205,11 +19209,11 @@ msgstr "nepoznata-uloga" msgid "Unlimited" msgstr "Neograničeno" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Neograničeni emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Neograničene naljepnice" @@ -19254,7 +19258,7 @@ msgstr "Otključajte naljepnice u DM-ovima s Plutoniumom" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Uključi zvuk kategorije" msgid "Unmute Channel" msgstr "Uključi zvuk kanala" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Uključi zvuk favorita" msgid "Unmute User" msgstr "Uključi zvuk korisnika" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Nepoznato" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Dok ga ne promijenim" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Nepotvrđena e-pošta" msgid "Up to 4K/60fps" msgstr "Do 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Ažuriraj" @@ -19629,7 +19633,7 @@ msgstr "Učitaj zvuk ulaska" msgid "Upload Failed" msgstr "Učitavanje nije uspjelo" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Učitaj datoteku" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Korisnik premješta kanal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil korisnika" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil korisnika: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Vrijednosti" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Prilagođeni URL" @@ -20059,14 +20063,14 @@ msgstr "Verifikacija može biti potrebna prije pregleda vaših rezervnih kodova. #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verificirana zajednica" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verificirani ceh" @@ -20167,8 +20171,8 @@ msgstr "Kvaliteta videa" msgid "Video Settings" msgstr "Postavke videa" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Sličica videa" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Pogledaj kodove" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Pogledaj profil zajednice" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Pogledaj inventar darova" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Pogledaj globalni profil" @@ -20329,7 +20333,7 @@ msgstr "Odabir kategorije kršenja" msgid "Violent or Graphic Content" msgstr "Nasilan ili grafički sadržaj" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP glas" @@ -20341,7 +20345,7 @@ msgstr "Vidljivi gumbi" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Glasovni pozivi" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Glasovni kanal" @@ -20442,7 +20446,7 @@ msgstr "Glasovni kanal" msgid "Voice Channel Full" msgstr "Glasovni kanal je pun" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Ponašanje pri pridruživanju glasovnom kanalu" @@ -20559,7 +20563,7 @@ msgstr "Trenutno se ne možemo pridružiti ovoj zajednici." msgid "We couldn't load the invites at this time." msgstr "Trenutno ne možemo učitati pozivnice." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nismo mogli učitati ovu aplikaciju" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Imamo problema s povezivanjem na poslužitelje Fluxera. To može biti privremeni mrežni problem ili planirano održavanje." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Imamo problema s povezivanjem na prostorno-vremenski kontinuum. Molimo provjerite svoju vezu i pokušajte ponovno." @@ -20759,7 +20763,7 @@ msgstr "Vikend ratnici" msgid "Welcome and system messages will appear here." msgstr "Dobrodošlice i sustavne poruke pojavit će se ovdje." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Dobrodošli natrag" @@ -20820,7 +20824,7 @@ msgstr "Što se događa?" msgid "What's included in your export:" msgstr "Što je uključeno u vaš izvoz:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Kada je onemogućeno (zadano), indikatori tipkanja neće se prikazivati na kanalu koji trenutno gledate." @@ -20836,7 +20840,7 @@ msgstr "Kada je omogućeno, brzo pritiskanje prečaca za push-to-talk zadržat msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Kada je omogućeno, otkriva izbornike za otklanjanje pogrešaka u cijeloj aplikaciji za pregled i kopiranje sirovih JSON objekata internih struktura podataka poput poruka, kanala, korisnika i zajednica. Također uključuje alate za otklanjanje pogrešaka u performansama Fluxer Markdown parsera i AST za bilo koju poruku." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Kada je omogućeno, značke prečaca skrivene su u skočnim prozorima s alatnim savjetima." @@ -20868,7 +20872,7 @@ msgstr "Kada je omogućeno, koristi lokal vašeg računala za određivanje 12/24 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Kada je omogućeno, možete dodati kanale u favorite i oni će se pojaviti u odjeljku Favoriti. Kada je onemogućeno, svi elementi korisničkog sučelja povezani s favoritima (gumbi, stavke izbornika) bit će skriveni. Vaši postojeći favoriti bit će sačuvani." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Kada je omogućeno, morat ćete dvaput kliknuti na glasovne kanale da im se pridružite. Kada je onemogućeno (zadano), jednim klikom odmah ćete se pridružiti kanalu." @@ -20970,7 +20974,7 @@ msgstr "Godišnje {yearlyPrice}" msgid "yesterday" msgstr "jučer" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Jučer" @@ -21013,7 +21017,7 @@ msgstr "Uređujete svoj profil za ovu zajednicu. Ovaj profil bit će vidljiv sam msgid "You are in slowmode. Please wait before sending another message." msgstr "U načinu rada sporog tipkanja ste. Pričekajte prije slanja sljedeće poruke." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Sada ste programer!" @@ -21113,7 +21117,7 @@ msgstr "Možeš koristiti poveznice i Markdown za oblikovanje teksta. S <0/> mo msgid "You can't add new reactions while you're on timeout." msgstr "Ne možeš dodavati nove reakcije dok si na odmor." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Ne možeš se sprijateljiti sam sa sobom" @@ -21128,7 +21132,7 @@ msgstr "Ne možeš komunicirati s reakcijama u rezultatima pretraživanja jer bi msgid "You can't join while you're on timeout." msgstr "Ne možeš se pridružiti dok si na odmor." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Ne možeš se odutiti jer te moderator utišao." msgid "You do not have access to the channel where this message was sent." msgstr "Nemaš pristup kanalu u kojem je ova poruka poslana." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Nemaš dopuštenje za slanje poruka u ovom kanalu." @@ -21439,7 +21443,7 @@ msgstr "Činit ćete se izvanmrežno" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Konfigurirat ćete koja dopuštenja bot prima na sljedećem zaslonu." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Morat ćete se ponovno prijaviti na svim odjavljenim uređajima" @@ -21508,7 +21512,7 @@ msgstr "U glasovnom kanalu si" msgid "You're sending messages too quickly" msgstr "Šaljete poruke prebrzo" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 e8600e26..8d33a5c8 100644 --- a/fluxer_app/src/locales/hu/messages.po +++ b/fluxer_app/src/locales/hu/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# elem} other {# elem}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# tag} other {# tag}}" @@ -566,18 +566,18 @@ msgstr "{label} képek nem lehetnek animáltak. Kérlek, használj JPEG, PNG vag #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} tag" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} tag" @@ -612,11 +612,11 @@ msgstr "{minutes} perc és {seconds} másodperc" msgid "{minutes} minutes and 1 second" msgstr "{minutes} perc és 1 másodperc" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} közös közösség" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} közös közösségek" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} résztvevő a hívásban" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "maradt {remaining} karakter" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "maradt {remaining} karakter. Szerezd meg a Plutoniumot, hogy akár {premiumMaxLength} karaktert írhass." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} tag" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} tag" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone említések" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Kiemelő szín" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Elfogad" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Barátkérelem elfogadása" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Meghívó elfogadása" @@ -1364,8 +1364,8 @@ msgstr "Meghívó elfogadása" msgid "Accept the incoming call" msgstr "Fogadd a bejövő hívást" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "A meghívó elfogadása automatikusan telepíti a csomagot." @@ -1594,7 +1594,7 @@ msgstr "Kedvenc csatornák hozzáadása" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} engedélyezve." msgid "Already have an account?" msgstr "Már van fiókod?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Már csatlakoztál" @@ -2191,7 +2191,7 @@ msgstr "Animált avatárok és zászlók" msgid "Animated Avatars Require Plutonium" msgstr "Az animált avatárokhoz Plutonium szükséges" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animált zászló" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animált hangulatjel ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animált GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animált GIF videó" @@ -2219,7 +2219,7 @@ msgstr "Animált GIF videó" msgid "Animated GIF Video" msgstr "Animált GIF videó" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animált ikon" @@ -2277,7 +2277,7 @@ msgstr "Bárki @megemlítheti ezt a szerepkört. Az \"@everyone/@here és @roles msgid "API Endpoint" msgstr "API végpont" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Alkalmazás információk" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Alkalmazás neve" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Az alkalmazásnév megadása kötelező" @@ -2554,7 +2553,7 @@ msgstr "Biztosan vissza szeretnéd vonni a kitiltást <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Csatolmány {0}" msgid "Attachment Actions" msgstr "Csatolmány műveletek" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "A csatolmány lejárt" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automatikus kiegészítés" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatikus" @@ -2859,7 +2858,7 @@ msgstr "Vissza" msgid "Back to Applications" msgstr "Vissza az alkalmazásokhoz" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Vissza a listához" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Vissza a bejelentkezéshez" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Vissza a felülírásokhoz" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Vissza a szerepekhez" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Vissza a beállításokhoz" @@ -3003,7 +3002,7 @@ msgstr "Kitiltott felhasználók" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Bemutatkozás karakterkorlát" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot hatókör kérve" msgid "Bot token" msgstr "Bot token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot token újragenerálva. Frissítsd minden olyan kódot, amely a régi tokent használja." @@ -3435,7 +3434,7 @@ msgstr "Kamera beállítások" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kamera beállítások" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kamera beállítások" msgid "Cancel" msgstr "Mégse" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Barátkérelem visszavonása" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Vigyázz! Vannak mentetlen változtatások." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategória" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategória neve" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategória beállítások" @@ -3617,7 +3616,7 @@ msgstr "Óvatosan" msgid "Center" msgstr "Középre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Középre igazítva" @@ -3765,7 +3764,7 @@ msgstr "Bitráta módosítva {0}-ra." msgid "Changed the voice region to {0}." msgstr "Hangrégió módosítva {0}-ra." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "csatorna" @@ -3828,11 +3827,11 @@ msgstr "Csatornaazonosító a vágólapra másolva" msgid "Channel link copied" msgstr "Csatornahivatkozás másolva" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Csatornalista gépelésjelző módja" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Csatornalista gépelésjelzői" @@ -3891,7 +3890,7 @@ msgstr "Csatorna eltávolítva a kedvencekből" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Csatorna-beállítások" @@ -4052,7 +4051,7 @@ msgstr "Válaszd ki, hogyan jelenjenek meg az időpontok az alkalmazásban." msgid "Choose how typing indicators appear in the channel list" msgstr "Válaszd ki, hogyan jelenjenek meg a gépelési jelzők a csatornalistán" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Válaszd ki, hogyan jelenjenek meg a gépelési jelzők a csatornalistában, amikor valaki gépel egy csatornában." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Igényeld a fiókodat ennek az ajándéknak a beváltásához." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Igényeld a fiókodat barátjelöltek küldéséhez." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Engedélyek törlése" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Keresés törlése" msgid "Clear search input" msgstr "Keresési mező törlése" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Kijelölés törlése" @@ -4314,7 +4313,7 @@ msgstr "Kattints bármely hang melletti feltöltés ikonra, hogy saját hangfáj msgid "Click the verification link in the email." msgstr "Kattints az e-mailben található megerősítő linkre." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Kattints egy jegyzet hozzáadásához" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Kattints, hogy átvedd az ajándékod!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Kattints a másoláshoz" @@ -4388,7 +4387,7 @@ msgstr "Kattints az összes reakció megtekintéséhez" msgid "Client secret" msgstr "Kliens titok" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Kliens titok újragenerálva. Frissítsd minden kódot, amely a régi titkot használta." @@ -4649,8 +4648,8 @@ msgstr "A közösség gyűlöletet szít védett jellemzők alapján" msgid "Community promotes or facilitates illegal activities" msgstr "A közösség illegális tevékenységeket népszerűsít vagy megkönnyít" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Helyi menük" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "A helyi menüket bal kattintással (gombokon) vagy jobb kattintással (egyéb elemeken) lehet megnyitni. Ez különféle menüelemeket mutat be, beleértve a jelölőnégyzeteket, választógombokat, csúszkákat és almenüket." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Irányítsd, hogy a weboldalak linkjei hogyan jelenjenek meg a chaten" msgid "Control how you join voice channels" msgstr "Szabályozd, hogyan csatlakozol hangcsatornákhoz" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Szabályozd, hogyan csatlakozol hangcsatornákhoz közösségekben." @@ -5012,7 +5011,7 @@ msgstr "Matrica animációk szabályozása" msgid "Control the visibility of favorites throughout the app." msgstr "A kedvencek láthatóságának szabályozása az alkalmazásban." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Szabályozd, hogy a billentyűparancs-tippek megjelenjenek-e az eszköztippekben." @@ -5071,7 +5070,7 @@ msgstr "Másolva" msgid "Copied to clipboard" msgstr "Másolva a vágólapra" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL másolva a vágólapra" @@ -5149,7 +5148,7 @@ msgstr "Fájl hivatkozás másolása" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTag másolása" @@ -5157,7 +5156,7 @@ msgstr "FluxerTag másolása" msgid "Copy GIF" msgstr "GIF másolása" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Közösségazonosító másolása" @@ -5222,7 +5221,7 @@ msgstr "Szöveg másolása" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Kényelmes" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Létrehozás" @@ -5331,14 +5330,14 @@ msgstr "Alkalmazások és botok létrehozása és kezelése a fiókodhoz." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Egyedi emoji- és matrica csomagok létrehozása és megosztása a Fluxer Plutoniummal." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Alkalmazás létrehozása" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Alkalmazás létrehozása" msgid "Create Category" msgstr "Kategória létrehozása" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Létrehozva: {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Létrehozta: {0}" @@ -5569,7 +5568,7 @@ msgstr "A kivágott kép túl nagy. Válassz ki egy kisebb területet vagy egy k msgid "Current Community" msgstr "Jelenlegi közösség" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Jelenlegi eszköz" @@ -5606,7 +5605,7 @@ msgstr "Jelenleg 1885-ben ragadt, offline jelenik meg" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Jelenleg: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Veszély Másodlagos" msgid "Danger secondary clicked!" msgstr "Veszély másodlagos gombra kattintva!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Veszélyzóna" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Az összes saját üzenetem törlése" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Alkalmazás törlése" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Melléklet törlése" @@ -6063,7 +6062,7 @@ msgstr "Melléklet törlése" msgid "Delete Attachment" msgstr "Melléklet törlése" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Kategória törlése" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Csatorna törlése" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Média törlése" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Üzenet törlése" @@ -6215,7 +6214,7 @@ msgstr "Sűrű" msgid "Dense layout" msgstr "Sűrű elrendezés" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Üzembe helyezve" @@ -6281,7 +6280,7 @@ msgstr "Célcsatorna" msgid "Destination URL:" msgstr "Cél URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Leválasztott szalagcím" @@ -6362,7 +6361,7 @@ msgstr "Különböző méretek (Státusz támogatott)" msgid "Different Sizes & Member Counts" msgstr "Különböző méretek és tagszámok" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "közvetlen üzenet" @@ -6541,7 +6540,7 @@ msgstr "A fiókod letiltása kijelentkeztet minden munkamenetből. Bármikor új msgid "Disallow @mention." msgstr "@megemlítés tiltása." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Nem igazolt fiókok tiltása" @@ -6747,7 +6746,7 @@ msgstr "Ne mutass üzenet előnézeteket a DM listában" msgid "Don't show this again" msgstr "Ne mutasd ezt újra" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Ne mutass gépelésjelzőket a csatornalistában" @@ -6760,7 +6759,7 @@ msgstr "Ne mutass gépelésjelzőket a csatornalistában" msgid "Done" msgstr "Kész" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Kategória szerkesztése" msgid "Edit Channel" msgstr "Csatorna szerkesztése" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Szerepek és tagok felülírásainak szerkesztése ezen a csatornán." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Beágyazott kezdőképernyő" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "A beágyazott kezdőképernyő képek nem lehetnek animáltak. Kérjük, használj JPEG, PNG vagy WebP formátumot." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Beágyazott hang" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Az emoji neveinek legalább 2 karakter hosszúnak kell lenniük, és csak alfanumerikus karaktereket és alulvonást tartalmazhatnak. Engedélyezett fájltípusok: JPEG, PNG, WebP, GIF. A képeket 128x128 pixelre tömörítjük. Maximális méret: {0} KB emojinként." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji csomag" @@ -7473,7 +7472,7 @@ msgstr "Telefonszám megadása" msgid "Enter picture-in-picture" msgstr "Kép a képben" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Kiválasztási mód" @@ -7536,7 +7535,7 @@ msgstr "Írd be az új e-mail címet, amit használni szeretnél. Ezután oda k msgid "Enter the SMS code you received." msgstr "Írd be a kapott SMS-kódot." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "nyomj Entert a <0><1>mentéshez" @@ -7604,7 +7603,7 @@ msgstr "Hiba a LaTeX megjelenítésében: {0}" msgid "Escape key exits keyboard mode" msgstr "Az Escape billentyű kilép a billentyűzet módóból" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "escape a <0><1>mégse" @@ -7667,7 +7666,7 @@ msgstr "Kilépés kép-a-képben módból" msgid "Exit Preview" msgstr "Kilépés előnézetből" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Kilépés kijelölési módból" @@ -7701,7 +7700,7 @@ msgstr "Lejárt (30 napon belül)" msgid "Expired {absolute}" msgstr "Lejárt {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Lejárt {earliest} és {latest} között" @@ -7709,7 +7708,7 @@ msgstr "Lejárt {earliest} és {latest} között" msgid "Expired on {date}" msgstr "Lejárt: {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Lejárt: {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Lejár" msgid "Expires {absolute} ({relativeText})" msgstr "Lejár {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Lejár {earliest} és {latest} között" @@ -7730,7 +7729,7 @@ msgstr "Lejár {earliest} és {latest} között" msgid "Expires on {date}" msgstr "Lejár: {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Lejár: {earliest}" @@ -7766,7 +7765,7 @@ msgstr "A Kifejezés csomagok egy Plutonium funkció" msgid "Expression picker categories" msgstr "Kifejezés választó kategóriák" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Kifejezések törlése" @@ -7839,10 +7838,6 @@ msgstr "Nem sikerült a vágólapra másolni" msgid "Failed to copy URL" msgstr "Nem sikerült az URL másolása" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Nem sikerült az alkalmazás létrehozása. Ellenőrizd a beviteli adatokat, és próbáld újra." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Nem sikerült a szerep létrehozása" @@ -8100,7 +8095,7 @@ msgstr "Nem sikerült visszavonni a kitiltást. Kérjük, próbáld újra." msgid "Failed to revoke invite" msgstr "Nem sikerült visszavonni a meghívót" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Nem sikerült elforgatni. Kérjük, próbáld újra." @@ -8413,7 +8408,7 @@ msgstr "Fitneszbarátok" msgid "Flags" msgstr "Jelzők" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Rugalmas szövegcsatorna-nevek" @@ -8577,7 +8572,7 @@ msgstr "Ételrajongó barátok" msgid "For 1 hour" msgstr "1 órára" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 órára" msgid "For 15 minutes" msgstr "15 percre" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 percre" msgid "For 24 hours" msgstr "24 órára" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 napra" msgid "For 3 hours" msgstr "3 órára" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 órára" msgid "For 8 hours" msgstr "8 órára" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Feliratkozások elfelejtése" msgid "Forgot Password" msgstr "Elfelejtett jelszó" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Elfelejtetted a jelszavad?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} másodperc előreugrás" msgid "Forward Message" msgstr "Üzenet továbbítása" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Továbbítva" @@ -9065,7 +9060,7 @@ msgstr "Szerezd meg a Fluxer asztali alkalmazást rendszerszintű push-to-talk-h #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Visszatérés az előzőleg fókuszban lévő szöveges csatornához" msgid "Go forward in navigation history" msgstr "Előrelépés a navigációs előzményekben" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Ugrás a Közösséghez" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Csoportmeghívók" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Csoportüzenet" @@ -9548,7 +9543,7 @@ msgstr "Szia, {username}, üdv! Bármit elérhetsz." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Szia, {username}! Amikor eléri a 88 mph-t, akkor látsz majd komoly dolgokat!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Rejtett" @@ -9569,7 +9564,7 @@ msgstr "Kedvencek elrejtése" msgid "Hide Join Messages" msgstr "Csatlakozási üzenetek elrejtése" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Billentyűzet segítségek elrejtése az eszköztippekben" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Némított csatornák elrejtése" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Ha először exportálni szeretnéd az adataidat vagy törölni az üzeneteidet, kérlek, látogass el a Felhasználói beállítások Adatvédelmi irányítópult szakaszába, mielőtt folytatnád." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "kép" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Bemenetek ikonokkal" msgid "Insert emoji" msgstr "Emoji beszúrása" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Emoji csomag telepítése" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Matrica csomag telepítése" @@ -10153,7 +10148,7 @@ msgstr "Telepítve ekkor: {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Az emoji és matrica csomagok telepítéséhez prémium előfizetés szükséges." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Azonnali meghívók" @@ -10286,7 +10281,7 @@ msgstr "Meghívó link beállítások" msgid "Invite Links" msgstr "Meghívó linkek" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Meghívó modális ablak" msgid "Invite modal preview" msgstr "Meghívó modális ablak előnézet" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Meghívó elküldve a(z) {0} közösségbe" msgid "Invite sent to {guildName}" msgstr "Meghívó küldve a(z) {guildName} számára" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Meghívó bemutató" @@ -10354,7 +10349,7 @@ msgstr "Meghívás a(z) {0} közösségbe" msgid "Invite to Community" msgstr "Meghívás a Közösségbe" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Meghívó nem elérhető" @@ -10369,12 +10364,12 @@ msgstr "Meghívta: {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Meghívta: {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Meghívta: {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "A meghívók jelenleg szüneteltetve vannak ebben a közösségben" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "A meghívók zárolva vannak az előnézeti közösségeknél. Aktiváld a fiókod egy e-mail cím és jelszó beállításával a meghívók engedélyezéséhez." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Meghívók letiltva" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Meghívók letiltva" @@ -10482,13 +10477,13 @@ msgstr "Csatlakozz egy matricas közösséghez a kezdéshez!" msgid "Join call" msgstr "Hívásba lépés" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Csatlakozás a közösséghez" @@ -10497,15 +10492,23 @@ msgstr "Csatlakozás a közösséghez" msgid "Join community form" msgstr "Közösséghez csatlakozás űrlap" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Csatlakozz a Fluxer központhoz" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Csatlakozz a Fluxer központhoz, hogy csevegj a csapattal és naprakész legyél a legújabb dolgokkal!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Csatlakozás a csoporthoz" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Csatlakozás a csoport DM-hez" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Csatlakozási értesítések" @@ -10620,7 +10623,7 @@ msgstr "Ugrás a legrégebbi olvasatlan üzenethez" msgid "Jump to page" msgstr "Ugrás az oldalra" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Ugrás a jelenlegihez" @@ -10690,7 +10693,7 @@ msgstr "Billentyűkombinációk" msgid "Keyboard" msgstr "Billentyűzet" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Billentyűzet tippek" @@ -10815,7 +10818,7 @@ msgstr "Tudj meg többet a Plutoniumról" msgid "Leave blank for a random username" msgstr "Hagyd üresen véletlenszerű felhasználónévhez" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Már most elmész?" msgid "Left" msgstr "Kilépett" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Balra igazított" @@ -10945,7 +10948,7 @@ msgstr "hivatkozás" msgid "Link" msgstr "Hivatkozás" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Csatorna hivatkozása" @@ -11027,7 +11030,7 @@ msgstr "Kitiltások betöltése..." msgid "Loading communities..." msgstr "Közösségek betöltése..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Kép betöltése" @@ -11039,8 +11042,8 @@ msgstr "Meghívók betöltése..." msgid "Loading more..." msgstr "Több betöltése..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Helykitöltő betöltése" @@ -11064,7 +11067,7 @@ msgstr "Téma betöltése..." msgid "Loading verification methods..." msgstr "Ellenőrzési módszerek betöltése..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Betöltés: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Helyi némítás" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Jelentkezz be a böngésződben, majd add meg a megjelenített kódot a msgid "Log in via browser" msgstr "Bejelentkezés böngészőn keresztül" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Bejelentkezés böngészőn vagy egyéni példányon keresztül" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Kijelentkezés" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "{0} eszköz kijelentkeztetése" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Kijelentkezés {sessionCount} eszközről" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "1 eszköz kijelentkeztetése" @@ -11141,7 +11144,7 @@ msgstr "Kijelentkeztetés minden eszközről" msgid "Log out all other devices" msgstr "Kijelentkezés az összes többi eszközről" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Kijelentkeztetés az összes többi eszközről" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "18+-osként jelölés (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "megemlítések:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "megemlítések:" msgid "Message" msgstr "Üzenet" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Üzenet " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Üzenet @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Üzenet #" @@ -11838,7 +11842,7 @@ msgstr "Üzenetek és média" msgid "Messages Deleted" msgstr "Üzenetek törölve" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Az üzenetek betöltése sikertelen" @@ -12016,7 +12020,7 @@ msgstr "Több" msgid "More Actions" msgstr "További műveletek" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Több emoji hely" @@ -12028,7 +12032,7 @@ msgstr "További lehetőségek" msgid "More Options" msgstr "További lehetőségek" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Több matrica hely" @@ -12162,8 +12166,8 @@ msgstr "Csatorna némítása" msgid "Mute Channel" msgstr "Csatorna némítása" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Némítva eddig: {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "A közösség némítása megakadályozza az olvasatlan jelzők és értesítések megjelenését, kivéve ha megemlítenek." -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Közös közösségek ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Közös barátok ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Közös csoportok ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Saját alkalmazásom" @@ -12247,7 +12251,7 @@ msgstr "Az én fantasztikus matrica" msgid "My Category" msgstr "Saját kategóriám" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Saját eszközeim" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigáció" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Szükséged van fiókra?" @@ -12364,7 +12368,7 @@ msgstr "Hálózat" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Hálózati hiba" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Nincs közösségi banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nincs leírás megadva." @@ -12684,15 +12688,15 @@ msgstr "Nem észlelhető mikrofon" msgid "No more scheduled messages." msgstr "Nincs több ütemezett üzenet." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nem található közös közösség." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nem található közös barát." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nem található közös csoport." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Nem a te világod? Bármikor kikapcsolhatod ezt a funkciót." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Értesítési felülbírálások" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Értesítsd az ezzel a szerepkörrel rendelkező felhasználókat, akik msgid "now" msgstr "most" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Most" @@ -13090,7 +13094,7 @@ msgstr "Kattintáskor" msgid "on:" msgstr "bekapcsolva:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "A törlés után az alkalmazás és a hitelesítő adatok véglegesen eltűnnek." @@ -13252,7 +13256,7 @@ msgstr "Csak privát üzenetek megnyitása" msgid "Open Fluxer" msgstr "Fluxer megnyitása" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Kép megnyitása teljes nézetben" @@ -13368,7 +13372,7 @@ msgstr "Visionary Közösség megnyitása" msgid "Opening..." msgstr "Megnyitás..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operátor" @@ -13441,7 +13445,7 @@ msgstr "Az eredeti üzenet törölve lett" msgid "Other" msgstr "Egyéb" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Más eszközök" @@ -13501,7 +13505,7 @@ msgstr "Nem igényelt fiók állapotának felülbírálása" msgid "Override unread gift inventory status" msgstr "Olvasatlan ajándékinventár állapotának felülbírálása" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Áttekintés" @@ -13695,7 +13699,7 @@ msgstr "Engedélyek" msgid "Permissions granted" msgstr "Engedélyek megadva" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Személyes jegyzetek" @@ -13868,12 +13872,12 @@ msgstr "Lejátszás" msgid "Play animated emojis" msgstr "Animált emojik lejátszása" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Hang lejátszása" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Kérjük, illeszd be a jelenteni kívánt üzenet linkjét." msgid "Please provide an email address." msgstr "Kérjük, adj meg egy e-mail címet." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Kérjük, próbáld újra, vagy térj vissza az alkalmazások listájához." @@ -13989,7 +13993,7 @@ msgstr "Plutonium előnyök" msgid "Plutonium Subscription" msgstr "Plutonium előfizetés" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Adatvédelmi irányítópult" msgid "Privacy Policy" msgstr "Adatvédelmi irányelv" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Töröld ezt a matricát a tárhelyről és a CDN-ről" msgid "Push Notification Inactive Timeout" msgstr "Push értesítés inaktivitási időkorlát" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push értesítések" @@ -14412,7 +14416,7 @@ msgstr "Reakció interakció letiltva" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reakciók" @@ -14583,7 +14587,7 @@ msgstr "Push feliratkozás frissítése" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Újragenerálás" @@ -14591,19 +14595,19 @@ msgstr "Újragenerálás" msgid "Regenerate backup codes" msgstr "Tartalékkódok újragenerálása" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Bot token újragenerálása?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Kliens titok újragenerálása?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Az újragenerálás érvényteleníti a jelenlegi titkot. Frissítsd a régi értéket használó kódokat." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Az újragenerálás érvényteleníti a jelenlegi tokent. Frissítsd a régi értéket használó kódokat." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Szűrő eltávolítása" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Szűrő eltávolítása" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "A jelentés sikeresen elküldve. Biztonsági csapatunk hamarosan átnéz #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Felhasználó jelentése" @@ -15105,7 +15109,7 @@ msgstr "Kért hatókörök" msgid "Require 2FA for moderation actions" msgstr "Kétfaktoros hitelesítés szükséges moderálási műveletekhez" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Dupla kattintás szükséges a hangcsatornákhoz való csatlakozáshoz" @@ -15144,7 +15148,7 @@ msgstr "A Közepes szint minden feltétele, plusz legalább 10 perces tagság a msgid "Requires Plutonium" msgstr "Plutonium szükséges" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Üzenet időpontjának áthelyezése" @@ -15290,11 +15294,11 @@ msgstr "Újra feliratkozás" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Újrapróbálás" @@ -15359,7 +15363,7 @@ msgstr "Visszavonás" msgid "Revoke Ban" msgstr "Kitiltás visszavonása" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Eszköz visszavonása" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} másodperccel visszatekerés" msgid "Right" msgstr "Jobb" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Jobbra igazítva" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Tagok keresése..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Üzenetek keresése" @@ -15834,13 +15838,13 @@ msgstr "Szerepek vagy tagok keresése..." msgid "Search saved media" msgstr "Mentett média keresése" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Keresési hatókör" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Keresési hatókör: {0}" @@ -15857,7 +15861,7 @@ msgstr "Keresési beállítások..." msgid "Search stickers..." msgstr "Matricák keresése..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Keresési javaslatok" @@ -15938,7 +15942,7 @@ msgstr "Biztonsági kulcs / Passkey" msgid "Security key verification failed. Please try again." msgstr "A biztonsági kulcs ellenőrzése sikertelen. Próbáld újra." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Lásd az összes eszközt, amely jelenleg be van jelentkezve a fiókodba. Vond vissza azokat a munkameneteket, amelyeket nem ismersz fel." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Fiók kiválasztása" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Összes kijelölése" @@ -16040,7 +16044,7 @@ msgstr "Válassz média méretet a linkekből beágyazott tartalomhoz" msgid "Select media size for uploaded attachments" msgstr "Válassz média méretet a feltöltött mellékletekhez" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Kölcsönös nézet kiválasztása" @@ -16151,9 +16155,9 @@ msgstr "Kód küldése" msgid "Send Code" msgstr "Kód küldése" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Barátkérelem küldése" @@ -16170,7 +16174,7 @@ msgstr "Üzenet küldése · Jobb kattintás az ütemezéshez" msgid "Send Message Disabled" msgstr "Üzenetküldés letiltva" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Üzenetek küldése" @@ -16624,7 +16628,7 @@ msgstr "Ajándék gomb megjelenítése" msgid "Show inline images and videos" msgstr "Beágyazott képek és videók megjelenítése" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Csak a gépelésjelző megjelenítése avatarok nélkül" @@ -16788,11 +16792,11 @@ msgstr "Az ajándék megjelenítése már beváltottként" msgid "Show this role separately" msgstr "Ez a szerepkör külön megjelenítése" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Gépelésjelző megjelenítése felhasználói avatarokkal a csatornalistában" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Gépelés megjelenítése a kiválasztott csatornán" @@ -17151,7 +17155,7 @@ msgstr "Spanyol (Spanyolország)" msgid "Speak" msgstr "Beszélj" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Üzenet felolvasása" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Megosztás indítása" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Videóhívás indítása" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Hanghívás indítása" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Matrica sűrűség" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Matrica csomag" @@ -17427,7 +17431,7 @@ msgstr "Csengés leállítása" msgid "Stop Sharing" msgstr "Megosztás leállítása" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Beszéd leállítása" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Beágyazások elrejtése" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Szöveg" msgid "Text (NSFW)" msgstr "Szöveg (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Szöveges csatorna" @@ -18028,10 +18032,10 @@ msgstr "Ennek a műveletnek a folytatásához ellenőrzés szükséges." msgid "This application" msgstr "Ez az alkalmazás" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Ez a melléklet lejárt" @@ -18039,7 +18043,7 @@ msgstr "Ez a melléklet lejárt" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Ez a bot az Adminisztrátor jogosultságot kéri. Nem javasoljuk ezt megadni éles alkalmazásoknak, kivéve ha teljes mértékben megbízol a fejlesztőben. Fontold meg, hogy kérj tőlük csökkentett jogosultságokat. Zárd be ezt az oldalt, ha bizonytalan vagy." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Ezt nem lehet visszavonni. Az alkalmazás eltávolítása a botját is törli." @@ -18101,7 +18105,7 @@ msgstr "Ez a közösség elérte a maximális tagkorlátot, és jelenleg nem fog msgid "This community has temporarily disabled invites." msgstr "Ez a közösség átmenetileg letiltotta a meghívókat." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Ez a közösség átmenetileg letiltotta a meghívókat. Később újra próbálkozhatsz." @@ -18178,7 +18182,7 @@ msgstr "Ennek a meghívónak korlátlan a használata." msgid "This invite link never expires." msgstr "Ez a meghívó link soha nem jár le." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Ez a <0>{displayName} kezdete. Adj hozzá barátokat, hogy elkezdhess egy beszélgetést!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Ez a közvetlen üzenetek történetének kezdete <0>{0} felhasználóval." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Ez egy @silent üzenet volt." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Ez repedést okoz a téridő kontinuumban, és nem vonható vissza." msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Ez elrejti az összes kedvencekhez kapcsolódó felhasználói felületi elemet, beleértve a gombokat és a menüpontokat. A meglévő kedvenceid megmaradnak, és bármikor újra bekapcsolhatod őket a <0>Felhasználói beállítások → Megjelenés és érzés → Kedvencek menüpontból." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Ez módosítja a meglévő ütemezett üzenetet, nem pedig azonnal elküldi." @@ -18387,8 +18391,8 @@ msgstr "Ez eltávolítja a mentett munkamenetet ehhez a fiókhoz." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Ez lecseréli a jelenlegi egyéni témádat. Később szerkesztheted a Felhasználói beállításokban." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Bélyegkép ehhez: {title}" @@ -18485,7 +18489,7 @@ msgstr "A toast üzenetek a képernyő felső közepén jelennek meg." msgid "today" msgstr "ma" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Ma" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Próbáld újra" @@ -18737,7 +18741,7 @@ msgstr "Próbálj meg egy másik nevet, vagy ellenőrizd a helyesírást." msgid "Try another search term" msgstr "Próbálj egy másik keresési kifejezést" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Kérj egy új meghívót." @@ -18864,7 +18868,7 @@ msgstr "Betűméret" msgid "Type your message here..." msgstr "Írd be az üzeneted ide..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Gépelési események" @@ -18877,11 +18881,11 @@ msgstr "Gépelési jelző" msgid "Typing Indicator" msgstr "Gépelési jelző" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Gépelési jelző + avatarok" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Csak gépelési jelző" @@ -18961,11 +18965,11 @@ msgstr "Nem lehet hívást kezdeményezni" msgid "Unable to start email change" msgstr "Nem lehet elindítani az e-mail cím módosítását" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Mindenki számára elérhetetlen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Mindenki számára elérhetetlen, kivéve a személyzetet" @@ -18978,7 +18982,7 @@ msgstr "Mindenki számára elérhetetlen, kivéve a személyzetet" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Távolítsd el a felhasználó tiltását, mielőtt barátkérelmet kül #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Felhasználó tiltásának feloldása" @@ -19165,7 +19169,7 @@ msgstr "Ismeretlen hiba" msgid "Unknown Gift" msgstr "Ismeretlen ajándék" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Ismeretlen meghívó" @@ -19205,11 +19209,11 @@ msgstr "ismeretlen-szerep" msgid "Unlimited" msgstr "Korlátlan" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Korlátlan emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Korlátlan matrica" @@ -19254,7 +19258,7 @@ msgstr "Nyiss ki matricákat privát üzenetekben Plutoniummal" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Kategória némításának feloldása" msgid "Unmute Channel" msgstr "Csatorna némításának feloldása" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Kedvencek némításának feloldása" msgid "Unmute User" msgstr "Felhasználó némításának feloldása" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Névtelen" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Amíg meg nem változtatom" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Nem ellenőrzött e-mail" msgid "Up to 4K/60fps" msgstr "Akár 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Frissítés" @@ -19629,7 +19633,7 @@ msgstr "Belépési hang feltöltése" msgid "Upload Failed" msgstr "A feltöltés sikertelen" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Fájl feltöltése" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Felhasználó áthelyezte a csatornát" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Felhasználói profil" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Felhasználói profil: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Értékek" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Egyedi URL" @@ -20059,14 +20063,14 @@ msgstr "Előfordulhat, hogy ellenőrzés szükséges a tartalék kódjaid megtek #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Ellenőrzött közösség" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Ellenőrzött céh" @@ -20167,8 +20171,8 @@ msgstr "Videó minőség" msgid "Video Settings" msgstr "Videó beállítások" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videó bélyegkép" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Kódok megtekintése" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Közösségi profil megtekintése" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Ajándékinventár megtekintése" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Globális profil megtekintése" @@ -20329,7 +20333,7 @@ msgstr "Szabálysértési kategória kiválasztása" msgid "Violent or Graphic Content" msgstr "Erőszakos vagy grafikus tartalom" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP hang" @@ -20341,7 +20345,7 @@ msgstr "Látható gombok" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Hanghívások" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Hangcsatorna" @@ -20442,7 +20446,7 @@ msgstr "Hangcsatorna" msgid "Voice Channel Full" msgstr "Hangcsatorna tele" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Hangcsatorna-csatlakozási viselkedés" @@ -20559,7 +20563,7 @@ msgstr "Jelenleg nem tudtunk csatlakozni ehhez a közösséghez." msgid "We couldn't load the invites at this time." msgstr "Jelenleg nem tudtuk betölteni a meghívókat." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nem tudtuk betölteni ezt az alkalmazást" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Problémánk van a Fluxer szervereihez való csatlakozással. Ez lehet átmeneti hálózati probléma vagy ütemezett karbantartás." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Problémánk van a téridő-kontinuumhoz való csatlakozással. Kérjük, ellenőrizd a kapcsolatodat, és próbáld újra." @@ -20759,7 +20763,7 @@ msgstr "Weekend Warriors" msgid "Welcome and system messages will appear here." msgstr "Az üdvözlő és rendszerüzenetek itt jelennek meg." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Üdv újra" @@ -20820,7 +20824,7 @@ msgstr "Mi történik?" msgid "What's included in your export:" msgstr "Mi szerepel az exportodban:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Ha ki van kapcsolva (alapértelmezett), a gépelési jelzők nem jelennek meg azon a csatornán, amelyet éppen nézel." @@ -20836,7 +20840,7 @@ msgstr "Ha be van kapcsolva, a push-to-talk gyorsbillentyű gyors megérintése msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Ha be van kapcsolva, hibakeresési menüket tár fel az alkalmazásban, hogy megvizsgálhasd és másolhassad a belső adatstruktúrák (pl. üzenetek, csatornák, felhasználók, közösségek) nyers JSON objektumait. Tartalmazza a Fluxer Markdown elemző teljesítményének és bármely üzenet AST-jának hibakeresésére szolgáló eszközöket is." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Ha be van kapcsolva, a gyorsbillentyű jelvények el vannak rejtve az eszköztipp felugró ablakokban." @@ -20868,7 +20872,7 @@ msgstr "Ha be van kapcsolva, a számítógéped területi beállítását haszn msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Ha be van kapcsolva, kedvencnek jelölhetsz csatornákat, és azok megjelennek a Kedvencek szakaszban. Ha ki van kapcsolva, minden kedvenchez kapcsolódó felhasználói felületi elem (gombok, menüelemek) el lesz rejtve. A meglévő kedvenceid megmaradnak." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Ha be van kapcsolva, duplán kell kattintanod a hangcsatornákra a csatlakozáshoz. Ha ki van kapcsolva (alapértelmezett), egy kattintással azonnal csatlakozol a csatornához." @@ -20970,7 +20974,7 @@ msgstr "Éves {yearlyPrice}" msgid "yesterday" msgstr "tegnap" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Tegnap" @@ -21013,7 +21017,7 @@ msgstr "A közösségenkénti profilodat szerkeszted. Ez a profil csak ebben a k msgid "You are in slowmode. Please wait before sending another message." msgstr "Slowmode-ban vagy. Kérlek, várj egy kicsit, mielőtt új üzenetet küldenél." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Most már fejlesztő vagy!" @@ -21113,7 +21117,7 @@ msgstr "Használhatsz linkeket és Markdown-t a szöveged formázásához. <0/>- msgid "You can't add new reactions while you're on timeout." msgstr "Nem adhatsz hozzá új reakciókat, amíg időtúllépésben vagy." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Nem barátkozhatsz magaddal" @@ -21128,7 +21132,7 @@ msgstr "Nem léphetsz kapcsolatba a reakciókkal a keresési eredményekben, mer msgid "You can't join while you're on timeout." msgstr "Nem csatlakozhatsz, amíg időtúllépésben vagy." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Nem kapcsolhatod ki a némítást magadon, mert egy moderátor némítot 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 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." @@ -21439,7 +21443,7 @@ msgstr "Offline jelenik meg a státuszod" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "A következő képernyőn konfigurálod, hogy a bot mely jogosultságokat kapja meg." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Újra be kell jelentkezned minden kijelentkezett eszközön" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 7c1e0814..1e8de1d1 100644 --- a/fluxer_app/src/locales/id/messages.po +++ b/fluxer_app/src/locales/id/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# item} other {# item}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Anggota} other {# Anggota}}" @@ -566,18 +566,18 @@ msgstr "Gambar {label} tidak dapat dianimasikan. Silakan gunakan JPEG, PNG, atau #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Anggota" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Anggota" @@ -612,11 +612,11 @@ msgstr "{minutes} menit dan {seconds} detik" msgid "{minutes} minutes and 1 second" msgstr "{minutes} menit dan 1 detik" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} komunitas saling" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} komunitas saling" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} peserta dalam panggilan" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "Tersisa {remaining} karakter" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Tersisa {remaining} karakter. Dapatkan Plutonium untuk menulis hingga {premiumMaxLength} karakter." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Anggota" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Anggota" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "sebutan @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Warna Aksen" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Terima" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Terima Permintaan Pertemanan" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Terima undangan" @@ -1364,8 +1364,8 @@ msgstr "Terima Undangan" msgid "Accept the incoming call" msgstr "Terima panggilan masuk" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Menerima undangan ini akan menginstal paket secara otomatis." @@ -1594,7 +1594,7 @@ msgstr "Tambahkan Kanal Favorit" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Diizinkan {0}." msgid "Already have an account?" msgstr "Sudah punya akun?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Sudah bergabung" @@ -2191,7 +2191,7 @@ msgstr "Avatar & spanduk animasi" msgid "Animated Avatars Require Plutonium" msgstr "Avatar Animasi Membutuhkan Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Spanduk animasi" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji Animasi ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF Animasi" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Video GIF animasi" @@ -2219,7 +2219,7 @@ msgstr "Video GIF animasi" msgid "Animated GIF Video" msgstr "Video GIF Animasi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Ikon animasi" @@ -2277,7 +2277,7 @@ msgstr "Siapa pun dapat @sebut peran ini. Anggota dengan \"Gunakan @everyone/@he msgid "API Endpoint" msgstr "Endpoint API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informasi aplikasi" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nama Aplikasi" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Nama aplikasi diperlukan" @@ -2554,7 +2553,7 @@ msgstr "Apakah Anda yakin ingin mencabut larangan untuk <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Lampiran {0}" msgid "Attachment Actions" msgstr "Aksi Lampiran" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Lampiran kedaluwarsa" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Pelengkapan otomatis" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Otomatis" @@ -2859,7 +2858,7 @@ msgstr "Kembali" msgid "Back to Applications" msgstr "Kembali ke Aplikasi" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Kembali ke daftar" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Kembali ke login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Kembali ke Overrides" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Kembali ke Roles" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Kembali ke Pengaturan" @@ -3003,7 +3002,7 @@ msgstr "Pengguna yang Diblokir" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Spanduk" @@ -3096,7 +3095,7 @@ msgstr "Batas karakter bio" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Ruang lingkup bot diminta" msgid "Bot token" msgstr "Token bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token bot dibuat ulang. Perbarui kode apa pun yang menggunakan token lama." @@ -3435,7 +3434,7 @@ msgstr "Pengaturan Kamera" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Pengaturan Kamera" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Pengaturan Kamera" msgid "Cancel" msgstr "Batal" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Batalkan Permintaan Pertemanan" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Hati-hati! Anda memiliki perubahan yang belum disimpan." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategori" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nama Kategori" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Pengaturan Kategori" @@ -3617,7 +3616,7 @@ msgstr "Peringatan" msgid "Center" msgstr "Tengah" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Terpusat" @@ -3765,7 +3764,7 @@ msgstr "Bitrate diubah menjadi {0}." msgid "Changed the voice region to {0}." msgstr "Wilayah suara diubah menjadi {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "ID kanal disalin ke papan klip" msgid "Channel link copied" msgstr "Tautan kanal disalin" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Mode indikator mengetik daftar kanal" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indikator Mengetik Daftar Kanal" @@ -3891,7 +3890,7 @@ msgstr "Kanal dihapus dari favorit" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Pengaturan Kanal" @@ -4052,7 +4051,7 @@ msgstr "Pilih cara waktu ditampilkan di seluruh aplikasi." msgid "Choose how typing indicators appear in the channel list" msgstr "Pilih cara indikator mengetik muncul di daftar kanal" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Pilih cara indikator pengetikan muncul di daftar kanal saat seseorang sedang mengetik di kanal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Klaim akun Anda untuk menukarkan hadiah ini." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Klaim akun Anda untuk mengirim permintaan pertemanan." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Hapus Izin" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Hapus pencarian" msgid "Clear search input" msgstr "Hapus masukan pencarian" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Hapus Pilihan" @@ -4314,7 +4313,7 @@ msgstr "Klik ikon unggah di samping suara apa saja untuk menyesuaikannya dengan msgid "Click the verification link in the email." msgstr "Klik tautan verifikasi di email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klik untuk menambahkan catatan" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klik untuk klaim hadiah Anda!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klik untuk menyalin" @@ -4388,7 +4387,7 @@ msgstr "Klik untuk melihat semua reaksi" msgid "Client secret" msgstr "Rahasia klien" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Rahasia klien dibuat ulang. Perbarui kode apa pun yang menggunakan rahasia lama." @@ -4649,8 +4648,8 @@ msgstr "Komunitas mempromosikan kebencian berdasarkan karakteristik yang dilindu msgid "Community promotes or facilitates illegal activities" msgstr "Komunitas mempromosikan atau memfasilitasi kegiatan ilegal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menu Konteks" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Menu konteks dapat dibuka dengan klik kiri (pada tombol) atau klik kanan (pada elemen lain). Ini mendemonstrasikan berbagai item menu termasuk kotak centang, tombol radio, penggeser, dan submenu." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontrol bagaimana tautan situs web ditampilkan dalam chat" msgid "Control how you join voice channels" msgstr "Kontrol cara Anda bergabung dengan kanal suara" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Kontrol cara Anda bergabung dengan kanal suara di komunitas." @@ -5012,7 +5011,7 @@ msgstr "Kontrol animasi stiker" msgid "Control the visibility of favorites throughout the app." msgstr "Kontrol visibilitas favorit di seluruh aplikasi." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Kontrol apakah petunjuk pintasan keyboard muncul di dalam tooltip." @@ -5071,7 +5070,7 @@ msgstr "Disalin" msgid "Copied to clipboard" msgstr "Disalin ke papan klip" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL disalin ke papan klip" @@ -5149,7 +5148,7 @@ msgstr "Salin Tautan File" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Salin FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Salin FluxerTag" msgid "Copy GIF" msgstr "Salin GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Salin ID Guild" @@ -5222,7 +5221,7 @@ msgstr "Salin Teks" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Nyaman" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Buat" @@ -5331,14 +5330,14 @@ msgstr "Buat dan kelola aplikasi dan bot untuk akun Anda." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Buat dan bagikan emoji kustom dan paket stiker dengan Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Buat Aplikasi" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Buat Aplikasi" msgid "Create Category" msgstr "Buat Kategori" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Dibuat {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Dibuat oleh {0}" @@ -5569,7 +5568,7 @@ msgstr "Gambar yang dipotong terlalu besar. Pilih area yang lebih kecil atau fil msgid "Current Community" msgstr "Komunitas Saat Ini" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Perangkat Saat Ini" @@ -5606,7 +5605,7 @@ msgstr "Saat ini terjebak di 1885, tampak offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Saat ini: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Bahaya Sekunder" msgid "Danger secondary clicked!" msgstr "Bahaya sekunder diklik!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona bahaya" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Hapus semua pesan saya" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Hapus Aplikasi" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Hapus lampiran" @@ -6063,7 +6062,7 @@ msgstr "Hapus lampiran" msgid "Delete Attachment" msgstr "Hapus Lampiran" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Hapus Kategori" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Hapus Kanal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Hapus media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Hapus Pesan" @@ -6215,7 +6214,7 @@ msgstr "Padat" msgid "Dense layout" msgstr "Tata letak padat" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Diterapkan" @@ -6281,7 +6280,7 @@ msgstr "Kanal Tujuan" msgid "Destination URL:" msgstr "URL Tujuan:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner terlepas" @@ -6362,7 +6361,7 @@ msgstr "Ukuran Berbeda (Status Didukung)" msgid "Different Sizes & Member Counts" msgstr "Ukuran & Jumlah Anggota Berbeda" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "pesan langsung" @@ -6541,7 +6540,7 @@ msgstr "Menonaktifkan akun Anda akan mengeluarkan Anda dari semua sesi. Anda dap msgid "Disallow @mention." msgstr "Larang @mention." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Larang akun yang tidak diklaim" @@ -6747,7 +6746,7 @@ msgstr "Jangan tampilkan pratinjau pesan di daftar DM" msgid "Don't show this again" msgstr "Jangan tampilkan ini lagi" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Jangan tampilkan indikator pengetikan di daftar kanal" @@ -6760,7 +6759,7 @@ msgstr "Jangan tampilkan indikator pengetikan di daftar kanal" msgid "Done" msgstr "Selesai" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Edit Kategori" msgid "Edit Channel" msgstr "Edit Kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Edit penimpaan untuk peran dan anggota di kanal ini." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash embed" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Gambar splash embed tidak bisa animasi. Gunakan JPEG, PNG, atau WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio tersemat" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Nama emoji harus setidaknya 2 karakter dan hanya boleh berisi karakter alfanumerik dan garis bawah. Jenis file yang diizinkan: JPEG, PNG, WebP, GIF. Kami mengompresi gambar menjadi 128x128 piksel. Ukuran maksimum: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Paket emoji" @@ -7473,7 +7472,7 @@ msgstr "Masukkan Telepon" msgid "Enter picture-in-picture" msgstr "Masuk ke gambar-dalam-gambar" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Masuk ke Mode Pemilihan" @@ -7536,7 +7535,7 @@ msgstr "Masukkan email baru yang ingin Anda gunakan. Kami akan mengirim kode ke msgid "Enter the SMS code you received." msgstr "Masukkan kode SMS yang Anda terima." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "tekan enter untuk <0><1>simpan" @@ -7604,7 +7603,7 @@ msgstr "Kesalahan merender LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Tombol escape keluar dari mode keyboard" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "tekan escape untuk <0><1>batalkan" @@ -7667,7 +7666,7 @@ msgstr "Keluar dari gambar-dalam-gambar" msgid "Exit Preview" msgstr "Keluar dari Pratinjau" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Keluar dari Mode Pilihan" @@ -7701,7 +7700,7 @@ msgstr "Kedaluwarsa (Dalam 30 Hari)" msgid "Expired {absolute}" msgstr "Kedaluwarsa {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Kedaluwarsa antara {earliest} dan {latest}" @@ -7709,7 +7708,7 @@ msgstr "Kedaluwarsa antara {earliest} dan {latest}" msgid "Expired on {date}" msgstr "Kedaluwarsa pada {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Kedaluwarsa pada {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Kedaluwarsa" msgid "Expires {absolute} ({relativeText})" msgstr "Kedaluwarsa {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Kedaluwarsa antara {earliest} dan {latest}" @@ -7730,7 +7729,7 @@ msgstr "Kedaluwarsa antara {earliest} dan {latest}" msgid "Expires on {date}" msgstr "Kedaluwarsa pada {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Kedaluwarsa pada {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Paket Ekspresi adalah fitur Plutonium" msgid "Expression picker categories" msgstr "kategori pemilih ekspresi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "pembersihan ekspresi" @@ -7839,10 +7838,6 @@ msgstr "Gagal menyalin ke papan klip" msgid "Failed to copy URL" msgstr "Gagal menyalin URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Gagal membuat aplikasi. Harap periksa masukan Anda dan coba lagi." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Gagal membuat peran" @@ -8100,7 +8095,7 @@ msgstr "Gagal mencabut larangan. Silakan coba lagi." msgid "Failed to revoke invite" msgstr "Gagal mencabut undangan" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Gagal memutar. Silakan coba lagi." @@ -8413,7 +8408,7 @@ msgstr "Teman Kebugaran" msgid "Flags" msgstr "Bendera" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nama kanal teks yang fleksibel" @@ -8577,7 +8572,7 @@ msgstr "Teman Foodie" msgid "For 1 hour" msgstr "Selama 1 jam" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Selama 1 Jam" msgid "For 15 minutes" msgstr "Selama 15 menit" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Selama 15 Menit" msgid "For 24 hours" msgstr "Selama 24 jam" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Selama 3 hari" msgid "For 3 hours" msgstr "Selama 3 jam" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Selama 3 Jam" msgid "For 8 hours" msgstr "Selama 8 jam" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Lupakan langganan" msgid "Forgot Password" msgstr "Lupa Kata Sandi" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Lupa kata sandi Anda?" @@ -8795,7 +8790,7 @@ msgstr "Teruskan {DEFAULT_SEEK_AMOUNT} detik" msgid "Forward Message" msgstr "Teruskan Pesan" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Diteruskan" @@ -9065,7 +9060,7 @@ msgstr "Dapatkan aplikasi desktop Fluxer untuk push-to-talk di seluruh sistem da #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Kembali ke kanal teks yang sebelumnya difokuskan" msgid "Go forward in navigation history" msgstr "Maju dalam riwayat navigasi" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Pergi ke Komunitas" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Undangan Grup" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Pesan grup" @@ -9548,7 +9543,7 @@ msgstr "Hei, {username}, selamat datang! Kamu bisa mencapai apa saja." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hei, {username}! Saat mencapai 88mph, kamu akan melihat hal-hal serius!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Tersembunyi" @@ -9569,7 +9564,7 @@ msgstr "Sembunyikan Favorit" msgid "Hide Join Messages" msgstr "Sembunyikan Pesan Bergabung" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Sembunyikan petunjuk keyboard di tooltip" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Sembunyikan kanal yang dibisukan" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Jika Anda ingin mengekspor data atau menghapus pesan Anda terlebih dahulu, silakan kunjungi bagian Dasbor Privasi di Pengaturan Pengguna sebelum melanjutkan." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "gambar" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Input dengan Ikon" msgid "Insert emoji" msgstr "Sisipkan emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Pasang Paket Emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Pasang Paket Stiker" @@ -10153,7 +10148,7 @@ msgstr "Terpasang pada {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Memasang paket emoji dan stiker memerlukan langganan premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Undangan instan" @@ -10286,7 +10281,7 @@ msgstr "Pengaturan tautan undangan" msgid "Invite Links" msgstr "Tautan Undangan" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal Undangan" msgid "Invite modal preview" msgstr "Pratinjau modal undangan" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Undangan dikirim untuk {0}" msgid "Invite sent to {guildName}" msgstr "Undangan telah dikirim ke {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash undangan" @@ -10354,7 +10349,7 @@ msgstr "Undang ke {0}" msgid "Invite to Community" msgstr "Undang ke Komunitas" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Undangan Tidak Tersedia" @@ -10369,12 +10364,12 @@ msgstr "Diundang oleh {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Diundang oleh {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Diundang oleh {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Undangan saat ini dijeda di komunitas ini" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Undangan terkunci untuk komunitas pratinjau. Klaim akun Anda dengan mengatur email dan kata sandi untuk mengaktifkan undangan." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Undangan dinonaktifkan" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Undangan Dinonaktifkan" @@ -10482,13 +10477,13 @@ msgstr "Bergabung dengan komunitas yang memiliki stiker untuk memulai!" msgid "Join call" msgstr "Gabung panggilan" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Bergabung Komunitas" @@ -10497,15 +10492,23 @@ msgstr "Bergabung Komunitas" msgid "Join community form" msgstr "Formulir bergabung komunitas" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Bergabung dengan Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Bergabung dengan Fluxer HQ untuk mengobrol dengan tim dan tetap terkini dengan berita terbaru!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Bergabung Grup" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Bergabung DM Grup" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notifikasi bergabung" @@ -10620,7 +10623,7 @@ msgstr "Lompat ke Pesan Belum Dibaca Tertua" msgid "Jump to page" msgstr "Lompat ke halaman" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Lompat ke Saat Ini" @@ -10690,7 +10693,7 @@ msgstr "Pengikatan Tombol" msgid "Keyboard" msgstr "Keyboard" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Petunjuk Keyboard" @@ -10815,7 +10818,7 @@ msgstr "Pelajari tentang Plutonium" msgid "Leave blank for a random username" msgstr "Biarkan kosong untuk nama pengguna acak" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Sudah mau pergi?" msgid "Left" msgstr "Kiri" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Rata kiri" @@ -10945,7 +10948,7 @@ msgstr "tautan" msgid "Link" msgstr "Tautan" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Tautkan kanal" @@ -11027,7 +11030,7 @@ msgstr "Memuat larangan..." msgid "Loading communities..." msgstr "Memuat komunitas..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Memuat gambar" @@ -11039,8 +11042,8 @@ msgstr "Memuat undangan..." msgid "Loading more..." msgstr "Memuat lebih banyak..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Memuat placeholder" @@ -11064,7 +11067,7 @@ msgstr "Memuat tema..." msgid "Loading verification methods..." msgstr "Memuat metode verifikasi..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Memuat: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Bisu Lokal" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Masuk menggunakan browser Anda, lalu masukkan kode yang ditampilkan untu msgid "Log in via browser" msgstr "Masuk via browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Masuk via browser atau instansi kustom" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Keluar" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Keluar {0} perangkat" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Keluar dari {sessionCount} perangkat" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Keluar 1 perangkat" @@ -11141,7 +11144,7 @@ msgstr "Keluar dari Semua Perangkat" msgid "Log out all other devices" msgstr "Keluar dari semua perangkat lainnya" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Keluar dari Semua Perangkat Lain" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Tandai sebagai 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "sebutan:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "sebutan:" msgid "Message" msgstr "Pesan" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Pesan " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Pesan @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Pesan #" @@ -11838,7 +11842,7 @@ msgstr "Pesan & Media" msgid "Messages Deleted" msgstr "Pesan Dihapus" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Gagal memuat pesan" @@ -12016,7 +12020,7 @@ msgstr "Lainnya" msgid "More Actions" msgstr "Aksi Lainnya" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Slot emoji lebih banyak" @@ -12028,7 +12032,7 @@ msgstr "Opsi lainnya" msgid "More Options" msgstr "Opsi Lainnya" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Slot stiker lebih banyak" @@ -12162,8 +12166,8 @@ msgstr "Bisukan kanal" msgid "Mute Channel" msgstr "Bisukan Kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Dibisukan hingga {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Membisukan komunitas mencegah indikator belum dibaca dan notifikasi muncul kecuali Anda disebutkan" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Komunitas Bersama ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Teman Bersama ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Grup Bersama ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Aplikasi Saya" @@ -12247,7 +12251,7 @@ msgstr "Stiker keren saya" msgid "My Category" msgstr "Kategori Saya" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Perangkat Saya" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigasi" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Perlu akun?" @@ -12364,7 +12368,7 @@ msgstr "Jaringan" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Kesalahan jaringan" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Tidak ada spanduk komunitas" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Tidak ada deskripsi yang diberikan." @@ -12684,15 +12688,15 @@ msgstr "Tidak ada mikrofon terdeteksi" msgid "No more scheduled messages." msgstr "Tidak ada lagi pesan terjadwal." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Tidak ada komunitas bersama ditemukan." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Tidak ada teman bersama ditemukan." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Tidak ada grup bersama ditemukan." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Bukan selera Anda? Anda dapat menonaktifkan fitur ini kapan saja." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Penimpaan Notifikasi" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Beri tahu pengguna dengan peran ini yang memiliki izin untuk melihat kan msgid "now" msgstr "sekarang" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Sekarang" @@ -13090,7 +13094,7 @@ msgstr "Saat diklik" msgid "on:" msgstr "pada:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Setelah dihapus, aplikasi dan kredensialnya akan dihapus secara permanen." @@ -13252,7 +13256,7 @@ msgstr "Buka Hanya DM" msgid "Open Fluxer" msgstr "Buka Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Buka gambar dalam tampilan penuh" @@ -13368,7 +13372,7 @@ msgstr "Buka Komunitas Visioner" msgid "Opening..." msgstr "Membuka..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Pesan asli telah dihapus" msgid "Other" msgstr "Lainnya" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Perangkat Lain" @@ -13501,7 +13505,7 @@ msgstr "Timpa status akun yang belum diklaim" msgid "Override unread gift inventory status" msgstr "Timpa status inventaris hadiah yang belum dibaca" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Ikhtisar" @@ -13695,7 +13699,7 @@ msgstr "Izin" msgid "Permissions granted" msgstr "Izin diberikan" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Catatan pribadi" @@ -13868,12 +13872,12 @@ msgstr "Putar" msgid "Play animated emojis" msgstr "Putar emoji animasi" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Putar audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Silakan tempel tautan pesan yang Anda laporkan." msgid "Please provide an email address." msgstr "Silakan berikan alamat email." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Silakan coba lagi atau kembali ke daftar aplikasi." @@ -13989,7 +13993,7 @@ msgstr "Keuntungan Plutonium" msgid "Plutonium Subscription" msgstr "Langganan Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Dasbor Privasi" msgid "Privacy Policy" msgstr "Kebijakan Privasi" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Hapus stiker ini dari penyimpanan dan CDN" msgid "Push Notification Inactive Timeout" msgstr "Waktu Habis Notifikasi Push Tidak Aktif" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notifikasi push" @@ -14412,7 +14416,7 @@ msgstr "Interaksi Reaksi Dinonaktifkan" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaksi" @@ -14583,7 +14587,7 @@ msgstr "Segarkan langganan push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Buat ulang" @@ -14591,19 +14595,19 @@ msgstr "Buat ulang" msgid "Regenerate backup codes" msgstr "Buat ulang kode cadangan" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Buat ulang token bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Buat ulang rahasia klien?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Membuat ulang akan membatalkan rahasia saat ini. Perbarui kode apa pun yang menggunakan nilai lama." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Membuat ulang akan membatalkan token saat ini. Perbarui kode apa pun yang menggunakan nilai lama." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Hapus filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Hapus filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Laporan berhasil dikirim. Tim Keamanan kami akan segera meninjaunya." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Laporkan Pengguna" @@ -15105,7 +15109,7 @@ msgstr "Cakupan yang diminta" msgid "Require 2FA for moderation actions" msgstr "Wajibkan 2FA untuk tindakan moderasi" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Wajibkan klik ganda untuk bergabung dengan kanal suara" @@ -15144,7 +15148,7 @@ msgstr "Memerlukan semua yang ada di Sedang, ditambah menjadi anggota server set msgid "Requires Plutonium" msgstr "Memerlukan Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Jadwal Ulang Pesan" @@ -15290,11 +15294,11 @@ msgstr "Berlangganan Ulang" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Coba Lagi" @@ -15359,7 +15363,7 @@ msgstr "Cabut" msgid "Revoke Ban" msgstr "Cabut Larangan" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Cabut perangkat" @@ -15386,7 +15390,7 @@ msgstr "Putar balik {DEFAULT_SEEK_AMOUNT} detik" msgid "Right" msgstr "Kanan" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Rata kanan" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Cari anggota..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Cari pesan" @@ -15834,13 +15838,13 @@ msgstr "Cari peran atau anggota..." msgid "Search saved media" msgstr "Cari media tersimpan" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Cakupan pencarian" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Cakupan pencarian: {0}" @@ -15857,7 +15861,7 @@ msgstr "Cari pengaturan..." msgid "Search stickers..." msgstr "Cari stiker..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Saran pencarian" @@ -15938,7 +15942,7 @@ msgstr "Kunci Keamanan / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verifikasi kunci keamanan gagal. Silakan coba lagi." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Lihat semua perangkat yang saat ini masuk ke akun Anda. Cabut sesi apa pun yang tidak Anda kenali." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Pilih akun" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Pilih Semua" @@ -16040,7 +16044,7 @@ msgstr "Pilih ukuran media untuk konten tersemat dari tautan" msgid "Select media size for uploaded attachments" msgstr "Pilih ukuran media untuk lampiran yang diunggah" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Pilih tampilan bersama" @@ -16151,9 +16155,9 @@ msgstr "Kirim kode" msgid "Send Code" msgstr "Kirim Kode" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Kirim Permintaan Teman" @@ -16170,7 +16174,7 @@ msgstr "Kirim Pesan · Klik kanan untuk menjadwalkan" msgid "Send Message Disabled" msgstr "Kirim Pesan Dinonaktifkan" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Kirim pesan" @@ -16624,7 +16628,7 @@ msgstr "Tampilkan Tombol Hadiah" msgid "Show inline images and videos" msgstr "Tampilkan gambar dan video sebaris" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Tampilkan hanya indikator mengetik tanpa avatar" @@ -16788,11 +16792,11 @@ msgstr "Tampilkan hadiah sebagai sudah ditebus" msgid "Show this role separately" msgstr "Tampilkan peran ini secara terpisah" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Tampilkan indikator mengetik dengan avatar pengguna di daftar kanal" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Tampilkan mengetik di kanal yang dipilih" @@ -17151,7 +17155,7 @@ msgstr "Spanyol (Spanyol)" msgid "Speak" msgstr "Bicara" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Pesan Bicara" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Mulai Berbagi" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Mulai Panggilan Video" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Mulai Panggilan Suara" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Kepadatan stiker" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Paket stiker" @@ -17427,7 +17431,7 @@ msgstr "Hentikan Berdering" msgid "Stop Sharing" msgstr "Hentikan Berbagi" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Hentikan Berbicara" @@ -17570,19 +17574,19 @@ msgstr "Tahan semua sebutan peran @" msgid "Suppress All Role @mentions" msgstr "Tahan Semua Sebutan Peran @" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Tahan sematan" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Teks" msgid "Text (NSFW)" msgstr "Teks (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Kanal teks" @@ -18028,10 +18032,10 @@ msgstr "Tindakan ini memerlukan verifikasi untuk melanjutkan." msgid "This application" msgstr "Aplikasi ini" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Lampiran ini telah kedaluwarsa" @@ -18039,7 +18043,7 @@ msgstr "Lampiran ini telah kedaluwarsa" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Bot ini meminta izin Administrator. Kami tidak merekomendasikan memberikan ini ke aplikasi produksi kecuali Anda sepenuhnya mempercayai pengembang. Pertimbangkan untuk meminta mereka meminta set izin yang lebih sedikit. Tutup halaman ini jika Anda tidak yakin." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Ini tidak dapat dibatalkan. Menghapus aplikasi juga menghapus botnya." @@ -18101,7 +18105,7 @@ msgstr "Komunitas ini telah mencapai batas maksimum anggota dan tidak menerima a msgid "This community has temporarily disabled invites." msgstr "Komunitas ini telah menonaktifkan undangan sementara." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Komunitas ini telah menonaktifkan undangan sementara. Kamu dapat mencoba lagi nanti." @@ -18178,7 +18182,7 @@ msgstr "Undangan ini memiliki penggunaan tak terbatas." msgid "This invite link never expires." msgstr "Tautan undangan ini tidak pernah kedaluwarsa." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Ini adalah awal dari <0>{displayName}. Tambahkan teman untuk memulai percakapan!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Ini adalah awal riwayat pesan langsung kamu dengan <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Ini adalah pesan @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Ini akan menciptakan celah dalam kontinum ruang-waktu dan tidak dapat di msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Ini akan menyembunyikan semua elemen UI terkait favorit termasuk tombol dan item menu. Favorit Anda yang ada akan disimpan dan dapat diaktifkan kembali kapan saja dari <0>Pengaturan Pengguna → Tampilan & Rasa → Favorit." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Ini akan mengubah pesan terjadwal yang ada daripada mengirim segera." @@ -18387,8 +18391,8 @@ msgstr "Ini akan menghapus sesi yang disimpan untuk akun ini." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Ini akan menggantikan tema kustom Anda saat ini. Anda dapat mengeditnya nanti di Pengaturan Pengguna Anda." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Thumbnail untuk {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts muncul di bagian tengah atas layar." msgid "today" msgstr "hari ini" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Hari ini" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Coba lagi" @@ -18737,7 +18741,7 @@ msgstr "Coba nama lain atau periksa ejaan Anda." msgid "Try another search term" msgstr "Coba istilah pencarian lain" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Coba minta undangan baru." @@ -18864,7 +18868,7 @@ msgstr "Skala Jenis" msgid "Type your message here..." msgstr "Ketik pesan Anda di sini..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Acara pengetikan" @@ -18877,11 +18881,11 @@ msgstr "Indikator pengetikan" msgid "Typing Indicator" msgstr "Indikator Sedang Mengetik" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indikator pengetikan + avatar" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Hanya indikator pengetikan" @@ -18961,11 +18965,11 @@ msgstr "Tidak Dapat Memulai Panggilan" msgid "Unable to start email change" msgstr "Tidak dapat memulai perubahan email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Tidak tersedia untuk semua orang" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Tidak tersedia untuk semua orang kecuali staf" @@ -18978,7 +18982,7 @@ msgstr "Tidak tersedia untuk semua orang kecuali staf" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Buka blokir pengguna ini sebelum mengirim permintaan pertemanan." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Buka Blokir Pengguna" @@ -19165,7 +19169,7 @@ msgstr "Kesalahan tidak diketahui" msgid "Unknown Gift" msgstr "Hadiah Tidak Diketahui" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Undangan Tidak Diketahui" @@ -19205,11 +19209,11 @@ msgstr "peran-tidak-diketahui" msgid "Unlimited" msgstr "Tak Terbatas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emoji tak terbatas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Stiker tanpa batas" @@ -19254,7 +19258,7 @@ msgstr "Buka stiker di DM dengan Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Hidupkan Suara Kategori" msgid "Unmute Channel" msgstr "Hidupkan Suara Kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Hidupkan Suara Favorit" msgid "Unmute User" msgstr "Hidupkan Suara Pengguna" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Tanpa Nama" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Sampai saya mengubahnya" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Email Belum Terverifikasi" msgid "Up to 4K/60fps" msgstr "Hingga 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Perbarui" @@ -19629,7 +19633,7 @@ msgstr "Unggah Suara Masuk" msgid "Upload Failed" msgstr "Unggah Gagal" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Unggah file" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Pengguna Memindahkan Kanal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil Pengguna" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil Pengguna: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Nilai-nilai" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL kustom" @@ -20059,14 +20063,14 @@ msgstr "Verifikasi mungkin diperlukan sebelum melihat kode cadangan Anda." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Komunitas Terverifikasi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Guild terverifikasi" @@ -20167,8 +20171,8 @@ msgstr "Kualitas Video" msgid "Video Settings" msgstr "Pengaturan Video" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Thumbnail video" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Lihat Kode" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Lihat Profil Komunitas" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Lihat Inventaris Hadiah" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Lihat Profil Global" @@ -20329,7 +20333,7 @@ msgstr "Pemilihan kategori pelanggaran" msgid "Violent or Graphic Content" msgstr "Konten Kekerasan atau Grafis" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Suara VIP" @@ -20341,7 +20345,7 @@ msgstr "Tombol yang Terlihat" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Panggilan Suara" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Kanal suara" @@ -20442,7 +20446,7 @@ msgstr "Kanal Suara" msgid "Voice Channel Full" msgstr "Kanal Suara Penuh" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Perilaku Bergabung Kanal Suara" @@ -20559,7 +20563,7 @@ msgstr "Kami tidak dapat bergabung dengan komunitas ini saat ini." msgid "We couldn't load the invites at this time." msgstr "Kami tidak dapat memuat undangan saat ini." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Kami tidak dapat memuat aplikasi ini" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Kami mengalami masalah menghubungkan ke server Fluxer. Ini bisa jadi masalah jaringan sementara atau pemeliharaan terjadwal." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Kami mengalami masalah menghubungkan ke kontinum ruang-waktu. Silakan periksa koneksi Anda dan coba lagi." @@ -20759,7 +20763,7 @@ msgstr "Weekend Warriors" msgid "Welcome and system messages will appear here." msgstr "Pesan selamat datang dan sistem akan muncul di sini." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Selamat datang kembali" @@ -20820,7 +20824,7 @@ msgstr "Apa yang sedang terjadi?" msgid "What's included in your export:" msgstr "Apa yang termasuk dalam ekspor Anda:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Saat dinonaktifkan (default), indikator pengetikan tidak akan muncul di kanal yang sedang Anda lihat." @@ -20836,7 +20840,7 @@ msgstr "Saat diaktifkan, mengetuk cepat pintasan push-to-talk Anda akan membuat msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Saat diaktifkan, mengungkap menu debug di seluruh aplikasi untuk memeriksa dan menyalin objek JSON mentah dari struktur data internal seperti pesan, kanal, pengguna, dan komunitas. Juga mencakup alat untuk mendebug kinerja parser Markdown Fluxer dan AST untuk pesan apa pun." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Saat diaktifkan, lencana pintasan disembunyikan dalam popup tooltip." @@ -20868,7 +20872,7 @@ msgstr "Saat diaktifkan, menggunakan locale komputer Anda untuk menentukan forma msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Saat diaktifkan, Anda dapat memfavoritkan kanal dan mereka akan muncul di bagian Favorit. Saat dinonaktifkan, semua elemen UI terkait favorit (tombol, item menu) akan disembunyikan. Favorit Anda yang ada akan dipertahankan." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Saat diaktifkan, Anda perlu mengklik dua kali pada kanal suara untuk bergabung. Saat dinonaktifkan (default), mengklik satu kali akan langsung bergabung ke kanal." @@ -20970,7 +20974,7 @@ msgstr "Tahunan {yearlyPrice}" msgid "yesterday" msgstr "kemarin" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Kemarin" @@ -21013,7 +21017,7 @@ msgstr "Anda sedang mengedit profil per-komunitas Anda. Profil ini hanya akan te msgid "You are in slowmode. Please wait before sending another message." msgstr "Anda dalam mode lambat. Harap tunggu sebelum mengirim pesan lain." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Anda sekarang seorang pengembang!" @@ -21113,7 +21117,7 @@ msgstr "Anda dapat menggunakan tautan dan Markdown untuk memformat teks Anda. De msgid "You can't add new reactions while you're on timeout." msgstr "Anda tidak dapat menambahkan reaksi baru saat Anda dalam timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Anda tidak dapat berteman dengan diri sendiri" @@ -21128,7 +21132,7 @@ msgstr "Anda tidak dapat berinteraksi dengan reaksi di hasil pencarian karena da msgid "You can't join while you're on timeout." msgstr "Anda tidak dapat bergabung saat Anda dalam timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Anda tidak dapat membatalkan pembungkaman diri sendiri karena Anda telah 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Anda tidak memiliki izin untuk mengirim pesan di kanal ini." @@ -21439,7 +21443,7 @@ msgstr "Anda akan tampak offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Anda akan mengonfigurasi izin mana yang diterima bot di layar berikutnya." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Anda harus masuk kembali di semua perangkat yang keluar" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 7a77cc13..70a94ead 100644 --- a/fluxer_app/src/locales/it/messages.po +++ b/fluxer_app/src/locales/it/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# elemento} other {# elementi}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# membro} other {# membri}}" @@ -566,18 +566,18 @@ msgstr "Le immagini {label} non possono essere animate. Si prega di usare JPEG, #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Membro" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Membri" @@ -612,11 +612,11 @@ msgstr "{minutes} minuti e {seconds} secondi" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minuti e 1 secondo" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} comunità reciproca" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} comunità reciproche" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} partecipanti in chiamata" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "Rimangono {remaining} caratteri" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Rimangono {remaining} caratteri. Ottieni Plutonium per scrivere fino a {premiumMaxLength} caratteri." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Membro" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Membri" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "menzioni @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Colore di accento" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accetta" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Accetta richiesta di amicizia" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Accetta invito" @@ -1364,8 +1364,8 @@ msgstr "Accetta invito" msgid "Accept the incoming call" msgstr "Accetta la chiamata in arrivo" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Accettando questo invito il pacchetto viene installato automaticamente." @@ -1594,7 +1594,7 @@ msgstr "Aggiungi canali preferiti" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Consentito {0}." msgid "Already have an account?" msgstr "Hai già un account?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Già iscritti" @@ -2191,7 +2191,7 @@ msgstr "Avatar e banner animati" msgid "Animated Avatars Require Plutonium" msgstr "Gli avatar animati richiedono Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Banner animato" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji animate ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animata" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Video GIF animata" @@ -2219,7 +2219,7 @@ msgstr "Video GIF animata" msgid "Animated GIF Video" msgstr "Video GIF animata" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Icona animata" @@ -2277,7 +2277,7 @@ msgstr "Chiunque può menzionare questo ruolo con @. I membri con \"Usa @everyon msgid "API Endpoint" msgstr "Endpoint API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informazioni dell'applicazione" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nome dell'applicazione" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "È richiesto il nome dell'applicazione" @@ -2554,7 +2553,7 @@ msgstr "Sei sicuro di voler revocare il ban per <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Allegato {0}" msgid "Attachment Actions" msgstr "Azioni sull'allegato" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Allegato scaduto" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Completamento automatico" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatico" @@ -2859,7 +2858,7 @@ msgstr "Indietro" msgid "Back to Applications" msgstr "Torna alle applicazioni" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Torna alla lista" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Torna al login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Torna alle sovrascritture" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Torna ai ruoli" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Torna alle impostazioni" @@ -3003,7 +3002,7 @@ msgstr "Utenti bannati" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Limite caratteri biografia" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Ambito richiesto per il bot" msgid "Bot token" msgstr "Token bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token bot rigenerato. Aggiorna il codice che usava il token precedente." @@ -3435,7 +3434,7 @@ msgstr "Impostazioni fotocamera" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Impostazioni fotocamera" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Impostazioni fotocamera" msgid "Cancel" msgstr "Annulla" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Annulla richiesta di amicizia" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Attento! Hai modifiche non salvate." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categoria" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nome categoria" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Impostazioni categoria" @@ -3617,7 +3616,7 @@ msgstr "Attenzione" msgid "Center" msgstr "Centro" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrato" @@ -3765,7 +3764,7 @@ msgstr "Bitrate modificato in {0}." msgid "Changed the voice region to {0}." msgstr "Regione vocale cambiata in {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "canale" @@ -3828,11 +3827,11 @@ msgstr "ID canale copiato negli appunti" msgid "Channel link copied" msgstr "Link del canale copiato" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Modalità indicatore scrittura lista canali" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicatori di scrittura nella lista canali" @@ -3891,7 +3890,7 @@ msgstr "Canale rimosso dai preferiti" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Impostazioni canale" @@ -4052,7 +4051,7 @@ msgstr "Scegli come visualizzare gli orari in tutta l’app." msgid "Choose how typing indicators appear in the channel list" msgstr "Scegli come appaiono gli indicatori di digitazione nell'elenco dei canali" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Scegli come appaiono gli indicatori di digitazione nella lista dei canali quando qualcuno sta scrivendo." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Richiedi il tuo account per riscattare questo regalo." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Richiedi il tuo account per inviare richieste di amicizia." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Rimuovi autorizzazioni" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Cancella ricerca" msgid "Clear search input" msgstr "Cancella input di ricerca" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Cancella selezione" @@ -4314,7 +4313,7 @@ msgstr "Clicca l’icona di upload accanto a ogni suono per personalizzarlo con msgid "Click the verification link in the email." msgstr "Clicca il link di verifica nell’email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Clicca per aggiungere una nota" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Clicca per riscattare il tuo regalo!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Clicca per copiare" @@ -4388,7 +4387,7 @@ msgstr "Clicca per vedere tutte le reazioni" msgid "Client secret" msgstr "Segreto client" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Segreto client rigenerato. Aggiorna ogni codice che usava il vecchio segreto." @@ -4649,8 +4648,8 @@ msgstr "Community promuove odio basato su caratteristiche protette" msgid "Community promotes or facilitates illegal activities" msgstr "Community promuove o facilita attività illegali" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menu contestuali" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "I menu contestuali si aprono con clic sinistro (sui pulsanti) o destro (su altri elementi). Qui vengono mostrati vari elementi di menu come checkbox, radio button, slider e sottomenu." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Controlla come vengono visualizzati in anteprima i link ai siti web in c msgid "Control how you join voice channels" msgstr "Controlla come ti unisci ai canali vocali" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Controlla come entri nei canali vocali delle community." @@ -5012,7 +5011,7 @@ msgstr "Controlla le animazioni degli sticker" msgid "Control the visibility of favorites throughout the app." msgstr "Controlla la visibilità dei preferiti in tutta l’app." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Controlla se i suggerimenti delle scorciatoie da tastiera compaiono nei tooltip." @@ -5071,7 +5070,7 @@ msgstr "Copiato" msgid "Copied to clipboard" msgstr "Copiato negli appunti" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiato negli appunti" @@ -5149,7 +5148,7 @@ msgstr "Copia link file" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copia FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copia FluxerTag" msgid "Copy GIF" msgstr "Copia GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copia ID gilda" @@ -5222,7 +5221,7 @@ msgstr "Copia testo" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Accogliente" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Crea" @@ -5331,14 +5330,14 @@ msgstr "Crea e gestisci applicazioni e bot per il tuo account." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Crea e condividi pacchetti personalizzati di emoji e sticker con Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Crea applicazione" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Crea applicazione" msgid "Create Category" msgstr "Crea categoria" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Creato {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Creato da {0}" @@ -5569,7 +5568,7 @@ msgstr "L'immagine ritagliata è troppo grande. Scegli un'area o un file più pi msgid "Current Community" msgstr "Community attuale" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dispositivo attuale" @@ -5606,7 +5605,7 @@ msgstr "Attualmente bloccato nel 1885, appare offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Attualmente: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Pericolo secondario" msgid "Danger secondary clicked!" msgstr "Pericolo secondario cliccato!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona pericolosa" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Elimina tutti i miei messaggi" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Elimina applicazione" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Elimina allegato" @@ -6063,7 +6062,7 @@ msgstr "Elimina allegato" msgid "Delete Attachment" msgstr "Elimina allegato" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Elimina categoria" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Elimina canale" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Elimina media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Elimina messaggio" @@ -6215,7 +6214,7 @@ msgstr "Denso" msgid "Dense layout" msgstr "Layout denso" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Distribuito" @@ -6281,7 +6280,7 @@ msgstr "Canale di destinazione" msgid "Destination URL:" msgstr "URL di destinazione:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner distaccato" @@ -6362,7 +6361,7 @@ msgstr "Dimensioni diverse (stato supportato)" msgid "Different Sizes & Member Counts" msgstr "Dimensioni e numero di membri diversi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Messaggio diretto" @@ -6541,7 +6540,7 @@ msgstr "Disabilitare il tuo account ti disconnette da tutte le sessioni. Puoi ri msgid "Disallow @mention." msgstr "Vieta @mention." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Proibisci account non reclamati" @@ -6747,7 +6746,7 @@ msgstr "Non mostrare anteprime dei messaggi nella lista DM" msgid "Don't show this again" msgstr "Non mostrare più" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Non mostrare l’indicatore di scrittura nella lista dei canali" @@ -6760,7 +6759,7 @@ msgstr "Non mostrare l’indicatore di scrittura nella lista dei canali" msgid "Done" msgstr "Fatto" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Modifica categoria" msgid "Edit Channel" msgstr "Modifica canale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Modifica i permessi sovrascritti per ruoli e membri in questo canale." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash embed" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Le immagini splash embed non possono essere animate. Usa JPEG, PNG o WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio incorporato" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "I nomi delle emoji devono avere almeno 2 caratteri e possono contenere solo caratteri alfanumerici e underscore. Tipi di file consentiti: JPEG, PNG, WebP, GIF. Comprimiamo le immagini a 128x128 pixel. Dimensione massima: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Pacchetto emoji" @@ -7473,7 +7472,7 @@ msgstr "Inserisci il numero di telefono" msgid "Enter picture-in-picture" msgstr "Attiva picture-in-picture" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Attiva modalità selezione" @@ -7536,7 +7535,7 @@ msgstr "Inserisci la nuova email che vuoi usare. Invieremo lì un codice a segui msgid "Enter the SMS code you received." msgstr "Inserisci il codice SMS ricevuto." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "premi invio per <0><1>salvare" @@ -7604,7 +7603,7 @@ msgstr "Errore nel rendering di LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc esce dalla modalità tastiera" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "premi escape per <0><1>annullare" @@ -7667,7 +7666,7 @@ msgstr "Esci da picture-in-picture" msgid "Exit Preview" msgstr "Esci dall'anteprima" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Esci dalla modalità selezione" @@ -7701,7 +7700,7 @@ msgstr "Scaduto (entro 30 giorni)" msgid "Expired {absolute}" msgstr "Scaduto {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Scaduto tra {earliest} e {latest}" @@ -7709,7 +7708,7 @@ msgstr "Scaduto tra {earliest} e {latest}" msgid "Expired on {date}" msgstr "Scaduto il {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Scaduto il {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Scade" msgid "Expires {absolute} ({relativeText})" msgstr "Scade {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Scade tra {earliest} e {latest}" @@ -7730,7 +7729,7 @@ msgstr "Scade tra {earliest} e {latest}" msgid "Expires on {date}" msgstr "Scade il {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Scade il {earliest}" @@ -7766,7 +7765,7 @@ msgstr "I Pacchetti Espressione sono una funzione di Plutonium" msgid "Expression picker categories" msgstr "Categorie del selettore di espressioni" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Pulizia espressioni" @@ -7839,10 +7838,6 @@ msgstr "Impossibile copiare negli appunti" msgid "Failed to copy URL" msgstr "Impossibile copiare l'URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Impossibile creare l'applicazione. Controlla i dati e riprova." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Impossibile creare il ruolo" @@ -8100,7 +8095,7 @@ msgstr "Impossibile revocare il ban. Riprova." msgid "Failed to revoke invite" msgstr "Impossibile revocare l'invito" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Impossibile ruotare. Riprova." @@ -8413,7 +8408,7 @@ msgstr "Amici del fitness" msgid "Flags" msgstr "Flag" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nomi flessibili per i canali di testo" @@ -8577,7 +8572,7 @@ msgstr "Amici buongustai" msgid "For 1 hour" msgstr "Per 1 ora" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Per 1 ora" msgid "For 15 minutes" msgstr "Per 15 minuti" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Per 15 minuti" msgid "For 24 hours" msgstr "Per 24 ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Per 3 giorni" msgid "For 3 hours" msgstr "Per 3 ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Per 3 ore" msgid "For 8 hours" msgstr "Per 8 ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Dimentica le iscrizioni" msgid "Forgot Password" msgstr "Password dimenticata" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" @@ -8795,7 +8790,7 @@ msgstr "Avanza di {DEFAULT_SEEK_AMOUNT} secondi" msgid "Forward Message" msgstr "Inoltra messaggio" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Inoltrato" @@ -9065,7 +9060,7 @@ msgstr "Scarica l’app desktop Fluxer per push-to-talk di sistema e altri extra #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Torna al canale testuale precedentemente attivo" msgid "Go forward in navigation history" msgstr "Vai avanti nella cronologia di navigazione" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Vai alla Community" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Inviti di gruppo" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Messaggio di gruppo" @@ -9548,7 +9543,7 @@ msgstr "Ehi, {username}, benvenuto! Puoi realizzare qualsiasi cosa." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Ehi, {username}! Quando raggiungerà 88 mph, vedrai cose incredibili!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Nascosto" @@ -9569,7 +9564,7 @@ msgstr "Nascondi preferiti" msgid "Hide Join Messages" msgstr "Nascondi messaggi di entrata" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Nascondi suggerimenti tastiera nei tooltip" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Nascondi canali disattivati" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Se vuoi esportare i tuoi dati o cancellare i messaggi prima, visita la sezione Privacy Dashboard nelle Impostazioni utente prima di procedere." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "immagine" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Input con icone" msgid "Insert emoji" msgstr "Inserisci emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Installa pacchetto emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Installa pacchetto sticker" @@ -10153,7 +10148,7 @@ msgstr "Installato il {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Per installare pacchetti emoji e sticker serve un abbonamento premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Inviti istantanei" @@ -10286,7 +10281,7 @@ msgstr "Impostazioni link di invito" msgid "Invite Links" msgstr "Link di invito" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Finestra invito" msgid "Invite modal preview" msgstr "Anteprima finestra invito" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invito inviato per {0}" msgid "Invite sent to {guildName}" msgstr "Invito inviato a {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Grafica invito" @@ -10354,7 +10349,7 @@ msgstr "Invita su {0}" msgid "Invite to Community" msgstr "Invita nella community" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invito non disponibile" @@ -10369,12 +10364,12 @@ msgstr "Invitato da {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invitato da {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invitato da {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Gli inviti sono attualmente sospesi in questa community" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Gli inviti sono bloccati per le community in anteprima. Reclama il tuo account impostando email e password per abilitare gli inviti." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Inviti disabilitati" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Inviti disabilitati" @@ -10482,13 +10477,13 @@ msgstr "Entra in una community con sticker per iniziare!" msgid "Join call" msgstr "Partecipa alla chiamata" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Partecipa alla community" @@ -10497,15 +10492,23 @@ msgstr "Partecipa alla community" msgid "Join community form" msgstr "Modulo di adesione alla community" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Unisciti a Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Unisciti a Fluxer HQ per chattare con il team e rimanere aggiornato sulle ultime novità!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Unisciti al gruppo" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Unisciti alla chat di gruppo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notifiche di adesione" @@ -10620,7 +10623,7 @@ msgstr "Vai al messaggio non letto più vecchio" msgid "Jump to page" msgstr "Vai alla pagina" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Vai al presente" @@ -10690,7 +10693,7 @@ msgstr "Tasti di scelta rapida" msgid "Keyboard" msgstr "Tastiera" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Suggerimenti tastiera" @@ -10815,7 +10818,7 @@ msgstr "Scopri Plutonium" msgid "Leave blank for a random username" msgstr "Lascia vuoto per un nome utente casuale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Vai già via?" msgid "Left" msgstr "Sinistra" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Allineato a sinistra" @@ -10945,7 +10948,7 @@ msgstr "collegamento" msgid "Link" msgstr "Collegamento" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Collega canale" @@ -11027,7 +11030,7 @@ msgstr "Caricamento bannati..." msgid "Loading communities..." msgstr "Caricamento community..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Caricamento immagine" @@ -11039,8 +11042,8 @@ msgstr "Caricamento inviti..." msgid "Loading more..." msgstr "Caricamento altro..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Segnaposto in caricamento" @@ -11064,7 +11067,7 @@ msgstr "Caricamento tema..." msgid "Loading verification methods..." msgstr "Caricamento metodi di verifica..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Caricamento: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Silenzia locale" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Accedi dal browser e inserisci il codice mostrato per aggiungere l'accou msgid "Log in via browser" msgstr "Accedi tramite browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Accedi tramite browser o istanza personalizzata" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Disconnettiti" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Disconnetti {0} dispositivi" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Disconnetti {sessionCount} dispositivi" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Disconnetti 1 dispositivo" @@ -11141,7 +11144,7 @@ msgstr "Disconnetti tutti i dispositivi" msgid "Log out all other devices" msgstr "Disconnetti tutti gli altri dispositivi" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Disconnetti tutti gli altri dispositivi" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Segna come 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "menzioni:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "menzioni:" msgid "Message" msgstr "Messaggio" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Messaggio " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Messaggio @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Messaggio #" @@ -11838,7 +11842,7 @@ msgstr "Messaggi e media" msgid "Messages Deleted" msgstr "Messaggi eliminati" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Caricamento dei messaggi non riuscito" @@ -12016,7 +12020,7 @@ msgstr "Altro" msgid "More Actions" msgstr "Altre azioni" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Altri slot emoji" @@ -12028,7 +12032,7 @@ msgstr "Altre opzioni" msgid "More Options" msgstr "Altre opzioni" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Altri slot sticker" @@ -12162,8 +12166,8 @@ msgstr "Disattiva audio canale" msgid "Mute Channel" msgstr "Disattiva audio canale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Audio disattivato fino a {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Disattivare audio a una comunità impedisce l'apparizione di indicatori di non letti e notifiche, a meno che tu non venga menzionato" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Comunità reciproche ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Amici reciproci ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Gruppi reciproci ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "La mia applicazione" @@ -12247,7 +12251,7 @@ msgstr "Il mio sticker fantastico" msgid "My Category" msgstr "La mia categoria" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "I miei dispositivi" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigazione" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Hai bisogno di un account?" @@ -12364,7 +12368,7 @@ msgstr "Rete" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Errore di rete" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Nessun banner della comunità" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nessuna descrizione fornita." @@ -12684,15 +12688,15 @@ msgstr "Nessun microfono rilevato" msgid "No more scheduled messages." msgstr "Nessun altro messaggio programmato." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nessuna comunità in comune trovata." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nessun amico in comune trovato." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nessun gruppo in comune trovato." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Non fa per te? Puoi disattivare questa funzione in qualsiasi momento." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Sovrascritture della notifica" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Avvisa gli utenti con questo ruolo che hanno il permesso di vedere quest msgid "now" msgstr "ora" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Adesso" @@ -13090,7 +13094,7 @@ msgstr "Al clic" msgid "on:" msgstr "su:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Una volta eliminata, l'applicazione e le sue credenziali vengono rimosse definitivamente." @@ -13252,7 +13256,7 @@ msgstr "Apri solo i DM" msgid "Open Fluxer" msgstr "Apri Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Apri immagine a schermo intero" @@ -13368,7 +13372,7 @@ msgstr "Apri la community Visionari" msgid "Opening..." msgstr "Apertura in corso..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatore" @@ -13441,7 +13445,7 @@ msgstr "Il messaggio originale è stato eliminato" msgid "Other" msgstr "Altro" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Altri dispositivi" @@ -13501,7 +13505,7 @@ msgstr "Forza lo stato dell'account non reclamato" msgid "Override unread gift inventory status" msgstr "Forza lo stato dell'inventario di regali non letti" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Panoramica" @@ -13695,7 +13699,7 @@ msgstr "Permessi" msgid "Permissions granted" msgstr "Permessi concessi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Note personali" @@ -13868,12 +13872,12 @@ msgstr "Riproduci" msgid "Play animated emojis" msgstr "Riproduci emoji animate" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Riproduci audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Incolla il link del messaggio che stai segnalando." msgid "Please provide an email address." msgstr "Fornisci un indirizzo email." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Riprova o torna all'elenco delle applicazioni." @@ -13989,7 +13993,7 @@ msgstr "Vantaggi Plutonium" msgid "Plutonium Subscription" msgstr "Abbonamento Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Pannello privacy" msgid "Privacy Policy" msgstr "Informativa sulla privacy" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Rimuovi questo sticker dallo storage e dalla CDN" msgid "Push Notification Inactive Timeout" msgstr "Timeout inattivo delle notifiche push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notifiche push" @@ -14412,7 +14416,7 @@ msgstr "Interazione con reazioni disabilitata" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reazioni" @@ -14583,7 +14587,7 @@ msgstr "Aggiorna iscrizione push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Rigenera" @@ -14591,19 +14595,19 @@ msgstr "Rigenera" msgid "Regenerate backup codes" msgstr "Rigenera codici di backup" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Rigenerare il token del bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Rigenerare il client secret?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Rigenerarlo invaliderà il secret attuale. Aggiorna ogni codice che utilizza il valore precedente." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Rigenerarlo invaliderà il token attuale. Aggiorna ogni codice che usa il valore precedente." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Rimuovi filtro" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Rimuovi filtro" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Segnalazione inviata con successo. Il nostro team di sicurezza la esamin #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Segnala utente" @@ -15105,7 +15109,7 @@ msgstr "Ambiti richiesti" msgid "Require 2FA for moderation actions" msgstr "Richiedi 2FA per azioni di moderazione" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Richiedi doppio clic per entrare nei canali vocali" @@ -15144,7 +15148,7 @@ msgstr "Richiede tutto ciò che serve per 'Medio', più essere membro del server msgid "Requires Plutonium" msgstr "Richiede Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Ripianifica messaggio" @@ -15290,11 +15294,11 @@ msgstr "Riattiva l'abbonamento" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Riprova" @@ -15359,7 +15363,7 @@ msgstr "Revoca" msgid "Revoke Ban" msgstr "Revoca ban" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revoca dispositivo" @@ -15386,7 +15390,7 @@ msgstr "Riavvolgi di {DEFAULT_SEEK_AMOUNT} secondi" msgid "Right" msgstr "Destra" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Allineato a destra" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Cerca membri..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Cerca messaggi" @@ -15834,13 +15838,13 @@ msgstr "Cerca ruoli o membri..." msgid "Search saved media" msgstr "Cerca media salvati" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Ambito della ricerca" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Ambito della ricerca: {0}" @@ -15857,7 +15861,7 @@ msgstr "Cerca impostazioni..." msgid "Search stickers..." msgstr "Cerca sticker..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Suggerimenti di ricerca" @@ -15938,7 +15942,7 @@ msgstr "Chiave di sicurezza / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verifica della chiave di sicurezza fallita. Riprova." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Visualizza tutti i dispositivi attualmente connessi al tuo account. Revoca qualsiasi sessione non riconosciuta." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Seleziona account" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Seleziona tutto" @@ -16040,7 +16044,7 @@ msgstr "Seleziona dimensione media per contenuti incorporati da link" msgid "Select media size for uploaded attachments" msgstr "Seleziona dimensione media per gli allegati caricati" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Seleziona vista reciproca" @@ -16151,9 +16155,9 @@ msgstr "Invia codice" msgid "Send Code" msgstr "Invia codice" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Invia richiesta di amicizia" @@ -16170,7 +16174,7 @@ msgstr "Invia messaggio · Click destro per pianificare" msgid "Send Message Disabled" msgstr "Invio messaggi disabilitato" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Invia messaggi" @@ -16624,7 +16628,7 @@ msgstr "Mostra pulsante Regalo" msgid "Show inline images and videos" msgstr "Mostra immagini e video in linea" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Mostra solo l'indicatore di digitazione senza avatar" @@ -16788,11 +16792,11 @@ msgstr "Mostra il regalo come già riscattato" msgid "Show this role separately" msgstr "Mostra questo ruolo separatamente" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Mostra l'indicatore di digitazione con avatar utenti nella lista canali" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Mostra la digitazione sul canale selezionato" @@ -17151,7 +17155,7 @@ msgstr "Spagnolo (Spagna)" msgid "Speak" msgstr "Parla" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Leggi messaggio" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Inizia condivisione" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Avvia videochiamata" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Avvia chiamata vocale" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densità adesivi" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Pacchetto adesivi" @@ -17427,7 +17431,7 @@ msgstr "Interrompi squillo" msgid "Stop Sharing" msgstr "Interrompi condivisione" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Smettila di parlare" @@ -17570,19 +17574,19 @@ msgstr "Disattiva tutti gli @role" msgid "Suppress All Role @mentions" msgstr "Disattiva tutti gli @role" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Disattiva embed" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Testo" msgid "Text (NSFW)" msgstr "Testo (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Canale di testo" @@ -18028,10 +18032,10 @@ msgstr "Questa azione richiede verifica per continuare." msgid "This application" msgstr "Questa applicazione" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Questo allegato è scaduto" @@ -18039,7 +18043,7 @@ msgstr "Questo allegato è scaduto" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Questo bot sta richiedendo il permesso Amministratore. Non consigliamo di concederlo alle app in produzione a meno che tu non abbia piena fiducia nello sviluppatore. Considera di chiedere di richiedere un set ridotto di permessi. Chiudi questa pagina se hai dei dubbi." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Questo non può essere annullato. Rimuovere l’applicazione elimina anche il suo bot." @@ -18101,7 +18105,7 @@ msgstr "Questa community ha raggiunto il limite massimo di membri e al momento n msgid "This community has temporarily disabled invites." msgstr "Questa community ha temporaneamente disattivato gli inviti." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Questa community ha temporaneamente disattivato gli inviti. Puoi riprovare più tardi." @@ -18178,7 +18182,7 @@ msgstr "Questo invito ha utilizzi illimitati." msgid "This invite link never expires." msgstr "Questo link di invito non scade mai." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Questo è l’inizio di <0>{displayName}. Aggiungi amici per iniziare una conversazione!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Questo è l’inizio della cronologia dei messaggi diretti con <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Questo era un messaggio @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Questo creerà una frattura nel continuum spazio-temporale e non può es msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Questo nasconderà tutti gli elementi dell’interfaccia legati ai preferiti, inclusi pulsanti e voci di menu. I preferiti esistenti verranno preservati e potranno essere riattivati in qualsiasi momento da <0>Impostazioni utente → Aspetto e sensazioni → Preferiti." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Questo modificherà il messaggio programmato esistente anziché inviarlo subito." @@ -18387,8 +18391,8 @@ msgstr "Questo rimuoverà la sessione salvata per questo account." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Questo sostituirà il tuo tema personalizzato attuale. Potrai modificarlo in seguito nelle impostazioni utente." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatura per {title}" @@ -18485,7 +18489,7 @@ msgstr "I toast appaiono in alto al centro dello schermo." msgid "today" msgstr "oggi" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Oggi" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Riprova" @@ -18737,7 +18741,7 @@ msgstr "Prova un altro nome o controlla l'ortografia." msgid "Try another search term" msgstr "Prova un altro termine di ricerca" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Prova a chiedere un nuovo invito." @@ -18864,7 +18868,7 @@ msgstr "Scala dei tipi" msgid "Type your message here..." msgstr "Scrivi qui il tuo messaggio..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Eventi di digitazione" @@ -18877,11 +18881,11 @@ msgstr "Indicatore di digitazione" msgid "Typing Indicator" msgstr "Indicatore di digitazione" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicatore di digitazione + avatar" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Solo indicatore di digitazione" @@ -18961,11 +18965,11 @@ msgstr "Impossibile avviare la chiamata" msgid "Unable to start email change" msgstr "Impossibile avviare la modifica dell'email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Non disponibile per nessuno" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Non disponibile per tutti tranne lo staff" @@ -18978,7 +18982,7 @@ msgstr "Non disponibile per tutti tranne lo staff" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Sblocca questo utente prima di inviare la richiesta di amicizia." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Sblocca utente" @@ -19165,7 +19169,7 @@ msgstr "Errore sconosciuto" msgid "Unknown Gift" msgstr "Regalo sconosciuto" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Invito sconosciuto" @@ -19205,11 +19209,11 @@ msgstr "ruolo-sconosciuto" msgid "Unlimited" msgstr "Illimitato" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emoji illimitate" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Sticker illimitati" @@ -19254,7 +19258,7 @@ msgstr "Sblocca sticker nei DM con Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Riattiva audio categoria" msgid "Unmute Channel" msgstr "Riattiva audio canale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Riattiva audio preferiti" msgid "Unmute User" msgstr "Riattiva audio utente" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Senza nome" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Fino a quando non lo cambio" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Email non verificata" msgid "Up to 4K/60fps" msgstr "Fino a 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Aggiorna" @@ -19629,7 +19633,7 @@ msgstr "Carica suono di ingresso" msgid "Upload Failed" msgstr "Caricamento non riuscito" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Carica file" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "L'utente ha cambiato canale" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profilo utente" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profilo Utente: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valori" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personalizzato" @@ -20059,14 +20063,14 @@ msgstr "Potrebbe essere richiesta la verifica prima di visualizzare i codici di #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Community verificata" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Gilda verificata" @@ -20167,8 +20171,8 @@ msgstr "Qualità video" msgid "Video Settings" msgstr "Impostazioni video" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatura video" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Visualizza codici" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Visualizza profilo della community" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Visualizza inventario regali" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Visualizza profilo globale" @@ -20329,7 +20333,7 @@ msgstr "Selezione della categoria di violazione" msgid "Violent or Graphic Content" msgstr "Contenuti violenti o grafici" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voce VIP" @@ -20341,7 +20345,7 @@ msgstr "Pulsanti visibili" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Chiamate vocali" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Canale vocale" @@ -20442,7 +20446,7 @@ msgstr "Canale vocale" msgid "Voice Channel Full" msgstr "Canale vocale pieno" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportamento di accesso al canale vocale" @@ -20559,7 +20563,7 @@ msgstr "Non siamo riusciti ad entrare in questa community in questo momento." msgid "We couldn't load the invites at this time." msgstr "Non siamo riusciti a caricare gli inviti in questo momento." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Non siamo riusciti a caricare questa applicazione" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Stiamo avendo problemi a connetterci ai server di Fluxer. Potrebbe essere un problema temporaneo di rete o manutenzione programmata." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Stiamo riscontrando problemi a collegarci al continuum spaziotemporale. Controlla la connessione e riprova." @@ -20759,7 +20763,7 @@ msgstr "Guerrieri del weekend" msgid "Welcome and system messages will appear here." msgstr "I messaggi di benvenuto e di sistema appariranno qui." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Bentornato" @@ -20820,7 +20824,7 @@ msgstr "Cosa sta succedendo?" msgid "What's included in your export:" msgstr "Cosa include la tua esportazione:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Quando disattivato (default), gli indicatori di digitazione non appariranno nel canale che stai visualizzando." @@ -20836,7 +20840,7 @@ msgstr "Quando attivato, un tocco rapido sulla scorciatoia push-to-talk terrà i msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Quando attivato, mostra i menu di debug in tutta l'app per ispezionare e copiare oggetti JSON grezzi delle strutture dati interne come messaggi, canali, utenti e community. Include anche strumenti per debug della performance del parser Fluxer Markdown e dell'AST di ogni messaggio." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Quando attivato, i badge delle scorciatoie sono nascosti nei popup dei suggerimenti." @@ -20868,7 +20872,7 @@ msgstr "Quando attivato, usa la localizzazione del computer per determinare il f msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Quando attivato, puoi aggiungere canali ai preferiti e li vedrai nella sezione Preferiti. Quando disattivato, tutti gli elementi UI legati ai preferiti verranno nascosti. I preferiti esistenti saranno conservati." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Quando attivato, dovrai fare doppio clic sui canali vocali per entrarci. Quando disattivato (default), un clic ti unisce immediatamente." @@ -20970,7 +20974,7 @@ msgstr "Annuale {yearlyPrice}" msgid "yesterday" msgstr "ieri" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Ieri" @@ -21013,7 +21017,7 @@ msgstr "Stai modificando il profilo per questa community. Questo profilo sarà v msgid "You are in slowmode. Please wait before sending another message." msgstr "Sei in slowmode. Attendi prima di inviare un altro messaggio." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Ora sei uno sviluppatore!" @@ -21113,7 +21117,7 @@ msgstr "Puoi usare link e Markdown per formattare il testo. Con <0/> puoi scrive msgid "You can't add new reactions while you're on timeout." msgstr "Non puoi aggiungere nuove reazioni mentre sei in timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Non puoi aggiungerti agli amici da solo" @@ -21128,7 +21132,7 @@ msgstr "Non puoi interagire con le reazioni nei risultati di ricerca perché pot msgid "You can't join while you're on timeout." msgstr "Non puoi unirti mentre sei in timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Non puoi riattivare il microfono perché sei stato silenziato da un mode 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Non hai il permesso di inviare messaggi in questo canale." @@ -21439,7 +21443,7 @@ msgstr "Risulterai offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Configurerai i permessi che riceve il bot nella schermata successiva." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Dovrai effettuare nuovamente l'accesso su tutti i dispositivi disconnessi" @@ -21508,7 +21512,7 @@ msgstr "Sei nel canale vocale" msgid "You're sending messages too quickly" msgstr "Stai inviando messaggi troppo velocemente" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 5e1b3463..04f9d698 100644 --- a/fluxer_app/src/locales/ja/messages.po +++ b/fluxer_app/src/locales/ja/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {#個のアイテム} other {#個のアイテム}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {#人のメンバー} other {#人のメンバー}}" @@ -566,18 +566,18 @@ msgstr "{label}の画像はアニメーションできません。JPEG、PNG、 #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount}人のメンバー" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount}人のメンバー" @@ -612,11 +612,11 @@ msgstr "{minutes}分{seconds}秒" msgid "{minutes} minutes and 1 second" msgstr "{minutes}分と1秒" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount}の相互コミュニティ" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount}の相互コミュニティ" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount}人が通話中" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount}人がオンライン" @@ -650,15 +650,15 @@ msgstr "残り{remaining}文字" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "残り{remaining}文字です。Plutoniumを取得すると、最大{premiumMaxLength}文字まで書けます。" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount}人のメンバー" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount}人のメンバー" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount}人がオンライン" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone メンション" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "アクセントカラー" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "承認" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "フレンドリクエストを承認" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "招待を承認" @@ -1364,8 +1364,8 @@ msgstr "招待を承認" msgid "Accept the incoming call" msgstr "着信を承認" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "この招待を承認するとパックが自動的にインストールされます。" @@ -1594,7 +1594,7 @@ msgstr "お気に入りチャンネルを追加" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0}を許可しました。" msgid "Already have an account?" msgstr "すでにアカウントをお持ちですか?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "すでに参加済み" @@ -2191,7 +2191,7 @@ msgstr "アニメーションアバターとバナー" msgid "Animated Avatars Require Plutonium" msgstr "アニメーションアバターにはPlutoniumが必要です" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "アニメーションバナー" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "アニメーション絵文字({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "アニメーションGIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "アニメーションGIF動画" @@ -2219,7 +2219,7 @@ msgstr "アニメーションGIF動画" msgid "Animated GIF Video" msgstr "アニメーションGIF動画" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "アニメーションアイコン" @@ -2277,7 +2277,7 @@ msgstr "誰でもこのロールを@メンションできます。「@everyone/@ msgid "API Endpoint" msgstr "APIエンドポイント" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "アプリケーション情報" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "アプリケーション名" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "アプリケーション名は必須です" @@ -2554,7 +2553,7 @@ msgstr "<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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "このメッセージのすべてのリンク埋め込みを非表示にしてもよろしいですか?この操作により、このメッセージからのすべての埋め込みが非表示になります。" @@ -2603,7 +2602,7 @@ msgstr "添付ファイル{0}" msgid "Attachment Actions" msgstr "添付ファイルの操作" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "添付ファイルの期限切れ" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "オートコンプリート" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "自動" @@ -2859,7 +2858,7 @@ msgstr "戻る" msgid "Back to Applications" msgstr "アプリケーションに戻る" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "リストに戻る" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "ログインに戻る" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "オーバーライドに戻る" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "ロールに戻る" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "設定に戻る" @@ -3003,7 +3002,7 @@ msgstr "BAN済みユーザー" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "バナー" @@ -3096,7 +3095,7 @@ msgstr "自己紹介文字数制限" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "要求されたボットスコープ" msgid "Bot token" msgstr "ボットトークン" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "ボットトークンが再生成されました。古いトークンを使用しているコードを更新してください。" @@ -3435,7 +3434,7 @@ msgstr "カメラ設定" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "カメラ設定" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "カメラ設定" msgid "Cancel" msgstr "キャンセル" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "フレンドリクエストをキャンセル" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "注意!保存されていない変更があります。" #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "カテゴリ" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "カテゴリ名" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "カテゴリ設定" @@ -3617,7 +3616,7 @@ msgstr "注意" msgid "Center" msgstr "センター" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "中央揃え" @@ -3765,7 +3764,7 @@ msgstr "ビットレートを {0} に変更しました。" msgid "Changed the voice region to {0}." msgstr "ボイスリージョンを{0}に変更しました。" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "チャンネル" @@ -3828,11 +3827,11 @@ msgstr "チャンネルIDをクリップボードにコピーしました" msgid "Channel link copied" msgstr "チャンネルリンクをコピーしました" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "チャンネルリストの入力インジケーターモード" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "チャンネルリストの入力インジケーター" @@ -3891,7 +3890,7 @@ msgstr "チャンネルをお気に入りから削除しました" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "チャンネル設定" @@ -4052,7 +4051,7 @@ msgstr "アプリ全体での時刻の表示方法を選択します。" msgid "Choose how typing indicators appear in the channel list" msgstr "チャンネルリストでの入力インジケーターの表示方法を選択" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "誰かがチャンネルで入力しているとき、チャンネルリストで入力インジケーターがどのように表示されるかを選択します。" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "アカウントを請求してこのギフトを引き換えてください。" #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "アカウントを請求して友達リクエストを送信してください。" @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "権限をクリア" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "検索をクリア" msgid "Clear search input" msgstr "検索入力欄をクリア" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "選択をクリア" @@ -4314,7 +4313,7 @@ msgstr "任意のサウンドの横にあるアップロードアイコンをク msgid "Click the verification link in the email." msgstr "メール内の確認リンクをクリックしてください。" -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "メモを追加するにはクリック" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "クリックしてギフトを受け取ろう!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "クリックでコピー" @@ -4388,7 +4387,7 @@ msgstr "クリックしてすべてのリアクションを表示" msgid "Client secret" msgstr "クライアントシークレット" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "クライアントシークレットが再生成されました。古いシークレットを使用しているコードを更新してください。" @@ -4649,8 +4648,8 @@ msgstr "コミュニティが保護特性に基づく憎悪を促進" msgid "Community promotes or facilitates illegal activities" msgstr "コミュニティが違法活動を促進または容易化" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "コンテキストメニュー" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "コンテキストメニューは、左クリック(ボタン上)または右クリック(その他の要素上)で開くことができます。これは、チェックボックス、ラジオボタン、スライダー、サブメニューを含むさまざまなメニュー項目を示しています。" -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "チャットでウェブサイトリンクがプレビューされる方 msgid "Control how you join voice channels" msgstr "ボイスチャンネルの参加方法を管理" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "コミュニティ内のボイスチャンネルへの参加方法を制御します。" @@ -5012,7 +5011,7 @@ msgstr "ステッカーのアニメーションを管理" msgid "Control the visibility of favorites throughout the app." msgstr "アプリ全体のお気に入りの表示を制御します。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "キーボードショートカットのヒントがツールチップ内に表示されるかどうかを制御します。" @@ -5071,7 +5070,7 @@ msgstr "コピー済み" msgid "Copied to clipboard" msgstr "クリップボードにコピーしました" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URLをクリップボードにコピーしました" @@ -5149,7 +5148,7 @@ msgstr "ファイルリンクをコピー" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTagをコピー" @@ -5157,7 +5156,7 @@ msgstr "FluxerTagをコピー" msgid "Copy GIF" msgstr "GIFをコピー" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "ギルドIDをコピー" @@ -5222,7 +5221,7 @@ msgstr "テキストをコピー" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "居心地の良い" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "作成" @@ -5331,14 +5330,14 @@ msgstr "アカウントのアプリケーションとボットを作成および msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Fluxer Plutoniumでカスタム絵文字とステッカーパックを作成して共有します。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "アプリケーションを作成" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "アプリケーションを作成" msgid "Create Category" msgstr "カテゴリを作成" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "作成日: {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "作成者: {0}" @@ -5569,7 +5568,7 @@ msgstr "切り抜いた画像が大きすぎます。より小さな領域また msgid "Current Community" msgstr "現在のコミュニティ" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "現在のデバイス" @@ -5606,7 +5605,7 @@ msgstr "現在1885年で立ち往生、オフライン表示中" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "現在: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "危険セカンダリ" msgid "Danger secondary clicked!" msgstr "危険セカンダリをクリックしました!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "危険ゾーン" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "バッテリーとデータ使用量を節約するため、モバイルではオフがデフォルトです。" #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "自分のすべてのメッセージを削除" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "アプリケーションを削除" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "添付ファイルを削除" @@ -6063,7 +6062,7 @@ msgstr "添付ファイルを削除" msgid "Delete Attachment" msgstr "添付ファイルの削除" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "カテゴリを削除" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "チャンネルを削除" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "メディアを削除" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "メッセージを削除" @@ -6215,7 +6214,7 @@ msgstr "高密度" msgid "Dense layout" msgstr "高密度レイアウト" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "デプロイ済み" @@ -6281,7 +6280,7 @@ msgstr "宛先チャンネル" msgid "Destination URL:" msgstr "宛先URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "分離バナー" @@ -6362,7 +6361,7 @@ msgstr "異なるサイズ(ステータス対応)" msgid "Different Sizes & Member Counts" msgstr "異なるサイズとメンバー数" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "ダイレクトメッセージ" @@ -6541,7 +6540,7 @@ msgstr "アカウントを無効にすると、すべてのセッションから msgid "Disallow @mention." msgstr "@メンションを許可しない。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "未請求アカウントを許可しない" @@ -6747,7 +6746,7 @@ msgstr "DMリストでメッセージプレビューを表示しない" msgid "Don't show this again" msgstr "今後表示しない" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "チャンネルリストで入力インジケーターを表示しない" @@ -6760,7 +6759,7 @@ msgstr "チャンネルリストで入力インジケーターを表示しない msgid "Done" msgstr "完了" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "カテゴリを編集" msgid "Edit Channel" msgstr "チャンネルを編集" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "このチャンネル内のロールとメンバーの上書きを編集します。" #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "スプラッシュを埋め込む" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "埋め込みスプラッシュ画像はアニメーションできません。JPEG、PNG、またはWebPを使用してください。" -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "埋め込みオーディオ" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "絵文字名は2文字以上で、英数字とアンダースコアのみ使用できます。使用可能なファイル形式: JPEG、PNG、WebP、GIF。画像は128x128ピクセルに圧縮されます。最大サイズ: 絵文字あたり{0}KB。" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "絵文字パック" @@ -7473,7 +7472,7 @@ msgstr "電話番号を入力" msgid "Enter picture-in-picture" msgstr "ピクチャーインピクチャーにする" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "選択モードに入る" @@ -7536,7 +7535,7 @@ msgstr "使用したい新しいメールアドレスを入力してください msgid "Enter the SMS code you received." msgstr "受信した SMS コードを入力してください。" -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "Enter キーで <0><1>保存" @@ -7604,7 +7603,7 @@ msgstr "LaTeX のレンダリングエラー: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc キーでキーボードモードを終了" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "エスケープで<0><1>キャンセル" @@ -7667,7 +7666,7 @@ msgstr "ピクチャーインピクチャーを終了" msgid "Exit Preview" msgstr "プレビューを終了" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "選択モードを終了" @@ -7701,7 +7700,7 @@ msgstr "期限切れ (30日以内)" msgid "Expired {absolute}" msgstr "期限切れ {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "期限切れ: {earliest} から {latest} まで" @@ -7709,7 +7708,7 @@ msgstr "期限切れ: {earliest} から {latest} まで" msgid "Expired on {date}" msgstr "期限切れ日: {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "期限切れ日: {earliest}" @@ -7722,7 +7721,7 @@ msgstr "有効期限" msgid "Expires {absolute} ({relativeText})" msgstr "有効期限 {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "有効期限: {earliest} から {latest} まで" @@ -7730,7 +7729,7 @@ msgstr "有効期限: {earliest} から {latest} まで" msgid "Expires on {date}" msgstr "有効期限日: {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "有効期限日: {earliest}" @@ -7766,7 +7765,7 @@ msgstr "エクスプレッションパックはPlutoniumの機能です" msgid "Expression picker categories" msgstr "エクスプレッションピッカーのカテゴリ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "エクスプレッションの削除" @@ -7839,10 +7838,6 @@ msgstr "クリップボードへのコピーに失敗しました" msgid "Failed to copy URL" msgstr "URLのコピーに失敗しました" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "アプリケーションの作成に失敗しました。入力を確認してもう一度お試しください。" - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "ロールの作成に失敗しました" @@ -8100,7 +8095,7 @@ msgstr "BANの取り消しに失敗しました。もう一度お試しくださ msgid "Failed to revoke invite" msgstr "招待の取り消しに失敗しました" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "回転に失敗しました。もう一度お試しください。" @@ -8413,7 +8408,7 @@ msgstr "フィットネスフレンズ" msgid "Flags" msgstr "フラグ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "柔軟なテキストチャンネル名" @@ -8577,7 +8572,7 @@ msgstr "フーディーな友達" msgid "For 1 hour" msgstr "1時間" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1時間の間" msgid "For 15 minutes" msgstr "15分間" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15分間" msgid "For 24 hours" msgstr "24時間" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3日間" msgid "For 3 hours" msgstr "3時間" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3時間の間" msgid "For 8 hours" msgstr "8時間" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "購読を忘れる" msgid "Forgot Password" msgstr "パスワードをお忘れですか" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "パスワードをお忘れですか?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT}秒進む" msgid "Forward Message" msgstr "メッセージを転送" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "転送済み" @@ -9065,7 +9060,7 @@ msgstr "システム全体のプッシュ・トゥ・トークなど、いくつ #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "以前にフォーカスしたテキストチャンネルに戻る" msgid "Go forward in navigation history" msgstr "ナビゲーション履歴を進む" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "コミュニティへ移動" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "グループ招待" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "グループメッセージ" @@ -9548,7 +9543,7 @@ msgstr "やあ、{username}さん、ようこそ!あなたは何でも達成 msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "やあ、{username}さん!時速88マイルに達すると、すごいものを見ることになりますよ!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "非表示" @@ -9569,7 +9564,7 @@ msgstr "お気に入りを非表示にする" msgid "Hide Join Messages" msgstr "参加メッセージを非表示にする" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "ツールチップのキーボードヒントを非表示にする" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "ミュートされたチャンネルを非表示にする" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "データをエクスポートしたり、メッセージを削除したりしたい場合は、先にユーザー設定のプライバシーダッシュボードセクションをご覧ください。" #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "画像" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "アイコン付き入力" msgid "Insert emoji" msgstr "絵文字を挿入" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "絵文字パックをインストール" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "ステッカーパックをインストール" @@ -10153,7 +10148,7 @@ msgstr "インストール日: {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "絵文字とステッカーパックのインストールにはプレミアムサブスクリプションが必要です。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "即時招待" @@ -10286,7 +10281,7 @@ msgstr "招待リンク設定" msgid "Invite Links" msgstr "招待リンク" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "招待モーダル" msgid "Invite modal preview" msgstr "招待モーダルプレビュー" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "{0}への招待を送信しました" msgid "Invite sent to {guildName}" msgstr "{guildName}に招待を送信しました" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "招待スプラッシュ" @@ -10354,7 +10349,7 @@ msgstr "{0}に招待" msgid "Invite to Community" msgstr "コミュニティに招待" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "招待を利用できません" @@ -10369,12 +10364,12 @@ msgstr "{0}によって招待されました。" #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "{0}#{1}によって招待されました" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "{inviterTag}によって招待されました" @@ -10410,12 +10405,12 @@ msgstr "このコミュニティでは招待が現在一時停止中です" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "プレビューコミュニティでは招待がロックされています。メールアドレスとパスワードを設定してアカウントを認証し、招待を有効にしてください。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "招待が無効" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "招待が無効" @@ -10482,13 +10477,13 @@ msgstr "スタートするにはステッカーがあるコミュニティに参 msgid "Join call" msgstr "通話に参加" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "コミュニティに参加" @@ -10497,15 +10492,23 @@ msgstr "コミュニティに参加" msgid "Join community form" msgstr "コミュニティ参加フォーム" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Fluxer HQに参加" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Fluxer HQに参加してチームとチャットし、最新情報をキャッチしよう!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "グループに参加" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "グループDMに参加" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "参加通知" @@ -10620,7 +10623,7 @@ msgstr "最も古い未読メッセージにジャンプ" msgid "Jump to page" msgstr "ページにジャンプ" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "現在にジャンプ" @@ -10690,7 +10693,7 @@ msgstr "キーバインド" msgid "Keyboard" msgstr "キーボード" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "キーボードヒント" @@ -10815,7 +10818,7 @@ msgstr "Plutoniumについて学ぶ" msgid "Leave blank for a random username" msgstr "ランダムなユーザー名の場合は空白のままにしてください" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "もう退出しますか?" msgid "Left" msgstr "退出済み" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "左揃え" @@ -10945,7 +10948,7 @@ msgstr "リンク" msgid "Link" msgstr "リンク" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "チャンネルをリンク" @@ -11027,7 +11030,7 @@ msgstr "BANリストを読み込み中..." msgid "Loading communities..." msgstr "コミュニティを読み込み中..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "画像を読み込み中" @@ -11039,8 +11042,8 @@ msgstr "招待を読み込み中..." msgid "Loading more..." msgstr "さらに読み込み中..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "プレースホルダーを読み込み中" @@ -11064,7 +11067,7 @@ msgstr "テーマを読み込み中..." msgid "Loading verification methods..." msgstr "認証方法を読み込み中..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "読み込み中: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "ローカルでマイクをミュート" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "ブラウザでログインし、表示されたコードを入力して msgid "Log in via browser" msgstr "ブラウザ経由でログイン" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "ブラウザまたはカスタムインスタンス経由でログイン" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "ログアウト" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "{0}台のデバイスからログアウト" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "{sessionCount}台のデバイスからログアウト" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "1台のデバイスからログアウト" @@ -11141,7 +11144,7 @@ msgstr "すべてのデバイスからログアウト" msgid "Log out all other devices" msgstr "他のすべてのデバイスからログアウト" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "他のすべてのデバイスからログアウト" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "18歳以上(NSFW)としてマーク" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "メンション:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "メンション:" msgid "Message" msgstr "メッセージ" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "メッセージ" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "メッセージ @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "メッセージ #" @@ -11838,7 +11842,7 @@ msgstr "メッセージとメディア" msgid "Messages Deleted" msgstr "メッセージを削除しました" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "メッセージの読み込みに失敗しました" @@ -12016,7 +12020,7 @@ msgstr "もっと見る" msgid "More Actions" msgstr "その他のアクション" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "絵文字スロットを増やす" @@ -12028,7 +12032,7 @@ msgstr "その他のオプション" msgid "More Options" msgstr "その他のオプション" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "ステッカースロットを増やす" @@ -12162,8 +12166,8 @@ msgstr "チャンネルをミュート" msgid "Mute Channel" msgstr "チャンネルをミュート" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "{0} までミュート中" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "コミュニティをミュートすると、メンションされない限り未読マーカーや通知が表示されなくなります" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "共通のコミュニティ ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "共通の友達 ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "共通のグループ ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "マイアプリケーション" @@ -12247,7 +12251,7 @@ msgstr "マイアウェサムステッカー" msgid "My Category" msgstr "マイカテゴリー" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "マイデバイス" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "ナビゲーション" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "アカウントが必要ですか?" @@ -12364,7 +12368,7 @@ msgstr "ネットワーク" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "ネットワークエラー" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "コミュニティバナーはありません" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "説明は提供されていません。" @@ -12684,15 +12688,15 @@ msgstr "マイクが検出されません" msgid "No more scheduled messages." msgstr "これ以上スケジュールされたメッセージはありません。" -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "共通のコミュニティは見つかりませんでした。" -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "共通の友達は見つかりませんでした。" -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "共通のグループは見つかりませんでした。" @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "気に入りませんか?この機能はいつでも無効にできます。" #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "通知の上書き" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "このチャンネルを閲覧する権限を持つこのロールのユ msgid "now" msgstr "今" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "今" @@ -13090,7 +13094,7 @@ msgstr "クリック時" msgid "on:" msgstr "オン:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "削除すると、アプリケーションとその認証情報は完全に削除されます。" @@ -13252,7 +13256,7 @@ msgstr "DMのみ開く" msgid "Open Fluxer" msgstr "Fluxerを開く" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "画像をフルビューで開く" @@ -13368,7 +13372,7 @@ msgstr "ビジョナリーコミュニティを開く" msgid "Opening..." msgstr "開いています..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "オペレーター" @@ -13441,7 +13445,7 @@ msgstr "元のメッセージは削除されました" msgid "Other" msgstr "その他" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "その他のデバイス" @@ -13501,7 +13505,7 @@ msgstr "未請求アカウントステータスを上書き" msgid "Override unread gift inventory status" msgstr "未読ギフトインベントリステータスを上書き" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "概要" @@ -13695,7 +13699,7 @@ msgstr "権限" msgid "Permissions granted" msgstr "権限が付与されました" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "個人メモ" @@ -13868,12 +13872,12 @@ msgstr "再生" msgid "Play animated emojis" msgstr "アニメーション絵文字を再生" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "音声を再生" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "報告するメッセージリンクを貼り付けてください。" msgid "Please provide an email address." msgstr "メールアドレスを入力してください。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "再試行するか、アプリケーションリストに戻ってください。" @@ -13989,7 +13993,7 @@ msgstr "Plutonium特典" msgid "Plutonium Subscription" msgstr "Plutoniumサブスクリプション" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "プライバシーダッシュボード" msgid "Privacy Policy" msgstr "プライバシーポリシー" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "このステッカーをストレージとCDNから削除する" msgid "Push Notification Inactive Timeout" msgstr "プッシュ通知非アクティブタイムアウト" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "プッシュ通知" @@ -14412,7 +14416,7 @@ msgstr "リアクション操作が無効" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "リアクション" @@ -14583,7 +14587,7 @@ msgstr "プッシュ購読を更新" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "再生成" @@ -14591,19 +14595,19 @@ msgstr "再生成" msgid "Regenerate backup codes" msgstr "バックアップコードを再生成" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "ボットトークンを再生成しますか?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "クライアントシークレットを再生成しますか?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "再生成すると現在のシークレットが無効になります。古い値を使用しているコードを更新してください。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "再生成すると現在のトークンが無効になります。古い値を使用しているコードを更新してください。" @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "フィルターを削除" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "フィルターを削除" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "報告が正常に送信されました。セーフティチームがす #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "ユーザーを報告" @@ -15105,7 +15109,7 @@ msgstr "要求されたスコープ" msgid "Require 2FA for moderation actions" msgstr "モデレーション操作に2FAを要求" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "ボイスチャンネルに参加するにはダブルクリックを要求" @@ -15144,7 +15148,7 @@ msgstr "Mediumレベルに含まれるすべての条件に加え、サーバー msgid "Requires Plutonium" msgstr "Plutoniumが必要です" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "メッセージの再スケジュール" @@ -15290,11 +15294,11 @@ msgstr "再購読" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "再試行" @@ -15359,7 +15363,7 @@ msgstr "取り消し" msgid "Revoke Ban" msgstr "BANを取り消し" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "デバイスを取り消し" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT}秒巻き戻し" msgid "Right" msgstr "右" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "右揃え" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "メンバーを検索..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "メッセージを検索" @@ -15834,13 +15838,13 @@ msgstr "役割またはメンバーを検索..." msgid "Search saved media" msgstr "保存したメディアを検索" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "検索範囲" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "検索範囲: {0}" @@ -15857,7 +15861,7 @@ msgstr "設定を検索..." msgid "Search stickers..." msgstr "ステッカーを検索..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "検索候補" @@ -15938,7 +15942,7 @@ msgstr "セキュリティキー / パスキー" msgid "Security key verification failed. Please try again." msgstr "セキュリティキーの検証に失敗しました。もう一度お試しください。" -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "現在アカウントにログインしているすべてのデバイスを確認します。認識できないセッションを取り消してください。" @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "アカウントを選択" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "すべて選択" @@ -16040,7 +16044,7 @@ msgstr "リンクからの埋め込みコンテンツのメディアサイズを msgid "Select media size for uploaded attachments" msgstr "アップロードされた添付ファイルのメディアサイズを選択" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "相互表示を選択" @@ -16151,9 +16155,9 @@ msgstr "コードを送信" msgid "Send Code" msgstr "コードを送信" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "フレンドリクエストを送信" @@ -16170,7 +16174,7 @@ msgstr "メッセージを送信 · 右クリックでスケジュール" msgid "Send Message Disabled" msgstr "メッセージ送信無効" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "メッセージを送信する" @@ -16624,7 +16628,7 @@ msgstr "ギフトボタンを表示" msgid "Show inline images and videos" msgstr "インライン画像とビデオを表示" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "アバターなしでタイピングインジケーターのみを表示" @@ -16788,11 +16792,11 @@ msgstr "ギフトをすでに引き換え済みとして表示" msgid "Show this role separately" msgstr "このロールを個別に表示" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "チャンネルリストでユーザーアバター付きのタイピングインジケーターを表示" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "選択したチャンネルでタイピングを表示" @@ -17151,7 +17155,7 @@ msgstr "スペイン語(スペイン)" msgid "Speak" msgstr "話す" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "メッセージを読み上げる" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "共有を開始" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "ビデオ通話を開始" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "音声通話を開始" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "ステッカーの密度" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "ステッカーパック" @@ -17427,7 +17431,7 @@ msgstr "着信音を停止" msgid "Stop Sharing" msgstr "共有を停止" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "発言を停止" @@ -17570,19 +17574,19 @@ msgstr "すべてのロール@メンションを抑制" msgid "Suppress All Role @mentions" msgstr "すべてのロール@メンションを抑制" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "埋め込みを抑制" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "テキスト" msgid "Text (NSFW)" msgstr "テキスト (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "テキストチャンネル" @@ -18028,10 +18032,10 @@ msgstr "この操作を続行するには認証が必要です。" msgid "This application" msgstr "このアプリケーション" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "この添付ファイルは期限切れです" @@ -18039,7 +18043,7 @@ msgstr "この添付ファイルは期限切れです" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "このボットは管理者権限を要求しています。開発者を完全に信頼していない限り、本番アプリにこれを付与することは推奨しません。権限セットを減らすよう依頼することを検討してください。不明な場合はこのページを閉じてください。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "この操作は元に戻せません。アプリケーションを削除すると、そのボットも削除されます。" @@ -18101,7 +18105,7 @@ msgstr "このコミュニティは最大メンバー数に達しており、現 msgid "This community has temporarily disabled invites." msgstr "このコミュニティでは招待が一時的に無効になっています。" -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "このコミュニティでは招待が一時的に無効になっています。後で再度お試しください。" @@ -18178,7 +18182,7 @@ msgstr "この招待は無制限に使用できます。" msgid "This invite link never expires." msgstr "この招待リンクは無期限です。" -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "これは <0>{displayName} の始まりです。フレンドを追加して会話を始めましょう!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "これは <0>{0} とのダイレクトメッセージ履歴の始まりです。" @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "これは@silentメッセージでした。" #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "これは時空連続体に亀裂を生じさせ、元に戻せません。" @@ -18351,7 +18355,7 @@ msgstr "これは時空連続体に亀裂を生じさせ、元に戻せません msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "これにより、ボタンやメニュー項目を含むすべてのお気に入り関連UI要素が非表示になります。既存のお気に入りは保持され、いつでも<0>ユーザー設定 → 外観 → お気に入りから再有効化できます。" -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "これにより、即時送信ではなく既存の予約メッセージが変更されます。" @@ -18387,8 +18391,8 @@ msgstr "これにより、このアカウントの保存されたセッション msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "これにより、現在のカスタムテーマが置き換えられます。後でユーザー設定から編集できます。" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title}のサムネイル" @@ -18485,7 +18489,7 @@ msgstr "トーストは画面の上部中央に表示されます。" msgid "today" msgstr "今日" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "今日" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "別の検索語句またはフィルターを試す" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "もう一度試す" @@ -18737,7 +18741,7 @@ msgstr "別の名前を試すか、スペルを確認してください。" msgid "Try another search term" msgstr "別の検索語句を試す" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "新しい招待を依頼してみてください。" @@ -18864,7 +18868,7 @@ msgstr "タイプスケール" msgid "Type your message here..." msgstr "メッセージをここに入力..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "入力イベント" @@ -18877,11 +18881,11 @@ msgstr "入力インジケーター" msgid "Typing Indicator" msgstr "入力中インジケーター" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "入力インジケーター+アバター" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "入力インジケーターのみ" @@ -18961,11 +18965,11 @@ msgstr "通話を開始できません" msgid "Unable to start email change" msgstr "メールアドレスの変更を開始できません" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "全員に利用不可" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "スタッフ以外は利用不可" @@ -18978,7 +18982,7 @@ msgstr "スタッフ以外は利用不可" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "フレンドリクエストを送る前に、このユーザーのブロ #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "ユーザーのブロックを解除" @@ -19165,7 +19169,7 @@ msgstr "不明なエラー" msgid "Unknown Gift" msgstr "不明なギフト" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "不明な招待" @@ -19205,11 +19209,11 @@ msgstr "unknown-role" msgid "Unlimited" msgstr "無制限" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "無制限の絵文字" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "無制限ステッカー" @@ -19254,7 +19258,7 @@ msgstr "PlutoniumでDMのステッカーをアンロック" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "カテゴリーのミュート解除" msgid "Unmute Channel" msgstr "チャンネルのミュート解除" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "お気に入りのミュート解除" msgid "Unmute User" msgstr "ユーザーのミュート解除" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "名前なし" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "変更するまで" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "未確認のメールアドレス" msgid "Up to 4K/60fps" msgstr "最大4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "更新" @@ -19629,7 +19633,7 @@ msgstr "入場サウンドをアップロード" msgid "Upload Failed" msgstr "アップロード失敗" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "ファイルをアップロード" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "ユーザーがチャンネルを移動" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "ユーザープロフィール" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "ユーザープロフィール: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "値" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "バニティURL" @@ -20059,14 +20063,14 @@ msgstr "バックアップコードを表示する前に認証が必要な場合 #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "認証済みコミュニティ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "認証済みギルド" @@ -20167,8 +20171,8 @@ msgstr "動画品質" msgid "Video Settings" msgstr "動画設定" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "動画サムネイル" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "コードを表示" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "コミュニティプロフィールを表示" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "ギフト在庫を表示" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "グローバルプロフィールを表示" @@ -20329,7 +20333,7 @@ msgstr "違反カテゴリ選択" msgid "Violent or Graphic Content" msgstr "暴力的またはグロテスクなコンテンツ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIPボイス" @@ -20341,7 +20345,7 @@ msgstr "表示ボタン" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "ビジョナリー" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "ボイス通話" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "ボイスチャンネル" @@ -20442,7 +20446,7 @@ msgstr "ボイスチャンネル" msgid "Voice Channel Full" msgstr "ボイスチャンネルが満員です" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "ボイスチャンネルの参加動作" @@ -20559,7 +20563,7 @@ msgstr "現在、このコミュニティに参加できませんでした。" msgid "We couldn't load the invites at this time." msgstr "招待状を現在読み込むことができませんでした。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "このアプリケーションを読み込めませんでした" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Fluxerのサーバーに接続できません。一時的なネットワークの問題や定期メンテナンスの可能性があります。" #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "時空連続体に接続できません。接続を確認してもう一度お試しください。" @@ -20759,7 +20763,7 @@ msgstr "ウィークエンド・ウォーリアーズ" msgid "Welcome and system messages will appear here." msgstr "歓迎メッセージやシステムメッセージがここに表示されます。" -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "おかえりなさい" @@ -20820,7 +20824,7 @@ msgstr "何が起こっていますか?" msgid "What's included in your export:" msgstr "エクスポートに含まれるもの:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "無効時(デフォルト)、現在表示中のチャンネルにタイピングインジケーターは表示されません。" @@ -20836,7 +20840,7 @@ msgstr "有効時、プッシュトゥトークのショートカットを素早 msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "有効時、アプリ全体にデバッグメニューが表示され、メッセージ、チャンネル、ユーザー、コミュニティなどの内部データ構造の生JSONオブジェクトを検査・コピーできます。また、任意のメッセージに対するFluxer MarkdownパーサーのパフォーマンスとASTをデバッグするツールも含まれます。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "有効時、ツールチップポップアップ内でショートカットバッジが非表示になります。" @@ -20868,7 +20872,7 @@ msgstr "有効時、アプリの言語設定ではなくコンピューターの msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "有効時、チャンネルをお気に入り登録でき、お気に入りセクションに表示されます。無効時、お気に入り関連のすべてのUI要素(ボタン、メニュー項目)は非表示になります。既存のお気に入りは保持されます。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "有効時、ボイスチャンネルに参加するにはダブルクリックが必要です。無効時(デフォルト)、シングルクリックで即座にチャンネルに参加します。" @@ -20970,7 +20974,7 @@ msgstr "年額 {yearlyPrice}" msgid "yesterday" msgstr "昨日" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "昨日" @@ -21013,7 +21017,7 @@ msgstr "コミュニティごとのプロフィールを編集中です。この msgid "You are in slowmode. Please wait before sending another message." msgstr "スローモード中です。次のメッセージを送信する前にしばらくお待ちください。" -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "あなたは開発者になりました!" @@ -21113,7 +21117,7 @@ msgstr "リンクとMarkdownを使用してテキストをフォーマットで msgid "You can't add new reactions while you're on timeout." msgstr "タイムアウト中は新しいリアクションを追加できません。" -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "自分自身を友達にすることはできません" @@ -21128,7 +21132,7 @@ msgstr "検索結果のリアクションを操作すると時空連続体が乱 msgid "You can't join while you're on timeout." msgstr "タイムアウト中は参加できません。" -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "モデレーターによってミュートされているため、自身 msgid "You do not have access to the channel where this message was sent." msgstr "このメッセージが送信されたチャンネルにアクセスする権限がありません。" -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "このチャンネルでメッセージを送信する権限がありません。" @@ -21439,7 +21443,7 @@ msgstr "オフラインとして表示されます" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "次の画面でボットに付与する権限を設定します。" -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "ログアウトしたすべてのデバイスで再ログインする必要があります" @@ -21508,7 +21512,7 @@ msgstr "ボイスチャンネルに参加しています" msgid "You're sending messages too quickly" msgstr "メッセージの送信が速すぎます" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 88c92a66..500b2810 100644 --- a/fluxer_app/src/locales/ko/messages.po +++ b/fluxer_app/src/locales/ko/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {#개 항목} other {#개 항목}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {#명 구성원} other {#명 구성원}}" @@ -566,18 +566,18 @@ msgstr "{label} 이미지는 애니메이션을 지원하지 않습니다. JPEG, #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} 회원" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} 회원들" @@ -612,11 +612,11 @@ msgstr "{minutes} 분 {seconds} 초" msgid "{minutes} minutes and 1 second" msgstr "{minutes}분 1초" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} 상호 커뮤니티" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} 상호 커뮤니티들" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "통화 중인 {participantCount} 참여자들" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} 온라인" @@ -650,15 +650,15 @@ msgstr "{remaining}자 남음" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining}자 남음. 플루토늄을 이용하면 최대 {premiumMaxLength}자까지 작성할 수 있어요." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} 회원" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} 회원들" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} 온라인" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone 멘션" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "강조 색상" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "수락" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "친구 요청 수락" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "초대 수락" @@ -1364,8 +1364,8 @@ msgstr "초대 수락" msgid "Accept the incoming call" msgstr "들어오는 통화 받기" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "이 초대를 수락하면 팩이 자동으로 설치됩니다." @@ -1594,7 +1594,7 @@ msgstr "즐겨찾기 채널 추가" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0}를 허용했습니다." msgid "Already have an account?" msgstr "이미 계정이 있으신가요?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "이미 참여함" @@ -2191,7 +2191,7 @@ msgstr "애니메이션 아바타 및 배너" msgid "Animated Avatars Require Plutonium" msgstr "애니메이션 아바타는 Plutonium이 필요합니다" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "애니메이션 배너" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "애니메이션 이모지 ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "애니메이션 GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "애니메이션 GIF 비디오" @@ -2219,7 +2219,7 @@ msgstr "애니메이션 GIF 비디오" msgid "Animated GIF Video" msgstr "애니메이션 GIF 비디오" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "애니메이션 아이콘" @@ -2277,7 +2277,7 @@ msgstr "누구나 이 역할을 @언급할 수 있습니다. \"@everyone/@here msgid "API Endpoint" msgstr "API 엔드포인트" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "애플리케이션 정보" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "애플리케이션 이름" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "애플리케이션 이름은 필수입니다" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "이 메시지의 모든 링크 임베드를 숨기시겠어요? 이 작업은 메시지의 모든 임베드를 숨깁니다." @@ -2603,7 +2602,7 @@ msgstr "첨부파일 {0}" msgid "Attachment Actions" msgstr "첨부파일 작업" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "첨부파일이 만료되었습니다" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "자동 완성" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "자동" @@ -2859,7 +2858,7 @@ msgstr "뒤로" msgid "Back to Applications" msgstr "애플리케이션으로 돌아가기" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "목록으로 돌아가기" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "로그인으로 돌아가기" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "재정의로 돌아가기" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "역할로 돌아가기" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "설정으로 돌아가기" @@ -3003,7 +3002,7 @@ msgstr "차단된 사용자" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "배너" @@ -3096,7 +3095,7 @@ msgstr "프로필 소개 글자 수 제한" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "요청된 봇 범위" msgid "Bot token" msgstr "봇 토큰" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "봇 토큰이 재생성되었습니다. 이전 토큰을 사용하는 코드를 업데이트하세요." @@ -3435,7 +3434,7 @@ msgstr "카메라 설정" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "카메라 설정" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "카메라 설정" msgid "Cancel" msgstr "취소" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "친구 요청 취소" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "조심하세요! 저장되지 않은 변경 사항이 있습니다." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "카테고리" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "카테고리 이름" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "카테고리 설정" @@ -3617,7 +3616,7 @@ msgstr "주의" msgid "Center" msgstr "가운데" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "가운데 정렬됨" @@ -3765,7 +3764,7 @@ msgstr "비트레이트를 {0}(으)로 변경했습니다." msgid "Changed the voice region to {0}." msgstr "음성 지역을 {0}(으)로 변경했습니다." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "채널" @@ -3828,11 +3827,11 @@ msgstr "채널 ID가 클립보드에 복사됨" msgid "Channel link copied" msgstr "채널 링크 복사됨" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "채널 목록 입력 표시 모드" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "채널 목록 입력 표시기" @@ -3891,7 +3890,7 @@ msgstr "채널이 즐겨찾기에서 제거됨" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "채널 설정" @@ -4052,7 +4051,7 @@ msgstr "앱 전반에서 시간 표시 방식 선택." msgid "Choose how typing indicators appear in the channel list" msgstr "채널 목록에서 타이핑 표시기 표시 방식 선택" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "누군가 채널에서 타이핑할 때 채널 목록에 표시되는 타이핑 인디케이터 방식 선택." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "이 선물을 사용하기 위해 계정을 요청하세요." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "친구 요청을 보내기 위해 계정을 요청하세요." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "권한 지우기" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "검색 지우기" msgid "Clear search input" msgstr "검색 입력 지우기" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "선택 지우기" @@ -4314,7 +4313,7 @@ msgstr "소리 옆 업로드 아이콘을 클릭하여 오디오 파일로 커 msgid "Click the verification link in the email." msgstr "이메일의 인증 링크를 클릭하세요." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "메모 추가하려면 클릭" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "선물 받으려면 클릭!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "복사하려면 클릭" @@ -4388,7 +4387,7 @@ msgstr "모든 반응 보기 위해 클릭" msgid "Client secret" msgstr "클라이언트 비밀키" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "클라이언트 비밀키 재생성됨. 이전 비밀키 사용 중인 코드 업데이트하세요." @@ -4649,8 +4648,8 @@ msgstr "커뮤니티가 보호 특성 기반 증오를 조장함" msgid "Community promotes or facilitates illegal activities" msgstr "커뮤니티가 불법 활동을 조장하거나 지원함" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "상황별 메뉴" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "상황별 메뉴는 버튼은 왼쪽 클릭, 다른 요소는 오른쪽 클릭으로 열 수 있습니다. 다양한 메뉴 항목(체크박스, 라디오 버튼, 슬라이더, 하위 메뉴 등)을 보여줍니다." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "채팅에서 웹사이트 링크가 미리보기되는 방식을 제어 msgid "Control how you join voice channels" msgstr "음성 채널 참여 방식 관리" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "커뮤니티 음성 채널 참여 방식 제어" @@ -5012,7 +5011,7 @@ msgstr "스티커 애니메이션 관리" msgid "Control the visibility of favorites throughout the app." msgstr "앱 전체 즐겨찾기 표시 여부 제어" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "도구 설명에 키보드 단축키 힌트 표시 여부 제어" @@ -5071,7 +5070,7 @@ msgstr "복사됨" msgid "Copied to clipboard" msgstr "클립보드에 복사됨" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL이 클립보드에 복사됨" @@ -5149,7 +5148,7 @@ msgstr "파일 링크 복사" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTag 복사" @@ -5157,7 +5156,7 @@ msgstr "FluxerTag 복사" msgid "Copy GIF" msgstr "GIF 복사" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "길드 ID 복사" @@ -5222,7 +5221,7 @@ msgstr "텍스트 복사" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "포근함" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "생성" @@ -5331,14 +5330,14 @@ msgstr "계정용 애플리케이션과 봇을 만들고 관리하세요." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Fluxer Plutonium으로 커스텀 이모지와 스티커 팩을 만들고 공유하세요." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "애플리케이션 만들기" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "애플리케이션 만들기" msgid "Create Category" msgstr "카테고리 만들기" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "{createdAt}에 생성됨" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "{0}이(가) 생성함" @@ -5569,7 +5568,7 @@ msgstr "잘라낸 이미지가 너무 큽니다. 더 작은 영역이나 더 작 msgid "Current Community" msgstr "현재 커뮤니티" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "현재 디바이스" @@ -5606,7 +5605,7 @@ msgstr "지금 1885년에 멈춰 있어서 오프라인으로 보여요" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "현재: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "위험 보조" msgid "Danger secondary clicked!" msgstr "위험 보조 클릭됨!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "위험 구역" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "배터리 및 데이터 사용량을 위해 모바일에서는 기본적으로 꺼집니다." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "내 메시지 모두 삭제" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "애플리케이션 삭제" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "첨부파일 삭제" @@ -6063,7 +6062,7 @@ msgstr "첨부파일 삭제" msgid "Delete Attachment" msgstr "첨부파일 삭제" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "카테고리 삭제" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "채널 삭제" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "미디어 삭제" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "메시지 삭제" @@ -6215,7 +6214,7 @@ msgstr "조밀" msgid "Dense layout" msgstr "조밀한 레이아웃" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "배포됨" @@ -6281,7 +6280,7 @@ msgstr "대상 채널" msgid "Destination URL:" msgstr "대상 URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "분리된 배너" @@ -6362,7 +6361,7 @@ msgstr "다양한 크기(상태 지원)" msgid "Different Sizes & Member Counts" msgstr "다양한 크기 및 멤버 수" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "다이렉트 메시지" @@ -6541,7 +6540,7 @@ msgstr "계정을 비활성화하면 모든 세션에서 로그아웃됩니다. msgid "Disallow @mention." msgstr "@멘션 금지." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "미등록 계정 비허용" @@ -6747,7 +6746,7 @@ msgstr "다이렉트 메시지 목록에서 미리보기 표시 안 함" msgid "Don't show this again" msgstr "다시는 표시하지 않기" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "채널 목록에서 입력 중 표시 안 함" @@ -6760,7 +6759,7 @@ msgstr "채널 목록에서 입력 중 표시 안 함" msgid "Done" msgstr "완료" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "카테고리 편집" msgid "Edit Channel" msgstr "채널 편집" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "이 채널의 역할과 멤버에 대한 덮어쓰기를 편집하세요." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "임베드 스플래시" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "임베드 스플래시 이미지는 애니메이션이 될 수 없습니다. JPEG, PNG 또는 WebP를 사용하세요." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "임베디드 오디오" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "이모지 이름은 최소 2자 이상이어야 하며 영숫자와 밑줄만 사용할 수 있습니다. 허용 파일 형식: JPEG, PNG, WebP, GIF. 이미지를 128x128 픽셀로 압축합니다. 이모지당 최대 크기: {0} KB입니다." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "이모지 팩" @@ -7473,7 +7472,7 @@ msgstr "전화번호 입력" msgid "Enter picture-in-picture" msgstr "PIP 모드로 전환" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "선택 모드로 전환" @@ -7536,7 +7535,7 @@ msgstr "사용하려는 새 이메일을 입력하세요. 다음에 그곳으로 msgid "Enter the SMS code you received." msgstr "받은 SMS 코드를 입력하세요." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "입력하여 <0><1>저장" @@ -7604,7 +7603,7 @@ msgstr "LaTeX 렌더링 오류: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc 키를 누르면 키보드 모드 종료" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "Esc 키를 눌러 <0><1>취소" @@ -7667,7 +7666,7 @@ msgstr "PIP 모드 종료" msgid "Exit Preview" msgstr "미리보기 종료" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "선택 모드 종료" @@ -7701,7 +7700,7 @@ msgstr "만료됨(30일 이내)" msgid "Expired {absolute}" msgstr "{absolute}에 만료됨" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "{earliest}부터 {latest} 사이에 만료됨" @@ -7709,7 +7708,7 @@ msgstr "{earliest}부터 {latest} 사이에 만료됨" msgid "Expired on {date}" msgstr "{date}에 만료됨" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "{earliest}에 만료됨" @@ -7722,7 +7721,7 @@ msgstr "만료" msgid "Expires {absolute} ({relativeText})" msgstr "{absolute}에 만료됩니다({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "{earliest}부터 {latest} 사이에 만료됨" @@ -7730,7 +7729,7 @@ msgstr "{earliest}부터 {latest} 사이에 만료됨" msgid "Expires on {date}" msgstr "{date}에 만료됩니다" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "{earliest}에 만료됩니다" @@ -7766,7 +7765,7 @@ msgstr "표정 팩은 플루토늄 기능입니다" msgid "Expression picker categories" msgstr "표정 선택기 카테고리" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "표정 정리" @@ -7839,10 +7838,6 @@ msgstr "클립보드에 복사하지 못했습니다" msgid "Failed to copy URL" msgstr "URL을 복사하지 못했습니다" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "애플리케이션을 생성하지 못했습니다. 입력을 확인하고 다시 시도하세요." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "역할을 생성하지 못했습니다" @@ -8100,7 +8095,7 @@ msgstr "차단을 해제하지 못했습니다. 다시 시도해 주세요." msgid "Failed to revoke invite" msgstr "초대를 취소하지 못했습니다" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "회전하지 못했습니다. 다시 시도해 주세요." @@ -8413,7 +8408,7 @@ msgstr "피트니스 친구" msgid "Flags" msgstr "플래그" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "유연한 텍스트 채널 이름" @@ -8577,7 +8572,7 @@ msgstr "미식가 친구" msgid "For 1 hour" msgstr "1시간 동안" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1시간 동안" msgid "For 15 minutes" msgstr "15분 동안" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15분 동안" msgid "For 24 hours" msgstr "24시간 동안" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3일 동안" msgid "For 3 hours" msgstr "3시간 동안" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3시간 동안" msgid "For 8 hours" msgstr "8시간 동안" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "구독 잊기" msgid "Forgot Password" msgstr "비밀번호 찾기" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "비밀번호를 잊으셨나요?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT}초 앞으로" msgid "Forward Message" msgstr "메시지 전달" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "전달됨" @@ -9065,7 +9060,7 @@ msgstr "시스템 전체 푸시 투 토크와 기타 기능을 위해 Fluxer 데 #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "이전에 포커스된 텍스트 채널로 돌아가기" msgid "Go forward in navigation history" msgstr "탐색 기록에서 앞으로 이동" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "커뮤니티로 이동" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "그룹 초대" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "그룹 메시지" @@ -9548,7 +9543,7 @@ msgstr "안녕, {username}, 환영해요! 어떤 일이든 해낼 수 있어요. msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "안녕, {username}! 88mph에 도달하면 진짜 대단한 거 볼 수 있어요!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "숨김" @@ -9569,7 +9564,7 @@ msgstr "즐겨찾기 숨기기" msgid "Hide Join Messages" msgstr "참여 메시지 숨기기" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "툴팁의 키보드 힌트 숨기기" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "음소거된 채널 숨기기" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "먼저 데이터를 내보내거나 메시지를 삭제하려면 진행하기 전에 사용자 설정의 개인정보 대시보드 섹션을 방문하세요." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "이미지" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "아이콘이 있는 입력" msgid "Insert emoji" msgstr "이모지 삽입" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "이모지 팩 설치" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "스티커 팩 설치" @@ -10153,7 +10148,7 @@ msgstr "{installedAt}에 설치됨" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "이모지 및 스티커 팩 설치에는 프리미엄 구독이 필요해요." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "즉시 초대" @@ -10286,7 +10281,7 @@ msgstr "초대 링크 설정" msgid "Invite Links" msgstr "초대 링크" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "초대 모달" msgid "Invite modal preview" msgstr "초대 모달 미리보기" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "{0} 초대 링크가 전송됐어요" msgid "Invite sent to {guildName}" msgstr "{guildName}에 초대가 전송되었습니다." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "초대 스플래시" @@ -10354,7 +10349,7 @@ msgstr "{0}에 초대하기" msgid "Invite to Community" msgstr "커뮤니티 초대" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "초대를 사용할 수 없음" @@ -10369,12 +10364,12 @@ msgstr "{0}에게 초대받음." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "{0}#{1}에게 초대받음" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "{inviterTag}에게 초대받음" @@ -10410,12 +10405,12 @@ msgstr "이 커뮤니티에서는 현재 초대가 일시중지돼 있어요" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "미리보기 커뮤니티에서는 초대가 잠겨 있어요. 이메일과 비밀번호를 설정해 계정을 인증하면 초대를 활성화할 수 있어요." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "초대 비활성화" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "초대 비활성화" @@ -10482,13 +10477,13 @@ msgstr "스티커가 있는 커뮤니티에 참여해 시작해 보세요!" msgid "Join call" msgstr "통화 참여" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "커뮤니티 참여" @@ -10497,15 +10492,23 @@ msgstr "커뮤니티 참여" msgid "Join community form" msgstr "커뮤니티 참여 양식" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Fluxer 본사에 참여하기" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "팀과 채팅하고 최신 정보를 유지하려면 Fluxer 본사에 참여하세요!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "그룹 참여" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "그룹 DM 참여" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "참여 알림" @@ -10620,7 +10623,7 @@ msgstr "가장 오래된 읽지 않은 메시지로 이동" msgid "Jump to page" msgstr "페이지로 이동" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "현재로 이동" @@ -10690,7 +10693,7 @@ msgstr "단축키" msgid "Keyboard" msgstr "키보드" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "키보드 힌트" @@ -10815,7 +10818,7 @@ msgstr "Plutonium에 대해 알아보기" msgid "Leave blank for a random username" msgstr "랜덤 사용자 이름을 원하면 비워두세요" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "벌써 떠나시나요?" msgid "Left" msgstr "떠남" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "왼쪽 정렬" @@ -10945,7 +10948,7 @@ msgstr "링크" msgid "Link" msgstr "링크" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "채널 연결" @@ -11027,7 +11030,7 @@ msgstr "차단 목록 로딩 중..." msgid "Loading communities..." msgstr "커뮤니티 로딩 중..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "이미지 로딩 중" @@ -11039,8 +11042,8 @@ msgstr "초대장 로딩 중..." msgid "Loading more..." msgstr "더 로딩 중..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "플레이스홀더 로딩 중" @@ -11064,7 +11067,7 @@ msgstr "테마 로딩 중..." msgid "Loading verification methods..." msgstr "인증 방법 로딩 중..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "로딩 중: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "로컬 음소거" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "브라우저로 로그인한 다음 표시된 코드를 입력해 계정 msgid "Log in via browser" msgstr "브라우저로 로그인" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "브라우저 또는 맞춤 인스턴스로 로그인" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "로그아웃" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "{0}개의 기기 로그아웃" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "{sessionCount} 대의 기기에서 로그아웃" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "1개의 기기 로그아웃" @@ -11141,7 +11144,7 @@ msgstr "모든 기기에서 로그아웃" msgid "Log out all other devices" msgstr "다른 모든 기기에서 로그아웃" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "다른 모든 기기에서 로그아웃" @@ -11181,7 +11184,7 @@ msgstr "로렘 입숨 돌로르 시트 아메트" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "로렘 입숨 돌로르 시트 아메트, 콘셉터 아디피싱 엘리트. 세드 도 에이유스모드 템포르 인시디둔트 우트 라보레 에트 돌레레 마그나 알리쿠아." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "로티" @@ -11351,6 +11354,7 @@ msgstr "18세 이상(성인)으로 표시" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "멘션:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "멘션:" msgid "Message" msgstr "메시지" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "메시지 " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "메시지 @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "메시지 #" @@ -11838,7 +11842,7 @@ msgstr "메시지 및 미디어" msgid "Messages Deleted" msgstr "메시지가 삭제되었습니다" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "메시지 로딩에 실패했습니다" @@ -12016,7 +12020,7 @@ msgstr "더보기" msgid "More Actions" msgstr "추가 작업" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "추가 이모지 슬롯" @@ -12028,7 +12032,7 @@ msgstr "추가 옵션" msgid "More Options" msgstr "더 많은 옵션" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "추가 스티커 슬롯" @@ -12162,8 +12166,8 @@ msgstr "채널 음소거" msgid "Mute Channel" msgstr "채널 음소거" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "{0}까지 음소거됨" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "커뮤니티 음소거 시 언급되지 않는 한 안 읽음 표시나 알림이 나타나지 않습니다" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "상호 커뮤니티 ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "상호 친구 ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "상호 그룹 ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "내 애플리케이션" @@ -12247,7 +12251,7 @@ msgstr "내 멋진 스티커" msgid "My Category" msgstr "내 카테고리" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "내 기기" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "내비게이션" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "계정이 필요하신가요?" @@ -12364,7 +12368,7 @@ msgstr "네트워크" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "네트워크 오류" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "커뮤니티 배너 없음" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "설명이 제공되지 않았습니다." @@ -12684,15 +12688,15 @@ msgstr "마이크가 감지되지 않았습니다" msgid "No more scheduled messages." msgstr "예약된 메시지가 더 이상 없습니다." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "공통 커뮤니티를 찾을 수 없습니다." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "공통 친구를 찾을 수 없습니다." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "공통 그룹을 찾을 수 없습니다." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "마음에 안 드시나요? 언제든지 이 기능을 끌 수 있어요." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "알림 무시 설정" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "이 채널을 볼 권한이 있는 이 역할의 사용자에게 알립 msgid "now" msgstr "지금" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "지금" @@ -13090,7 +13094,7 @@ msgstr "클릭 시" msgid "on:" msgstr "켬:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "삭제하면 애플리케이션과 자격 증명이 영구적으로 제거됩니다." @@ -13252,7 +13256,7 @@ msgstr "DM만 열기" msgid "Open Fluxer" msgstr "Fluxer 열기" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "이미지를 전체 보기로 열기" @@ -13368,7 +13372,7 @@ msgstr "Visionary 커뮤니티 열기" msgid "Opening..." msgstr "여는 중..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "운영자" @@ -13441,7 +13445,7 @@ msgstr "원본 메시지가 삭제되었습니다" msgid "Other" msgstr "기타" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "다른 기기" @@ -13501,7 +13505,7 @@ msgstr "청구되지 않은 계정 상태 재설정" msgid "Override unread gift inventory status" msgstr "읽지 않은 선물 인벤토리 상태 재설정" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "개요" @@ -13695,7 +13699,7 @@ msgstr "권한" msgid "Permissions granted" msgstr "권한 부여됨" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "개인 메모" @@ -13868,12 +13872,12 @@ msgstr "재생" msgid "Play animated emojis" msgstr "움직이는 이모지 재생" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "오디오 재생" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "신고할 메시지 링크를 붙여넣으세요." msgid "Please provide an email address." msgstr "이메일 주소를 입력하세요." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "다시 시도하거나 애플리케이션 목록으로 돌아가세요." @@ -13989,7 +13993,7 @@ msgstr "플루토늄 혜택" msgid "Plutonium Subscription" msgstr "플루토늄 구독" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "개인정보 대시보드" msgid "Privacy Policy" msgstr "개인정보 처리방침" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "이 스티커를 저장소와 CDN에서 제거하세요" msgid "Push Notification Inactive Timeout" msgstr "푸시 알림 비활성 시간 초과" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "푸시 알림" @@ -14412,7 +14416,7 @@ msgstr "반응 상호작용 비활성화됨" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "반응" @@ -14583,7 +14587,7 @@ msgstr "푸시 구독 새로고침" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "재생성" @@ -14591,19 +14595,19 @@ msgstr "재생성" msgid "Regenerate backup codes" msgstr "백업 코드 재생성" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "봇 토큰을 재생성하시겠습니까?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "클라이언트 시크릿을 재생성하시겠습니까?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "재생성하면 현재 시크릿이 무효화됩니다. 기존 값을 사용하는 코드를 모두 업데이트하세요." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "재생성하면 현재 토큰이 무효화됩니다. 기존 값을 사용하는 코드를 모두 업데이트하세요." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "필터 제거" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "필터 제거" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "신고가 성공적으로 제출되었습니다. 안전 팀에서 곧 #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "사용자 신고" @@ -15105,7 +15109,7 @@ msgstr "요청한 범위" msgid "Require 2FA for moderation actions" msgstr "운영자 조치에 2단계 인증 필수" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "음성 채널 참여 시 더블 클릭 필요" @@ -15144,7 +15148,7 @@ msgstr "중간 조건에 추가로 서버의 멤버로 최소 10분 이상 머 msgid "Requires Plutonium" msgstr "Plutonium 필요" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "메시지 다시 예약" @@ -15290,11 +15294,11 @@ msgstr "다시 가입" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "다시 시도" @@ -15359,7 +15363,7 @@ msgstr "취소" msgid "Revoke Ban" msgstr "차단 해제" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "기기 취소" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT}초 뒤로" msgid "Right" msgstr "오른쪽" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "오른쪽 정렬" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "멤버 검색..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "메시지 검색" @@ -15834,13 +15838,13 @@ msgstr "역할 또는 멤버 검색..." msgid "Search saved media" msgstr "저장된 미디어 검색" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "검색 범위" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "검색 범위: {0}" @@ -15857,7 +15861,7 @@ msgstr "설정 검색..." msgid "Search stickers..." msgstr "스티커 검색..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "검색 제안" @@ -15938,7 +15942,7 @@ msgstr "보안 키 / 패스키" msgid "Security key verification failed. Please try again." msgstr "보안 키 확인에 실패했습니다. 다시 시도하세요." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "현재 로그인된 모든 기기를 확인하세요. 알 수 없는 세션은 해제하세요." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "계정 선택" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "전체 선택" @@ -16040,7 +16044,7 @@ msgstr "링크에서 가져오는 임베드 콘텐츠의 미디어 크기 선택 msgid "Select media size for uploaded attachments" msgstr "업로드된 첨부파일 미디어 크기 선택" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "공통 보기 선택" @@ -16151,9 +16155,9 @@ msgstr "코드 보내기" msgid "Send Code" msgstr "코드 보내기" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "친구 요청 보내기" @@ -16170,7 +16174,7 @@ msgstr "메시지 보내기 · 오른쪽 클릭하여 예약" msgid "Send Message Disabled" msgstr "메시지 보내기 비활성화됨" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "메시지 보내기" @@ -16624,7 +16628,7 @@ msgstr "선물 버튼 표시" msgid "Show inline images and videos" msgstr "인라인 이미지 및 비디오 표시" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "아바타 없이 타이핑 표시만 보기" @@ -16788,11 +16792,11 @@ msgstr "선물을 이미 사용한 것으로 표시" msgid "Show this role separately" msgstr "이 역할을 별도로 표시" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "채널 목록에서 사용자 아바타와 함께 입력 중 표시" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "선택한 채널에서 입력 중 표시" @@ -17151,7 +17155,7 @@ msgstr "스페인어(스페인)" msgid "Speak" msgstr "말하기" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "메시지 읽기" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "공유 시작" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "영상 통화 시작" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "음성 통화 시작" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "스티커 밀도" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "스티커 팩" @@ -17427,7 +17431,7 @@ msgstr "벨소리 중지" msgid "Stop Sharing" msgstr "공유 중단" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "말하기 중지" @@ -17570,19 +17574,19 @@ msgstr "모든 역할 @멘션 알림 끄기" msgid "Suppress All Role @mentions" msgstr "모든 역할 @멘션 알림 끄기" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "임베드 숨기기" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "텍스트" msgid "Text (NSFW)" msgstr "텍스트(NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "텍스트 채널" @@ -18028,10 +18032,10 @@ msgstr "이 작업을 계속하려면 인증이 필요합니다." msgid "This application" msgstr "이 애플리케이션" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "첨부 파일이 만료되었습니다" @@ -18039,7 +18043,7 @@ msgstr "첨부 파일이 만료되었습니다" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "이 봇은 관리자 권한을 요청 중입니다. 개발자를 완전히 신뢰하지 않는 이상 운영 앱에 이를 허용하는 것을 권장하지 않습니다. 권한 범위를 줄여 요청하도록 요청해 보세요. 확실하지 않다면 이 페이지를 닫아 주세요." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "이 작업은 되돌릴 수 없습니다. 애플리케이션을 삭제하면 봇도 함께 삭제됩니다." @@ -18101,7 +18105,7 @@ msgstr "이 커뮤니티는 최대 멤버 수에 도달해 현재 신규 멤버 msgid "This community has temporarily disabled invites." msgstr "이 커뮤니티는 초대를 일시적으로 비활성화했습니다." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "이 커뮤니티는 초대를 일시적으로 비활성화했습니다. 나중에 다시 시도해 보세요." @@ -18178,7 +18182,7 @@ msgstr "이 초대는 무제한으로 사용할 수 있습니다." msgid "This invite link never expires." msgstr "이 초대 링크는 만료되지 않습니다." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "이건 <0>{displayName}의 시작입니다. 친구를 추가해 대화를 시작해 보세요!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "이건 <0>{0}와의 다이렉트 메시지 기록 시작입니다." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "이 메시지는 @silent 메시지였습니다." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "이 작업은 시공간 연속성에 균열을 만들며 되돌릴 수 없습니다." @@ -18351,7 +18355,7 @@ msgstr "이 작업은 시공간 연속성에 균열을 만들며 되돌릴 수 msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "이 작업은 버튼과 메뉴 항목을 포함한 즐겨찾기 관련 UI 요소를 모두 숨깁니다. 기존 즐겨찾기는 유지되며 언제든지 <0>사용자 설정 → 모양 및 느낌 → 즐겨찾기에서 다시 활성화할 수 있습니다." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "이 작업은 즉시 전송하는 대신 기존 예약 메시지를 수정합니다." @@ -18387,8 +18391,8 @@ msgstr "이 작업은 이 계정의 저장된 세션을 제거합니다." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "이 작업은 현재 커스텀 테마를 교체합니다. 나중에 사용자 설정에서 편집할 수 있습니다." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title}의 썸네일" @@ -18485,7 +18489,7 @@ msgstr "토스트는 화면 상단 중앙에 나타납니다." msgid "today" msgstr "오늘" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "오늘" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "다른 검색어나 필터를 시도하세요" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "다시 시도" @@ -18737,7 +18741,7 @@ msgstr "다른 이름을 사용하거나 철자를 확인하세요." msgid "Try another search term" msgstr "다른 검색어를 시도하세요" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "새 초대를 요청해 보세요." @@ -18864,7 +18868,7 @@ msgstr "타입 스케일" msgid "Type your message here..." msgstr "메시지를 입력하세요..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "입력 이벤트" @@ -18877,11 +18881,11 @@ msgstr "입력 표시기" msgid "Typing Indicator" msgstr "입력 중 표시기" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "입력 표시기 + 아바타" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "입력 표시기만" @@ -18961,11 +18965,11 @@ msgstr "통화를 시작할 수 없습니다" msgid "Unable to start email change" msgstr "이메일 변경을 시작할 수 없습니다" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "모두에게 사용할 수 없음" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "직원만 사용 가능" @@ -18978,7 +18982,7 @@ msgstr "직원만 사용 가능" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "친구 요청을 보내기 전에 이 사용자의 차단을 해제하 #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "사용자 차단 해제" @@ -19165,7 +19169,7 @@ msgstr "알 수 없는 오류" msgid "Unknown Gift" msgstr "알 수 없는 선물" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "알 수 없는 초대" @@ -19205,11 +19209,11 @@ msgstr "알 수 없는 역할" msgid "Unlimited" msgstr "무제한" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "무제한 이모지" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "무제한 스티커" @@ -19254,7 +19258,7 @@ msgstr "Plutonium으로 DM에서 스티커를 잠금 해제하세요" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "카테고리 음소거 해제" msgid "Unmute Channel" msgstr "채널 음소거 해제" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "즐겨찾기 음소거 해제" msgid "Unmute User" msgstr "사용자 음소거 해제" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "이름 없음" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "제가 바꿀 때까지" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "인증되지 않은 이메일" msgid "Up to 4K/60fps" msgstr "최대 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "업데이트" @@ -19629,7 +19633,7 @@ msgstr "입장 사운드 업로드" msgid "Upload Failed" msgstr "업로드 실패" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "파일 업로드" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "사용자가 채널을 이동했어요." #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "사용자 프로필" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "사용자 프로필: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "값" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "맞춤 URL" @@ -20059,14 +20063,14 @@ msgstr "백업 코드를 보기 전에 인증이 필요할 수 있어요." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "인증된 커뮤니티" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "인증된 길드" @@ -20167,8 +20171,8 @@ msgstr "비디오 품질" msgid "Video Settings" msgstr "비디오 설정" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "비디오 썸네일" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "코드 보기" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "커뮤니티 프로필 보기" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "선물 인벤토리 보기" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "글로벌 프로필 보기" @@ -20329,7 +20333,7 @@ msgstr "위반 카테고리 선택" msgid "Violent or Graphic Content" msgstr "폭력적 또는 노골적인 콘텐츠" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP 음성" @@ -20341,7 +20345,7 @@ msgstr "보이는 버튼" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "음성 통화" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "음성 채널" @@ -20442,7 +20446,7 @@ msgstr "음성 채널" msgid "Voice Channel Full" msgstr "음성 채널이 꽉 찼습니다" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "음성 채널 참여 방식" @@ -20559,7 +20563,7 @@ msgstr "현재 이 커뮤니티에 참여할 수 없습니다." msgid "We couldn't load the invites at this time." msgstr "초대장을 지금 불러올 수 없습니다." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "이 애플리케이션을 불러올 수 없습니다" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Fluxer 서버에 연결하는 데 문제가 있습니다. 일시적인 네트워크 이슈이거나 예정된 점검일 수 있습니다." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "시공간 연속체와 연결하는 데 문제가 있습니다. 연결 상태를 확인하고 다시 시도해 주세요." @@ -20759,7 +20763,7 @@ msgstr "주말 전사들" msgid "Welcome and system messages will appear here." msgstr "환영 메시지와 시스템 메시지가 여기 표시됩니다." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "다시 오신 것을 환영해요" @@ -20820,7 +20824,7 @@ msgstr "무슨 일이 일어나고 있나요?" msgid "What's included in your export:" msgstr "내보내기에 포함된 항목:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "비활성화(기본)하면 현재 보고 있는 채널에 입력 중 표시가 나타나지 않습니다." @@ -20836,7 +20840,7 @@ msgstr "활성화하면 푸시 투 토크 단축키를 빠르게 눌러도 다 msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "활성화하면 앱 전체에서 디버깅 메뉴가 표시되어 메시지, 채널, 사용자, 커뮤니티 같은 내부 데이터 구조의 JSON 객체를 살펴보고 복사할 수 있습니다. 또한 Fluxer 마크다운 파서 성능 및 특정 메시지의 AST를 디버그하는 도구도 포함됩니다." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "활성화하면 툴팁 팝업에서 단축키 배지가 숨겨집니다." @@ -20868,7 +20872,7 @@ msgstr "활성화하면 앱 언어 설정 대신 컴퓨터 로케일을 사용 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "활성화하면 채널을 즐겨찾기할 수 있으며 즐겨찾기 섹션에 표시됩니다. 비활성화하면 즐겨찾기 관련 UI 요소(버튼, 메뉴 항목 등)가 모두 숨겨집니다. 기존 즐겨찾기는 유지됩니다." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "활성화하면 음성 채널을 더블 클릭해야 참여할 수 있습니다. 비활성화(기본)하면 단일 클릭으로 채널에 즉시 참여합니다." @@ -20970,7 +20974,7 @@ msgstr "연간 {yearlyPrice}" msgid "yesterday" msgstr "어제" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "어제" @@ -21013,7 +21017,7 @@ msgstr "커뮤니티별 프로필을 수정 중입니다. 이 프로필은 이 msgid "You are in slowmode. Please wait before sending another message." msgstr "슬로우모드 중입니다. 다음 메시지를 보내기 전에 잠시 기다려 주세요." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "이제 개발자가 되셨습니다!" @@ -21113,7 +21117,7 @@ msgstr "링크와 마크다운을 사용해 텍스트를 꾸밀 수 있습니다 msgid "You can't add new reactions while you're on timeout." msgstr "타임아웃 중에는 새로운 반응을 추가할 수 없습니다." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "자기 자신과 친구가 될 수 없습니다" @@ -21128,7 +21132,7 @@ msgstr "검색 결과에서 반응과 상호작용할 수 없습니다. 시공 msgid "You can't join while you're on timeout." msgstr "타임아웃 중에는 참여할 수 없습니다." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "관리자에게 음소거되어 음소거를 해제할 수 없습니다. msgid "You do not have access to the channel where this message was sent." msgstr "이 메시지가 보내진 채널에 접근 권한이 없습니다." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "이 채널에서 메시지를 보낼 권한이 없습니다." @@ -21439,7 +21443,7 @@ msgstr "오프라인으로 표시됩니다" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "다음 화면에서 봇이 받을 권한을 설정합니다." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "로그아웃된 모든 기기에서 다시 로그인해야 합니다" @@ -21508,7 +21512,7 @@ msgstr "음성 채널에 참여 중입니다" msgid "You're sending messages too quickly" msgstr "메시지를 너무 빠르게 보내고 있습니다" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 32b52142..2c04dc67 100644 --- a/fluxer_app/src/locales/lt/messages.po +++ b/fluxer_app/src/locales/lt/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# elementas} other {# elementai}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# narys} other {# nariai}}" @@ -566,18 +566,18 @@ msgstr "{label} vaizdai negali būti animuoti. Naudokite JPEG, PNG arba WebP." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Narys" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Nariai" @@ -612,11 +612,11 @@ msgstr "{minutes} minutės ir {seconds} sekundės" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutės ir 1 sekundė" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} bendruomenė" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} bendruomenės" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} dalyviai pokalbyje" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Prisijungę" @@ -650,15 +650,15 @@ msgstr "Liko {remaining} simbolių" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Liko {remaining} simbolių. Įsigykite Plutonium, kad galėtumėte rašyti iki {premiumMaxLength} simbolių." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Narys" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Nariai" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Prisijungę" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone paminėjimai" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Akcento spalva" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Priimti" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Priimti draugų užklausą" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Priimti kvietimą" @@ -1364,8 +1364,8 @@ msgstr "Priimti kvietimą" msgid "Accept the incoming call" msgstr "Priimti gaunamą skambutį" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Priėmus šį kvietimą, paketas bus įdiegtas automatiškai." @@ -1594,7 +1594,7 @@ msgstr "Pridėti mėgstamus kanalus" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Leista {0}." msgid "Already have an account?" msgstr "Jau turite paskyrą?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Jau prisijungta" @@ -2191,7 +2191,7 @@ msgstr "Animuoti avatarai ir reklamjuostės" msgid "Animated Avatars Require Plutonium" msgstr "Animuotiems avatarams reikia Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animuota reklamjuostė" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animuoti emodžiai ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animuotas GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animuotas GIF vaizdo įrašas" @@ -2219,7 +2219,7 @@ msgstr "Animuotas GIF vaizdo įrašas" msgid "Animated GIF Video" msgstr "Animuotas GIF vaizdo įrašas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animuota piktograma" @@ -2277,7 +2277,7 @@ msgstr "Bet kas gali @minėti šį vaidmenį. Nariai su \"Naudoti @everyone/@her msgid "API Endpoint" msgstr "API galutinis taškas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Programos informacija" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Programos pavadinimas" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Programos pavadinimas yra privalomas" @@ -2554,7 +2553,7 @@ msgstr "Ar tikrai norite atšaukti blokavimą <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Priedas {0}" msgid "Attachment Actions" msgstr "Priedų veiksmai" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Priedas nebegalioja" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automatinis užbaigimas" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatinis" @@ -2859,7 +2858,7 @@ msgstr "Atgal" msgid "Back to Applications" msgstr "Atgal į programas" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Atgal į sąrašą" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Atgal į prisijungimą" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Atgal į perrašymus" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Atgal į vaidmenis" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Atgal į nustatymus" @@ -3003,7 +3002,7 @@ msgstr "Užblokuoti vartotojai" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Baneris" @@ -3096,7 +3095,7 @@ msgstr "Biografijos simbolių limitas" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Užklaustas boto apimtis" msgid "Bot token" msgstr "Boto prieigos raktas" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Boto prieigos raktas atnaujintas. Atnaujinkite bet kokį kodą, kuris naudoja senąjį raktą." @@ -3435,7 +3434,7 @@ msgstr "Kameros nustatymai" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kameros nustatymai" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kameros nustatymai" msgid "Cancel" msgstr "Atšaukti" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Atšaukti draugų užklausą" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Atsargiai! Turite neišsaugotų pakeitimų." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategorija" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategorijos pavadinimas" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategorijos nustatymai" @@ -3617,7 +3616,7 @@ msgstr "Įspėjimas" msgid "Center" msgstr "Centras" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centruota" @@ -3765,7 +3764,7 @@ msgstr "Bitų dažnis pakeistas į {0}." msgid "Changed the voice region to {0}." msgstr "Balso regionas pakeistas į {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanalas" @@ -3828,11 +3827,11 @@ msgstr "Kanalo ID nukopijuotas į iškarpinę" msgid "Channel link copied" msgstr "Kanalo nuoroda nukopijuota" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Kanalų sąrašo rašymo indikatoriaus veiksenos" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Kanalų sąrašo rašymo indikatoriai" @@ -3891,7 +3890,7 @@ msgstr "Kanalas pašalintas iš mėgstamų" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanalo nustatymai" @@ -4052,7 +4051,7 @@ msgstr "Pasirinkite, kaip laikai rodomi visoje programėlėje." msgid "Choose how typing indicators appear in the channel list" msgstr "Pasirinkite, kaip rašymo indikatoriai atrodo kanalų sąraše" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Pasirinkite, kaip rašymo indikatoriai atrodo kanalų sąraše, kai kažkas rašo kanale." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Paimk savo paskyrą, kad išpirktum šią dovaną." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Paimk savo paskyrą, kad siųstum draugo užklausas." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Išvalyti leidimus" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Išvalyti paiešką" msgid "Clear search input" msgstr "Išvalyti paieškos įvestį" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Išvalyti pasirinkimą" @@ -4314,7 +4313,7 @@ msgstr "Spustelėkite įkėlimo piktogramą šalia bet kurio garso, kad jį prit msgid "Click the verification link in the email." msgstr "Spustelėkite patvirtinimo nuorodą el. laiške." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Spustelėkite, kad pridėtumėte pastabą" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Spustelėkite, kad gautumėte savo dovaną!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Spustelėkite, kad nukopijuotumėte" @@ -4388,7 +4387,7 @@ msgstr "Spustelėkite, kad peržiūrėtumėte visas reakcijas" msgid "Client secret" msgstr "Kliento slaptažodis" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Kliento slaptažodis atkurtas. Atnaujinkite bet kurį kodą, naudojantį seną slaptažodį." @@ -4649,8 +4648,8 @@ msgstr "Bendruomenė propaguoja neapykantą pagal saugomas savybes" msgid "Community promotes or facilitates illegal activities" msgstr "Bendruomenė propaguoja ar palengvina neteisėtą veiklą" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontekstiniai meniu" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontekstiniai meniu gali būti atidaromi kairiuoju paspaudimu (ant mygtukų) arba dešiniuoju paspaudimu (ant kitų elementų). Tai demonstruoja įvairius meniu elementus, įskaitant žymimąsias dėžutes, pasirinkimo mygtukus, slankiklius ir submeniu." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontroliuokite, kaip svetainių nuorodos rodomos pokalbyje" msgid "Control how you join voice channels" msgstr "Valdyti, kaip prisijungi prie balso kanalų" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Valdykite, kaip prisijungiate prie balso kanalų bendruomenėse." @@ -5012,7 +5011,7 @@ msgstr "Valdyti lipdukų animacijas" msgid "Control the visibility of favorites throughout the app." msgstr "Valdykite mėgstamųjų matomumą visoje programėlėje." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Valdykite, ar klaviatūros trumpinių užuominos rodomos įrankių užuominose." @@ -5071,7 +5070,7 @@ msgstr "Nukopijuota" msgid "Copied to clipboard" msgstr "Nukopijuota į mainų sritį" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Nukopijuotas URL į mainų sritį" @@ -5149,7 +5148,7 @@ msgstr "Kopijuoti failo nuorodą" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopijuoti FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopijuoti FluxerTag" msgid "Copy GIF" msgstr "Kopijuoti GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopijuoti gildijos ID" @@ -5222,7 +5221,7 @@ msgstr "Kopijuoti tekstą" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Jaukus" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Sukurti" @@ -5331,14 +5330,14 @@ msgstr "Kurkite ir tvarkykite programas bei botus savo paskyrai." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Kurkite ir dalinkitės pasirinktiniais emoji bei lipdukų rinkiniais su Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Sukurti programą" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Sukurti programą" msgid "Create Category" msgstr "Sukurti kategoriją" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Sukurta {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Sukurta {0}" @@ -5569,7 +5568,7 @@ msgstr "Apkirstas paveikslėlis per didelis. Pasirinkite mažesnę sritį arba m msgid "Current Community" msgstr "Dabartinė bendruomenė" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dabartinis įrenginys" @@ -5606,7 +5605,7 @@ msgstr "Šiuo metu įstrigęs 1885-aisiais, atrodo neprisijungęs" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Šiuo metu: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Pavojaus antrinis" msgid "Danger secondary clicked!" msgstr "Pavojaus antrinis paspaustas!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Pavojaus zona" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Ištrinti visas mano žinutes" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Ištrinti programą" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Ištrinti prisegtuką" @@ -6063,7 +6062,7 @@ msgstr "Ištrinti prisegtuką" msgid "Delete Attachment" msgstr "Ištrinti prisegtuką" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Ištrinti kategoriją" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Ištrinti kanalą" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Ištrinti mediją" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Ištrinti žinutę" @@ -6215,7 +6214,7 @@ msgstr "Tankus" msgid "Dense layout" msgstr "Tankus išdėstymas" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Įdiegta" @@ -6281,7 +6280,7 @@ msgstr "Paskirties kanalas" msgid "Destination URL:" msgstr "Paskirties URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Atskirtas reklamjuostis" @@ -6362,7 +6361,7 @@ msgstr "Skirtingi dydžiai (būsenos palaikymas)" msgid "Different Sizes & Member Counts" msgstr "Skirtingi dydžiai ir narių skaičiai" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "tiesioginė žinutė" @@ -6541,7 +6540,7 @@ msgstr "Paskyros išjungimas atjungs jus iš visų sesijų. Savo paskyrą galite msgid "Disallow @mention." msgstr "Drausti @minėjimą." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Drausti nepaimtas paskyras" @@ -6747,7 +6746,7 @@ msgstr "Nerodyti žinučių peržiūrų DM sąraše" msgid "Don't show this again" msgstr "Daugiau šito nerodyti" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Nerodyti rašymo indikatorių kanalų sąraše" @@ -6760,7 +6759,7 @@ msgstr "Nerodyti rašymo indikatorių kanalų sąraše" msgid "Done" msgstr "Atlikta" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Redaguoti kategoriją" msgid "Edit Channel" msgstr "Redaguoti kanalą" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Redaguoti rolių ir narių perrašymus šiame kanale." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Įterpti splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Įterptos splash nuotraukos negali būti animuotos. Naudokite JPEG, PNG arba WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Įterptas garsas" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Jaustukų pavadinimai turi būti bent 2 simbolių ilgio ir gali būti sudaryti tik iš raidžių, skaičių ir apatinių brūkšnių. Leidžiami failų tipai: JPEG, PNG, WebP, GIF. Mes suspaudžiame paveikslėlius iki 128x128 pikselių. Maksimalus dydis: {0} KB vienam jaustukui." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Jaustukų paketas" @@ -7473,7 +7472,7 @@ msgstr "Įveskite telefono numerį" msgid "Enter picture-in-picture" msgstr "Įjungti vaizdo vaizde režimą" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Įeiti į pasirinkimo režimą" @@ -7536,7 +7535,7 @@ msgstr "Įveskite naują el. pašto adresą, kurį norite naudoti. Toliau ten nu msgid "Enter the SMS code you received." msgstr "Įveskite gautą SMS kodą." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "spauskite enter, kad <0><1>įrašytumėte" @@ -7604,7 +7603,7 @@ msgstr "Klaida atvaizduojant LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape mygtukas išeina iš klaviatūros režimo" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "paspauskite esc, kad <0><1>atšauktumėte" @@ -7667,7 +7666,7 @@ msgstr "Išeiti iš vaizdo-vaizde" msgid "Exit Preview" msgstr "Išeiti iš peržiūros" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Išeiti iš pasirinkimo režimo" @@ -7701,7 +7700,7 @@ msgstr "Pasibaigęs (per pastarąsias 30 dienų)" msgid "Expired {absolute}" msgstr "Pasibaigęs {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Pasibaigęs tarp {earliest} ir {latest}" @@ -7709,7 +7708,7 @@ msgstr "Pasibaigęs tarp {earliest} ir {latest}" msgid "Expired on {date}" msgstr "Pasibaigęs {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Pasibaigęs {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Baigsis" msgid "Expires {absolute} ({relativeText})" msgstr "Baigsis {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Baigsis tarp {earliest} ir {latest}" @@ -7730,7 +7729,7 @@ msgstr "Baigsis tarp {earliest} ir {latest}" msgid "Expires on {date}" msgstr "Baigsis {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Baigsis {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Išraiškos paketai yra Plutonium funkcija" msgid "Expression picker categories" msgstr "Išraiškų pasirinkimo kategorijos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Išraiškų valymas" @@ -7839,10 +7838,6 @@ msgstr "Nepavyko nukopijuoti į iškarpinę" msgid "Failed to copy URL" msgstr "Nepavyko nukopijuoti URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Nepavyko sukurti programėlės. Patikrinkite savo įvestį ir bandykite dar kartą." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Nepavyko sukurti rolės" @@ -8100,7 +8095,7 @@ msgstr "Nepavyko atšaukti blokavimo. Bandykite dar kartą." msgid "Failed to revoke invite" msgstr "Nepavyko atšaukti kvietimo" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Nepavyko pasukti. Bandykite dar kartą." @@ -8413,7 +8408,7 @@ msgstr "Fitness draugai" msgid "Flags" msgstr "Vėliavos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Lankstūs tekstinių kanalų pavadinimai" @@ -8577,7 +8572,7 @@ msgstr "Maisto draugai" msgid "For 1 hour" msgstr "1 valandai" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 valandai" msgid "For 15 minutes" msgstr "15 minučių" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 minučių" msgid "For 24 hours" msgstr "24 valandoms" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 dienoms" msgid "For 3 hours" msgstr "3 valandoms" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 valandoms" msgid "For 8 hours" msgstr "8 valandoms" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Pamiršti prenumeratas" msgid "Forgot Password" msgstr "Pamiršote slaptažodį" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Pamiršote slaptažodį?" @@ -8795,7 +8790,7 @@ msgstr "Persiųsti {DEFAULT_SEEK_AMOUNT} sekundžių" msgid "Forward Message" msgstr "Persiųsti žinutę" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Persiūsta" @@ -9065,7 +9060,7 @@ msgstr "Gaukite Fluxer darbalaukio programą visos sistemos paspausti-kalbėti f #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Grįžti į anksčiau pasirinktą teksto kanalą" msgid "Go forward in navigation history" msgstr "Eiti pirmyn naršymo istorijoje" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Eiti į Bendruomenę" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Grupės pakvietimai" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Grupės žinutė" @@ -9548,7 +9543,7 @@ msgstr "Ei, {username}, sveiki atvykę! Galite pasiekti bet ką." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Ei, {username}! Kai pasieks 88 mylių per valandą, pamatysite rimtų dalykų!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Paslėpta" @@ -9569,7 +9564,7 @@ msgstr "Slėpti mėgstamus" msgid "Hide Join Messages" msgstr "Slėpti prisijungimo žinutes" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Slėpti klaviatūros užuominas įrankių užuominose" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Slėpti nutildytus kanalus" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Jei norite pirmiausia eksportuoti savo duomenis arba ištrinti savo žinutes, prieš tęsdami apsilankykite Privatumo skydelio skiltyje Vartotojo nustatymai." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "paveikslėlis" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Įvestys su piktogramomis" msgid "Insert emoji" msgstr "Įterpti jaustuką" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Įdiegti jaustukų rinkinį" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Įdiegti lipdukų rinkinį" @@ -10153,7 +10148,7 @@ msgstr "Įdiegta {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Jaustukų ir lipdukų rinkinių diegimui reikalinga premium prenumerata." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Momentiniai kvietimai" @@ -10286,7 +10281,7 @@ msgstr "Pakvietimo nuorodos nustatymai" msgid "Invite Links" msgstr "Pakvietimo nuorodos" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Pakvietimo modalinis langas" msgid "Invite modal preview" msgstr "Pakvietimo modalinio lango peržiūra" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Pakvietimas išsiųstas {0}" msgid "Invite sent to {guildName}" msgstr "Pakvietimas išsiųstas {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Pakvietimo užuomazga" @@ -10354,7 +10349,7 @@ msgstr "Pakviesti į {0}" msgid "Invite to Community" msgstr "Pakviesti į bendruomenę" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Pakvietimas neprieinamas" @@ -10369,12 +10364,12 @@ msgstr "Pakviestas(-a) {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Pakviestas(-a) {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Pakviestas(-a) {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Pakvietimai šioje bendruomenėje šiuo metu sustabdyti" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Pakvietimai užrakinti peržiūros bendruomenėms. Pareikškite savo paskyrą nustatydami el. paštą ir slaptažodį, kad įgalintumėte pakvietimus." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Pakvietimai išjungti" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Pakvietimai išjungti" @@ -10482,13 +10477,13 @@ msgstr "Prisijunkite prie bendruomenės su lipdukais, kad pradėtumėte!" msgid "Join call" msgstr "Prisijungti prie skambučio" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Prisijungti prie bendruomenės" @@ -10497,15 +10492,23 @@ msgstr "Prisijungti prie bendruomenės" msgid "Join community form" msgstr "Prisijungimo prie bendruomenės forma" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Prisijunk prie Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Prisijunk prie Fluxer HQ, kad pasikalbėtum su komanda ir būtum informuotas apie naujienas!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Prisijungti prie grupės" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Prisijungti prie grupės DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Prisijungimo pranešimai" @@ -10620,7 +10623,7 @@ msgstr "Peršokti į seniausią neskaitytą žinutę" msgid "Jump to page" msgstr "Peršokti į puslapį" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Peršokti į dabartį" @@ -10690,7 +10693,7 @@ msgstr "Mygtukų susiejimai" msgid "Keyboard" msgstr "Klaviatūra" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Klaviatūros užuominos" @@ -10815,7 +10818,7 @@ msgstr "Sužinokite apie Plutonium" msgid "Leave blank for a random username" msgstr "Palikite tuščią, kad gautumėte atsitiktinį vartotojo vardą" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Jau išeini?" msgid "Left" msgstr "Išėjo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Lygiuota į kairę" @@ -10945,7 +10948,7 @@ msgstr "nuoroda" msgid "Link" msgstr "Nuoroda" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Susieti kanalą" @@ -11027,7 +11030,7 @@ msgstr "Įkeliami blokavimai..." msgid "Loading communities..." msgstr "Įkeliamos bendruomenės..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Įkeliamas paveikslėlis" @@ -11039,8 +11042,8 @@ msgstr "Įkeliami kvietimai..." msgid "Loading more..." msgstr "Įkeliama daugiau..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Įkeliamas vietos rezervavimo žymė" @@ -11064,7 +11067,7 @@ msgstr "Įkeliama tema..." msgid "Loading verification methods..." msgstr "Įkeliami patvirtinimo metodai..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Įkeliama: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Vietinis nutildymas" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Prisijunkite naudodami savo naršyklę, tada įveskite parodytą kodą, msgid "Log in via browser" msgstr "Prisijungti per naršyklę" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Prisijungti per naršyklę arba pasirinktinį serverį" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Atsijungti" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Atsijungti {0} įrenginiuose" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Atsijungti nuo {sessionCount} įrenginių" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Atsijungti 1 įrenginyje" @@ -11141,7 +11144,7 @@ msgstr "Atsijungti nuo visų įrenginių" msgid "Log out all other devices" msgstr "Atsijungti nuo visų kitų įrenginių" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Atsijungti nuo visų kitų įrenginių" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Pažymėti kaip 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "paminėjimai:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "paminėjimai:" msgid "Message" msgstr "Žinutė" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Žinutė " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Žinutė @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Žinutė #" @@ -11838,7 +11842,7 @@ msgstr "Žinutės ir medija" msgid "Messages Deleted" msgstr "Žinutės ištrintos" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Nepavyko įkelti žinučių" @@ -12016,7 +12020,7 @@ msgstr "Daugiau" msgid "More Actions" msgstr "Daugiau veiksmų" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Daugiau emoji vietų" @@ -12028,7 +12032,7 @@ msgstr "Daugiau parinkčių" msgid "More Options" msgstr "Daugiau parinkčių" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Daugiau lipdukų vietų" @@ -12162,8 +12166,8 @@ msgstr "Nutildyti kanalą" msgid "Mute Channel" msgstr "Nutildyti kanalą" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Nutildyta iki {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Nutildžius bendruomenę, neperskaitytų žinučių indikatoriai ir pranešimai nebus rodomi, nebent esate paminėtas" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Bendros bendruomenės ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Bendrai draugai ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Bendri grupės ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Mano programa" @@ -12247,7 +12251,7 @@ msgstr "Mano nuostabus lipdukas" msgid "My Category" msgstr "Mano kategorija" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mano įrenginiai" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigacija" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Reikia paskyros?" @@ -12364,7 +12368,7 @@ msgstr "Tinklas" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Tinklo klaida" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Nėra bendruomenės reklaminės juostos" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Aprašymas nepateiktas." @@ -12684,15 +12688,15 @@ msgstr "Mikrofonų neaptikta" msgid "No more scheduled messages." msgstr "Daugiau suplanuotų žinučių nėra." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Bendrų bendruomenių nerasta." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Bendrų draugų nerasta." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Bendrų grupių nerasta." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Ne jūsų skonio? Šią funkciją galite išjungti bet kada." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Pranešimų perrašymai" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Pranešti naudotojams su šia role, turintiems teisę matyti šį kanal msgid "now" msgstr "dabar" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Dabar" @@ -13090,7 +13094,7 @@ msgstr "Paspaudus" msgid "on:" msgstr "įjungta:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Ištrinus programėlė ir jos prisijungimo duomenys bus negrįžtamai pašalinti." @@ -13252,7 +13256,7 @@ msgstr "Atidaryti tik asmenines žinutes" msgid "Open Fluxer" msgstr "Atidaryti Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Atidaryti vaizdą pilnoje peržiūroje" @@ -13368,7 +13372,7 @@ msgstr "Atidaryti Vizionierių bendruomenę" msgid "Opening..." msgstr "Atidaroma..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatorius" @@ -13441,7 +13445,7 @@ msgstr "Originali žinutė buvo ištrinta" msgid "Other" msgstr "Kita" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Kiti įrenginiai" @@ -13501,7 +13505,7 @@ msgstr "Pakeisti nepareikštos paskyros būseną" msgid "Override unread gift inventory status" msgstr "Pakeisti neskaitytų dovanų inventoriaus būseną" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Apžvalga" @@ -13695,7 +13699,7 @@ msgstr "Leidimai" msgid "Permissions granted" msgstr "Leidimai suteikti" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Asmeninės pastabos" @@ -13868,12 +13872,12 @@ msgstr "Leisti" msgid "Play animated emojis" msgstr "Leisti animuotus jaustukus" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Leisti garso įrašą" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Įklijuokite pranešamos žinutės nuorodą." msgid "Please provide an email address." msgstr "Pateikite el. pašto adresą." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Bandykite dar kartą arba grįžkite į programų sąrašą." @@ -13989,7 +13993,7 @@ msgstr "Plutonium privilegijos" msgid "Plutonium Subscription" msgstr "Plutonium prenumerata" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Privatumo skydelis" msgid "Privacy Policy" msgstr "Privatumo politika" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Išvalykite šį lipduką iš saugyklos ir CDN" msgid "Push Notification Inactive Timeout" msgstr "Stumiamų pranešimų neaktyvumo laiko riba" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Stumiami pranešimai" @@ -14412,7 +14416,7 @@ msgstr "Reakcijų sąveika išjungta" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reakcijos" @@ -14583,7 +14587,7 @@ msgstr "Atnaujinti push prenumeratą" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Sugeneruoti iš naujo" @@ -14591,19 +14595,19 @@ msgstr "Sugeneruoti iš naujo" msgid "Regenerate backup codes" msgstr "Sugeneruoti atsarginius kodus iš naujo" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Sugeneruoti bot žetoną iš naujo?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Sugeneruoti kliento slaptažodį iš naujo?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Sugeneravus iš naujo, dabartinis slaptažodis bus negaliojantis. Atnaujinkite bet kurį kodą, kuris naudoja senąją reikšmę." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Sugeneravus iš naujo, dabartinis žetonas bus negaliojantis. Atnaujinkite bet kurį kodą, kuris naudoja senąją reikšmę." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Pašalinti filtrą" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Pašalinti filtrą" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Pranešimas sėkmingai pateiktas. Mūsų Saugumo komanda jį netrukus pe #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Pranešti apie naudotoją" @@ -15105,7 +15109,7 @@ msgstr "Prašytos teisės" msgid "Require 2FA for moderation actions" msgstr "Reikalauti 2FA moderavimo veiksmams" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Reikalauti dukart spustelėti, norint prisijungti prie balso kanalų" @@ -15144,7 +15148,7 @@ msgstr "Reikia visko, kas nurodyta Vidutiniame lygyje, ir būti serverio nariu m msgid "Requires Plutonium" msgstr "Reikia Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Perplanuoti žinutę" @@ -15290,11 +15294,11 @@ msgstr "Prenumeruoti dar kartą" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Bandyti dar kartą" @@ -15359,7 +15363,7 @@ msgstr "Atšaukti" msgid "Revoke Ban" msgstr "Atšaukti blokavimą" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Atšaukti įrenginį" @@ -15386,7 +15390,7 @@ msgstr "Atgal {DEFAULT_SEEK_AMOUNT} sekundes" msgid "Right" msgstr "Dešinė" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Lygiuota dešinėje" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Ieškoti narių..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Ieškoti žinučių" @@ -15834,13 +15838,13 @@ msgstr "Ieškoti vaidmenų ar narių..." msgid "Search saved media" msgstr "Ieškoti įrašytos medijos" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Paieškos apimtis" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Paieškos apimtis: {0}" @@ -15857,7 +15861,7 @@ msgstr "Ieškoti nustatymus..." msgid "Search stickers..." msgstr "Ieškoti lipdukų..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Paieškos pasiūlymai" @@ -15938,7 +15942,7 @@ msgstr "Saugumo raktas / Prieigos raktas" msgid "Security key verification failed. Please try again." msgstr "Saugumo rakto patvirtinimas nepavyko. Bandykite dar kartą." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Peržiūrėkite visus įrenginius, kurie šiuo metu yra prisijungę prie jūsų paskyros. Atšaukite visas sesijas, kurių neatpažįstate." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Pasirinkite paskyrą" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Pasirinkti viską" @@ -16040,7 +16044,7 @@ msgstr "Pasirinkite įterpto turinio iš nuorodų dydį" msgid "Select media size for uploaded attachments" msgstr "Pasirinkite įkeltų priedų dydį" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Pasirinkite bendrą vaizdą" @@ -16151,9 +16155,9 @@ msgstr "Siųsti kodą" msgid "Send Code" msgstr "Siųsti kodą" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Siųsti draugų užklausą" @@ -16170,7 +16174,7 @@ msgstr "Siųsti žinutę · Dešiniuoju pelės klavišu spustelėkite, kad supla msgid "Send Message Disabled" msgstr "Žinučių siuntimas išjungtas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Siųsti žinutes" @@ -16624,7 +16628,7 @@ msgstr "Rodyti Dovanos mygtuką" msgid "Show inline images and videos" msgstr "Rodyti įterptas nuotraukas ir vaizdo įrašus" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Rodyti tik rašymo indikatorių be avatarų" @@ -16788,11 +16792,11 @@ msgstr "Rodyti dovaną kaip jau panaudotą" msgid "Show this role separately" msgstr "Rodyti šį vaidmenį atskirai" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Rodyti rašymo indikatorių su naudotojų avatarais kanalų sąraše" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Rodyti rašymą pasirinktame kanale" @@ -17151,7 +17155,7 @@ msgstr "Ispanų (Ispanija)" msgid "Speak" msgstr "Kalbėti" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Pasisakyti žinutę" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Pradėti bendrinti" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Pradėti vaizdo skambutį" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Pradėti balso skambutį" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Lipdukų tankis" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Lipdukų rinkinys" @@ -17427,7 +17431,7 @@ msgstr "Sustabdyti skambėjimą" msgid "Stop Sharing" msgstr "Sustabdyti bendrinimą" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Sustabdyti kalbėjimą" @@ -17570,19 +17574,19 @@ msgstr "Slopinti visus vaidmenų @paminėjimus" msgid "Suppress All Role @mentions" msgstr "Slopinti visus vaidmenų @paminėjimus" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Slopinti įterpimus" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekstas" msgid "Text (NSFW)" msgstr "Tekstas (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Teksto kanalas" @@ -18028,10 +18032,10 @@ msgstr "Šiam veiksmui tęsti reikia patvirtinimo." msgid "This application" msgstr "Ši programa" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Šis priedas nebegalioja" @@ -18039,7 +18043,7 @@ msgstr "Šis priedas nebegalioja" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Šis botas prašo Administratoriaus leidimo. Nerekomenduojame suteikti šio leidimo produkcijos programoms, nebent visiškai pasitikite kūrėju. Apsvarstykite paprašyti jų prašyti sumažinto leidimų rinkinio. Uždarykite šį puslapį, jei nesate tikri." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "To negalima atšaukti. Pašalinus programą, taip pat ištrinamas jos botas." @@ -18101,7 +18105,7 @@ msgstr "Ši bendruomenė pasiekė maksimalų narių skaičių ir šiuo metu nepr msgid "This community has temporarily disabled invites." msgstr "Ši bendruomenė laikinai išjungė kvietimus." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Ši bendruomenė laikinai išjungė kvietimus. Galite bandyti vėliau." @@ -18178,7 +18182,7 @@ msgstr "Šis pakvietimas turi neribotą naudojimų skaičių." msgid "This invite link never expires." msgstr "Ši kvietimo nuoroda niekada nepasibaigs." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Tai yra <0>{displayName} pradžia. Pridėkite draugų, kad pradėtumėte pokalbį!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Tai yra jūsų tiesioginių žinučių istorijos su <0>{0} pradžia." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Tai buvo @tyli žinutė." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Tai sukurs įtrūkimą erdvės-laiko kontinuume ir negali būti atšaukt msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Tai paslėps visus su mėgstamaisiais susijusius vartotojo sąsajos elementus, įskaitant mygtukus ir meniu punktus. Jūsų esami mėgstamieji bus išsaugoti ir gali būti vėl įjungti bet kuriuo metu iš <0>Naudotojo nustatymai → Išvaizda → Mėgstamiausi." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Tai modifikuos esamą suplanuotą žinutę, o ne išsiųs iš karto." @@ -18387,8 +18391,8 @@ msgstr "Tai pašalins šios paskyros išsaugotą seansą." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Tai pakeis jūsų dabartinę tinkintą temą. Galite ją redaguoti vėliau Naudotojo nustatymuose." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatiūra {title}" @@ -18485,7 +18489,7 @@ msgstr "Toast'ai atsiranda ekrano viršuje centre." msgid "today" msgstr "šiandien" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Šiandien" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Bandykite dar kartą" @@ -18737,7 +18741,7 @@ msgstr "Išbandykite kitą vardą arba patikrinkite rašybą." msgid "Try another search term" msgstr "Išbandykite kitą paieškos terminą" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Pabandykite paprašyti naujo kvietimo." @@ -18864,7 +18868,7 @@ msgstr "Šrifto skalė" msgid "Type your message here..." msgstr "Čia įveskite savo žinutę..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Rašymo įvykiai" @@ -18877,11 +18881,11 @@ msgstr "Rašymo indikatorius" msgid "Typing Indicator" msgstr "Rašymo indikatorius" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Rašymo indikatorius + avatarai" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Tik rašymo indikatorius" @@ -18961,11 +18965,11 @@ msgstr "Nepavyko pradėti skambučio" msgid "Unable to start email change" msgstr "Nepavyko pradėti el. pašto keitimo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Neprieinama niekam" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Neprieinama niekam, išskyrus darbuotojus" @@ -18978,7 +18982,7 @@ msgstr "Neprieinama niekam, išskyrus darbuotojus" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Prieš siunčiant draugų užklausą atblokuokite šį naudotoją." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Atblokuoti naudotoją" @@ -19165,7 +19169,7 @@ msgstr "Nežinoma klaida" msgid "Unknown Gift" msgstr "Nežinoma dovana" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Nežinomas kvietimas" @@ -19205,11 +19209,11 @@ msgstr "nežinoma-rolė" msgid "Unlimited" msgstr "Neribota" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Neriboti jaustukai" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Neriboti lipdukai" @@ -19254,7 +19258,7 @@ msgstr "Atrakinkite lipdukus DM su Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Įjungti garsą kategorijoje" msgid "Unmute Channel" msgstr "Įjungti garsą kanale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Įjungti garsą mėgstamuose" msgid "Unmute User" msgstr "Įjungti garsą naudotojui" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Be pavadinimo" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Kol aš tai pakeisiu" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Nepatvirtintas el. paštas" msgid "Up to 4K/60fps" msgstr "Iki 4K/60 kadrų per sekundę" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Atnaujinti" @@ -19629,7 +19633,7 @@ msgstr "Įkelti įėjimo garsą" msgid "Upload Failed" msgstr "Įkėlimas nepavyko" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Įkelti failą" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Vartotojas perkeltas į kitą kanalą" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Vartotojo profilis" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Vartotojo profilis: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Reikšmės" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Patrauklus URL" @@ -20059,14 +20063,14 @@ msgstr "Prieš peržiūrint atsarginius kodus gali būti reikalingas patvirtinim #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Patvirtinta bendruomenė" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Patvirtinta gildija" @@ -20167,8 +20171,8 @@ msgstr "Vaizdo kokybė" msgid "Video Settings" msgstr "Vaizdo nustatymai" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Vaizdo miniatiūra" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Peržiūrėti kodus" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Peržiūrėti bendruomenės profilį" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Peržiūrėti dovanų inventorių" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Peržiūrėti globalų profilį" @@ -20329,7 +20333,7 @@ msgstr "Pažeidimo kategorijos pasirinkimas" msgid "Violent or Graphic Content" msgstr "Smurtinis ar grafinis turinys" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP balsas" @@ -20341,7 +20345,7 @@ msgstr "Matomi mygtukai" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Balsiniai skambučiai" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "balsinis kanalas" @@ -20442,7 +20446,7 @@ msgstr "Balsinis kanalas" msgid "Voice Channel Full" msgstr "Balsinis kanalas pilnas" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Balsinio kanalo prisijungimo elgsena" @@ -20559,7 +20563,7 @@ msgstr "Šiuo metu nepavyko prisijungti prie šios bendruomenės." msgid "We couldn't load the invites at this time." msgstr "Šiuo metu nepavyko įkelti pakvietimų." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nepavyko įkelti šios programos" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Turime problemų prisijungti prie Fluxer serverių. Tai gali būti laikina tinklo problema arba suplanuota priežiūra." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Turime problemų prisijungti prie erdvės-laiko kontinuumo. Patikrinkite savo ryšį ir bandykite dar kartą." @@ -20759,7 +20763,7 @@ msgstr "Savaitgalio kariai" msgid "Welcome and system messages will appear here." msgstr "Sveikinimai ir sistemos pranešimai pasirodys čia." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Sveiki sugrįžę" @@ -20820,7 +20824,7 @@ msgstr "Kas vyksta?" msgid "What's included in your export:" msgstr "Kas įtraukta į jūsų eksportą:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Kai išjungta (numatyta), rašymo indikatoriai nerodys kanale, kurį šiuo metu žiūrite." @@ -20836,7 +20840,7 @@ msgstr "Kai įjungta, greitai paspaudus jūsų 'kalbėti paspaudus' sparčiąją msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Kai įjungta, atskleidžia derinimo meniu visoje programėlėje, kad galėtumėte apžiūrėti ir nukopijuoti neapdorotus JSON objektus vidinių duomenų struktūrų, tokių kaip žinutės, kanalai, vartotojai ir bendruomenės. Taip pat apima įrankius, skirtus derinti Fluxer Markdown analizatoriaus veikimą ir AST bet kuriai nurodytai žinutei." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Kai įjungta, sparčiųjų klavišų ženkleliai yra paslėpti patarimų iškylančiuose langeliuose." @@ -20868,7 +20872,7 @@ msgstr "Kai įjungta, naudoja jūsų kompiuterio lokalę, kad nustatytų 12/24 v msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Kai įjungta, galite pažymėti kanalus kaip mėgstamus ir jie atsiras skiltyje 'Mėgstamiausi'. Kai išjungta, visi su mėgstamaisiais susiję vartotojo sąsajos elementai (mygtukai, meniu punktai) bus paslėpti. Jūsų esami mėgstamiausi kanalai bus išsaugoti." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Kai įjungta, norėdami prisijungti prie balso kanalų, turėsite dukart spustelėti. Kai išjungta (numatyta), vienas spustelėjimas iškart prisijungs prie kanalo." @@ -20970,7 +20974,7 @@ msgstr "Kasmet {yearlyPrice}" msgid "yesterday" msgstr "vakar" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Vakar" @@ -21013,7 +21017,7 @@ msgstr "Jūs redaguojate savo kiekvienos bendruomenės profilį. Šis profilis b msgid "You are in slowmode. Please wait before sending another message." msgstr "Jūs esate lėtuoju režimu. Palaukite, kol išsiųsite kitą žinutę." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Dabar jūs esate kūrėjas!" @@ -21113,7 +21117,7 @@ msgstr "Galite naudoti nuorodas ir Markdown, kad formatuotumėte savo tekstą. S msgid "You can't add new reactions while you're on timeout." msgstr "Negalite pridėti naujų reakcijų, kai esate laikotarpyje." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Negalite susidraugauti su savimi" @@ -21128,7 +21132,7 @@ msgstr "Negalite sąveikauti su reakcijomis paieškos rezultatuose, nes tai gali msgid "You can't join while you're on timeout." msgstr "Negalite prisijungti, kai esate laikotarpyje." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Negalite atjungti savo nutildymo, nes moderatorius jus nutildė." 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ė." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Neturite leidimo siųsti žinučių šiame kanale." @@ -21439,7 +21443,7 @@ msgstr "Tu atrodysi neprisijungęs" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Kitoje ekrano dalyje sukonfigūruosite, kokias teises gauna botas." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Turėsi vėl prisijungti visuose atsijungtuose įrenginiuose" @@ -21508,7 +21512,7 @@ msgstr "Tu balsiniame kanale" msgid "You're sending messages too quickly" msgstr "Tu per greitai siunti žinutes" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 e13e0824..92315384 100644 --- a/fluxer_app/src/locales/nl/messages.po +++ b/fluxer_app/src/locales/nl/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# item} other {# items}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# lid} other {# leden}}" @@ -566,18 +566,18 @@ msgstr "{label} afbeeldingen kunnen niet worden geanimeerd. Gebruik alstublieft #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} lid" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} leden" @@ -612,11 +612,11 @@ msgstr "{minutes} minuten en {seconds} seconden" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minuten en 1 seconde" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} wederzijdse gemeenschap" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} wederzijdse gemeenschappen" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} deelnemers in gesprek" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "{remaining} tekens over" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} tekens over. Koop Plutonium om tot {premiumMaxLength} tekens te schrijven." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} lid" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} leden" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@iedereen-vermeldingen" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Accentkleur" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Accepteren" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Vriendschapsverzoek accepteren" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Uitnodiging accepteren" @@ -1364,8 +1364,8 @@ msgstr "Uitnodiging accepteren" msgid "Accept the incoming call" msgstr "De inkomende oproep accepteren" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Door deze uitnodiging te accepteren wordt het pakket automatisch geïnstalleerd." @@ -1594,7 +1594,7 @@ msgstr "Favoriete kanalen toevoegen" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} toegestaan." msgid "Already have an account?" msgstr "Heb je al een account?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Al lid" @@ -2191,7 +2191,7 @@ msgstr "Geanimeerde avatars & banners" msgid "Animated Avatars Require Plutonium" msgstr "Geanimeerde avatars vereisen Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Geanimeerde banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Geanimeerde emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Geanimeerde GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Geanimeerde GIF-video" @@ -2219,7 +2219,7 @@ msgstr "Geanimeerde GIF-video" msgid "Animated GIF Video" msgstr "Geanimeerde GIF-video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Geanimeerd pictogram" @@ -2277,7 +2277,7 @@ msgstr "Iedereen kan deze rol @vermelden. Leden met \"Gebruik @iedereen/@hier en msgid "API Endpoint" msgstr "API-eindpunt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Applicatie-informatie" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Applicatienaam" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Applicatienaam is vereist" @@ -2554,7 +2553,7 @@ msgstr "Weet je zeker dat je de ban voor <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Bijlage {0}" msgid "Attachment Actions" msgstr "Bijlageacties" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Bijlage verlopen" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Automatisch aanvullen" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatisch" @@ -2859,7 +2858,7 @@ msgstr "Terug" msgid "Back to Applications" msgstr "Terug naar Applicaties" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Terug naar lijst" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Terug naar inloggen" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Terug naar Overschrijvingen" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Terug naar Rollen" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Terug naar Instellingen" @@ -3003,7 +3002,7 @@ msgstr "Geblokkeerde gebruikers" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Bio-tekenlimiet" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Botscope aangevraagd" msgid "Bot token" msgstr "Bot token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot token opnieuw gegenereerd. Werk alle code bij die de oude token gebruikt." @@ -3435,7 +3434,7 @@ msgstr "Camera-instellingen" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Camera-instellingen" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Camera-instellingen" msgid "Cancel" msgstr "Annuleren" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Vriendschapsverzoek annuleren" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Let op! Je hebt niet-opgeslagen wijzigingen." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categorie" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Categorienaam" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Categorie-instellingen" @@ -3617,7 +3616,7 @@ msgstr "Let op" msgid "Center" msgstr "Center" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Gecentreerd" @@ -3765,7 +3764,7 @@ msgstr "Bitrate gewijzigd naar {0}." msgid "Changed the voice region to {0}." msgstr "Spraakregio gewijzigd naar {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanaal" @@ -3828,11 +3827,11 @@ msgstr "Kanaal-ID naar klembord gekopieerd" msgid "Channel link copied" msgstr "Kanaallink gekopieerd" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Typindicatiemodus kanaallijst" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Typindicatoren kanaallijst" @@ -3891,7 +3890,7 @@ msgstr "Kanaal verwijderd uit favorieten" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanaalinstellingen" @@ -4052,7 +4051,7 @@ msgstr "Kies hoe tijden worden weergegeven in de hele app." msgid "Choose how typing indicators appear in the channel list" msgstr "Kies hoe typindicatoren in de kanalenlijst verschijnen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Kies hoe typindicatoren verschijnen in de kanalenlijst wanneer iemand aan het typen is in een kanaal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Claim je account om dit cadeau in te wisselen." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Claim je account om vriendschapsverzoeken te sturen." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Rechten wissen" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Zoekopdracht wissen" msgid "Clear search input" msgstr "Zoekinvoer wissen" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Selectie wissen" @@ -4314,7 +4313,7 @@ msgstr "Klik op het uploadpictogram naast een geluid om het aan te passen met je msgid "Click the verification link in the email." msgstr "Klik op de verificatielink in de e-mail." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klik om een notitie toe te voegen" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klik om je cadeau op te eisen!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klik om te kopiëren" @@ -4388,7 +4387,7 @@ msgstr "Klik om alle reacties te bekijken" msgid "Client secret" msgstr "Clientgeheim" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Clientgeheim opnieuw gegenereerd. Werk alle code bij die het oude geheim gebruikt." @@ -4649,8 +4648,8 @@ msgstr "Community promoot haat op basis van beschermde kenmerken" msgid "Community promotes or facilitates illegal activities" msgstr "Community promoot of vergemakkelijkt illegale activiteiten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Contextmenu's" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Contextmenu's kunnen worden geopend met een linkermuisklik (op knoppen) of rechtermuisklik (op andere elementen). Dit toont verschillende menu-items inclusief selectievakjes, keuzerondjes, schuifregelaars en submenu's." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Beheer hoe websitellinks worden weergegeven in de chat" msgid "Control how you join voice channels" msgstr "Beheer hoe je spraakkanalen betreedt" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Beheer hoe je voicekanalen in communities betreedt." @@ -5012,7 +5011,7 @@ msgstr "Stickeranimaties beheren" msgid "Control the visibility of favorites throughout the app." msgstr "Beheer de zichtbaarheid van favorieten door de hele app." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Beheer of toetsenbordsneltoetstips in tooltips verschijnen." @@ -5071,7 +5070,7 @@ msgstr "Gekopieerd" msgid "Copied to clipboard" msgstr "Naar klembord gekopieerd" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL naar klembord gekopieerd" @@ -5149,7 +5148,7 @@ msgstr "Kopieer bestandslink" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopieer FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopieer FluxerTag" msgid "Copy GIF" msgstr "Kopieer GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopieer guild-ID" @@ -5222,7 +5221,7 @@ msgstr "Kopieer tekst" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Gezellig" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Aanmaken" @@ -5331,14 +5330,14 @@ msgstr "Maak en beheer applicaties en bots voor je account." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Maak en deel aangepaste emoji- en stickerpakketten met Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Applicatie aanmaken" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Applicatie aanmaken" msgid "Create Category" msgstr "Categorie aanmaken" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Aangemaakt {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Aangemaakt door {0}" @@ -5569,7 +5568,7 @@ msgstr "Bijgesneden afbeelding is te groot. Kies een kleiner gebied of een klein msgid "Current Community" msgstr "Huidige community" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Huidig apparaat" @@ -5606,7 +5605,7 @@ msgstr "Momenteel vast in 1885, lijkt offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Momenteel: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Gevaar Secundair" msgid "Danger secondary clicked!" msgstr "Gevaar secundair geklikt!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Gevarenzone" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Al mijn berichten verwijderen" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Applicatie verwijderen" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Bijlage verwijderen" @@ -6063,7 +6062,7 @@ msgstr "Bijlage verwijderen" msgid "Delete Attachment" msgstr "Bijlage verwijderen" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Categorie verwijderen" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Kanaal verwijderen" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Media verwijderen" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Bericht verwijderen" @@ -6215,7 +6214,7 @@ msgstr "Compact" msgid "Dense layout" msgstr "Compacte lay-out" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Geïmplementeerd" @@ -6281,7 +6280,7 @@ msgstr "Bestemmingskanaal" msgid "Destination URL:" msgstr "Bestemmings-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Losse banner" @@ -6362,7 +6361,7 @@ msgstr "Verschillende formaten (Status ondersteund)" msgid "Different Sizes & Member Counts" msgstr "Verschillende formaten & ledenaantallen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direct bericht" @@ -6541,7 +6540,7 @@ msgstr "Je account uitschakelen zal je uit alle sessies afmelden. Je kunt je acc msgid "Disallow @mention." msgstr "@vermelding niet toestaan." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Ongeclaimde accounts niet toestaan" @@ -6747,7 +6746,7 @@ msgstr "Toon geen berichtvoorbeelden in de DM-lijst" msgid "Don't show this again" msgstr "Dit niet meer tonen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Toon geen type-indicatoren in de kanaallijst" @@ -6760,7 +6759,7 @@ msgstr "Toon geen type-indicatoren in de kanaallijst" msgid "Done" msgstr "Klaar" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Categorie bewerken" msgid "Edit Channel" msgstr "Kanaal bewerken" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Overschrijvingen voor rollen en leden in dit kanaal bewerken." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash insluiten" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Splash-afbeeldingen kunnen niet geanimeerd zijn. Gebruik JPEG, PNG of WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Ingesloten audio" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emoji-namen moeten minimaal 2 tekens lang zijn en mogen alleen alfanumerieke tekens en underscores bevatten. Toegestane bestandstypen: JPEG, PNG, WebP, GIF. We comprimeren afbeeldingen tot 128x128 pixels. Maximale grootte: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji-pakket" @@ -7473,7 +7472,7 @@ msgstr "Telefoonnummer invoeren" msgid "Enter picture-in-picture" msgstr "Picture-in-picture openen" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Selectiemodus openen" @@ -7536,7 +7535,7 @@ msgstr "Voer het nieuwe e-mailadres in dat je wilt gebruiken. We sturen daar ver msgid "Enter the SMS code you received." msgstr "Voer de SMS-code in die je hebt ontvangen." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "enter om <0><1>op te slaan" @@ -7604,7 +7603,7 @@ msgstr "Fout bij het renderen van LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc-toets verlaat toetsenbordmodus" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "escape om <0><1>annuleren" @@ -7667,7 +7666,7 @@ msgstr "Picture-in-picture afsluiten" msgid "Exit Preview" msgstr "Voorbeeld Afsluiten" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Selectiemodus Afsluiten" @@ -7701,7 +7700,7 @@ msgstr "Verlopen (Binnen 30 Dagen)" msgid "Expired {absolute}" msgstr "Verlopen {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Verlopen tussen {earliest} en {latest}" @@ -7709,7 +7708,7 @@ msgstr "Verlopen tussen {earliest} en {latest}" msgid "Expired on {date}" msgstr "Verlopen op {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Verlopen op {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Vervalt" msgid "Expires {absolute} ({relativeText})" msgstr "Vervalt {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Vervalt tussen {earliest} en {latest}" @@ -7730,7 +7729,7 @@ msgstr "Vervalt tussen {earliest} en {latest}" msgid "Expires on {date}" msgstr "Vervalt op {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Vervalt op {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Expressiepakketten zijn een Plutonium-functie" msgid "Expression picker categories" msgstr "Expressiekiezer-categorieën" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Expressie-opruiming" @@ -7839,10 +7838,6 @@ msgstr "Kopiëren naar klembord mislukt" msgid "Failed to copy URL" msgstr "URL kopiëren mislukt" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Applicatie aanmaken mislukt. Controleer je invoer en probeer het opnieuw." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Rol aanmaken mislukt" @@ -8100,7 +8095,7 @@ msgstr "Verbanning intrekken mislukt. Probeer het opnieuw." msgid "Failed to revoke invite" msgstr "Uitnodiging intrekken mislukt" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Draaien mislukt. Probeer het opnieuw." @@ -8413,7 +8408,7 @@ msgstr "Fitnessvrienden" msgid "Flags" msgstr "Vlaggen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexibele tekstkanaalnamen" @@ -8577,7 +8572,7 @@ msgstr "Foodie Vrienden" msgid "For 1 hour" msgstr "Voor 1 uur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Voor 1 uur" msgid "For 15 minutes" msgstr "Voor 15 minuten" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Voor 15 minuten" msgid "For 24 hours" msgstr "Voor 24 uur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Voor 3 dagen" msgid "For 3 hours" msgstr "Voor 3 uur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Voor 3 uur" msgid "For 8 hours" msgstr "Voor 8 uur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Abonnementen vergeten" msgid "Forgot Password" msgstr "Wachtwoord vergeten" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Je wachtwoord vergeten?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} seconden vooruit" msgid "Forward Message" msgstr "Bericht doorsturen" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Doorgestuurd" @@ -9065,7 +9060,7 @@ msgstr "Download de Fluxer desktop-app voor systeembrede push-to-talk en enkele #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Ga terug naar het eerder geselecteerde tekstkanaal" msgid "Go forward in navigation history" msgstr "Ga vooruit in navigatiegeschiedenis" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Ga naar Community" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Groepsuitnodigingen" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Groepsbericht" @@ -9548,7 +9543,7 @@ msgstr "Hé, {username}, welkom! Je kunt alles bereiken." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hé, {username}! Als het 140 km/u haalt, zie je serieuze dingen!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Verborgen" @@ -9569,7 +9564,7 @@ msgstr "Favorieten verbergen" msgid "Hide Join Messages" msgstr "Join-berichten verbergen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Toetsenbordhints in tooltips verbergen" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Gedempte kanalen verbergen" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Als je eerst je gegevens wilt exporteren of je berichten wilt verwijderen, ga dan naar het Privacy Dashboard in Gebruikersinstellingen voordat je verdergaat." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "afbeelding" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Invoer met pictogrammen" msgid "Insert emoji" msgstr "Emoji invoegen" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Emoji-pakket installeren" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Stickerpakket installeren" @@ -10153,7 +10148,7 @@ msgstr "Geïnstalleerd op {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Voor het installeren van emoji- en stickerpakketten is een premiumabonnement vereist." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Directe uitnodigingen" @@ -10286,7 +10281,7 @@ msgstr "Instellingen uitnodigingslink" msgid "Invite Links" msgstr "Uitnodigingslinks" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Uitnodigingsvenster" msgid "Invite modal preview" msgstr "Voorbeeld uitnodigingsvenster" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Uitnodiging verzonden voor {0}" msgid "Invite sent to {guildName}" msgstr "Uitnodiging verzonden naar {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Uitnodigingssplash" @@ -10354,7 +10349,7 @@ msgstr "Uitnodigen voor {0}" msgid "Invite to Community" msgstr "Uitnodigen voor community" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Uitnodiging niet beschikbaar" @@ -10369,12 +10364,12 @@ msgstr "Uitgenodigd door {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Uitgenodigd door {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Uitgenodigd door {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Uitnodigingen zijn momenteel gepauzeerd in deze community" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Uitnodigingen zijn vergrendeld voor preview-communities. Maak je account op door een e-mailadres en wachtwoord in te stellen om uitnodigingen in te schakelen." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Uitnodigingen uitgeschakeld" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Uitnodigingen uitgeschakeld" @@ -10482,13 +10477,13 @@ msgstr "Word lid van een community met stickers om te beginnen!" msgid "Join call" msgstr "Deelnemen aan oproep" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Word lid van community" @@ -10497,15 +10492,23 @@ msgstr "Word lid van community" msgid "Join community form" msgstr "Communityformulier om lid te worden" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Word lid van Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Word lid van Fluxer HQ om met het team te chatten en op de hoogte te blijven van het laatste nieuws!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Word lid van groep" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Word lid van groep DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Lidmaatschapsmeldingen" @@ -10620,7 +10623,7 @@ msgstr "Springen naar oudste ongelezen bericht" msgid "Jump to page" msgstr "Springen naar pagina" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Springen naar huidige" @@ -10690,7 +10693,7 @@ msgstr "Toetsenbindingen" msgid "Keyboard" msgstr "Toetsenbord" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Toetsenbordhints" @@ -10815,7 +10818,7 @@ msgstr "Leer over Plutonium" msgid "Leave blank for a random username" msgstr "Laat leeg voor een willekeurige gebruikersnaam" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Alweer weggaan?" msgid "Left" msgstr "Vertrokken" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Links uitgelijnd" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Kanaal koppelen" @@ -11027,7 +11030,7 @@ msgstr "Bans laden..." msgid "Loading communities..." msgstr "Gemeenschappen laden..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Afbeelding laden" @@ -11039,8 +11042,8 @@ msgstr "Uitnodigingen laden..." msgid "Loading more..." msgstr "Meer laden..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Plaatshouder laden" @@ -11064,7 +11067,7 @@ msgstr "Thema laden..." msgid "Loading verification methods..." msgstr "Verificatiemethoden laden..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Laden: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokaal dempen" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Log in via je browser en voer de getoonde code in om het account toe te msgid "Log in via browser" msgstr "Inloggen via browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Inloggen via browser of aangepaste instantie" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Uitloggen" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Uitloggen van {0} apparaten" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Log uit op {sessionCount} apparaten" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Uitloggen van 1 apparaat" @@ -11141,7 +11144,7 @@ msgstr "Uitloggen op alle apparaten" msgid "Log out all other devices" msgstr "Log uit op alle andere apparaten" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Uitloggen op alle andere apparaten" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Markeren als 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "vermeldt:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "vermeldt:" msgid "Message" msgstr "Bericht" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Bericht " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Bericht @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Bericht #" @@ -11838,7 +11842,7 @@ msgstr "Berichten & Media" msgid "Messages Deleted" msgstr "Berichten verwijderd" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Berichten laden mislukt" @@ -12016,7 +12020,7 @@ msgstr "Meer" msgid "More Actions" msgstr "Meer acties" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Meer emoji-sleuven" @@ -12028,7 +12032,7 @@ msgstr "Meer opties" msgid "More Options" msgstr "Meer opties" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Meer sticker-sleuven" @@ -12162,8 +12166,8 @@ msgstr "Kanaal dempen" msgid "Mute Channel" msgstr "Kanaal dempen" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Gedempt tot {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Een community dempen voorkomt dat ongelezen indicatoren en meldingen verschijnen, tenzij je genoemd wordt" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Wederzijdse gemeenschappen ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Wederzijdse vrienden ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Wederzijdse groepen ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Mijn applicatie" @@ -12247,7 +12251,7 @@ msgstr "Mijn geweldige sticker" msgid "My Category" msgstr "Mijn categorie" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mijn apparaten" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigatie" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Een account nodig?" @@ -12364,7 +12368,7 @@ msgstr "Netwerk" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Netwerkfout" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Geen community-banner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Geen beschrijving opgegeven." @@ -12684,15 +12688,15 @@ msgstr "Geen microfoons gedetecteerd" msgid "No more scheduled messages." msgstr "Geen geplande berichten meer." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Geen gemeenschappelijke communities gevonden." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Geen gemeenschappelijke vrienden gevonden." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Geen gemeenschappelijke groepen gevonden." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Niet jouw ding? Je kunt deze functie altijd uitschakelen." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Meldingsoverschrijvingen" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Informeer gebruikers met deze rol die toestemming hebben om dit kanaal t msgid "now" msgstr "nu" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Nu" @@ -13090,7 +13094,7 @@ msgstr "Bij klikken" msgid "on:" msgstr "op:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Na verwijdering worden de applicatie en de inloggegevens permanent verwijderd." @@ -13252,7 +13256,7 @@ msgstr "Alleen privéberichten openen" msgid "Open Fluxer" msgstr "Open Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Open afbeelding in volledig scherm" @@ -13368,7 +13372,7 @@ msgstr "Visionary Community openen" msgid "Opening..." msgstr "Openen..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Oorspronkelijk bericht is verwijderd" msgid "Other" msgstr "Anders" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Andere apparaten" @@ -13501,7 +13505,7 @@ msgstr "Ongeclaimde accountstatus overschrijven" msgid "Override unread gift inventory status" msgstr "Ongelezen cadeau-inventarisstatus overschrijven" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Overzicht" @@ -13695,7 +13699,7 @@ msgstr "Machtigingen" msgid "Permissions granted" msgstr "Machtigingen verleend" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Persoonlijke notities" @@ -13868,12 +13872,12 @@ msgstr "Afspelen" msgid "Play animated emojis" msgstr "Geanimeerde emoji's afspelen" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Audio afspelen" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Plak de berichtlink die je rapporteert." msgid "Please provide an email address." msgstr "Geef een e-mailadres op." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Probeer opnieuw of ga terug naar de applicatielijst." @@ -13989,7 +13993,7 @@ msgstr "Plutonium voordelen" msgid "Plutonium Subscription" msgstr "Plutonium Abonnement" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Privacy dashboard" msgid "Privacy Policy" msgstr "Privacybeleid" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Verwijder deze sticker uit opslag en CDN" msgid "Push Notification Inactive Timeout" msgstr "Time-out voor inactieve pushmeldingen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Pushmeldingen" @@ -14412,7 +14416,7 @@ msgstr "Reactie-interactie uitgeschakeld" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reacties" @@ -14583,7 +14587,7 @@ msgstr "Push-abonnement vernieuwen" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Opnieuw genereren" @@ -14591,19 +14595,19 @@ msgstr "Opnieuw genereren" msgid "Regenerate backup codes" msgstr "Back-upcodes opnieuw genereren" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Bot-token opnieuw genereren?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Clientgeheim opnieuw genereren?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Opnieuw genereren maakt het huidige geheim ongeldig. Werk alle code bij die de oude waarde gebruikt." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Opnieuw genereren maakt het huidige token ongeldig. Werk alle code bij die de oude waarde gebruikt." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Filter verwijderen" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Filter verwijderen" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Rapport succesvol ingediend. Ons veiligheidsteam zal het spoedig beoorde #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Gebruiker rapporteren" @@ -15105,7 +15109,7 @@ msgstr "Aangevraagde scopes" msgid "Require 2FA for moderation actions" msgstr "2FA vereisen voor moderatieacties" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Dubbelklik vereisen om spraakkanalen te betreden" @@ -15144,7 +15148,7 @@ msgstr "Vereist alles in Gemiddeld, plus lid zijn van de server voor minstens 10 msgid "Requires Plutonium" msgstr "Vereist Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Bericht opnieuw plannen" @@ -15290,11 +15294,11 @@ msgstr "Opnieuw abonneren" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Opnieuw proberen" @@ -15359,7 +15363,7 @@ msgstr "Intrekken" msgid "Revoke Ban" msgstr "Ban intrekken" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Apparaat intrekken" @@ -15386,7 +15390,7 @@ msgstr "Terugspoelen {DEFAULT_SEEK_AMOUNT} seconden" msgid "Right" msgstr "Rechts" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Rechts uitgelijnd" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Leden zoeken..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Berichten zoeken" @@ -15834,13 +15838,13 @@ msgstr "Rollen of leden zoeken..." msgid "Search saved media" msgstr "Opgeslagen media zoeken" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Zoekbereik" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Zoekbereik: {0}" @@ -15857,7 +15861,7 @@ msgstr "Instellingen zoeken..." msgid "Search stickers..." msgstr "Stickers zoeken..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Zoeksuggesties" @@ -15938,7 +15942,7 @@ msgstr "Beveiligingssleutel / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verificatie van beveiligingssleutel mislukt. Probeer het opnieuw." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Bekijk alle apparaten die momenteel zijn ingelogd op je account. Herroep sessies die je niet herkent." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Selecteer account" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Alles selecteren" @@ -16040,7 +16044,7 @@ msgstr "Selecteer mediaformaat voor ingesloten inhoud van links" msgid "Select media size for uploaded attachments" msgstr "Selecteer mediaformaat voor geüploade bijlagen" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Selecteer wederzijdse weergave" @@ -16151,9 +16155,9 @@ msgstr "Code versturen" msgid "Send Code" msgstr "Code verzenden" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Vriendschapsverzoek verzenden" @@ -16170,7 +16174,7 @@ msgstr "Bericht verzenden · Klik met rechts om te plannen" msgid "Send Message Disabled" msgstr "Bericht verzenden uitgeschakeld" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Berichten verzenden" @@ -16624,7 +16628,7 @@ msgstr "Cadeauknop tonen" msgid "Show inline images and videos" msgstr "Inline afbeeldingen en video's tonen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Alleen de type-indicator tonen zonder avatars" @@ -16788,11 +16792,11 @@ msgstr "Toon het cadeau als al ingewisseld" msgid "Show this role separately" msgstr "Toon deze rol apart" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Toon type-indicator met gebruikersavatars in de kanaallijst" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Toon typen op geselecteerd kanaal" @@ -17151,7 +17155,7 @@ msgstr "Spaans (Spanje)" msgid "Speak" msgstr "Spreek" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Bericht uitspreken" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Delen starten" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Videogesprek starten" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Spraakgesprek starten" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Stickerdichtheid" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Stickerpakket" @@ -17427,7 +17431,7 @@ msgstr "Stop met rinkelen" msgid "Stop Sharing" msgstr "Stop met delen" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Stop met praten" @@ -17570,19 +17574,19 @@ msgstr "Onderdruk alle rol-@vermeldingen" msgid "Suppress All Role @mentions" msgstr "Onderdruk alle rol-@vermeldingen" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Onderdruk embeds" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekst" msgid "Text (NSFW)" msgstr "Tekst (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Tekstkanaal" @@ -18028,10 +18032,10 @@ msgstr "Deze actie vereist verificatie om door te gaan." msgid "This application" msgstr "Deze applicatie" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Deze bijlage is verlopen" @@ -18039,7 +18043,7 @@ msgstr "Deze bijlage is verlopen" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Deze bot vraagt de Administrator-toestemming. We raden niet aan dit aan productie-apps te verlenen, tenzij je de ontwikkelaar volledig vertrouwt. Overweeg hen te vragen een beperktere set toestemmingen aan te vragen. Sluit deze pagina als je twijfelt." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Dit kan niet ongedaan worden gemaakt. Het verwijderen van de applicatie verwijdert ook de bijbehorende bot." @@ -18101,7 +18105,7 @@ msgstr "Deze community heeft haar maximale ledenlimiet bereikt en accepteert mom msgid "This community has temporarily disabled invites." msgstr "Deze community heeft uitnodigingen tijdelijk uitgeschakeld." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Deze community heeft uitnodigingen tijdelijk uitgeschakeld. Je kunt het later opnieuw proberen." @@ -18178,7 +18182,7 @@ msgstr "Deze uitnodiging heeft onbeperkt gebruik." msgid "This invite link never expires." msgstr "Deze uitnodigingslink verloopt nooit." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Dit is het begin van <0>{displayName}. Voeg vrienden toe om een gesprek te beginnen!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Dit is het begin van je directe berichtengeschiedenis met <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Dit was een @stil bericht." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Dit zal een scheur in het ruimte-tijdcontinuüm veroorzaken en kan niet msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Dit verbergt alle favorieten-gerelateerde UI-elementen, inclusief knoppen en menu-items. Je bestaande favorieten worden bewaard en kunnen op elk moment opnieuw worden ingeschakeld via <0>Gebruikersinstellingen → Uiterlijk → Favorieten." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Dit wijzigt het bestaande geplande bericht in plaats van het direct te verzenden." @@ -18387,8 +18391,8 @@ msgstr "Dit verwijdert de opgeslagen sessie voor dit account." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Dit vervangt je huidige aangepaste thema. Je kunt het later bewerken in je Gebruikersinstellingen." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatuur voor {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts verschijnen in het midden bovenaan het scherm." msgid "today" msgstr "vandaag" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Vandaag" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Probeer opnieuw" @@ -18737,7 +18741,7 @@ msgstr "Probeer een andere naam of controleer je spelling." msgid "Try another search term" msgstr "Probeer een andere zoekterm" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Vraag om een nieuwe uitnodiging." @@ -18864,7 +18868,7 @@ msgstr "Typeschaal" msgid "Type your message here..." msgstr "Typ hier je bericht..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Typevenementen" @@ -18877,11 +18881,11 @@ msgstr "Typindicatie" msgid "Typing Indicator" msgstr "Typindicator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Typindicatie + avatars" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Alleen typindicatie" @@ -18961,11 +18965,11 @@ msgstr "Kan oproep niet starten" msgid "Unable to start email change" msgstr "Kan e-mailwijziging niet starten" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Onbeschikbaar voor iedereen" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Onbeschikbaar voor iedereen behalve personeel" @@ -18978,7 +18982,7 @@ msgstr "Onbeschikbaar voor iedereen behalve personeel" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Deblokkeer deze gebruiker voordat je een vriendschapsverzoek stuurt." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Gebruiker deblokkeren" @@ -19165,7 +19169,7 @@ msgstr "Onbekende fout" msgid "Unknown Gift" msgstr "Onbekend cadeau" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Onbekende uitnodiging" @@ -19205,11 +19209,11 @@ msgstr "onbekende-rol" msgid "Unlimited" msgstr "Onbeperkt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Onbeperkte emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Onbeperkte stickers" @@ -19254,7 +19258,7 @@ msgstr "Ontgrendel stickers in privéberichten met Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Dempen opheffen voor categorie" msgid "Unmute Channel" msgstr "Dempen opheffen voor kanaal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Dempen opheffen voor favorieten" msgid "Unmute User" msgstr "Dempen opheffen voor gebruiker" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Naamloos" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Totdat ik het wijzig" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Niet-geverifieerd e-mailadres" msgid "Up to 4K/60fps" msgstr "Tot 4K/60 fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Bijwerken" @@ -19629,7 +19633,7 @@ msgstr "Toegangsgeluid uploaden" msgid "Upload Failed" msgstr "Upload mislukt" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Bestand uploaden" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Gebruiker verplaatst kanaal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Gebruikersprofiel" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Gebruikersprofiel: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Waarden" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity URL" @@ -20059,14 +20063,14 @@ msgstr "Verificatie kan vereist zijn voordat je je reservecodes kunt bekijken." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Geverifieerde community" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Geverifieerde guild" @@ -20167,8 +20171,8 @@ msgstr "Videokwaliteit" msgid "Video Settings" msgstr "Video-instellingen" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videominiatuur" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Codes bekijken" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Communityprofiel bekijken" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Cadeau-inventaris bekijken" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Globaal profiel bekijken" @@ -20329,7 +20333,7 @@ msgstr "Overtredingscategorie selectie" msgid "Violent or Graphic Content" msgstr "Gewelddadige of grafische inhoud" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-stem" @@ -20341,7 +20345,7 @@ msgstr "Zichtbare knoppen" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Spraakoproepen" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Spraakkanaal" @@ -20442,7 +20446,7 @@ msgstr "Spraakkanaal" msgid "Voice Channel Full" msgstr "Spraakkanaal vol" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Spraakkanaal-gedrag bij deelname" @@ -20559,7 +20563,7 @@ msgstr "We konden op dit moment niet deelnemen aan deze community." msgid "We couldn't load the invites at this time." msgstr "We konden de uitnodigingen op dit moment niet laden." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "We konden deze applicatie niet laden" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "We hebben moeite om verbinding te maken met de servers van Fluxer. Dit kan een tijdelijk netwerkprobleem of gepland onderhoud zijn." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "We hebben moeite om verbinding te maken met het ruimte-tijdcontinuüm. Controleer je verbinding en probeer het opnieuw." @@ -20759,7 +20763,7 @@ msgstr "Weekend Warriors" msgid "Welcome and system messages will appear here." msgstr "Welkomst- en systeemberichten verschijnen hier." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Welkom terug" @@ -20820,7 +20824,7 @@ msgstr "Wat gebeurt er?" msgid "What's included in your export:" msgstr "Wat is inbegrepen in je export:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Wanneer uitgeschakeld (standaard), verschijnen typindicatoren niet op het kanaal dat je momenteel bekijkt." @@ -20836,7 +20840,7 @@ msgstr "Wanneer ingeschakeld, houdt snel tikken op je push-to-talk-snelkoppeling msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Wanneer ingeschakeld, onthult debugmenu's in de hele app om ruwe JSON-objecten van interne datastructuren zoals berichten, kanalen, gebruikers en communities te inspecteren en kopiëren. Bevat ook tools om de prestaties van de Fluxer Markdown-parser en AST voor elk bericht te debuggen." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Wanneer ingeschakeld, zijn snelkoppelingsbadges verborgen in tooltip-pop-ups." @@ -20868,7 +20872,7 @@ msgstr "Wanneer ingeschakeld, gebruikt het de locale van je computer om het 12/2 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Wanneer ingeschakeld, kun je kanalen favoriet maken en ze verschijnen in de Favorieten-sectie. Wanneer uitgeschakeld, zijn alle favoriet-gerelateerde UI-elementen (knoppen, menu-items) verborgen. Je bestaande favorieten blijven bewaard." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Wanneer ingeschakeld, moet je dubbelklikken op spraakkanalen om ze te betreden. Wanneer uitgeschakeld (standaard), betreedt enkelklikken het kanaal direct." @@ -20970,7 +20974,7 @@ msgstr "Jaarlijks {yearlyPrice}" msgid "yesterday" msgstr "gisteren" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Gisteren" @@ -21013,7 +21017,7 @@ msgstr "Je bewerkt je per-community-profiel. Dit profiel is alleen zichtbaar in msgid "You are in slowmode. Please wait before sending another message." msgstr "Je bent in slowmode. Wacht even voordat je een ander bericht verzendt." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Je bent nu een ontwikkelaar!" @@ -21113,7 +21117,7 @@ msgstr "Je kunt links en Markdown gebruiken om je tekst op te maken. Met <0/> ku msgid "You can't add new reactions while you're on timeout." msgstr "Je kunt geen nieuwe reacties toevoegen terwijl je een timeout hebt." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Je kunt jezelf niet bevrienden" @@ -21128,7 +21132,7 @@ msgstr "Je kunt niet met reacties in zoekresultaten interacteren omdat dit het r msgid "You can't join while you're on timeout." msgstr "Je kunt niet deelnemen terwijl je een timeout hebt." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Je kunt jezelf niet ontmuten omdat je door een moderator gemute bent." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Je hebt geen toestemming om berichten te sturen in dit kanaal." @@ -21439,7 +21443,7 @@ msgstr "Je verschijnt offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Je configureert welke permissies de bot ontvangt op het volgende scherm." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Je zult opnieuw moeten inloggen op alle uitgelogde apparaten" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 33d217c6..7e2bd96d 100644 --- a/fluxer_app/src/locales/no/messages.po +++ b/fluxer_app/src/locales/no/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# element} other {# elementer}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# medlem} other {# medlemmer}}" @@ -566,18 +566,18 @@ msgstr "{label}-bilder kan ikke animere. Vennligst bruk JPEG, PNG eller WebP." #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Medlem" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Medlemmer" @@ -612,11 +612,11 @@ msgstr "{minutes} minutter og {seconds} sekunder" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutter og 1 sekund" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} gjensidig fellesskap" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} gjensidige fellesskap" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} deltakere i samtale" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} pålogget" @@ -650,15 +650,15 @@ msgstr "{remaining} tegn igjen" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} tegn igjen. Skaff Plutonium for å skrive opptil {premiumMaxLength} tegn." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Medlem" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Medlemmer" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} pålogget" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone-omtaler" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Aksentfarge" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Godta" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Godta venneforespørsel" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Godta invitasjon" @@ -1364,8 +1364,8 @@ msgstr "Godta invitasjon" msgid "Accept the incoming call" msgstr "Godta innkommende samtale" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Å godta denne invitasjonen installerer pakken automatisk." @@ -1594,7 +1594,7 @@ msgstr "Legg til favorittkanaler" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Tillot {0}." msgid "Already have an account?" msgstr "Har du allerede en konto?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Allerede med" @@ -2191,7 +2191,7 @@ msgstr "Animerte avatarer og bannere" msgid "Animated Avatars Require Plutonium" msgstr "Animerte avatarer krever Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animerte banner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animerte emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animerte GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animerte GIF-video" @@ -2219,7 +2219,7 @@ msgstr "Animerte GIF-video" msgid "Animated GIF Video" msgstr "Animerte GIF-video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animerte ikoner" @@ -2277,7 +2277,7 @@ msgstr "Alle kan @nevne denne rollen. Medlemmer med «Bruk @everyone/@here og @r msgid "API Endpoint" msgstr "API-endepunkt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Applikasjonsinformasjon" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Applikasjonsnavn" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Applikasjonsnavn er påkrevd" @@ -2554,7 +2553,7 @@ msgstr "Er du sikker på at du vil oppheve utestengelsen for <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Vedlegg {0}" msgid "Attachment Actions" msgstr "Vedleggshandlinger" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Vedlegg utløpt" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autofullføring" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatisk" @@ -2859,7 +2858,7 @@ msgstr "Tilbake" msgid "Back to Applications" msgstr "Tilbake til applikasjoner" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Tilbake til listen" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Tilbake til innlogging" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Tilbake til overstyringer" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Tilbake til roller" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Tilbake til innstillinger" @@ -3003,7 +3002,7 @@ msgstr "Utestengte brukere" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Bio-tegnbegrensning" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot-omfang forespurt" msgid "Bot token" msgstr "Bot-token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot-token regenerert. Oppdater koden som bruker det gamle tokenet." @@ -3435,7 +3434,7 @@ msgstr "Kamerainnstillinger" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kamerainnstillinger" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kamerainnstillinger" msgid "Cancel" msgstr "Avbryt" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Avbryt venneforespørsel" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Forsiktig! Du har ulagrede endringer." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategori" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategorinavn" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategorinnstillinger" @@ -3617,7 +3616,7 @@ msgstr "Forsiktig" msgid "Center" msgstr "Senter" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Senterjustert" @@ -3765,7 +3764,7 @@ msgstr "Endret bithastigheten til {0}." msgid "Changed the voice region to {0}." msgstr "Endret stemmeregionen til {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "Kanal-ID kopiert til utklippstavlen" msgid "Channel link copied" msgstr "Kanallink kopiert" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Skrivemarkørmodus for kanalliste" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Skrivemarkører for kanalliste" @@ -3891,7 +3890,7 @@ msgstr "Kanal fjernet fra favoritter" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanalinnstillinger" @@ -4052,7 +4051,7 @@ msgstr "Velg hvordan tider vises i hele appen." msgid "Choose how typing indicators appear in the channel list" msgstr "Velg hvordan skriveindikatorer vises i kanallisten" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Velg hvordan skriveindikatorer vises i kanallisten når noen skriver i en kanal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Krev kontoen din for å innløse denne gaven." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Krev kontoen din for å sende vennforespørsel." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Fjern tillatelser" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Tøm søk" msgid "Clear search input" msgstr "Tøm søkefelt" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Fjern markering" @@ -4314,7 +4313,7 @@ msgstr "Klikk opplastingsikonet ved siden av en lyd for å tilpasse den med din msgid "Click the verification link in the email." msgstr "Klikk verifikasjonslenken i e-posten." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klikk for å legge til en notat" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klikk for å kreve gaven din!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klikk for å kopiere" @@ -4388,7 +4387,7 @@ msgstr "Klikk for å se alle reaksjoner" msgid "Client secret" msgstr "Klienthemmelighet" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Klienthemmelighet er regenerert. Oppdater all kode som bruker den gamle hemmeligheten." @@ -4649,8 +4648,8 @@ msgstr "Fellesskapet fremmer hat basert på beskyttede karakteristikker" msgid "Community promotes or facilitates illegal activities" msgstr "Fellesskapet fremmer eller muliggjør ulovlige aktiviteter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Kontekstmenyer" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Kontekstmenyer kan åpnes med venstreklikk (på knapper) eller høyreklikk (på andre elementer). Dette viser ulike menypunkter som avkrysningsbokser, radioknapper, glidere og undermenyer." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontroller hvordan nettstedslenker forhåndsvises i chatten" msgid "Control how you join voice channels" msgstr "Kontroller hvordan du kobler deg til stemmekanaler" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Kontroller hvordan du kobler deg til stemmekanaler i fellesskap." @@ -5012,7 +5011,7 @@ msgstr "Kontroller klistremerkeanimasjoner" msgid "Control the visibility of favorites throughout the app." msgstr "Kontroller synligheten til favoritter i hele appen." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Kontroller om hint for hurtigtaster vises i verktøytips." @@ -5071,7 +5070,7 @@ msgstr "Kopiert" msgid "Copied to clipboard" msgstr "Kopiert til utklippstavlen" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL kopiert til utklippstavlen" @@ -5149,7 +5148,7 @@ msgstr "Kopier filkobling" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopier FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopier FluxerTag" msgid "Copy GIF" msgstr "Kopier GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopier guild-ID" @@ -5222,7 +5221,7 @@ msgstr "Kopier tekst" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Koselig" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Opprett" @@ -5331,14 +5330,14 @@ msgstr "Opprett og administrer applikasjoner og roboter for kontoen din." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Lag og del egendefinerte emoji- og klistremerkepakker med Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Opprett applikasjon" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Opprett applikasjon" msgid "Create Category" msgstr "Opprett kategori" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Opprettet {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Opprettet av {0}" @@ -5569,7 +5568,7 @@ msgstr "Beskåret bilde er for stort. Velg et mindre utsnitt eller en mindre fil msgid "Current Community" msgstr "Gjeldende fellesskap" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Gjeldende enhet" @@ -5606,7 +5605,7 @@ msgstr "Sitter fast i 1885, vises som frakoblet" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Nå: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Fare (sekundær)" msgid "Danger secondary clicked!" msgstr "Fare (sekundær) ble klikket!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Faredel" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Slett alle meldingene mine" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Slett applikasjon" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Slett vedlegg" @@ -6063,7 +6062,7 @@ msgstr "Slett vedlegg" msgid "Delete Attachment" msgstr "Slett vedlegg" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Slett kategori" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Slett kanal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Slett media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Slett melding" @@ -6215,7 +6214,7 @@ msgstr "Kompakt" msgid "Dense layout" msgstr "Kompakt oppsett" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Distribuert" @@ -6281,7 +6280,7 @@ msgstr "Destinasjonskanal" msgid "Destination URL:" msgstr "Destinasjons-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Løst banner" @@ -6362,7 +6361,7 @@ msgstr "Ulike størrelser (status støttet)" msgid "Different Sizes & Member Counts" msgstr "Ulike størrelser og medlemstall" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Direktemelding" @@ -6541,7 +6540,7 @@ msgstr "Deaktivering av kontoen logger deg ut av alle økter. Du kan slå på ko msgid "Disallow @mention." msgstr "Tillat ikke @omtale." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Ikke tillat uregistrerte kontoer" @@ -6747,7 +6746,7 @@ msgstr "Ikke vis meldingsforhåndsvisninger i DM-listen" msgid "Don't show this again" msgstr "Ikke vis dette igjen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Ikke vis skriveindikatorer i kanallisten" @@ -6760,7 +6759,7 @@ msgstr "Ikke vis skriveindikatorer i kanallisten" msgid "Done" msgstr "Ferdig" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Rediger kategori" msgid "Edit Channel" msgstr "Rediger kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Rediger overskrivinger for roller og medlemmer i denne kanalen." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Innebygd splash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Innebygde splash-bilder kan ikke være animerte. Bruk JPEG, PNG eller WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Innebygd lyd" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emojinavn må være minst 2 tegn og kan kun inneholde bokstaver, tall og understreker. Tillatte filtyper: JPEG, PNG, WebP, GIF. Vi komprimerer bildene til 128x128 piksler. Maks størrelse: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emojipakke" @@ -7473,7 +7472,7 @@ msgstr "Skriv inn telefon" msgid "Enter picture-in-picture" msgstr "Gå inn i bilde-i-bilde" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Gå til utvalgmodus" @@ -7536,7 +7535,7 @@ msgstr "Skriv inn den nye e-posten du vil bruke. Vi sender en kode dit neste." msgid "Enter the SMS code you received." msgstr "Skriv inn SMS-koden du mottok." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "trykk enter for å <0><1>lagre" @@ -7604,7 +7603,7 @@ msgstr "Feil ved gjengivelse av LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc-tasten avslutter tastaturmodus" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "trykk escape for å <0><1>avbryte" @@ -7667,7 +7666,7 @@ msgstr "Avslutt bilde-i-bilde" msgid "Exit Preview" msgstr "Avslutt forhåndsvisning" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Avslutt utvalgmodus" @@ -7701,7 +7700,7 @@ msgstr "Utgått (innen 30 dager)" msgid "Expired {absolute}" msgstr "Utgått {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Utgått mellom {earliest} og {latest}" @@ -7709,7 +7708,7 @@ msgstr "Utgått mellom {earliest} og {latest}" msgid "Expired on {date}" msgstr "Utgått den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Utgått den {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Utløper" msgid "Expires {absolute} ({relativeText})" msgstr "Utløper {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Utløper mellom {earliest} og {latest}" @@ -7730,7 +7729,7 @@ msgstr "Utløper mellom {earliest} og {latest}" msgid "Expires on {date}" msgstr "Utløper den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Utløper den {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Uttrykkspakker er en Plutonium-funksjon" msgid "Expression picker categories" msgstr "Kategorier i uttrykksvelgeren" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Fjern uttrykk" @@ -7839,10 +7838,6 @@ msgstr "Kunne ikke kopiere til utklippstavle" msgid "Failed to copy URL" msgstr "Kunne ikke kopiere URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Kunne ikke opprette applikasjon. Sjekk opplysningene og prøv igjen." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Kunne ikke opprette rolle" @@ -8100,7 +8095,7 @@ msgstr "Kunne ikke oppheve utestengelse. Prøv igjen." msgid "Failed to revoke invite" msgstr "Kunne ikke tilbakekalle invitasjon" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Kunne ikke rotere. Prøv igjen." @@ -8413,7 +8408,7 @@ msgstr "Treningsvenner" msgid "Flags" msgstr "Flagg" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Fleksible tekstkanalnavn" @@ -8577,7 +8572,7 @@ msgstr "Matglade venner" msgid "For 1 hour" msgstr "I 1 time" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "I 1 time" msgid "For 15 minutes" msgstr "I 15 minutter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "I 15 minutter" msgid "For 24 hours" msgstr "I 24 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "I 3 dager" msgid "For 3 hours" msgstr "I 3 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "I 3 timer" msgid "For 8 hours" msgstr "I 8 timer" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Glem abonnementer" msgid "Forgot Password" msgstr "Glemt passord" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" @@ -8795,7 +8790,7 @@ msgstr "Spol frem {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Forward Message" msgstr "Videresend melding" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Videresendt" @@ -9065,7 +9060,7 @@ msgstr "Skaff Fluxer-skrivebordsappen for systemomfattende push-to-talk og noen #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Gå tilbake til kanalen som hadde fokus" msgid "Go forward in navigation history" msgstr "Gå frem i navigasjonshistorikken" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Gå til fellesskap" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Gruppeinvitasjoner" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Gruppemelding" @@ -9548,7 +9543,7 @@ msgstr "Hei, {username}, velkommen! Du kan klare alt." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hei, {username}! Når den når 88 mph, skjer det seriøse greier!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Skjult" @@ -9569,7 +9564,7 @@ msgstr "Skjul favoritter" msgid "Hide Join Messages" msgstr "Skjul velkomstmeldinger" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Skjul hurtigtasttips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Skjul dempede kanaler" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Hvis du vil eksportere dataene dine eller slette meldingene dine først, gå til Personvern-dashbordet i Brukerinnstillinger før du fortsetter." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "bilde" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Inndata med ikoner" msgid "Insert emoji" msgstr "Sett inn emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Installer emojipakke" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Installer klistremerkepakke" @@ -10153,7 +10148,7 @@ msgstr "Installert {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Installasjon av emoji- og klistremerkepakker krever premiumabonnement." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Øyeblikkelige invitasjoner" @@ -10286,7 +10281,7 @@ msgstr "Innstillinger for invitasjonslenke" msgid "Invite Links" msgstr "Invitasjonslenker" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Invitasjonsmodal" msgid "Invite modal preview" msgstr "Forhåndsvisning av invitasjonsmodal" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitasjon sendt for {0}" msgid "Invite sent to {guildName}" msgstr "Invitasjon sendt til {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Invitasjonsplash" @@ -10354,7 +10349,7 @@ msgstr "Inviter til {0}" msgid "Invite to Community" msgstr "Inviter til fellesskap" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitasjon ikke tilgjengelig" @@ -10369,12 +10364,12 @@ msgstr "Invitert av {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invitert av {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invitert av {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Invitasjoner er midlertidig pausert i dette fellesskapet" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Invitasjoner er låst for forhåndsvisningsfellesskap. Bekreft kontoen din ved å sette e-post og passord for å aktivere invitasjoner." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitasjoner deaktivert" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitasjoner deaktivert" @@ -10482,13 +10477,13 @@ msgstr "Bli med i et fellesskap med klistremerker for å komme i gang!" msgid "Join call" msgstr "Bli med i samtale" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Bli med i fellesskap" @@ -10497,15 +10492,23 @@ msgstr "Bli med i fellesskap" msgid "Join community form" msgstr "Skjema for å bli med i fellesskap" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Bli med i Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Bli med i Fluxer HQ for å chatte med teamet og holde deg oppdatert på det nyeste!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Bli med i gruppe" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Bli med i gruppe-chat" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Varsler om deltakelse" @@ -10620,7 +10623,7 @@ msgstr "Hopp til eldste uleste melding" msgid "Jump to page" msgstr "Hopp til side" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Hopp til nåtid" @@ -10690,7 +10693,7 @@ msgstr "Tastekombinasjoner" msgid "Keyboard" msgstr "Tastatur" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Tastaturtips" @@ -10815,7 +10818,7 @@ msgstr "Lær om Plutonium" msgid "Leave blank for a random username" msgstr "La stå tomt for et tilfeldig brukernavn" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Drar du allerede?" msgid "Left" msgstr "Venstre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Venstrejustert" @@ -10945,7 +10948,7 @@ msgstr "lenke" msgid "Link" msgstr "Lenke" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Koble kanal" @@ -11027,7 +11030,7 @@ msgstr "Laster utestengelser..." msgid "Loading communities..." msgstr "Laster fellesskap..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Laster bilde" @@ -11039,8 +11042,8 @@ msgstr "Laster invitasjoner..." msgid "Loading more..." msgstr "Laster mer..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Laster plassholder" @@ -11064,7 +11067,7 @@ msgstr "Laster tema..." msgid "Loading verification methods..." msgstr "Laster verifikasjonsmetoder..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Laster: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokal lydløs" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Logg inn via nettleseren din, og skriv deretter inn koden som vises for msgid "Log in via browser" msgstr "Logg inn via nettleser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Logg inn via nettleser eller egendefinert instans" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Logg ut" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Logg ut {0} enheter" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Logg ut {sessionCount} enheter" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Logg ut 1 enhet" @@ -11141,7 +11144,7 @@ msgstr "Logg ut fra alle enheter" msgid "Log out all other devices" msgstr "Logg ut alle andre enheter" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Logg ut alle andre enheter" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Merk som 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "nevnelser:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "nevnelser:" msgid "Message" msgstr "Melding" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Melding " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Melding @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Melding #" @@ -11838,7 +11842,7 @@ msgstr "Meldinger og media" msgid "Messages Deleted" msgstr "Meldinger slettet" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Meldinger kunne ikke lastes" @@ -12016,7 +12020,7 @@ msgstr "Mer" msgid "More Actions" msgstr "Flere handlinger" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Flere emoji-plasser" @@ -12028,7 +12032,7 @@ msgstr "Flere valg" msgid "More Options" msgstr "Flere valg" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Flere klistremerke-plasser" @@ -12162,8 +12166,8 @@ msgstr "Demp kanal" msgid "Mute Channel" msgstr "Demp kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Dempet til {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Å dempe et fellesskap hindrer uleste indikatorer og varsler med mindre du blir nevnt" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Felles fellesskap ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Felles venner ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Felles grupper ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Min applikasjon" @@ -12247,7 +12251,7 @@ msgstr "Mitt fantastiske klistremerke" msgid "My Category" msgstr "Min kategori" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mine enheter" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigasjon" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Trenger du en konto?" @@ -12364,7 +12368,7 @@ msgstr "Nettverk" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Nettverksfeil" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Ingen fellesskapsbanner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Ingen beskrivelse oppgitt." @@ -12684,15 +12688,15 @@ msgstr "Ingen mikrofoner oppdaget" msgid "No more scheduled messages." msgstr "Ingen flere planlagte meldinger." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Ingen felles fellesskap funnet." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Ingen felles venner funnet." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Ingen felles grupper funnet." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Ikke din greie? Du kan slå av denne funksjonen når som helst." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Varslingsoverskrivelser" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Varsle brukere med denne rollen som har tillatelse til å se denne kanal msgid "now" msgstr "nå" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Nå" @@ -13090,7 +13094,7 @@ msgstr "Ved klikk" msgid "on:" msgstr "på:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Når den slettes, fjernes programmet og legitimasjonen permanent." @@ -13252,7 +13256,7 @@ msgstr "Bare åpne DM-er" msgid "Open Fluxer" msgstr "Åpne Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Åpne bildet i full visning" @@ -13368,7 +13372,7 @@ msgstr "Åpne Visionary-fellesskapet" msgid "Opening..." msgstr "Åpner..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatør" @@ -13441,7 +13445,7 @@ msgstr "Originalmeldingen ble slettet" msgid "Other" msgstr "Annet" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Andre enheter" @@ -13501,7 +13505,7 @@ msgstr "Overskriv status for uavkrevd konto" msgid "Override unread gift inventory status" msgstr "Overskriv status for ulest gavebeholdning" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Oversikt" @@ -13695,7 +13699,7 @@ msgstr "Tillatelser" msgid "Permissions granted" msgstr "Tillatelser gitt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Personlige notater" @@ -13868,12 +13872,12 @@ msgstr "Spill av" msgid "Play animated emojis" msgstr "Spill av animerte emojier" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Spill av lyd" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Lim inn lenken til meldingen du rapporterer." msgid "Please provide an email address." msgstr "Oppgi en e-postadresse." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Prøv igjen eller gå tilbake til søknadslisten." @@ -13989,7 +13993,7 @@ msgstr "Plutonium-fordeler" msgid "Plutonium Subscription" msgstr "Plutonium-abonnement" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Personvernoversikt" msgid "Privacy Policy" msgstr "Personvernerklæring" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Rens dette klistremerket fra lagring og CDN" msgid "Push Notification Inactive Timeout" msgstr "Push-varsling inaktiv tidsavbrudd" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push-varslinger" @@ -14412,7 +14416,7 @@ msgstr "Reaksjonsinteraksjon deaktivert" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaksjoner" @@ -14583,7 +14587,7 @@ msgstr "Oppdater push-abonnement" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerer" @@ -14591,19 +14595,19 @@ msgstr "Regenerer" msgid "Regenerate backup codes" msgstr "Regenerer backupkoder" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerer bot-token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerer klienthemmelighet?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerering ugyldiggjør den nåværende hemmeligheten. Oppdater kode som bruker den gamle verdien." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerering ugyldiggjør den nåværende tokenen. Oppdater kode som bruker den gamle verdien." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Fjern filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Fjern filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Rapporten ble sendt. Sikkerhetsteamet vårt går gjennom den snart." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Rapporter bruker" @@ -15105,7 +15109,7 @@ msgstr "Etterspurte omfang" msgid "Require 2FA for moderation actions" msgstr "Krev 2FA for moderatorhandlinger" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Krev dobbeltklikk for å bli med i tale-kanaler" @@ -15144,7 +15148,7 @@ msgstr "Krever alt fra Medium, pluss å ha vært medlem av serveren i minst 10 m msgid "Requires Plutonium" msgstr "Krever Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Planlegg melding på nytt" @@ -15290,11 +15294,11 @@ msgstr "Abonner igjen" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Prøv igjen" @@ -15359,7 +15363,7 @@ msgstr "Opphev" msgid "Revoke Ban" msgstr "Opphev utestengelse" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Opphev enhet" @@ -15386,7 +15390,7 @@ msgstr "Spol tilbake {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Right" msgstr "Høyre" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Høyrejustert" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Søk etter medlemmer..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Søk etter meldinger" @@ -15834,13 +15838,13 @@ msgstr "Søk etter roller eller medlemmer..." msgid "Search saved media" msgstr "Søk i lagrede medier" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Søkeområde" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Søkeområde: {0}" @@ -15857,7 +15861,7 @@ msgstr "Søk i innstillinger..." msgid "Search stickers..." msgstr "Søk etter klistremerker..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Søkeforslag" @@ -15938,7 +15942,7 @@ msgstr "Sikkerhetsnøkkel / Passordnøkkel" msgid "Security key verification failed. Please try again." msgstr "Verifisering av sikkerhetsnøkkel mislyktes. Prøv igjen." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Se alle enheter som er pålogget kontoen din. Opphev økter du ikke kjenner igjen." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Velg konto" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Velg alt" @@ -16040,7 +16044,7 @@ msgstr "Velg mediestørrelse for innebygd innhold fra lenker" msgid "Select media size for uploaded attachments" msgstr "Velg mediestørrelse for opplastede vedlegg" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Velg felles visning" @@ -16151,9 +16155,9 @@ msgstr "Send kode" msgid "Send Code" msgstr "Send kode" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Send venneforespørsel" @@ -16170,7 +16174,7 @@ msgstr "Send melding · Høyreklikk for å planlegge" msgid "Send Message Disabled" msgstr "Sending av melding deaktivert" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Send meldinger" @@ -16624,7 +16628,7 @@ msgstr "Vis gaveknapp" msgid "Show inline images and videos" msgstr "Vis bilder og videoer innebygd" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Vis bare skriveindikatoren uten avatarer" @@ -16788,11 +16792,11 @@ msgstr "Vis gaven som allerede innløst" msgid "Show this role separately" msgstr "Vis denne rollen separat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Vis skriveindikator med brukeravatarer i kanallisten" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Vis skriving i valgt kanal" @@ -17151,7 +17155,7 @@ msgstr "Spansk (Spania)" msgid "Speak" msgstr "Snakk" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Les melding" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Begynn å dele" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Start videosamtale" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Start taleoppringning" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Klistremerketetthet" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Klistremerkepakke" @@ -17427,7 +17431,7 @@ msgstr "Stopp ringing" msgid "Stop Sharing" msgstr "Stopp deling" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Stopp å snakke" @@ -17570,19 +17574,19 @@ msgstr "Undertrykk alle rollenvnevnelser" msgid "Suppress All Role @mentions" msgstr "Undertrykk alle rollenvnevnelser" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Undertrykk innebygg" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekst" msgid "Text (NSFW)" msgstr "Tekst (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Tekstkanal" @@ -18028,10 +18032,10 @@ msgstr "Denne handlingen krever verifisering for å fortsette." msgid "This application" msgstr "Denne applikasjonen" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Dette vedlegget er utløpt" @@ -18039,7 +18043,7 @@ msgstr "Dette vedlegget er utløpt" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Denne boten ber om administratorrettighet. Vi anbefaler ikke å gi dette til produksjonsapper med mindre du stoler fullt på utvikleren. Be dem eventuelt om å be om et redusert sett med rettigheter. Lukk siden hvis du er usikker." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Dette kan ikke angres. Å fjerne applikasjonen sletter også boten." @@ -18101,7 +18105,7 @@ msgstr "Dette fellesskapet har nådd maks antall medlemmer og godtar ikke nye me msgid "This community has temporarily disabled invites." msgstr "Dette fellesskapet har midlertidig deaktivert invitasjoner." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Dette fellesskapet har midlertidig deaktivert invitasjoner. Prøv igjen senere." @@ -18178,7 +18182,7 @@ msgstr "Denne invitasjonen kan brukes ubegrenset." msgid "This invite link never expires." msgstr "Denne invitasjonslenken utløper aldri." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Dette er starten på <0>{displayName}. Legg til venner for å starte en samtale!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Dette er starten på direktemeldingene dine med <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Dette var en @silent-melding." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Dette vil skape et brudd i tid-rom-kontinuet og kan ikke angres." msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Dette skjuler alle UI-elementer knyttet til favoritter, inkludert knapper og menyelementer. Dine eksisterende favoritter beholdes og kan aktiveres igjen når som helst via <0>Brukerinnstillinger → Utseende → Favoritter." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Dette endrer den eksisterende planlagte meldingen i stedet for å sende den med en gang." @@ -18387,8 +18391,8 @@ msgstr "Dette fjerner den lagrede økten for denne kontoen." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Dette vil erstatte ditt nåværende tilpassede tema. Du kan redigere det senere i brukerinnstillingene." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatyrbilde for {title}" @@ -18485,7 +18489,7 @@ msgstr "Toaster vises øverst midt på skjermen." msgid "today" msgstr "i dag" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "I dag" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Prøv igjen" @@ -18737,7 +18741,7 @@ msgstr "Prøv et annet navn eller sjekk stavingen." msgid "Try another search term" msgstr "Prøv et annet søkeord" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Prøv å be om en ny invitasjon." @@ -18864,7 +18868,7 @@ msgstr "Skriftstørrelse" msgid "Type your message here..." msgstr "Skriv meldingen din her..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Skrivehendelser" @@ -18877,11 +18881,11 @@ msgstr "Skriveindikator" msgid "Typing Indicator" msgstr "Skriveindikator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Skriveindikator + avatarer" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Kun skriveindikator" @@ -18961,11 +18965,11 @@ msgstr "Kan ikke starte samtale" msgid "Unable to start email change" msgstr "Kan ikke starte e-postendring" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Utilgjengelig for alle" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Utilgjengelig for alle bortsett fra ansatte" @@ -18978,7 +18982,7 @@ msgstr "Utilgjengelig for alle bortsett fra ansatte" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Opphev blokkering av brukeren før du sender venneforespørsel." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Opphev blokkering av bruker" @@ -19165,7 +19169,7 @@ msgstr "Ukjent feil" msgid "Unknown Gift" msgstr "Ukjent gave" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Ukjent invitasjon" @@ -19205,11 +19209,11 @@ msgstr "ukjent-rolle" msgid "Unlimited" msgstr "Ubegrenset" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Ubegrenset emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Ubegrensede klistremerker" @@ -19254,7 +19258,7 @@ msgstr "Lås opp klistremerker i DM-er med Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Aktiver lyd for kategori" msgid "Unmute Channel" msgstr "Aktiver lyd for kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Aktiver lyd for favoritter" msgid "Unmute User" msgstr "Aktiver lyd for bruker" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Uten navn" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Til jeg endrer det" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Uverifisert e-post" msgid "Up to 4K/60fps" msgstr "Opptil 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Oppdater" @@ -19629,7 +19633,7 @@ msgstr "Last opp inngangslyd" msgid "Upload Failed" msgstr "Opplasting mislyktes" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Last opp fil" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Bruker flyttet kanal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Brukerprofil" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Brukerprofil: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Verdier" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Vanity-URL" @@ -20059,14 +20063,14 @@ msgstr "Verifisering kan være nødvendig før du ser sikkerhetskodene dine." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verifisert fellesskap" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verifisert gruppe" @@ -20167,8 +20171,8 @@ msgstr "Videokvalitet" msgid "Video Settings" msgstr "Videoinnstillinger" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videominiatyr" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Vis koder" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Vis fellesskapsprofil" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Vis gavebeholdning" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Vis global profil" @@ -20329,7 +20333,7 @@ msgstr "Valg av bruddkategori" msgid "Violent or Graphic Content" msgstr "Voldelig eller grafisk innhold" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-stemme" @@ -20341,7 +20345,7 @@ msgstr "Synlige knapper" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Lydsamtaler" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Lydkanal" @@ -20442,7 +20446,7 @@ msgstr "Lydkanal" msgid "Voice Channel Full" msgstr "Lydkanal full" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Oppførsel ved innlogging i lydkanal" @@ -20559,7 +20563,7 @@ msgstr "Vi klarte ikke å bli med i dette fellesskapet nå." msgid "We couldn't load the invites at this time." msgstr "Vi kunne ikke laste inn invitasjonene akkurat nå." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Vi klarte ikke å laste inn denne appen" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Vi har problemer med å koble til Fluxers servere. Dette kan være et midlertidig nettverksproblem eller planlagt vedlikehold." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Vi har problemer med å koble til romtid-kontinuumet. Sjekk tilkoblingen din og prøv igjen." @@ -20759,7 +20763,7 @@ msgstr "Helgekrigere" msgid "Welcome and system messages will appear here." msgstr "Velkomst- og systemmeldinger vises her." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Velkommen tilbake" @@ -20820,7 +20824,7 @@ msgstr "Hva skjer?" msgid "What's included in your export:" msgstr "Hva som er inkludert i eksporten din:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Når deaktivert (standard), vises ikke skriveindikatorer i kanalen du ser på." @@ -20836,7 +20840,7 @@ msgstr "Når aktivert, holder et raskt trykk på snarveien for push-to-talk mikr msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Når aktivert, viser feilsøkingsmenyer i hele appen for å inspisere og kopiere rå JSON-objekter for interne datastrukturer som meldinger, kanaler, brukere og fellesskap. Inkluderer også verktøy for å feilsøke Fluxer Markdown-parserens ytelse og AST for enhver melding." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Når aktivert, skjules snarveismerker i verktøytips." @@ -20868,7 +20872,7 @@ msgstr "Når aktivert, bruker datamaskinens lokalinnstilling for å bestemme 12/ msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Når aktivert, kan du favorisere kanaler og de vises i Favoritter-seksjonen. Når deaktivert, skjules alle UI-elementer relatert til favoritter (knapper, menyvalg). Dine eksisterende favoritter beholdes." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Når aktivert, må du dobbeltklikke på lydkanaler for å bli med. Når deaktivert (standard), blir du med med ett klikk." @@ -20970,7 +20974,7 @@ msgstr "Årlig {yearlyPrice}" msgid "yesterday" msgstr "i går" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "I går" @@ -21013,7 +21017,7 @@ msgstr "Du redigerer profilen din for dette fellesskapet. Denne profilen vil bar msgid "You are in slowmode. Please wait before sending another message." msgstr "Du er i saktemodus. Vent før du sender en ny melding." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Du er nå utvikler!" @@ -21113,7 +21117,7 @@ msgstr "Du kan bruke lenker og Markdown for å formatere teksten din. Med <0/> k msgid "You can't add new reactions while you're on timeout." msgstr "Du kan ikke legge til nye reaksjoner mens du er i timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Du kan ikke legge deg til som venn" @@ -21128,7 +21132,7 @@ msgstr "Du kan ikke samhandle med reaksjoner i søkeresultater, da det kan forst msgid "You can't join while you're on timeout." msgstr "Du kan ikke bli med mens du er i timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Du kan ikke fjerne lyddemping fordi du har blitt dempet av en moderator. 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Du har ikke tillatelse til å sende meldinger i denne kanalen." @@ -21439,7 +21443,7 @@ msgstr "Du vil vises som frakoblet" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Du vil konfigurere hvilke tillatelser boten får på neste skjerm." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Du må logge inn igjen på alle enheter du ble logget ut fra" @@ -21508,7 +21512,7 @@ msgstr "Du er i stemmekanalen" msgid "You're sending messages too quickly" msgstr "Du sender meldinger for raskt" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 709bbb71..96c5c4f0 100644 --- a/fluxer_app/src/locales/pl/messages.po +++ b/fluxer_app/src/locales/pl/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# pozycja} other {# pozycji}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# członek} other {# członków}}" @@ -566,18 +566,18 @@ msgstr "Obrazy {label} nie mogą być animowane. Użyj formatu JPEG, PNG lub Web #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} członek" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} członkowie" @@ -612,11 +612,11 @@ msgstr "{minutes} minut i {seconds} sekund" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minut i 1 sekunda" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} wspólna społeczność" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} wspólne społeczności" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} uczestników w rozmowie" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "Pozostało {remaining} znaków" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Pozostało {remaining} znaków. Zdobądź Plutonium, aby pisać do {premiumMaxLength} znaków." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} członek" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} członkowie" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "wzmianki @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Kolor akcentu" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Akceptuj" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Zaakceptuj prośbę o znajomość" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Zaakceptuj zaproszenie" @@ -1364,8 +1364,8 @@ msgstr "Akceptuj zaproszenie" msgid "Accept the incoming call" msgstr "Odbierz przychodzące połączenie" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Przyjęcie tego zaproszenia automatycznie instaluje pakiet." @@ -1594,7 +1594,7 @@ msgstr "Dodaj ulubione kanały" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Zezwoliłeś na {0}." msgid "Already have an account?" msgstr "Masz już konto?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Już dołączyłeś" @@ -2191,7 +2191,7 @@ msgstr "Animowane awatary i banery" msgid "Animated Avatars Require Plutonium" msgstr "Animowane awatary wymagają Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animowany baner" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animowane emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animowany GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animowane wideo GIF" @@ -2219,7 +2219,7 @@ msgstr "Animowane wideo GIF" msgid "Animated GIF Video" msgstr "Animowane wideo GIF" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animowana ikona" @@ -2277,7 +2277,7 @@ msgstr "Każdy może wspomnieć tę rolę. Członkowie z uprawnieniem \"Używaj msgid "API Endpoint" msgstr "Punkt końcowy API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informacje o aplikacji" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nazwa aplikacji" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Nazwa aplikacji jest wymagana" @@ -2554,7 +2553,7 @@ msgstr "Czy na pewno chcesz cofnąć bana dla <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Załącznik {0}" msgid "Attachment Actions" msgstr "Akcje załącznika" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Załącznik wygasł" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autouzupełnianie" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatyczny" @@ -2859,7 +2858,7 @@ msgstr "Wstecz" msgid "Back to Applications" msgstr "Powrót do aplikacji" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Powrót do listy" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Powrót do logowania" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Powrót do nadpisywania" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Powrót do ról" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Powrót do ustawień" @@ -3003,7 +3002,7 @@ msgstr "Zbanowani użytkownicy" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Baner" @@ -3096,7 +3095,7 @@ msgstr "Limit znaków w bio" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Żądany zakres bota" msgid "Bot token" msgstr "Token bota" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token bota został odświeżony. Zaktualizuj kod korzystający ze starego tokena." @@ -3435,7 +3434,7 @@ msgstr "Ustawienia kamery" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Ustawienia kamery" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Ustawienia kamery" msgid "Cancel" msgstr "Anuluj" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Anuluj zaproszenie" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Uwaga! Masz niezapisane zmiany." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategoria" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nazwa kategorii" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Ustawienia kategorii" @@ -3617,7 +3616,7 @@ msgstr "Ostrożnie" msgid "Center" msgstr "Centrum" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Wyśrodkowane" @@ -3765,7 +3764,7 @@ msgstr "Zmieniono bitrate na {0}." msgid "Changed the voice region to {0}." msgstr "Zmieniono region głosowy na {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanał" @@ -3828,11 +3827,11 @@ msgstr "ID kanału skopiowane do schowka" msgid "Channel link copied" msgstr "Link kanału skopiowany" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Tryb wskaźnika pisania na liście kanałów" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Wskaźniki pisania na liście kanałów" @@ -3891,7 +3890,7 @@ msgstr "Kanał usunięty z ulubionych" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Ustawienia kanału" @@ -4052,7 +4051,7 @@ msgstr "Wybierz sposób wyświetlania godzin w aplikacji." msgid "Choose how typing indicators appear in the channel list" msgstr "Wybierz, jak wskaźniki pisania pojawiają się na liście kanałów" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Wybierz, jak wskaźniki pisania pojawiają się na liście kanałów, gdy ktoś pisze." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Zgłoś swoje konto, aby odebrać ten prezent." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Zgłoś swoje konto, aby wysyłać zaproszenia do znajomych." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Wyczyść uprawnienia" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Wyczyść wyszukiwanie" msgid "Clear search input" msgstr "Wyczyść pole wyszukiwania" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Wyczyść zaznaczenie" @@ -4314,7 +4313,7 @@ msgstr "Kliknij ikonę przesyłania obok dowolnego dźwięku, aby zastąpić go msgid "Click the verification link in the email." msgstr "Kliknij link weryfikacyjny w e-mailu." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Kliknij, aby dodać notatkę" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Kliknij, by odebrać prezent!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Kliknij, aby skopiować" @@ -4388,7 +4387,7 @@ msgstr "Kliknij, aby zobaczyć wszystkie reakcje" msgid "Client secret" msgstr "Sekret klienta" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Sekret klienta został wygenerowany ponownie. Zaktualizuj kod korzystający ze starego sekretu." @@ -4649,8 +4648,8 @@ msgstr "Społeczność szerzy nienawiść ze względu na cechy chronione" msgid "Community promotes or facilitates illegal activities" msgstr "Społeczność promuje lub ułatwia działalność nielegalną" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menu kontekstowe" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Menu kontekstowe można otworzyć lewym przyciskiem myszy (na przyciskach) lub prawym (na innych elementach). Przykład pokazuje różne pozycje menu, w tym pola wyboru, przyciski radiowe, suwaki i podmenu." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontroluj, jak linki do stron internetowych są wyświetlane w czacie" msgid "Control how you join voice channels" msgstr "Kontroluj sposób dołączania do kanałów głosowych" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Kontroluj sposób dołączania do kanałów głosowych w społecznościach." @@ -5012,7 +5011,7 @@ msgstr "Kontroluj animacje naklejek" msgid "Control the visibility of favorites throughout the app." msgstr "Kontroluj widoczność ulubionych w aplikacji." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Kontroluj, czy podpowiedzi skrótów klawiaturowych pojawiają się w dymkach pomocniczych." @@ -5071,7 +5070,7 @@ msgstr "Skopiowano" msgid "Copied to clipboard" msgstr "Skopiowano do schowka" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL skopiowano do schowka" @@ -5149,7 +5148,7 @@ msgstr "Kopiuj link do pliku" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopiuj FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopiuj FluxerTag" msgid "Copy GIF" msgstr "Kopiuj GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopiuj identyfikator gildii" @@ -5222,7 +5221,7 @@ msgstr "Kopiuj tekst" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Przytulny" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Utwórz" @@ -5331,14 +5330,14 @@ msgstr "Twórz i zarządzaj aplikacjami oraz botami dla swojego konta." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Twórz i udostępniaj własne pakiety emoji i naklejek dzięki Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Utwórz aplikację" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Utwórz aplikację" msgid "Create Category" msgstr "Utwórz kategorię" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Utworzono {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Utworzone przez {0}" @@ -5569,7 +5568,7 @@ msgstr "Przycięty obraz jest zbyt duży. Wybierz mniejszy obszar albo mniejszy msgid "Current Community" msgstr "Aktualna społeczność" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Aktualne urządzenie" @@ -5606,7 +5605,7 @@ msgstr "Uwięziony w 1885, widoczny jako offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Obecnie: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Drugorzędne niebezpieczeństwo" msgid "Danger secondary clicked!" msgstr "Kliknięto drugorzędne niebezpieczeństwo!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Strefa zagrożenia" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Usuń wszystkie moje wiadomości" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Usuń aplikację" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Usuń załącznik" @@ -6063,7 +6062,7 @@ msgstr "Usuń załącznik" msgid "Delete Attachment" msgstr "Usuń załącznik" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Usuń kategorię" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Usuń kanał" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Usuń multimedia" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Usuń wiadomość" @@ -6215,7 +6214,7 @@ msgstr "Zwarty" msgid "Dense layout" msgstr "Zwarty układ" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Wdrożone" @@ -6281,7 +6280,7 @@ msgstr "Kanał docelowy" msgid "Destination URL:" msgstr "Docelowy URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Oderwany baner" @@ -6362,7 +6361,7 @@ msgstr "Różne rozmiary (status obsługiwany)" msgid "Different Sizes & Member Counts" msgstr "Różne rozmiary i liczba członków" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Wiadomość bezpośrednia" @@ -6541,7 +6540,7 @@ msgstr "Wyłączenie konta wyloguje cię ze wszystkich sesji. Możesz ponownie w msgid "Disallow @mention." msgstr "Zabroń używania @wzmianki." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Zabroń nieprzypisanych kont" @@ -6747,7 +6746,7 @@ msgstr "Nie pokazuj podglądów wiadomości na liście DM" msgid "Don't show this again" msgstr "Nie pokazuj tego ponownie" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Nie pokazuj wskaźników pisania na liście kanałów" @@ -6760,7 +6759,7 @@ msgstr "Nie pokazuj wskaźników pisania na liście kanałów" msgid "Done" msgstr "Gotowe" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Edytuj kategorię" msgid "Edit Channel" msgstr "Edytuj kanał" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Edytuj nadpisania dla ról i członków na tym kanale." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Ekran powitalny osadzenia" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Obrazy ekranu powitalnego osadzenia nie mogą być animowane. Użyj JPEG, PNG lub WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Osadzone audio" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Nazwy emoji muszą mieć co najmniej 2 znaki i mogą zawierać tylko znaki alfanumeryczne oraz podkreślenia. Dozwolone typy plików: JPEG, PNG, WebP, GIF. Kompresujemy obrazy do 128×128 pikseli. Maksymalny rozmiar: {0} KB na emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Pakiet emoji" @@ -7473,7 +7472,7 @@ msgstr "Wprowadź numer telefonu" msgid "Enter picture-in-picture" msgstr "Wejdź w obraz w obrazie" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Włącz tryb zaznaczania" @@ -7536,7 +7535,7 @@ msgstr "Wprowadź nowy adres e-mail, którego chcesz użyć. Wyślemy tam kod." msgid "Enter the SMS code you received." msgstr "Wprowadź otrzymany kod SMS." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "wciśnij enter, aby <0><1>zachować" @@ -7604,7 +7603,7 @@ msgstr "Błąd renderowania LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc wychodzi z trybu klawiaturowego" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "naciśnij escape, aby <0><1>anulować" @@ -7667,7 +7666,7 @@ msgstr "Wyjdź z obrazu w obrazie" msgid "Exit Preview" msgstr "Zakończ podgląd" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Zakończ tryb zaznaczania" @@ -7701,7 +7700,7 @@ msgstr "Wygasło (w ciągu 30 dni)" msgid "Expired {absolute}" msgstr "Wygasło {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Wygasło między {earliest} a {latest}" @@ -7709,7 +7708,7 @@ msgstr "Wygasło między {earliest} a {latest}" msgid "Expired on {date}" msgstr "Wygasło {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Wygasło {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Kończy ważność" msgid "Expires {absolute} ({relativeText})" msgstr "Kończy ważność {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Kończy ważność między {earliest} a {latest}" @@ -7730,7 +7729,7 @@ msgstr "Kończy ważność między {earliest} a {latest}" msgid "Expires on {date}" msgstr "Kończy ważność {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Kończy ważność {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Pakiety wyrażeń to funkcja Plutonium" msgid "Expression picker categories" msgstr "Kategorie selektora wyrażeń" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Czyszczenie wyrażeń" @@ -7839,10 +7838,6 @@ msgstr "Nie udało się skopiować do schowka" msgid "Failed to copy URL" msgstr "Nie udało się skopiować adresu URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Nie udało się utworzyć aplikacji. Sprawdź dane i spróbuj ponownie." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Nie udało się utworzyć roli" @@ -8100,7 +8095,7 @@ msgstr "Nie udało się cofnąć blokady. Spróbuj ponownie." msgid "Failed to revoke invite" msgstr "Nie udało się cofnąć zaproszenia" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Nie udało się obrócić. Spróbuj ponownie." @@ -8413,7 +8408,7 @@ msgstr "Znajomi fit" msgid "Flags" msgstr "Flagi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Elastyczne nazwy kanałów tekstowych" @@ -8577,7 +8572,7 @@ msgstr "Smakosze" msgid "For 1 hour" msgstr "Przez 1 godzinę" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Na 1 godzinę" msgid "For 15 minutes" msgstr "Na 15 minut" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Na 15 minut" msgid "For 24 hours" msgstr "Przez 24 godziny" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Na 3 dni" msgid "For 3 hours" msgstr "Przez 3 godziny" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Na 3 godziny" msgid "For 8 hours" msgstr "Przez 8 godzin" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Zapomnij subskrypcje" msgid "Forgot Password" msgstr "Nie pamiętasz hasła?" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Nie pamiętasz hasła?" @@ -8795,7 +8790,7 @@ msgstr "Przewiń o {DEFAULT_SEEK_AMOUNT} sekund" msgid "Forward Message" msgstr "Przekaż wiadomość" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Przekazano" @@ -9065,7 +9060,7 @@ msgstr "Pobierz aplikację Fluxer na pulpit, aby korzystać z globalnego push-to #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Wróć do wcześniej wybranego kanału tekstowego" msgid "Go forward in navigation history" msgstr "Przejdź dalej w historii nawigacji" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Przejdź do społeczności" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Zaproszenia grupowe" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Wiadomość grupowa" @@ -9548,7 +9543,7 @@ msgstr "Hej, {username}, witaj! Możesz osiągnąć wszystko." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hej, {username}! Gdy osiągnie 88 mph, zobaczysz prawdziwe cuda!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Ukryte" @@ -9569,7 +9564,7 @@ msgstr "Ukryj ulubione" msgid "Hide Join Messages" msgstr "Ukryj wiadomości o dołączeniach" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ukryj podpowiedzi klawiaturowe w podpowiedziach" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ukryj wyciszone kanały" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Jeśli chcesz najpierw wyeksportować dane lub usunąć wiadomości, odwiedź sekcję Panel prywatności w Ustawieniach użytkownika przed kontynuowaniem." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "obraz" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Wejścia z ikonami" msgid "Insert emoji" msgstr "Wstaw emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Zainstaluj pakiet emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Zainstaluj pakiet naklejek" @@ -10153,7 +10148,7 @@ msgstr "Zainstalowano {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalacja pakietów emoji i naklejek wymaga subskrypcji premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Błyskawiczne zaproszenia" @@ -10286,7 +10281,7 @@ msgstr "Ustawienia linku zaproszenia" msgid "Invite Links" msgstr "Linki zaproszeń" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Okno zaproszenia" msgid "Invite modal preview" msgstr "Podgląd okna zaproszenia" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Zaproszenie wysłane dla {0}" msgid "Invite sent to {guildName}" msgstr "Zaproszenie wysłane do {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash zaproszenia" @@ -10354,7 +10349,7 @@ msgstr "Zaproś do {0}" msgid "Invite to Community" msgstr "Zaproś do społeczności" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Zaproszenie niedostępne" @@ -10369,12 +10364,12 @@ msgstr "Zaprosił(a) {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Zaprosił(a) {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Zaprosił(a) {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Zaproszenia są obecnie wstrzymane w tej społeczności" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Zaproszenia są zablokowane w społecznościach roboczych. Aktywuj konto, ustawiając e-mail i hasło, aby włączyć zaproszenia." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Zaproszenia wyłączone" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Zaproszenia wyłączone" @@ -10482,13 +10477,13 @@ msgstr "Dołącz do społeczności z naklejkami, aby zacząć!" msgid "Join call" msgstr "Dołącz do rozmowy" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Dołącz do społeczności" @@ -10497,15 +10492,23 @@ msgstr "Dołącz do społeczności" msgid "Join community form" msgstr "Formularz dołączenia do społeczności" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Dołącz do Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Dołącz do Fluxer HQ, aby porozmawiać z zespołem i być na bieżąco!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Dołącz do grupy" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Dołącz do grupowej wiadomości prywatnej" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Powiadomienia o dołączeniu" @@ -10620,7 +10623,7 @@ msgstr "Przejdź do najstarszej nieprzeczytanej wiadomości" msgid "Jump to page" msgstr "Przejdź do strony" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Przejdź do teraz" @@ -10690,7 +10693,7 @@ msgstr "Skróty klawiszowe" msgid "Keyboard" msgstr "Klawiatura" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Podpowiedzi klawiatury" @@ -10815,7 +10818,7 @@ msgstr "Dowiedz się o Plutonium" msgid "Leave blank for a random username" msgstr "Zostaw puste, aby wygenerować losową nazwę użytkownika" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Tak szybko wychodzisz?" msgid "Left" msgstr "Opuścił" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Wyrównane do lewej" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Połącz kanał" @@ -11027,7 +11030,7 @@ msgstr "Ładowanie banów..." msgid "Loading communities..." msgstr "Ładowanie społeczności..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Ładowanie obrazu" @@ -11039,8 +11042,8 @@ msgstr "Ładowanie zaproszeń..." msgid "Loading more..." msgstr "Ładowanie kolejnych..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Ładowanie zastępnika" @@ -11064,7 +11067,7 @@ msgstr "Ładowanie motywu..." msgid "Loading verification methods..." msgstr "Ładowanie metod weryfikacji..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Ładowanie: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokalne wyciszenie mikrofonu" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Zaloguj się przez przeglądarkę, a następnie wpisz wyświetlony kod, msgid "Log in via browser" msgstr "Zaloguj się przez przeglądarkę" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Zaloguj się przez przeglądarkę lub niestandardową instancję" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Wyloguj się" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Wyloguj {0} urządzeń" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Wyloguj {sessionCount} urządzeń" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Wyloguj 1 urządzenie" @@ -11141,7 +11144,7 @@ msgstr "Wyloguj ze wszystkich urządzeń" msgid "Log out all other devices" msgstr "Wyloguj wszystkie inne urządzenia" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Wyloguj wszystkie pozostałe urządzenia" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Oznacz jako 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "wzmianki:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "wzmianki:" msgid "Message" msgstr "Wiadomość" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Wiadomość " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Wiadomość @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Wiadomość #" @@ -11838,7 +11842,7 @@ msgstr "Wiadomości i media" msgid "Messages Deleted" msgstr "Wiadomości usunięte" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Nie udało się załadować wiadomości" @@ -12016,7 +12020,7 @@ msgstr "Więcej" msgid "More Actions" msgstr "Więcej akcji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Więcej miejsc na emoji" @@ -12028,7 +12032,7 @@ msgstr "Więcej opcji" msgid "More Options" msgstr "Więcej opcji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Więcej miejsc na naklejki" @@ -12162,8 +12166,8 @@ msgstr "Wycisz kanał" msgid "Mute Channel" msgstr "Wycisz kanał" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Wyciszono do {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Wyciszenie społeczności zapobiega pojawianiu się nieprzeczytanych wskaźników i powiadomień, chyba że zostaniesz oznaczony" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Wzajemne społeczności ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Wzajemni znajomi ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Wzajemne grupy ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Moja aplikacja" @@ -12247,7 +12251,7 @@ msgstr "Moja niesamowita naklejka" msgid "My Category" msgstr "Moja kategoria" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Moje urządzenia" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Nawigacja" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Potrzebujesz konta?" @@ -12364,7 +12368,7 @@ msgstr "Sieć" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Błąd sieci" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Brak banera społeczności" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Brak opisu." @@ -12684,15 +12688,15 @@ msgstr "Nie wykryto mikrofonów" msgid "No more scheduled messages." msgstr "Brak kolejnych zaplanowanych wiadomości." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nie znaleziono wspólnych społeczności." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nie znaleziono wspólnych znajomych." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nie znaleziono wspólnych grup." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "To nie twoja bajka? W każdej chwili możesz wyłączyć tę funkcję." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Nadpisy powiadomień" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Powiadom użytkowników z tą rolą, którzy widzą ten kanał." msgid "now" msgstr "teraz" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Teraz" @@ -13090,7 +13094,7 @@ msgstr "Po kliknięciu" msgid "on:" msgstr "włączone:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Po usunięciu aplikacja i dane logowania zostaną trwale usunięte." @@ -13252,7 +13256,7 @@ msgstr "Tylko DM-y" msgid "Open Fluxer" msgstr "Otwórz Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Otwórz obraz w pełnym widoku" @@ -13368,7 +13372,7 @@ msgstr "Otwórz społeczność Visionary" msgid "Opening..." msgstr "Otwieranie..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Oryginalna wiadomość została usunięta" msgid "Other" msgstr "Inne" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Inne urządzenia" @@ -13501,7 +13505,7 @@ msgstr "Nadpisz status nieodebranego konta" msgid "Override unread gift inventory status" msgstr "Nadpisz status nieprzeczytanego prezentu" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Przegląd" @@ -13695,7 +13699,7 @@ msgstr "Uprawnienia" msgid "Permissions granted" msgstr "Uprawnienia przyznane" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Notatki osobiste" @@ -13868,12 +13872,12 @@ msgstr "Odtwórz" msgid "Play animated emojis" msgstr "Odtwórz animowane emoji" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Odtwórz audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Wklej link do wiadomości, którą zgłaszasz." msgid "Please provide an email address." msgstr "Podaj adres e-mail." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Spróbuj ponownie albo wróć do listy aplikacji." @@ -13989,7 +13993,7 @@ msgstr "Korzyści Plutonium" msgid "Plutonium Subscription" msgstr "Subskrypcja Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Panel prywatności" msgid "Privacy Policy" msgstr "Polityka prywatności" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Wyczyść tę naklejkę z magazynu i CDN" msgid "Push Notification Inactive Timeout" msgstr "Limit czasu nieaktywności powiadomień push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Powiadomienia push" @@ -14412,7 +14416,7 @@ msgstr "Interakcje reakcji wyłączone" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reakcje" @@ -14583,7 +14587,7 @@ msgstr "Odśwież subskrypcję push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Wygeneruj ponownie" @@ -14591,19 +14595,19 @@ msgstr "Wygeneruj ponownie" msgid "Regenerate backup codes" msgstr "Wygeneruj ponownie kody zapasowe" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Wygenerować ponownie token bota?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Wygenerować ponownie sekret klienta?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regeneracja unieważni obecny sekret. Zaktualizuj każdy kod korzystający ze starej wartości." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regeneracja unieważni bieżący token. Zaktualizuj każdy kod korzystający ze starej wartości." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Usuń filtr" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Usuń filtr" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Zgłoszenie zostało wysłane. Nasz zespół bezpieczeństwa niebawem je #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Zgłoś użytkownika" @@ -15105,7 +15109,7 @@ msgstr "Żądane zakresy" msgid "Require 2FA for moderation actions" msgstr "Wymagaj 2FA do działań moderacyjnych" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Wymagaj podwójnego kliknięcia, by dołączyć do kanałów głosowych" @@ -15144,7 +15148,7 @@ msgstr "Wymaga wszystkiego z poziomu Średniego oraz członkostwa na serwerze pr msgid "Requires Plutonium" msgstr "Wymaga Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Zaplanuj wiadomość ponownie" @@ -15290,11 +15294,11 @@ msgstr "Zasubskrybuj ponownie" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Ponów próbę" @@ -15359,7 +15363,7 @@ msgstr "Cofnij" msgid "Revoke Ban" msgstr "Cofnij bana" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Cofnij urządzenie" @@ -15386,7 +15390,7 @@ msgstr "Cofnij o {DEFAULT_SEEK_AMOUNT} sekund" msgid "Right" msgstr "Prawo" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Wyrównane do prawej" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Szukaj członków..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Szukaj wiadomości" @@ -15834,13 +15838,13 @@ msgstr "Szukaj ról lub członków..." msgid "Search saved media" msgstr "Szukaj zapisanych multimediów" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Zakres wyszukiwania" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Zakres wyszukiwania: {0}" @@ -15857,7 +15861,7 @@ msgstr "Szukaj ustawień..." msgid "Search stickers..." msgstr "Szukaj naklejek..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sugestie wyszukiwania" @@ -15938,7 +15942,7 @@ msgstr "Klucz bezpieczeństwa / Passkey" msgid "Security key verification failed. Please try again." msgstr "Weryfikacja klucza bezpieczeństwa nie powiodła się. Spróbuj ponownie." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Zobacz wszystkie urządzenia aktualnie zalogowane na Twoje konto. Cofnij sesje, których nie rozpoznajesz." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Wybierz konto" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Zaznacz wszystko" @@ -16040,7 +16044,7 @@ msgstr "Wybierz rozmiar mediów dla osadzonej zawartości z linków" msgid "Select media size for uploaded attachments" msgstr "Wybierz rozmiar mediów dla przesłanych załączników" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Wybierz wspólny widok" @@ -16151,9 +16155,9 @@ msgstr "Wyślij kod" msgid "Send Code" msgstr "Wyślij kod" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Wyślij zaproszenie do znajomych" @@ -16170,7 +16174,7 @@ msgstr "Wyślij wiadomość · Kliknij prawym, aby zaplanować" msgid "Send Message Disabled" msgstr "Wysyłanie wiadomości wyłączone" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Wysyłaj wiadomości" @@ -16624,7 +16628,7 @@ msgstr "Pokaż przycisk prezentu" msgid "Show inline images and videos" msgstr "Pokaż obrazy i wideo w tekście" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Pokaż tylko wskaźnik pisania bez awatarów" @@ -16788,11 +16792,11 @@ msgstr "Pokaż prezent jako już zrealizowany" msgid "Show this role separately" msgstr "Pokaż tę rolę osobno" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Pokaż wskaźnik pisania z awatarami użytkowników na liście kanałów" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Pokaż pisanie na wybranym kanale" @@ -17151,7 +17155,7 @@ msgstr "hiszpański (Hiszpania)" msgid "Speak" msgstr "Mów" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Odtwórz wiadomość" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Rozpocznij udostępnianie" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Rozpocznij połączenie wideo" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Rozpocznij połączenie głosowe" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Gęstość naklejek" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Pakiet naklejek" @@ -17427,7 +17431,7 @@ msgstr "Zatrzymaj dzwonienie" msgid "Stop Sharing" msgstr "Zatrzymaj udostępnianie" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Przerwij mówienie" @@ -17570,19 +17574,19 @@ msgstr "Ukryj wszystkie wzmianki ról" msgid "Suppress All Role @mentions" msgstr "Ukryj wszystkie wzmianki ról" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Ukryj osadzenia" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Tekst" msgid "Text (NSFW)" msgstr "Tekst (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Kanał tekstowy" @@ -18028,10 +18032,10 @@ msgstr "Ta akcja wymaga weryfikacji, aby kontynuować." msgid "This application" msgstr "Ta aplikacja" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Ten załącznik wygasł" @@ -18039,7 +18043,7 @@ msgstr "Ten załącznik wygasł" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Ten bot żąda uprawnienia Administratora. Nie zalecamy przyznawania go aplikacjom produkcyjnym, chyba że w pełni ufasz deweloperowi. Poproś o mniejszy zestaw uprawnień. Zamknij tę stronę, jeśli nie jesteś pewien." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Tego nie da się cofnąć. Usunięcie aplikacji usuwa też jej bota." @@ -18101,7 +18105,7 @@ msgstr "Ta społeczność osiągnęła maksymalny limit członków i obecnie nie msgid "This community has temporarily disabled invites." msgstr "Ta społeczność tymczasowo wyłączyła zaproszenia." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Ta społeczność tymczasowo wyłączyła zaproszenia. Spróbuj ponownie później." @@ -18178,7 +18182,7 @@ msgstr "To zaproszenie ma nieograniczoną liczbę użyć." msgid "This invite link never expires." msgstr "Ten link zaproszeniowy nigdy nie wygasa." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "To początek <0>{displayName}. Dodaj przyjaciół, aby rozpocząć rozmowę!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "To początek historii twojej rozmowy prywatnej z <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "To była wiadomość @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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ąć." @@ -18351,7 +18355,7 @@ msgstr "To stworzy rozdarcie w kontinuum czasoprzestrzennym i nie da się tego c msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "To ukryje wszystkie elementy UI związane z ulubionymi, włącznie z przyciskami i pozycjami menu. Twoje ulubione zostaną zachowane i można je ponownie włączyć w dowolnym momencie z <0>Ustawienia użytkownika → Wygląd → Ulubione." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "To zmodyfikuje istniejącą zaplanowaną wiadomość zamiast wysyłać ją od razu." @@ -18387,8 +18391,8 @@ msgstr "To usunie zapisaną sesję dla tego konta." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "To zastąpi twój obecny motyw niestandardowy. Możesz go później edytować w ustawieniach użytkownika." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniaturka dla {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasty pojawiają się na środku górnej części ekranu." msgid "today" msgstr "dzisiaj" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Dzisiaj" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Spróbuj ponownie" @@ -18737,7 +18741,7 @@ msgstr "Spróbuj innej nazwy lub sprawdź pisownię." msgid "Try another search term" msgstr "Spróbuj innego terminu wyszukiwania" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Spróbuj poprosić o nowe zaproszenie." @@ -18864,7 +18868,7 @@ msgstr "Skala czcionki" msgid "Type your message here..." msgstr "Wpisz tutaj swoją wiadomość..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Zdarzenia pisania" @@ -18877,11 +18881,11 @@ msgstr "Wskaźnik pisania" msgid "Typing Indicator" msgstr "Wskaźnik pisania" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Wskaźnik pisania + awatary" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Tylko wskaźnik pisania" @@ -18961,11 +18965,11 @@ msgstr "Nie można rozpocząć połączenia" msgid "Unable to start email change" msgstr "Nie można rozpocząć zmiany e-maila" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Niedostępny dla wszystkich" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Niedostępny dla wszystkich oprócz personelu" @@ -18978,7 +18982,7 @@ msgstr "Niedostępny dla wszystkich oprócz personelu" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Odblokuj tego użytkownika przed wysłaniem zaproszenia." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Odblokuj użytkownika" @@ -19165,7 +19169,7 @@ msgstr "Nieznany błąd" msgid "Unknown Gift" msgstr "Nieznany prezent" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Nieznane zaproszenie" @@ -19205,11 +19209,11 @@ msgstr "nieznana-rola" msgid "Unlimited" msgstr "Nieograniczone" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Nieograniczone emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Nieograniczone naklejki" @@ -19254,7 +19258,7 @@ msgstr "Odblokuj naklejki w DM-ach dzięki Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Włącz dźwięk kategorii" msgid "Unmute Channel" msgstr "Włącz dźwięk kanału" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Włącz dźwięk ulubionych" msgid "Unmute User" msgstr "Włącz dźwięk użytkownika" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Bez nazwy" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Do czasu zmiany" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Niezweryfikowany e-mail" msgid "Up to 4K/60fps" msgstr "Do 4K/60 kl./s" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Aktualizuj" @@ -19629,7 +19633,7 @@ msgstr "Prześlij dźwięk wejścia" msgid "Upload Failed" msgstr "Przesyłanie nieudane" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Prześlij plik" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Użytkownik przeniesiony na inny kanał" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil użytkownika" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil użytkownika: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Wartości" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Własny adres URL" @@ -20059,14 +20063,14 @@ msgstr "Weryfikacja może być wymagana przed wyświetleniem kodów zapasowych." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Zweryfikowana społeczność" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Zweryfikowany oddział" @@ -20167,8 +20171,8 @@ msgstr "Jakość wideo" msgid "Video Settings" msgstr "Ustawienia wideo" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniaturka wideo" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Wyświetl kody" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Wyświetl profil społeczności" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Wyświetl inwentarz prezentów" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Wyświetl profil globalny" @@ -20329,7 +20333,7 @@ msgstr "Wybór kategorii naruszenia" msgid "Violent or Graphic Content" msgstr "Treści brutalne lub graficzne" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Głos VIP" @@ -20341,7 +20345,7 @@ msgstr "Widoczne przyciski" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Połączenia głosowe" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Kanał głosowy" @@ -20442,7 +20446,7 @@ msgstr "Kanał głosowy" msgid "Voice Channel Full" msgstr "Kanał głosowy pełny" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Zachowanie przy dołączaniu do kanału głosowego" @@ -20559,7 +20563,7 @@ msgstr "Nie udało się teraz dołączyć do tej społeczności." msgid "We couldn't load the invites at this time." msgstr "Nie udało się wczytać zaproszeń w tej chwili." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nie udało się załadować tej aplikacji" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Mamy problem z połączeniem z serwerami Fluxera. Może to być tymczasowy problem sieciowy lub planowana konserwacja." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Mamy problem z połączeniem z kontinuum czasoprzestrzennym. Sprawdź połączenie i spróbuj ponownie." @@ -20759,7 +20763,7 @@ msgstr "Weekendowi wojownicy" msgid "Welcome and system messages will appear here." msgstr "Wiadomości powitalne i systemowe pojawią się tutaj." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Witamy ponownie" @@ -20820,7 +20824,7 @@ msgstr "Co się dzieje?" msgid "What's included in your export:" msgstr "Co zawiera eksport:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Po wyłączeniu (domyślnie) wskaźniki pisania nie pojawią się na aktualnie oglądanym kanale." @@ -20836,7 +20840,7 @@ msgstr "Po włączeniu szybkie dotknięcie skrótu push-to-talk utrzyma mikrofon msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Po włączeniu ujawnia menu debugowania w całej aplikacji, pozwalające przeglądać i kopiować surowe obiekty JSON struktur danych (wiadomości, kanały, użytkownicy, społeczności). Zawiera także narzędzia do debugowania parsera Fluxer Markdown i AST dla dowolnej wiadomości." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Po włączeniu odznaki skrótów są ukrywane w dymkach podpowiedzi." @@ -20868,7 +20872,7 @@ msgstr "Po włączeniu używa ustawień regionalnych komputera do ustalenia form msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Po włączeniu możesz dodawać kanały do ulubionych i pojawią się w sekcji Ulubione. Po wyłączeniu wszystkie elementy związane z ulubionymi (przyciski, pozycje menu) będą ukryte. Twoje aktualne ulubione zostaną zachowane." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Po włączeniu trzeba będzie dwukrotnie kliknąć kanały głosowe, aby do nich dołączyć. Po wyłączeniu (domyślnie) pojedyncze kliknięcie dołącza od razu." @@ -20970,7 +20974,7 @@ msgstr "Rocznie {yearlyPrice}" msgid "yesterday" msgstr "wczoraj" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Wczoraj" @@ -21013,7 +21017,7 @@ msgstr "Edytujesz profil dla tej społeczności. Ten profil będzie widoczny tyl msgid "You are in slowmode. Please wait before sending another message." msgstr "Jesteś w trybie powolnym. Poczekaj przed wysłaniem kolejnej wiadomości." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Jesteś teraz deweloperem!" @@ -21113,7 +21117,7 @@ msgstr "Możesz używać linków i Markdown do formatowania tekstu. Z <0/> może msgid "You can't add new reactions while you're on timeout." msgstr "Nie możesz dodawać nowych reakcji, gdy masz timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Nie możesz dodać siebie do znajomych" @@ -21128,7 +21132,7 @@ msgstr "Nie możesz wchodzić w interakcje z reakcjami w wynikach wyszukiwania, msgid "You can't join while you're on timeout." msgstr "Nie możesz dołączyć, gdy masz timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Nie możesz wyłączyć wyciszenia, bo zostało nałożone przez moderat 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ść." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Nie masz uprawnień do wysyłania wiadomości na tym kanale." @@ -21439,7 +21443,7 @@ msgstr "Pojawisz się jako offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Na następnej stronie skonfigurujesz, jakie uprawnienia otrzyma bot." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Będziesz musiał zalogować się ponownie na wszystkich wylogowanych urządzeniach" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 b100b72c..4aa55a66 100644 --- a/fluxer_app/src/locales/pt-BR/messages.po +++ b/fluxer_app/src/locales/pt-BR/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# item} other {# itens}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Membro} other {# Membros}}" @@ -566,18 +566,18 @@ msgstr "As imagens {label} não podem ser animadas. Por favor, use JPEG, PNG ou #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Membro" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Membros" @@ -612,11 +612,11 @@ msgstr "{minutes} minutos e {seconds} segundos" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minutos e 1 segundo" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} comunidade mútua" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} comunidades mútuas" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participantes em chamada" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "restam {remaining} caracteres" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "restam {remaining} caracteres. Obtenha Plutonium para escrever até {premiumMaxLength} caracteres." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Membro" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Membros" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "menções de @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Cor de Destaque" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Aceitar" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Aceitar Solicitação de Amizade" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Aceitar convite" @@ -1364,8 +1364,8 @@ msgstr "Aceitar Convite" msgid "Accept the incoming call" msgstr "Aceitar a chamada recebida" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Aceitar este convite instala o pacote automaticamente." @@ -1594,7 +1594,7 @@ msgstr "Adicionar Canais Favoritos" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Permitido {0}." msgid "Already have an account?" msgstr "Já tem uma conta?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Já entrou" @@ -2191,7 +2191,7 @@ msgstr "Avatares e banners animados" msgid "Animated Avatars Require Plutonium" msgstr "Avatares animados exigem Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Banner animado" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji animado ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animado" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Vídeo GIF animado" @@ -2219,7 +2219,7 @@ msgstr "Vídeo GIF animado" msgid "Animated GIF Video" msgstr "Vídeo GIF animado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Ícone animado" @@ -2277,7 +2277,7 @@ msgstr "Qualquer pessoa pode mencionar @ esta função. Membros com \"Usar @ever msgid "API Endpoint" msgstr "Endpoint da API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informações do aplicativo" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nome do aplicativo" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "O nome do aplicativo é obrigatório" @@ -2554,7 +2553,7 @@ msgstr "Tem certeza de que deseja revogar o banimento de <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Anexo {0}" msgid "Attachment Actions" msgstr "Ações do Anexo" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Anexo expirado" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autocompletar" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automático" @@ -2859,7 +2858,7 @@ msgstr "Voltar" msgid "Back to Applications" msgstr "Voltar para Aplicações" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Voltar para lista" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Voltar para login" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Voltar para Substituições" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Voltar para Cargos" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Voltar para Configurações" @@ -3003,7 +3002,7 @@ msgstr "Usuários banidos" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Limite de caracteres da biografia" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Escopo do bot solicitado" msgid "Bot token" msgstr "Token do bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Token do bot regenerado. Atualize qualquer código que use o token antigo." @@ -3435,7 +3434,7 @@ msgstr "Configurações da câmera" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Configurações da câmera" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Configurações da câmera" msgid "Cancel" msgstr "Cancelar" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Cancelar solicitação de amizade" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Cuidado! Você tem alterações não salvas." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categoria" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nome da categoria" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Configurações da categoria" @@ -3617,7 +3616,7 @@ msgstr "Cuidado" msgid "Center" msgstr "Centralizar" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centralizado" @@ -3765,7 +3764,7 @@ msgstr "Taxa de bits alterada para {0}." msgid "Changed the voice region to {0}." msgstr "Região de voz alterada para {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "canal" @@ -3828,11 +3827,11 @@ msgstr "ID do canal copiado para a área de transferência" msgid "Channel link copied" msgstr "Link do canal copiado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Modo de indicador de digitação na lista de canais" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicadores de Digitação na Lista de Canais" @@ -3891,7 +3890,7 @@ msgstr "Canal removido dos favoritos" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Configurações do Canal" @@ -4052,7 +4051,7 @@ msgstr "Escolha como os horários são exibidos em todo o aplicativo." msgid "Choose how typing indicators appear in the channel list" msgstr "Escolha como os indicadores de digitação aparecem na lista de canais" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Escolha como os indicadores de digitação aparecem na lista de canais quando alguém está digitando em um canal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Reivindique sua conta para resgatar este presente." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Reivindique sua conta para enviar solicitações de amizade." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Limpar Permissões" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Limpar busca" msgid "Clear search input" msgstr "Limpar entrada de busca" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Limpar Seleção" @@ -4314,7 +4313,7 @@ msgstr "Clique no ícone de upload ao lado de qualquer som para personalizá-lo msgid "Click the verification link in the email." msgstr "Clique no link de verificação no e-mail." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Clique para adicionar uma nota" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Clique para resgatar seu presente!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Clique para copiar" @@ -4388,7 +4387,7 @@ msgstr "Clique para ver todas as reações" msgid "Client secret" msgstr "Segredo do cliente" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Segredo do cliente regenerado. Atualize qualquer código que use o segredo antigo." @@ -4649,8 +4648,8 @@ msgstr "A comunidade promove ódio com base em características protegidas" msgid "Community promotes or facilitates illegal activities" msgstr "A comunidade promove ou facilita atividades ilegais" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menus de Contexto" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Menus de contexto podem ser abertos com clique esquerdo (em botões) ou clique direito (em outros elementos). Isso demonstra vários itens de menu, incluindo caixas de seleção, botões de rádio, controles deslizantes e submenus." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Controle como os links de websites são visualizados no chat" msgid "Control how you join voice channels" msgstr "Controlar como você entra em canais de voz" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Controle como você entra em canais de voz em comunidades." @@ -5012,7 +5011,7 @@ msgstr "Controlar animações de figurinhas" msgid "Control the visibility of favorites throughout the app." msgstr "Controle a visibilidade dos favoritos em todo o aplicativo." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Controle se dicas de atalhos de teclado aparecem dentro das dicas de ferramentas." @@ -5071,7 +5070,7 @@ msgstr "Copiado" msgid "Copied to clipboard" msgstr "Copiado para a área de transferência" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiada para a área de transferência" @@ -5149,7 +5148,7 @@ msgstr "Copiar link do arquivo" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copiar FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copiar FluxerTag" msgid "Copy GIF" msgstr "Copiar GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copiar ID da guilda" @@ -5222,7 +5221,7 @@ msgstr "Copiar texto" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Aconchegante" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Criar" @@ -5331,14 +5330,14 @@ msgstr "Crie e gerencie aplicativos e bots para sua conta." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Crie e compartilhe pacotes de emojis e adesivos personalizados com o Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Criar aplicativo" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Criar aplicativo" msgid "Create Category" msgstr "Criar categoria" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Criado em {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Criado por {0}" @@ -5569,7 +5568,7 @@ msgstr "A imagem recortada é muito grande. Escolha uma área menor ou um arquiv msgid "Current Community" msgstr "Comunidade atual" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dispositivo atual" @@ -5606,7 +5605,7 @@ msgstr "Atualmente preso em 1885, aparecendo offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Atualmente: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Perigo Secundário" msgid "Danger secondary clicked!" msgstr "Perigo secundário clicado!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zona de perigo" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Excluir todas as minhas mensagens" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Excluir Aplicativo" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Excluir anexo" @@ -6063,7 +6062,7 @@ msgstr "Excluir anexo" msgid "Delete Attachment" msgstr "Excluir Anexo" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Excluir Categoria" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Excluir Canal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Excluir mídia" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Excluir Mensagem" @@ -6215,7 +6214,7 @@ msgstr "Compacto" msgid "Dense layout" msgstr "Layout compacto" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Implantado" @@ -6281,7 +6280,7 @@ msgstr "Canal de Destino" msgid "Destination URL:" msgstr "URL de Destino:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner destacado" @@ -6362,7 +6361,7 @@ msgstr "Tamanhos Diferentes (Status Suportado)" msgid "Different Sizes & Member Counts" msgstr "Tamanhos e Contagens de Membros Diferentes" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "mensagem direta" @@ -6541,7 +6540,7 @@ msgstr "Desativar sua conta irá desconectá-lo de todas as sessões. Você pode msgid "Disallow @mention." msgstr "Não permitir @menção." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Não permitir contas não reivindicadas" @@ -6747,7 +6746,7 @@ msgstr "Não mostrar visualizações de mensagens na lista de DM" msgid "Don't show this again" msgstr "Não mostrar isso novamente" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Não mostrar indicadores de digitação na lista de canais" @@ -6760,7 +6759,7 @@ msgstr "Não mostrar indicadores de digitação na lista de canais" msgid "Done" msgstr "Concluído" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Editar Categoria" msgid "Edit Channel" msgstr "Editar Canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Edite substituições de permissões para cargos e membros neste canal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash de incorporação" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Imagens de splash de incorporação não podem ser animadas. Por favor, use JPEG, PNG ou WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Áudio incorporado" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Os nomes dos emojis devem ter pelo menos 2 caracteres e só podem conter caracteres alfanuméricos e sublinhados. Tipos de arquivo permitidos: JPEG, PNG, WebP, GIF. Comprimimos as imagens para 128x128 pixels. Tamanho máximo: {0} KB por emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Pacote de emojis" @@ -7473,7 +7472,7 @@ msgstr "Digitar Telefone" msgid "Enter picture-in-picture" msgstr "Entrar em imagem em imagem" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Entrar no Modo de Seleção" @@ -7536,7 +7535,7 @@ msgstr "Digite o novo e-mail que você quer usar. Enviaremos um código para lá msgid "Enter the SMS code you received." msgstr "Digite o código SMS que você recebeu." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "pressione enter para <0><1>salvar" @@ -7604,7 +7603,7 @@ msgstr "Erro ao renderizar LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Tecla Escape sai do modo teclado" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "pressione escape para <0><1>cancelar" @@ -7667,7 +7666,7 @@ msgstr "Sair da imagem na imagem" msgid "Exit Preview" msgstr "Sair da Visualização" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Sair do Modo de Seleção" @@ -7701,7 +7700,7 @@ msgstr "Expirado (Dentro de 30 dias)" msgid "Expired {absolute}" msgstr "Expirado {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Expirado entre {earliest} e {latest}" @@ -7709,7 +7708,7 @@ msgstr "Expirado entre {earliest} e {latest}" msgid "Expired on {date}" msgstr "Expirado em {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Expirado em {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Expira" msgid "Expires {absolute} ({relativeText})" msgstr "Expira {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Expira entre {earliest} e {latest}" @@ -7730,7 +7729,7 @@ msgstr "Expira entre {earliest} e {latest}" msgid "Expires on {date}" msgstr "Expira em {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Expira em {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Pacotes de Expressões são um recurso do Plutonium" msgid "Expression picker categories" msgstr "Categorias do seletor de expressões" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Limpeza de expressões" @@ -7839,10 +7838,6 @@ msgstr "Falha ao copiar para a área de transferência" msgid "Failed to copy URL" msgstr "Falha ao copiar URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Falha ao criar aplicativo. Verifique suas entradas e tente novamente." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Falha ao criar cargo" @@ -8100,7 +8095,7 @@ msgstr "Falha ao revogar banimento. Tente novamente." msgid "Failed to revoke invite" msgstr "Falha ao revogar convite" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Falha ao girar. Tente novamente." @@ -8413,7 +8408,7 @@ msgstr "Amigos do Fitness" msgid "Flags" msgstr "Bandeiras" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nomes flexíveis de canais de texto" @@ -8577,7 +8572,7 @@ msgstr "Amigos Foodies" msgid "For 1 hour" msgstr "Por 1 hora" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Por 1 Hora" msgid "For 15 minutes" msgstr "Por 15 minutos" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Por 15 Minutos" msgid "For 24 hours" msgstr "Por 24 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Por 3 dias" msgid "For 3 hours" msgstr "Por 3 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Por 3 Horas" msgid "For 8 hours" msgstr "Por 8 horas" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Esquecer inscrições" msgid "Forgot Password" msgstr "Esqueci a Senha" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" @@ -8795,7 +8790,7 @@ msgstr "Avançar {DEFAULT_SEEK_AMOUNT} segundos" msgid "Forward Message" msgstr "Encaminhar Mensagem" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Encaminhado" @@ -9065,7 +9060,7 @@ msgstr "Obtenha o aplicativo de desktop do Fluxer para push-to-talk em todo o si #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Voltar ao canal de texto focado anteriormente" msgid "Go forward in navigation history" msgstr "Avançar no histórico de navegação" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Ir para Comunidade" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Convites de Grupo" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Mensagem de grupo" @@ -9548,7 +9543,7 @@ msgstr "Ei, {username}, bem-vindo! Você pode realizar qualquer coisa." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Ei, {username}! Quando atingir 88 mph, você verá coisas sérias!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Oculto" @@ -9569,7 +9564,7 @@ msgstr "Ocultar Favoritos" msgid "Hide Join Messages" msgstr "Ocultar Mensagens de Entrada" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ocultar dicas do teclado em tooltips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ocultar canais silenciados" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Se você quiser exportar seus dados ou excluir suas mensagens primeiro, por favor, visite a seção Painel de Privacidade em Configurações do Usuário antes de prosseguir." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "imagem" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Entradas com Ícones" msgid "Insert emoji" msgstr "Inserir emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Instalar Pacote de Emojis" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Instalar Pacote de Figurinhas" @@ -10153,7 +10148,7 @@ msgstr "Instalado em {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalar pacotes de emojis e figurinhas requer uma assinatura premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Convites instantâneos" @@ -10286,7 +10281,7 @@ msgstr "Configurações do link de convite" msgid "Invite Links" msgstr "Links de convite" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal de convite" msgid "Invite modal preview" msgstr "Visualização do modal de convite" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Convite enviado para {0}" msgid "Invite sent to {guildName}" msgstr "Convite enviado para {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash de convite" @@ -10354,7 +10349,7 @@ msgstr "Convidar para {0}" msgid "Invite to Community" msgstr "Convidar para a comunidade" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Convite indisponível" @@ -10369,12 +10364,12 @@ msgstr "Convidado por {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Convidado por {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Convidado por {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Os convites estão atualmente pausados nesta comunidade" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Os convites estão bloqueados para comunidades de visualização. Confirme sua conta definindo um e-mail e uma senha para ativar os convites." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Convites desativados" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Convites Desativados" @@ -10482,13 +10477,13 @@ msgstr "Entre em uma comunidade com adesivos para começar!" msgid "Join call" msgstr "Entrar na chamada" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Entrar na Comunidade" @@ -10497,15 +10492,23 @@ msgstr "Entrar na Comunidade" msgid "Join community form" msgstr "Formulário de entrada na comunidade" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Entrar no Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Entre no Fluxer HQ para conversar com a equipe e ficar por dentro das novidades!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Entrar no Grupo" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Entrar no Grupo de DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notificações de entrada" @@ -10620,7 +10623,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:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Pular para o Presente" @@ -10690,7 +10693,7 @@ msgstr "Teclas de atalho" msgid "Keyboard" msgstr "Teclado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Dicas de teclado" @@ -10815,7 +10818,7 @@ msgstr "Saiba mais sobre o Plutonium" msgid "Leave blank for a random username" msgstr "Deixe em branco para um nome de usuário aleatório" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Já vai embora?" msgid "Left" msgstr "Saiu" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Alinhado à esquerda" @@ -10945,7 +10948,7 @@ msgstr "link" msgid "Link" msgstr "Link" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Vincular canal" @@ -11027,7 +11030,7 @@ msgstr "Carregando banimentos..." msgid "Loading communities..." msgstr "Carregando comunidades..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Carregando imagem" @@ -11039,8 +11042,8 @@ msgstr "Carregando convites..." msgid "Loading more..." msgstr "Carregando mais..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Carregando espaço reservado" @@ -11064,7 +11067,7 @@ msgstr "Carregando tema..." msgid "Loading verification methods..." msgstr "Carregando métodos de verificação..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Carregando: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Mudo local" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Entre usando seu navegador, depois insira o código exibido para adicion msgid "Log in via browser" msgstr "Entrar via navegador" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Entrar via navegador ou instância personalizada" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Sair" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Sair de {0} dispositivos" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Sair de {sessionCount} dispositivos" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Sair de 1 dispositivo" @@ -11141,7 +11144,7 @@ msgstr "Sair de todos os dispositivos" msgid "Log out all other devices" msgstr "Sair de todos os outros dispositivos" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Sair de todos os outros dispositivos" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marcar como 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "menções:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "menções:" msgid "Message" msgstr "Mensagem" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Mensagem " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Mensagem @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Mensagem #" @@ -11838,7 +11842,7 @@ msgstr "Mensagens e Mídia" msgid "Messages Deleted" msgstr "Mensagens Excluídas" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Falha ao carregar mensagens" @@ -12016,7 +12020,7 @@ msgstr "Mais" msgid "More Actions" msgstr "Mais Ações" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Mais slots de emoji" @@ -12028,7 +12032,7 @@ msgstr "Mais opções" msgid "More Options" msgstr "Mais Opções" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Mais slots de adesivo" @@ -12162,8 +12166,8 @@ msgstr "Silenciar canal" msgid "Mute Channel" msgstr "Silenciar Canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Silenciado até {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Silenciar uma comunidade impede que indicadores de não lidos e notificações apareçam a menos que você seja mencionado" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Comunidades Mútuas ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Amigos Mútuos ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Grupos Mútuos ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Minha Aplicação" @@ -12247,7 +12251,7 @@ msgstr "Meu adesivo incrível" msgid "My Category" msgstr "Minha Categoria" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Meus Dispositivos" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navegação" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Precisa de uma conta?" @@ -12364,7 +12368,7 @@ msgstr "Rede" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Erro de rede" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Sem banner da comunidade" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nenhuma descrição fornecida." @@ -12684,15 +12688,15 @@ msgstr "Nenhum microfone detectado" msgid "No more scheduled messages." msgstr "Não há mais mensagens agendadas." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nenhuma comunidade em comum encontrada." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nenhum amigo em comum encontrado." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nenhum grupo em comum encontrado." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Não é a sua praia? Você pode desativar este recurso a qualquer momento." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Substituições de notificação" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Notificar usuários com este cargo que têm permissão para visualizar e msgid "now" msgstr "agora" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Agora" @@ -13090,7 +13094,7 @@ msgstr "Ao clicar" msgid "on:" msgstr "em:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Uma vez excluído, o aplicativo e suas credenciais são removidos permanentemente." @@ -13252,7 +13256,7 @@ msgstr "Abrir Apenas DMs" msgid "Open Fluxer" msgstr "Abrir Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Abrir imagem em tela cheia" @@ -13368,7 +13372,7 @@ msgstr "Abrir Comunidade Visionária" msgid "Opening..." msgstr "Abrindo..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operador" @@ -13441,7 +13445,7 @@ msgstr "A mensagem original foi excluída" msgid "Other" msgstr "Outro" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Outros dispositivos" @@ -13501,7 +13505,7 @@ msgstr "Substituir status de conta não reivindicada" msgid "Override unread gift inventory status" msgstr "Substituir status de inventário de presentes não lidos" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Visão geral" @@ -13695,7 +13699,7 @@ msgstr "Permissões" msgid "Permissions granted" msgstr "Permissões concedidas" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Notas pessoais" @@ -13868,12 +13872,12 @@ msgstr "Reproduzir" msgid "Play animated emojis" msgstr "Reproduzir emojis animados" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Reproduzir áudio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Cole o link da mensagem que você está denunciando." msgid "Please provide an email address." msgstr "Forneça um endereço de e-mail." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Tente novamente ou volte para a lista de aplicativos." @@ -13989,7 +13993,7 @@ msgstr "Vantagens do Plutonium" msgid "Plutonium Subscription" msgstr "Assinatura Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Painel de Privacidade" msgid "Privacy Policy" msgstr "Política de Privacidade" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Remover este adesivo do armazenamento e CDN" msgid "Push Notification Inactive Timeout" msgstr "Tempo limite de inatividade para notificação push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notificações push" @@ -14412,7 +14416,7 @@ msgstr "Interação de reação desativada" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reações" @@ -14583,7 +14587,7 @@ msgstr "Atualizar assinatura push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerar" @@ -14591,19 +14595,19 @@ msgstr "Regenerar" msgid "Regenerate backup codes" msgstr "Regenerar códigos de backup" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerar token do bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerar segredo do cliente?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerar invalidará o segredo atual. Atualize qualquer código que use o valor antigo." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerar invalidará o token atual. Atualize qualquer código que use o valor antigo." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Remover filtro" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Remover filtro" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Denúncia enviada com sucesso. Nossa equipe de segurança irá revisá-l #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Denunciar usuário" @@ -15105,7 +15109,7 @@ msgstr "Escopos solicitados" msgid "Require 2FA for moderation actions" msgstr "Exigir 2FA para ações de moderação" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Exigir clique duplo para entrar em canais de voz" @@ -15144,7 +15148,7 @@ msgstr "Exige tudo do Médio, mais ser membro do servidor por pelo menos 10 minu msgid "Requires Plutonium" msgstr "Exige Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reagendar mensagem" @@ -15290,11 +15294,11 @@ msgstr "Reassinar" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Tentar novamente" @@ -15359,7 +15363,7 @@ msgstr "Revogar" msgid "Revoke Ban" msgstr "Revogar Banimento" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revogar dispositivo" @@ -15386,7 +15390,7 @@ msgstr "Retroceder {DEFAULT_SEEK_AMOUNT} segundos" msgid "Right" msgstr "Direita" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Alinhado à direita" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Pesquisar membros..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Pesquisar mensagens" @@ -15834,13 +15838,13 @@ msgstr "Pesquisar cargos ou membros..." msgid "Search saved media" msgstr "Pesquisar mídia salva" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Escopo da pesquisa" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Escopo da pesquisa: {0}" @@ -15857,7 +15861,7 @@ msgstr "Pesquisar configurações..." msgid "Search stickers..." msgstr "Pesquisar figurinhas..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sugestões de pesquisa" @@ -15938,7 +15942,7 @@ msgstr "Chave de Segurança / Passkey" msgid "Security key verification failed. Please try again." msgstr "A verificação da chave de segurança falhou. Tente novamente." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Veja todos os dispositivos que estão atualmente logados na sua conta. Revogue quaisquer sessões que você não reconhecer." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Selecionar conta" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Selecionar Tudo" @@ -16040,7 +16044,7 @@ msgstr "Selecionar tamanho de mídia para conteúdo incorporado de links" msgid "Select media size for uploaded attachments" msgstr "Selecionar tamanho de mídia para anexos enviados" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Selecionar visualização mútua" @@ -16151,9 +16155,9 @@ msgstr "Enviar código" msgid "Send Code" msgstr "Enviar Código" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Enviar Solicitação de Amizade" @@ -16170,7 +16174,7 @@ msgstr "Enviar Mensagem · Clique com o botão direito para agendar" msgid "Send Message Disabled" msgstr "Envio de Mensagem Desativado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Enviar mensagens" @@ -16624,7 +16628,7 @@ msgstr "Mostrar botão Presente" msgid "Show inline images and videos" msgstr "Mostrar imagens e vídeos inline" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Mostrar apenas o indicador de digitação sem avatares" @@ -16788,11 +16792,11 @@ msgstr "Mostrar o presente como já resgatado" msgid "Show this role separately" msgstr "Mostrar este cargo separadamente" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Mostrar indicador de digitação com avatares de usuários na lista de canais" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Mostrar digitação no canal selecionado" @@ -17151,7 +17155,7 @@ msgstr "Espanhol (Espanha)" msgid "Speak" msgstr "Falar" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Falar Mensagem" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Iniciar Compartilhamento" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Iniciar Chamada de Vídeo" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Iniciar Chamada de Voz" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densidade de figurinhas" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Pacote de figurinhas" @@ -17427,7 +17431,7 @@ msgstr "Parar de tocar" msgid "Stop Sharing" msgstr "Parar de compartilhar" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Parar de falar" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suprimir incorporações" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Texto" msgid "Text (NSFW)" msgstr "Texto (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Canal de texto" @@ -18028,10 +18032,10 @@ msgstr "Esta ação requer verificação para continuar." msgid "This application" msgstr "Este aplicativo" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Este anexo expirou" @@ -18039,7 +18043,7 @@ msgstr "Este anexo expirou" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Este bot está solicitando a permissão de Administrador. Não recomendamos conceder isso para aplicativos em produção, a menos que você confie totalmente no desenvolvedor. Considere pedir a eles para solicitar um conjunto reduzido de permissões. Feche esta página se não tiver certeza." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Isso não pode ser desfeito. Remover o aplicativo também exclui seu bot." @@ -18101,7 +18105,7 @@ msgstr "Esta comunidade atingiu seu limite máximo de membros e não está aceit msgid "This community has temporarily disabled invites." msgstr "Esta comunidade desativou temporariamente os convites." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Esta comunidade desativou temporariamente os convites. Você pode tentar novamente mais tarde." @@ -18178,7 +18182,7 @@ msgstr "Este convite tem usos ilimitados." msgid "This invite link never expires." msgstr "Este link de convite nunca expira." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Este é o começo de <0>{displayName}. Adicione amigos para iniciar uma conversa!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Este é o começo do seu histórico de mensagens diretas com <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Esta foi uma mensagem @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Isso criará uma fenda no continuum espaço-tempo e não poderá ser des msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Isso ocultará todos os elementos da interface relacionados a favoritos, incluindo botões e itens de menu. Seus favoritos existentes serão preservados e poderão ser reativados a qualquer momento em <0>Configurações do Usuário → Aparência → Favoritos." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Isso modificará a mensagem agendada existente em vez de enviar imediatamente." @@ -18387,8 +18391,8 @@ msgstr "Isso removerá a sessão salva desta conta." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Isso substituirá seu tema personalizado atual. Você pode editá-lo depois nas Configurações do Usuário." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatura para {title}" @@ -18485,7 +18489,7 @@ msgstr "Os toasts aparecem no centro superior da tela." msgid "today" msgstr "hoje" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Hoje" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Tente novamente" @@ -18737,7 +18741,7 @@ msgstr "Tente outro nome ou verifique sua ortografia." msgid "Try another search term" msgstr "Tente outro termo de busca" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Tente pedir um novo convite." @@ -18864,7 +18868,7 @@ msgstr "Escala de Tipo" msgid "Type your message here..." msgstr "Digite sua mensagem aqui..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Eventos de digitação" @@ -18877,11 +18881,11 @@ msgstr "Indicador de digitação" msgid "Typing Indicator" msgstr "Indicador de Digitação" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicador de digitação + avatares" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Apenas indicador de digitação" @@ -18961,11 +18965,11 @@ msgstr "Não foi possível iniciar a chamada" msgid "Unable to start email change" msgstr "Não foi possível iniciar a alteração de e-mail" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Indisponível para todos" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Indisponível para todos, exceto equipe" @@ -18978,7 +18982,7 @@ msgstr "Indisponível para todos, exceto equipe" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Desbloqueie este usuário antes de enviar um pedido de amizade." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Desbloquear Usuário" @@ -19165,7 +19169,7 @@ msgstr "Erro desconhecido" msgid "Unknown Gift" msgstr "Presente Desconhecido" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Convite Desconhecido" @@ -19205,11 +19209,11 @@ msgstr "cargo-desconhecido" msgid "Unlimited" msgstr "Ilimitado" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emojis ilimitados" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Figurinhas ilimitadas" @@ -19254,7 +19258,7 @@ msgstr "Desbloqueie figurinhas em DMs com o Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Ativar som da categoria" msgid "Unmute Channel" msgstr "Ativar som do canal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Ativar som dos favoritos" msgid "Unmute User" msgstr "Ativar som do usuário" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Sem nome" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Até eu alterar" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "E-mail não verificado" msgid "Up to 4K/60fps" msgstr "Até 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Atualizar" @@ -19629,7 +19633,7 @@ msgstr "Enviar Som de Entrada" msgid "Upload Failed" msgstr "Falha no Envio" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Enviar arquivo" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Usuário Moveu Canal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Perfil do Usuário" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Perfil do usuário: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valores" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personalizada" @@ -20059,14 +20063,14 @@ msgstr "A verificação pode ser necessária antes de visualizar seus códigos d #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Comunidade Verificada" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Guilda verificada" @@ -20167,8 +20171,8 @@ msgstr "Qualidade do Vídeo" msgid "Video Settings" msgstr "Configurações de Vídeo" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatura do vídeo" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Ver Códigos" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Ver Perfil da Comunidade" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Ver Inventário de Presentes" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Ver Perfil Global" @@ -20329,7 +20333,7 @@ msgstr "Seleção de categoria de violação" msgid "Violent or Graphic Content" msgstr "Conteúdo Violento ou Gráfico" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voz VIP" @@ -20341,7 +20345,7 @@ msgstr "Botões Visíveis" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionário" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Chamadas de Voz" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Canal de voz" @@ -20442,7 +20446,7 @@ msgstr "Canal de Voz" msgid "Voice Channel Full" msgstr "Canal de Voz Lotado" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportamento de Entrada no Canal de Voz" @@ -20559,7 +20563,7 @@ msgstr "Não foi possível entrar nesta comunidade no momento." msgid "We couldn't load the invites at this time." msgstr "Não conseguimos carregar os convites no momento." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Não foi possível carregar este aplicativo" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Estamos tendo problemas para conectar aos servidores do Fluxer. Isso pode ser um problema temporário de rede ou manutenção programada." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Estamos tendo problemas para conectar ao continuum espaço-tempo. Por favor, verifique sua conexão e tente novamente." @@ -20759,7 +20763,7 @@ msgstr "Guerreiros de Fim de Semana" msgid "Welcome and system messages will appear here." msgstr "Mensagens de boas-vindas e do sistema aparecerão aqui." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Bem-vindo de volta" @@ -20820,7 +20824,7 @@ msgstr "O que está acontecendo?" msgid "What's included in your export:" msgstr "O que está incluído na sua exportação:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Quando desabilitado (padrão), os indicadores de digitação não aparecerão no canal que você está visualizando." @@ -20836,7 +20840,7 @@ msgstr "Quando habilitado, tocar rapidamente no atalho de push-to-talk manterá msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Quando habilitado, revela menus de depuração em todo o aplicativo para inspecionar e copiar objetos JSON brutos de estruturas de dados internas, como mensagens, canais, usuários e comunidades. Também inclui ferramentas para depurar o desempenho do analisador Markdown do Fluxer e a AST para qualquer mensagem." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Quando habilitado, os emblemas de atalho ficam ocultos nos pop-ups de dica de ferramenta." @@ -20868,7 +20872,7 @@ msgstr "Quando habilitado, usa a localidade do seu computador para determinar o msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Quando habilitado, você pode favoritar canais e eles aparecerão na seção Favoritos. Quando desabilitado, todos os elementos da interface do usuário relacionados a favoritos (botões, itens de menu) ficarão ocultos. Seus favoritos existentes serão preservados." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Quando habilitado, você precisará clicar duas vezes nos canais de voz para entrar neles. Quando desabilitado (padrão), clicar uma vez entrará no canal imediatamente." @@ -20970,7 +20974,7 @@ msgstr "Anual {yearlyPrice}" msgid "yesterday" msgstr "ontem" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Ontem" @@ -21013,7 +21017,7 @@ msgstr "Você está editando seu perfil por comunidade. Este perfil só será vi msgid "You are in slowmode. Please wait before sending another message." msgstr "Você está no modo lento. Por favor, aguarde antes de enviar outra mensagem." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Você agora é um desenvolvedor!" @@ -21113,7 +21117,7 @@ msgstr "Você pode usar links e Markdown para formatar seu texto. Com <0/>, voc msgid "You can't add new reactions while you're on timeout." msgstr "Você não pode adicionar novas reações enquanto estiver de castigo." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Você não pode se tornar amigo de si mesmo" @@ -21128,7 +21132,7 @@ msgstr "Você não pode interagir com reações nos resultados da pesquisa, pois msgid "You can't join while you're on timeout." msgstr "Você não pode entrar enquanto estiver de castigo." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Você não pode se desmutar porque foi silenciado por um moderador." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Você não tem permissão para enviar mensagens neste canal." @@ -21439,7 +21443,7 @@ msgstr "Você aparecerá como offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Você configurará quais permissões o bot recebe na próxima tela." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Você terá que fazer login novamente em todos os dispositivos desconectados" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 de2723a8..a8869fe8 100644 --- a/fluxer_app/src/locales/ro/messages.po +++ b/fluxer_app/src/locales/ro/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# element} other {# elemente}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Membru} other {# Membri}}" @@ -566,18 +566,18 @@ msgstr "Imaginile {label} nu pot fi animate. Te rugăm să folosești JPEG, PNG #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Membru" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Membri" @@ -612,11 +612,11 @@ msgstr "{minutes} minute și {seconds} secunde" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minute și 1 secundă" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} comunitate mutuală" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} comunități mutuale" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} participanți în apel" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Online" @@ -650,15 +650,15 @@ msgstr "Mai ai {remaining} caractere disponibile" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Mai ai {remaining} caractere disponibile. Ia Plutonium ca să scrii până la {premiumMaxLength} caractere." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Membru" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Membri" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "mențiuni @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Culoare accent" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Acceptă" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Acceptă cererea de prietenie" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Acceptă invitația" @@ -1364,8 +1364,8 @@ msgstr "Acceptă invitația" msgid "Accept the incoming call" msgstr "Acceptă apelul primit" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Acceptarea acestei invitații instalează pachetul automat." @@ -1594,7 +1594,7 @@ msgstr "Adaugă canale favorite" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Permis {0}." msgid "Already have an account?" msgstr "Ai deja un cont?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Deja membru" @@ -2191,7 +2191,7 @@ msgstr "Avataruri și bannere animate" msgid "Animated Avatars Require Plutonium" msgstr "Avatarurile animate necesită Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Banner animat" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Emoji animate ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF animat" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Video GIF animat" @@ -2219,7 +2219,7 @@ msgstr "Video GIF animat" msgid "Animated GIF Video" msgstr "Video GIF animat" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Pictogramă animată" @@ -2277,7 +2277,7 @@ msgstr "Oricine poate menționa acest rol cu @. Membrii cu permisiunea „Folose msgid "API Endpoint" msgstr "Punct final API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Informații despre aplicație" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Nume aplicație" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Numele aplicației este obligatoriu" @@ -2554,7 +2553,7 @@ msgstr "Ești sigur că vrei să revoci interdicția pentru <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Atașarea {0}" msgid "Attachment Actions" msgstr "Acțiuni atașare" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Atașarea a expirat" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Completare automată" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automat" @@ -2859,7 +2858,7 @@ msgstr "Înapoi" msgid "Back to Applications" msgstr "Înapoi la aplicații" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Înapoi la listă" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Înapoi la autentificare" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Înapoi la suprascrieri" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Înapoi la roluri" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Înapoi la setări" @@ -3003,7 +3002,7 @@ msgstr "Utilizatori interziși" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banner" @@ -3096,7 +3095,7 @@ msgstr "Limită caractere pentru biografie" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Domeniul bot cerut" msgid "Bot token" msgstr "Token bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Tokenul bot a fost regenerat. Actualizează orice cod care folosește tokenul vechi." @@ -3435,7 +3434,7 @@ msgstr "Setări cameră" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Setări cameră" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Setări cameră" msgid "Cancel" msgstr "Anulează" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Anulează cererea de prietenie" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Ai grijă! Ai modificări nesalvate." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Categorie" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Nume categorie" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Setări categorie" @@ -3617,7 +3616,7 @@ msgstr "Atenție" msgid "Center" msgstr "Centru" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrat" @@ -3765,7 +3764,7 @@ msgstr "Rata de biți a fost schimbată la {0}." msgid "Changed the voice region to {0}." msgstr "Regiunea vocală a fost schimbată în {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "canal" @@ -3828,11 +3827,11 @@ msgstr "ID-ul canalului copiat în clipboard" msgid "Channel link copied" msgstr "Linkul canalului copiat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Mod indicator de tastare în lista de canale" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Indicatori de tastare pentru lista de canale" @@ -3891,7 +3890,7 @@ msgstr "Canal eliminat din favorite" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Setări canal" @@ -4052,7 +4051,7 @@ msgstr "Alege cum sunt afișate orele în aplicație." msgid "Choose how typing indicators appear in the channel list" msgstr "Alege cum apar indicatorii de tastare în lista canalelor" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Alege cum apar indicatorii de scriere în lista de canale când cineva scrie într-un canal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Revendică-ți contul pentru a răscumpăra acest cadou." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Revendică-ți contul pentru a trimite cereri de prietenie." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Șterge permisiunile" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Șterge căutarea" msgid "Clear search input" msgstr "Șterge câmpul de căutare" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Elimină selecția" @@ -4314,7 +4313,7 @@ msgstr "Apasă pictograma de încărcare de lângă orice sunet pentru a-l perso msgid "Click the verification link in the email." msgstr "Apasă linkul de verificare din email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Apasă pentru a adăuga o notă" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Apasă pentru a-ți revendica darul!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Apasă pentru a copia" @@ -4388,7 +4387,7 @@ msgstr "Apasă pentru a vedea toate reacțiile" msgid "Client secret" msgstr "Secret client" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Secretul clientului a fost regenerat. Actualizează orice cod care folosește secretul vechi." @@ -4649,8 +4648,8 @@ msgstr "Comunitatea promovează ură bazată pe caracteristici protejate" msgid "Community promotes or facilitates illegal activities" msgstr "Comunitatea promovează sau facilitează activități ilegale" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Meniuri contextuale" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Meniurile contextuale pot fi deschise cu click stânga (pe butoane) sau click dreapta (pe alte elemente). Aceasta demonstrează diferite elemente din meniu, inclusiv casete de selectare, butoane radio, glisoare și submeniuri." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Controlează cum sunt previzualizate linkurile de website în chat" msgid "Control how you join voice channels" msgstr "Controlează modul în care te alături canalelor vocale" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Controlează cum te alături canalelor vocale din comunități." @@ -5012,7 +5011,7 @@ msgstr "Controlează animațiile pentru stickere" msgid "Control the visibility of favorites throughout the app." msgstr "Controlează vizibilitatea favoritului în întreaga aplicație." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Controlează dacă sugestiile de scurtături de la tastatură apar în instrumente." @@ -5071,7 +5070,7 @@ msgstr "Copiat" msgid "Copied to clipboard" msgstr "Copiat în clipboard" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL copiat în clipboard" @@ -5149,7 +5148,7 @@ msgstr "Copiază linkul fișierului" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Copiază FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Copiază FluxerTag" msgid "Copy GIF" msgstr "Copiază GIF-ul" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Copiază ID-ul comunității" @@ -5222,7 +5221,7 @@ msgstr "Copiază textul" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Confortabil" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Creare" @@ -5331,14 +5330,14 @@ msgstr "Creează și administrează aplicații și boți pentru contul tău." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Creează și distribuie pachete personalizate de emoji și stickere cu Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Creează aplicație" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Creează aplicație" msgid "Create Category" msgstr "Creează categorie" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Creat pe {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Creat de {0}" @@ -5569,7 +5568,7 @@ msgstr "Imaginea decupată este prea mare. Alege o zonă mai mică sau un fișie msgid "Current Community" msgstr "Comunitatea curentă" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Dispozitivul curent" @@ -5606,7 +5605,7 @@ msgstr "Blocat în 1885, apare ca offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "În prezent: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Pericol secundar" msgid "Danger secondary clicked!" msgstr "Pericol secundar apăsat!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Zonă de pericol" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Șterge toate mesajele mele" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Șterge aplicația" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Șterge atașamentul" @@ -6063,7 +6062,7 @@ msgstr "Șterge atașamentul" msgid "Delete Attachment" msgstr "Șterge atașamentul" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Șterge categoria" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Șterge canalul" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Șterge media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Șterge mesajul" @@ -6215,7 +6214,7 @@ msgstr "Compact" msgid "Dense layout" msgstr "Aspect compact" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Dezvoltat" @@ -6281,7 +6280,7 @@ msgstr "Canal de destinație" msgid "Destination URL:" msgstr "URL de destinație:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Banner detașat" @@ -6362,7 +6361,7 @@ msgstr "Dimensiuni diferite (Status acceptat)" msgid "Different Sizes & Member Counts" msgstr "Dimensiuni și număr de membri diferite" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "mesaj direct" @@ -6541,7 +6540,7 @@ msgstr "Dezactivarea contului te va deconecta din toate sesiunile. Îl poți rea msgid "Disallow @mention." msgstr "Interzice menționarea cu @" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Interzice conturile neasociate" @@ -6747,7 +6746,7 @@ msgstr "Nu afișa previzualizări de mesaje în lista DM" msgid "Don't show this again" msgstr "Nu mai afișa asta" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Nu afișa indicatorii de tastare în lista de canale" @@ -6760,7 +6759,7 @@ msgstr "Nu afișa indicatorii de tastare în lista de canale" msgid "Done" msgstr "Gata" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Editează categoria" msgid "Edit Channel" msgstr "Editează canalul" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Editează suprascrierile pentru roluri și membri în acest canal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash embed" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Imaginile splash pentru embed nu pot fi animate. Te rugăm folosește JPEG, PNG sau WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Audio încorporat" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Numele emoji trebuie să aibă cel puțin 2 caractere și pot conține doar caractere alfanumerice și liniuță jos. Tipuri de fișiere acceptate: JPEG, PNG, WebP, GIF. Comprmim imaginile la 128x128 pixeli. Dimensiunea maximă: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Pachet emoji" @@ -7473,7 +7472,7 @@ msgstr "Introdu telefonul" msgid "Enter picture-in-picture" msgstr "Intră în modul picture-in-picture" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Activează modul de selecție" @@ -7536,7 +7535,7 @@ msgstr "Introdu noul email pe care vrei să îl folosești. Îți vom trimite ac msgid "Enter the SMS code you received." msgstr "Introdu codul SMS pe care l-ai primit." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "apasă enter pentru a <0><1>salva" @@ -7604,7 +7603,7 @@ msgstr "Eroare la redarea LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Tastează Escape pentru a ieși din modul tastatură" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "apasă escape pentru a <0><1>anula" @@ -7667,7 +7666,7 @@ msgstr "Iese din picture-in-picture" msgid "Exit Preview" msgstr "Iese din previzualizare" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Iese din modul de selecție" @@ -7701,7 +7700,7 @@ msgstr "Expirat (în ultimele 30 de zile)" msgid "Expired {absolute}" msgstr "Expirat {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Expirat între {earliest} și {latest}" @@ -7709,7 +7708,7 @@ msgstr "Expirat între {earliest} și {latest}" msgid "Expired on {date}" msgstr "Expirat la {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Expirat la {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Expiră" msgid "Expires {absolute} ({relativeText})" msgstr "Expiră {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Expiră între {earliest} și {latest}" @@ -7730,7 +7729,7 @@ msgstr "Expiră între {earliest} și {latest}" msgid "Expires on {date}" msgstr "Expiră la {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Expiră la {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Pachetele de expresii sunt o funcție Plutonium" msgid "Expression picker categories" msgstr "Categorii selector expresii" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Curățare expresii" @@ -7839,10 +7838,6 @@ msgstr "Nu s-a putut copia în clipboard" msgid "Failed to copy URL" msgstr "Nu s-a putut copia URL-ul" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Nu s-a putut crea aplicația. Verifică datele și încearcă din nou." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Nu s-a putut crea rolul" @@ -8100,7 +8095,7 @@ msgstr "Nu s-a putut revoca interdicția. Te rog încearcă din nou." msgid "Failed to revoke invite" msgstr "Nu s-a putut revoca invitația" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Nu s-a putut roti. Te rog încearcă din nou." @@ -8413,7 +8408,7 @@ msgstr "Prieteni de fitness" msgid "Flags" msgstr "Steaguri" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Nume flexibile pentru canalele text" @@ -8577,7 +8572,7 @@ msgstr "Prieteni gurmanzi" msgid "For 1 hour" msgstr "Pentru 1 oră" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Pentru 1 oră" msgid "For 15 minutes" msgstr "Pentru 15 minute" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Pentru 15 minute" msgid "For 24 hours" msgstr "Pentru 24 de ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Pentru 3 zile" msgid "For 3 hours" msgstr "Pentru 3 ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Pentru 3 ore" msgid "For 8 hours" msgstr "Pentru 8 ore" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Uită abonamentele" msgid "Forgot Password" msgstr "Ai uitat parola" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Ți-ai uitat parola?" @@ -8795,7 +8790,7 @@ msgstr "Înainte cu {DEFAULT_SEEK_AMOUNT} secunde" msgid "Forward Message" msgstr "Redirecționează mesajul" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Redirecționat" @@ -9065,7 +9060,7 @@ msgstr "Ia aplicația desktop Fluxer pentru push-to-talk la nivel de sistem și #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Revină la canalul de text anterior focalizat" msgid "Go forward in navigation history" msgstr "Mergi înainte în istoricul de navigare" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Du-te la comunitate" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Invitații de grup" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Mesaj de grup" @@ -9548,7 +9543,7 @@ msgstr "Hei, {username}, bine ai venit! Poți realiza orice." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hei, {username}! Când ajunge la 88mph, o să vezi chestii serioase!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Ascuns" @@ -9569,7 +9564,7 @@ msgstr "Ascunde favoritele" msgid "Hide Join Messages" msgstr "Ascunde mesajele de intrare" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ascunde sugestiile de taste din tooltip-uri" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ascunde canalele dezactivate" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Dacă vrei să-ți exporți datele sau să-ți ștergi mai întâi mesajele, vizitează mai întâi secțiunea Panoul de confidențialitate din Setări utilizator înainte de a continua." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "imagine" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Intrări cu pictograme" msgid "Insert emoji" msgstr "Inserează emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Instalează pachet emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Instalează pachet de stickere" @@ -10153,7 +10148,7 @@ msgstr "Instalat la {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Instalarea pachetelor de emoji și stickere necesită un abonament premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Invitații instant" @@ -10286,7 +10281,7 @@ msgstr "Setări link invitație" msgid "Invite Links" msgstr "Linkuri de invitație" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Modal invitație" msgid "Invite modal preview" msgstr "Previzualizare modal invitație" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Invitație trimisă pentru {0}" msgid "Invite sent to {guildName}" msgstr "Invitația trimisă către {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Splash invitație" @@ -10354,7 +10349,7 @@ msgstr "Invită în {0}" msgid "Invite to Community" msgstr "Invită în comunitate" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Invitație indisponibilă" @@ -10369,12 +10364,12 @@ msgstr "Invitat de {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Invitat de {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Invitat de {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Invitațiile sunt momentan puse în pauză în această comunitate" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Invitațiile sunt blocate pentru comunitățile în previzualizare. Asociază un email și o parolă pentru a revendica contul și a activa invitațiile." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Invitații dezactivate" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Invitații dezactivate" @@ -10482,13 +10477,13 @@ msgstr "Alătură-te unei comunități cu stickere pentru a începe!" msgid "Join call" msgstr "Intră în apel" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Alătură-te comunității" @@ -10497,15 +10492,23 @@ msgstr "Alătură-te comunității" msgid "Join community form" msgstr "Formular de aderare la comunitate" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Alătură-te Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Alătură-te Fluxer HQ pentru a discuta cu echipa și a rămâne la curent cu noutățile!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Alătură-te grupului" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Alătură-te DM-ului de grup" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Notificări de alăturare" @@ -10620,7 +10623,7 @@ msgstr "Du-te la cel mai vechi mesaj necitit" msgid "Jump to page" msgstr "Salt la pagină" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Salt la prezent" @@ -10690,7 +10693,7 @@ msgstr "Taste rapide" msgid "Keyboard" msgstr "Tastatură" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Sugestii tastatură" @@ -10815,7 +10818,7 @@ msgstr "Află despre Plutonium" msgid "Leave blank for a random username" msgstr "Lasă gol pentru un nume de utilizator aleator" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Pleci atât de repede?" msgid "Left" msgstr "Părăsit" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Aliniat la stânga" @@ -10945,7 +10948,7 @@ msgstr "legătură" msgid "Link" msgstr "Legătură" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Conectează canalul" @@ -11027,7 +11030,7 @@ msgstr "Se încarcă blocările..." msgid "Loading communities..." msgstr "Se încarcă comunitățile..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Se încarcă imaginea" @@ -11039,8 +11042,8 @@ msgstr "Se încarcă invitațiile..." msgid "Loading more..." msgstr "Se încarcă mai mult..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Indicator de încărcare" @@ -11064,7 +11067,7 @@ msgstr "Se încarcă tema..." msgid "Loading verification methods..." msgstr "Se încarcă metodele de verificare..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Se încarcă: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Dezactivare locală microfon" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Autentifică-te folosind browserul, apoi introdu codul afișat pentru a msgid "Log in via browser" msgstr "Autentifică-te prin browser" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Autentifică-te prin browser sau instanță personalizată" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Deconectează-te" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Deconectează {0} dispozitive" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Deconectează {sessionCount} dispozitive" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Deconectează 1 dispozitiv" @@ -11141,7 +11144,7 @@ msgstr "Deconectează-te de pe toate dispozitivele" msgid "Log out all other devices" msgstr "Deconectează toate celelalte dispozitive" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Deconectează toate celelalte dispozitive" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Marchează ca 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "mențiuni:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "mențiuni:" msgid "Message" msgstr "Mesaj" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Mesaj " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Mesaj @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Mesaj #" @@ -11838,7 +11842,7 @@ msgstr "Mesaje și media" msgid "Messages Deleted" msgstr "Mesaje șterse" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Nu s-au putut încărca mesajele" @@ -12016,7 +12020,7 @@ msgstr "Mai mult" msgid "More Actions" msgstr "Mai multe acțiuni" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Mai multe sloturi pentru emoji-uri" @@ -12028,7 +12032,7 @@ msgstr "Mai multe opțiuni" msgid "More Options" msgstr "Mai multe opțiuni" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Mai multe sloturi pentru autocolante" @@ -12162,8 +12166,8 @@ msgstr "Dezactivează sunetul canalului" msgid "Mute Channel" msgstr "Dezactivează sunetul canalului" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Sunet dezactivat până la {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Dezactivarea sunetului unei comunități împiedică apariția indicatorilor de necitite și a notificărilor, cu excepția cazului în care ești menționat" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Comunități mutuale ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Prietenii mutuali ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Grupuri mutuale ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Aplicația mea" @@ -12247,7 +12251,7 @@ msgstr "Autocolantul meu grozav" msgid "My Category" msgstr "Categoria mea" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Dispozitivele mele" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigare" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Ai nevoie de un cont?" @@ -12364,7 +12368,7 @@ msgstr "Rețea" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Eroare de rețea" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Fără banner pentru comunitate" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Nu a fost furnizată nicio descriere." @@ -12684,15 +12688,15 @@ msgstr "Nu s-au detectat microfoane" msgid "No more scheduled messages." msgstr "Nu mai sunt mesaje programate." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Nu s-au găsit comunități comune." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Nu s-au găsit prieteni comuni." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Nu s-au găsit grupuri comune." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Nu e pe gustul tău? Poți dezactiva această funcție oricând." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Suprascrieri notificări" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Anunță utilizatorii cu acest rol care au permisiunea de a vizualiza ac msgid "now" msgstr "acum" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Acum" @@ -13090,7 +13094,7 @@ msgstr "La clic" msgid "on:" msgstr "pornit:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Odată șters, aplicația și acreditările sale sunt eliminate definitiv." @@ -13252,7 +13256,7 @@ msgstr "Doar mesaje directe" msgid "Open Fluxer" msgstr "Deschide Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Deschide imaginea în vizualizare completă" @@ -13368,7 +13372,7 @@ msgstr "Deschide comunitatea Visionary" msgid "Opening..." msgstr "Se deschide..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operator" @@ -13441,7 +13445,7 @@ msgstr "Mesajul original a fost șters" msgid "Other" msgstr "Altele" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Alte dispozitive" @@ -13501,7 +13505,7 @@ msgstr "Suprascrie starea contului nepreluat" msgid "Override unread gift inventory status" msgstr "Suprascrie starea inventarului de cadouri necitite" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Privire de ansamblu" @@ -13695,7 +13699,7 @@ msgstr "Permisiuni" msgid "Permissions granted" msgstr "Permisiuni acordate" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Note personale" @@ -13868,12 +13872,12 @@ msgstr "Redă" msgid "Play animated emojis" msgstr "Redă emoji animate" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Redă audio" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Lipește linkul mesajului pe care îl raportezi." msgid "Please provide an email address." msgstr "Introdu o adresă de e-mail." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Reîncearcă sau întoarce-te la lista de aplicații." @@ -13989,7 +13993,7 @@ msgstr "Beneficii Plutonium" msgid "Plutonium Subscription" msgstr "Abonament Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Tablou de bord confidențialitate" msgid "Privacy Policy" msgstr "Politica de confidențialitate" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Elimină acest sticker din stocare și CDN" msgid "Push Notification Inactive Timeout" msgstr "Timp de inactivitate notificări push" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Notificări push" @@ -14412,7 +14416,7 @@ msgstr "Interacțiunea cu reacțiile este dezactivată" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reacții" @@ -14583,7 +14587,7 @@ msgstr "Reîmprospătează abonamentul push" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Regenerare" @@ -14591,19 +14595,19 @@ msgstr "Regenerare" msgid "Regenerate backup codes" msgstr "Regenerare coduri de rezervă" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Regenerăm token-ul botului?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Regenerăm secretul clientului?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Regenerarea va invalida secretul curent. Actualizează orice cod care folosește valoarea veche." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Regenerarea va invalida token-ul curent. Actualizează orice cod care folosește valoarea veche." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Elimină filtrul" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Elimină filtrul" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Raportul a fost trimis cu succes. Echipa noastră de siguranță îl va #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Raportează utilizatorul" @@ -15105,7 +15109,7 @@ msgstr "Domenii solicitate" msgid "Require 2FA for moderation actions" msgstr "Solicită 2FA pentru acțiuni de moderare" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Solicită dublu clic pentru a te alătura canalelor vocale" @@ -15144,7 +15148,7 @@ msgstr "Necesită tot ce e în nivelul Mediu, plus să fii membru al serverului msgid "Requires Plutonium" msgstr "Necesită Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Reprogramează mesajul" @@ -15290,11 +15294,11 @@ msgstr "Reabonează-te" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Reîncearcă" @@ -15359,7 +15363,7 @@ msgstr "Revocă" msgid "Revoke Ban" msgstr "Anulează banul" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Revocă dispozitivul" @@ -15386,7 +15390,7 @@ msgstr "Derulează înapoi {DEFAULT_SEEK_AMOUNT} secunde" msgid "Right" msgstr "Dreapta" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Aliniat la dreapta" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Caută membri..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Caută mesaje" @@ -15834,13 +15838,13 @@ msgstr "Caută roluri sau membri..." msgid "Search saved media" msgstr "Caută media salvate" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Domeniu căutare" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Domeniul căutării: {0}" @@ -15857,7 +15861,7 @@ msgstr "Caută în setări..." msgid "Search stickers..." msgstr "Caută stickere..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sugestii de căutare" @@ -15938,7 +15942,7 @@ msgstr "Cheie de securitate / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verificarea cheii de securitate a eșuat. Încearcă din nou." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Vezi toate dispozitivele conectate în contul tău. Revocă sesiunile pe care nu le recunoști." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Selectează cont" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Selectează tot" @@ -16040,7 +16044,7 @@ msgstr "Selectează dimensiunea media pentru conținutul încorporat din linkuri msgid "Select media size for uploaded attachments" msgstr "Selectează dimensiunea media pentru atașamentele încărcate" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Selectează vizualizarea mutuală" @@ -16151,9 +16155,9 @@ msgstr "Trimite cod" msgid "Send Code" msgstr "Trimite cod" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Trimite cerere de prietenie" @@ -16170,7 +16174,7 @@ msgstr "Trimite mesaj · Click dreapta pentru programare" msgid "Send Message Disabled" msgstr "Trimiterea mesajelor este dezactivată" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Trimite mesaje" @@ -16624,7 +16628,7 @@ msgstr "Afișează butonul Cadou" msgid "Show inline images and videos" msgstr "Arată imaginile și videoclipurile în linie" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Arată doar indicatorul de tastare fără avatare" @@ -16788,11 +16792,11 @@ msgstr "Arată cadoul ca deja răscumpărat" msgid "Show this role separately" msgstr "Arată acest rol separat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Arată indicatorul de tastare cu avatarurile utilizatorilor în lista de canale" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Arată tastarea pe canalul selectat" @@ -17151,7 +17155,7 @@ msgstr "Spaniolă (Spania)" msgid "Speak" msgstr "Vorbește" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Pronunță mesajul" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Începe partajarea" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Pornește apel video" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Pornește apel audio" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Densitatea autocolantelor" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Pachet de autocolante" @@ -17427,7 +17431,7 @@ msgstr "Oprește soneria" msgid "Stop Sharing" msgstr "Oprește partajarea" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Oprește vorbirea" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Suprimă embedurile" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Canal text" @@ -18028,10 +18032,10 @@ msgstr "Această acțiune necesită verificare pentru a continua." msgid "This application" msgstr "Această aplicație" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Această atașare a expirat" @@ -18039,7 +18043,7 @@ msgstr "Această atașare a expirat" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Acest bot solicită permisiunea Administrator. Nu recomandăm acordarea ei pentru aplicații de producție decât dacă ai încredere totală în dezvoltator. Ia în considerare să-i ceri să solicite un set redus de permisiuni. Închide această pagină dacă nu ești sigur." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Acest lucru nu poate fi anulat. Eliminarea aplicației șterge și botul ei." @@ -18101,7 +18105,7 @@ msgstr "Această comunitate a atins limita maximă de membri și nu acceptă noi msgid "This community has temporarily disabled invites." msgstr "Această comunitate a dezactivat temporar invitațiile." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Această comunitate a dezactivat temporar invitațiile. Poți încerca din nou mai târziu." @@ -18178,7 +18182,7 @@ msgstr "Această invitație are utilizări nelimitate." msgid "This invite link never expires." msgstr "Acest link de invitație nu expiră niciodată." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Acesta este începutul lui <0>{displayName}. Adaugă prieteni pentru a începe o conversație!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Acesta este începutul istoricului tău de mesaje directe cu <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Acesta a fost un mesaj @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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ă." @@ -18351,7 +18355,7 @@ msgstr "Aceasta va crea o ruptură în continuumul spațiu-timp și nu poate fi msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Aceasta va ascunde toate elementele UI legate de favorite, inclusiv butoanele și elementele de meniu. Favoritele existente vor fi păstrate și pot fi reactivat oricând din <0>Setări utilizator → Aspect și senzație → Favorite." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Aceasta va modifica mesajul programat existent în loc să trimită imediat." @@ -18387,8 +18391,8 @@ msgstr "Aceasta va elimina sesiunea salvată pentru acest cont." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Aceasta va înlocui tema personalizată curentă. O poți edita mai târziu în Setările utilizatorului." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatură pentru {title}" @@ -18485,7 +18489,7 @@ msgstr "Toast-urile apar în partea de sus, centru a ecranului." msgid "today" msgstr "azi" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Astăzi" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Încearcă din nou" @@ -18737,7 +18741,7 @@ msgstr "Încearcă un alt nume sau verifică-ți ortografia." msgid "Try another search term" msgstr "Încearcă un alt termen de căutare" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Încearcă să ceri o invitație nouă." @@ -18864,7 +18868,7 @@ msgstr "Scară tip" msgid "Type your message here..." msgstr "Scrie mesajul tău aici..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Evenimente de scriere" @@ -18877,11 +18881,11 @@ msgstr "Indicator de tastare" msgid "Typing Indicator" msgstr "Indicator de scriere" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Indicator de tastare + avatare" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Doar indicator de tastare" @@ -18961,11 +18965,11 @@ msgstr "Nu se poate iniția apelul" msgid "Unable to start email change" msgstr "Nu se poate începe schimbarea adresei de email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Indisponibil pentru toată lumea" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Indisponibil pentru toată lumea, în afară de staff" @@ -18978,7 +18982,7 @@ msgstr "Indisponibil pentru toată lumea, în afară de staff" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Deblochează acest utilizator înainte de a trimite o cerere de prieteni #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Deblochează utilizatorul" @@ -19165,7 +19169,7 @@ msgstr "Eroare necunoscută" msgid "Unknown Gift" msgstr "Cadou necunoscut" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Invitație necunoscută" @@ -19205,11 +19209,11 @@ msgstr "rol-necunoscut" msgid "Unlimited" msgstr "Nelimitat" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Emoji nelimitate" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Stickere nelimitate" @@ -19254,7 +19258,7 @@ msgstr "Deblochează stickere în DM-uri cu Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Activează sunetul categoriei" msgid "Unmute Channel" msgstr "Activează sunetul canalului" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Activează sunetul favorite" msgid "Unmute User" msgstr "Activează sunetul utilizatorului" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Fără nume" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Până îl schimb" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Email neconfirmat" msgid "Up to 4K/60fps" msgstr "Până la 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Actualizează" @@ -19629,7 +19633,7 @@ msgstr "Încarcă sunet de intrare" msgid "Upload Failed" msgstr "Încărcarea a eșuat" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Încarcă fișier" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Utilizatorul a mutat canalul" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Profil utilizator" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Profil utilizator: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Valori" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL personalizat" @@ -20059,14 +20063,14 @@ msgstr "Poate fi necesară verificarea înainte de a vedea codurile de rezervă. #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Comunitate verificată" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Gildă verificată" @@ -20167,8 +20171,8 @@ msgstr "Calitate video" msgid "Video Settings" msgstr "Setări video" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Miniatură video" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Vezi codurile" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Vezi profilul comunității" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Vezi inventarul de cadouri" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Vezi profilul global" @@ -20329,7 +20333,7 @@ msgstr "Selectarea categoriei de încălcare" msgid "Violent or Graphic Content" msgstr "Conținut violent sau grafic" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Voce VIP" @@ -20341,7 +20345,7 @@ msgstr "Butoane vizibile" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Apeluri vocale" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Canal vocal" @@ -20442,7 +20446,7 @@ msgstr "Canal vocal" msgid "Voice Channel Full" msgstr "Canal vocal plin" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Comportamentul de alăturare la canalul vocal" @@ -20559,7 +20563,7 @@ msgstr "Nu am putut intra în această comunitate acum." msgid "We couldn't load the invites at this time." msgstr "Nu am putut încărca invitațiile în acest moment." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Nu am putut încărca această aplicație" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Avem probleme să ne conectăm la serverele Fluxer. Ar putea fi o problemă temporară de rețea sau întreținere programată." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Avem probleme să ne conectăm la continuumul spațiu-timp. Verifică conexiunea și încearcă din nou." @@ -20759,7 +20763,7 @@ msgstr "Războinicii de weekend" msgid "Welcome and system messages will appear here." msgstr "Mesajele de bun venit și cele de sistem vor apărea aici." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Bun venit înapoi" @@ -20820,7 +20824,7 @@ msgstr "Ce se întâmplă?" msgid "What's included in your export:" msgstr "Ce este inclus în exportul tău:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Când este dezactivat (implicit), indicatoarele de tastare nu apar pe canalul pe care îl vizualizezi." @@ -20836,7 +20840,7 @@ msgstr "Când este activat, atingerea rapidă a scurtăturii push-to-talk va men msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Când este activat, dezvăluie meniuri de depanare în aplicație pentru a inspecta și copia obiecte JSON brute ale structurilor interne cum sunt mesajele, canalele, utilizatorii și comunitățile. Include și unelte pentru depanarea performanței parserului Fluxer Markdown și AST-ului unui mesaj." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Când este activat, ecusoanele de scurtături sunt ascunse în tooltip-uri." @@ -20868,7 +20872,7 @@ msgstr "Când este activat, folosește localizarea calculatorului tău pentru a msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Când este activat, poți marca canale ca favorite și vor apărea în secțiunea Favorite. Când este dezactivat, toate elementele UI legate de favorite (buton, meniuri) vor fi ascunse. Favoritele existente rămân neschimbate." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Când este activat, va trebui să dai dublu clic pe canalele vocale ca să le accesezi. Când este dezactivat (implicit), un singur clic te conectează imediat." @@ -20970,7 +20974,7 @@ msgstr "Anual {yearlyPrice}" msgid "yesterday" msgstr "ieri" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Ieri" @@ -21013,7 +21017,7 @@ msgstr "Editezi profilul tău pentru această comunitate. Acest profil va fi viz msgid "You are in slowmode. Please wait before sending another message." msgstr "Ești în slowmode. Așteaptă înainte să trimiți un alt mesaj." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Acum ești dezvoltator!" @@ -21113,7 +21117,7 @@ msgstr "Poți folosi linkuri și Markdown pentru a-ți formata textul. Cu <0/> p msgid "You can't add new reactions while you're on timeout." msgstr "Nu poți adăuga reacții noi cât ești în timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Nu te poți adăuga ca prieten" @@ -21128,7 +21132,7 @@ msgstr "Nu poți interacționa cu reacțiile din rezultatele căutării deoarece msgid "You can't join while you're on timeout." msgstr "Nu poți intra cât ești în timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Nu te poți dezumuta pentru că ai fost mutat de un moderator." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Nu ai permisiunea de a trimite mesaje în acest canal." @@ -21439,7 +21443,7 @@ msgstr "Vei apărea offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Vei configura permisiunile primite de bot pe următorul ecran." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Va trebui să te reconectezi pe toate dispozitivele deconectate" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 54f9a867..3eb4c6fc 100644 --- a/fluxer_app/src/locales/ru/messages.po +++ b/fluxer_app/src/locales/ru/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# элемент} other {# элементов}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# участник} other {# участников}}" @@ -566,18 +566,18 @@ msgstr "{label} изображения не могут быть анимиров #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Участник" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Участников" @@ -612,11 +612,11 @@ msgstr "{minutes} минут и {seconds} секунд" msgid "{minutes} minutes and 1 second" msgstr "{minutes} минут и 1 секунда" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} взаимное сообщество" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} взаимных сообществ" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} участников на звонке" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} онлайн" @@ -650,15 +650,15 @@ msgstr "Осталось {remaining} символов" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Осталось {remaining} символов. Получи Plutonium, чтобы писать до {premiumMaxLength} символов." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Участник" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Участников" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} онлайн" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} мс" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone упоминания" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Цвет акцента" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Принять" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Принять запрос в друзья" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Принять приглашение" @@ -1364,8 +1364,8 @@ msgstr "Принять приглашение" msgid "Accept the incoming call" msgstr "Принять входящий звонок" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Принятие приглашения автоматически устанавливает пакет." @@ -1594,7 +1594,7 @@ msgstr "Добавить избранные каналы" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Разрешили {0}." msgid "Already have an account?" msgstr "Уже есть аккаунт?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Уже участник" @@ -2191,7 +2191,7 @@ msgstr "Анимированные аватары и баннеры" msgid "Animated Avatars Require Plutonium" msgstr "Анимированные аватары требуют Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Анимированный баннер" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Анимированные эмодзи ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Анимированный GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Анимированное GIF-видео" @@ -2219,7 +2219,7 @@ msgstr "Анимированное GIF-видео" msgid "Animated GIF Video" msgstr "Анимированное GIF-видео" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Анимированная иконка" @@ -2277,7 +2277,7 @@ msgstr "Любой может упомянуть эту роль через @. msgid "API Endpoint" msgstr "API-эндпоинт" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Информация о приложении" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Название приложения" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Название приложения обязательно" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "Ты уверен, что хочешь скрыть все вставки ссылок в этом сообщении? Это действие скроет все вложения." @@ -2603,7 +2602,7 @@ msgstr "Вложение {0}" msgid "Attachment Actions" msgstr "Действия с вложением" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Вложение устарело" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Автозаполнение" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Автоматически" @@ -2859,7 +2858,7 @@ msgstr "Назад" msgid "Back to Applications" msgstr "Назад к приложениям" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Назад к списку" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Назад к входу" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Назад к переопределениям" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Назад к ролям" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Назад к настройкам" @@ -3003,7 +3002,7 @@ msgstr "Забаненные пользователи" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Баннер" @@ -3096,7 +3095,7 @@ msgstr "Лимит символов в био" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Запрошенная область бота" msgid "Bot token" msgstr "Токен бота" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Токен бота обновлён. Обновите код, использующий старый токен." @@ -3435,7 +3434,7 @@ msgstr "Настройки камеры" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Настройки камеры" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Настройки камеры" msgid "Cancel" msgstr "Отмена" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Отменить запрос в друзья" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Внимание! Есть несохранённые изменения." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Категория" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Название категории" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Настройки категории" @@ -3617,7 +3616,7 @@ msgstr "Осторожно" msgid "Center" msgstr "Центр" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Выровнено по центру" @@ -3765,7 +3764,7 @@ msgstr "Битрейт изменён на {0}." msgid "Changed the voice region to {0}." msgstr "Регион голоса изменён на {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "канал" @@ -3828,11 +3827,11 @@ msgstr "ID канала скопирован в буфер обмена" msgid "Channel link copied" msgstr "Ссылка на канал скопирована" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Режим индикатора набора в списке каналов" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Индикаторы набора в списке каналов" @@ -3891,7 +3890,7 @@ msgstr "Канал убран из избранного" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Настройки канала" @@ -4052,7 +4051,7 @@ msgstr "Настрой отображение времени во всём пр msgid "Choose how typing indicators appear in the channel list" msgstr "Выбери, как индикаторы набора отображаются в списке каналов" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Выбери, как индикаторы набора отображаются в списке каналов, когда кто-то печатает." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Заявите о своем аккаунте, чтобы обменять этот подарок." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Заявите о своем аккаунте, чтобы отправлять запросы в друзья." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Сбросить разрешения" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Очистить поиск" msgid "Clear search input" msgstr "Очистить поле поиска" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Сбросить выбор" @@ -4314,7 +4313,7 @@ msgstr "Нажми значок загрузки рядом с любым зву msgid "Click the verification link in the email." msgstr "Нажми ссылку подтверждения в письме." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Нажми, чтобы добавить заметку" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Нажми, чтобы получить подарок!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Нажми, чтобы скопировать" @@ -4388,7 +4387,7 @@ msgstr "Нажми, чтобы увидеть все реакции" msgid "Client secret" msgstr "Секрет клиента" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Секрет клиента обновлён. Обновите код, использующий старый секрет." @@ -4649,8 +4648,8 @@ msgstr "Сообщество разжигает ненависть на осно msgid "Community promotes or facilitates illegal activities" msgstr "Сообщество пропагандирует или облегчает незаконную деятельность" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Контекстные меню" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Контекстные меню открываются левым кликом (по кнопкам) или правым (по другим элементам). Здесь показаны разные пункты меню: чекбоксы, радиокнопки, слайдеры и подменю." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Управляйте тем, как ссылки на сайты ото msgid "Control how you join voice channels" msgstr "Управление подключением к голосовым каналам" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Управляйте подключением к голосовым каналам в сообществах." @@ -5012,7 +5011,7 @@ msgstr "Управление анимацией стикеров" msgid "Control the visibility of favorites throughout the app." msgstr "Управляйте видимостью избранного во всем приложении." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Выберите, показывать ли подсказки горячих клавиш внутри всплывающих подсказок." @@ -5071,7 +5070,7 @@ msgstr "Скопировано" msgid "Copied to clipboard" msgstr "Скопировано в буфер обмена" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL скопирован в буфер обмена" @@ -5149,7 +5148,7 @@ msgstr "Скопировать ссылку на файл" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Скопировать FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Скопировать FluxerTag" msgid "Copy GIF" msgstr "Скопировать GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Скопировать ID гильдии" @@ -5222,7 +5221,7 @@ msgstr "Скопировать текст" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Уютно" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Создать" @@ -5331,14 +5330,14 @@ msgstr "Создавайте и управляйте приложениями и msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Создавайте и делитесь наборами эмодзи и стикеров с Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Создать приложение" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Создать приложение" msgid "Create Category" msgstr "Создать категорию" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Создано {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Создано {0}" @@ -5569,7 +5568,7 @@ msgstr "Обрезанное изображение слишком большо msgid "Current Community" msgstr "Текущее сообщество" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Текущее устройство" @@ -5606,7 +5605,7 @@ msgstr "Застрял в 1885 году, отображается как офл #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Сейчас: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Вторичное опасное действие" msgid "Danger secondary clicked!" msgstr "Вторичное опасное действие нажато!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Опасная зона" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "По умолчанию отключено на мобильных, чтобы сохранить заряд и трафик." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Удалить все мои сообщения" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Удалить приложение" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Удалить вложение" @@ -6063,7 +6062,7 @@ msgstr "Удалить вложение" msgid "Delete Attachment" msgstr "Удалить вложение" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Удалить категорию" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Удалить канал" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Удалить медиа" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Удалить сообщение" @@ -6215,7 +6214,7 @@ msgstr "Плотный" msgid "Dense layout" msgstr "Плотная раскладка" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Развернуто" @@ -6281,7 +6280,7 @@ msgstr "Целевой канал" msgid "Destination URL:" msgstr "Целевой URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Отсоединённый баннер" @@ -6362,7 +6361,7 @@ msgstr "Разные размеры (статус поддерживается)" msgid "Different Sizes & Member Counts" msgstr "Разные размеры и количество участников" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Личное сообщение" @@ -6541,7 +6540,7 @@ msgstr "Отключение аккаунта завершит все сеанс msgid "Disallow @mention." msgstr "Запретить упоминание @." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Запретить неактивированные аккаунты" @@ -6747,7 +6746,7 @@ msgstr "Не показывать превью сообщений в списк msgid "Don't show this again" msgstr "Больше не показывать" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Не показывать индикаторы печати в списке каналов" @@ -6760,7 +6759,7 @@ msgstr "Не показывать индикаторы печати в спис msgid "Done" msgstr "Готово" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Редактировать категорию" msgid "Edit Channel" msgstr "Редактировать канал" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Измени переопределения для ролей и участников в этом канале." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash вставки" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Изображения splash-вставки не могут быть анимированными. Используй JPEG, PNG или WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Встроенное аудио" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Имена эмодзи должны быть минимум из 2 символов и могут содержать только буквы, цифры и подчёркивания. Допустимые форматы: JPEG, PNG, WebP, GIF. Мы сжимаем изображения до 128×128 пикселей. Максимальный размер: {0} КБ на эмодзи." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Набор эмодзи" @@ -7473,7 +7472,7 @@ msgstr "Введи номер телефона" msgid "Enter picture-in-picture" msgstr "Войти в режим «картинка в картинке»" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Активировать режим выделения" @@ -7536,7 +7535,7 @@ msgstr "Введите новый e-mail, который хотите испол msgid "Enter the SMS code you received." msgstr "Введи полученный SMS-код." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "нажми Enter, чтобы <0><1>сохранить" @@ -7604,7 +7603,7 @@ msgstr "Ошибка рендеринга LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc выходит из клавиатурного режима" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "нажми Escape, чтобы <0><1>отменить" @@ -7667,7 +7666,7 @@ msgstr "Выйти из режима «картинка в картинке»" msgid "Exit Preview" msgstr "Выйти из предварительного просмотра" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Выйти из режима выделения" @@ -7701,7 +7700,7 @@ msgstr "Истёк (менее 30 дней назад)" msgid "Expired {absolute}" msgstr "Истёк {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Истёк в период между {earliest} и {latest}" @@ -7709,7 +7708,7 @@ msgstr "Истёк в период между {earliest} и {latest}" msgid "Expired on {date}" msgstr "Истёк {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Истёк {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Истекает" msgid "Expires {absolute} ({relativeText})" msgstr "Истекает {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Истекает между {earliest} и {latest}" @@ -7730,7 +7729,7 @@ msgstr "Истекает между {earliest} и {latest}" msgid "Expires on {date}" msgstr "Истекает {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Истекает {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Наборы выражений — функция Plutonium" msgid "Expression picker categories" msgstr "Категории селектора выражений" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Очистка выражений" @@ -7839,10 +7838,6 @@ msgstr "Не удалось скопировать в буфер обмена" msgid "Failed to copy URL" msgstr "Не удалось скопировать URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Не удалось создать приложение. Проверь данные и попробуй снова." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Не удалось создать роль" @@ -8100,7 +8095,7 @@ msgstr "Не удалось отменить бан. Попробуй снова msgid "Failed to revoke invite" msgstr "Не удалось отозвать приглашение" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Не удалось повернуть. Попробуй снова." @@ -8413,7 +8408,7 @@ msgstr "Фитнес-друзья" msgid "Flags" msgstr "Флаги" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Гибкие названия текстовых каналов" @@ -8577,7 +8572,7 @@ msgstr "Гурманы-друзья" msgid "For 1 hour" msgstr "На 1 час" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "На 1 час" msgid "For 15 minutes" msgstr "На 15 минут" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "На 15 минут" msgid "For 24 hours" msgstr "На 24 часа" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "На 3 дня" msgid "For 3 hours" msgstr "На 3 часа" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "На 3 часа" msgid "For 8 hours" msgstr "На 8 часов" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Забыть подписки" msgid "Forgot Password" msgstr "Забыл пароль" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Забыли пароль?" @@ -8795,7 +8790,7 @@ msgstr "Вперёд на {DEFAULT_SEEK_AMOUNT} секунд" msgid "Forward Message" msgstr "Переслать сообщение" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Переслано" @@ -9065,7 +9060,7 @@ msgstr "Скачай Fluxer для компьютера — там систем #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Вернуться к ранее выбранному текстовом msgid "Go forward in navigation history" msgstr "Двигаться вперёд по истории навигации" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Перейти в сообщество" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Приглашения в группу" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Групповое сообщение" @@ -9548,7 +9543,7 @@ msgstr "Эй, {username}, добро пожаловать! Ты справишь msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Эй, {username}! Когда достигнем 88 миль/ч, ты увидишь нечто серьёзное!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Скрыто" @@ -9569,7 +9564,7 @@ msgstr "Скрыть избранное" msgid "Hide Join Messages" msgstr "Скрыть сообщения о входе" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Скрывать подсказки клавиатуры в тултипах" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Скрывать заглушённые каналы" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Если хочешь сначала экспортировать данные или удалить сообщения, зайди в раздел «Панель конфиденциальности» в Настройках пользователя, прежде чем продолжить." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "изображение" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Поля с иконками" msgid "Insert emoji" msgstr "Вставить эмодзи" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Установить набор эмодзи" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Установить набор стикеров" @@ -10153,7 +10148,7 @@ msgstr "Установлено {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Для установки наборов эмодзи и стикеров нужна подписка Premium." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Мгновенные приглашения" @@ -10286,7 +10281,7 @@ msgstr "Настройки ссылки-приглашения" msgid "Invite Links" msgstr "Ссылки-приглашения" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Модальное окно приглашения" msgid "Invite modal preview" msgstr "Предпросмотр окна приглашения" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Приглашение отправлено в {0}" msgid "Invite sent to {guildName}" msgstr "Приглашение отправлено в {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Превью приглашения" @@ -10354,7 +10349,7 @@ msgstr "Пригласить в {0}" msgid "Invite to Community" msgstr "Пригласить в сообщество" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Приглашение недоступно" @@ -10369,12 +10364,12 @@ msgstr "Пригласил(а) {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Пригласил(а) {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Пригласил(а) {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Приглашения временно приостановлены в msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Приглашения заблокированы для превью-сообществ. Подтверди аккаунт, установив email и пароль, чтобы включить приглашения." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Приглашения отключены" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Приглашения отключены" @@ -10482,13 +10477,13 @@ msgstr "Присоединяйся к сообществу со стикерам msgid "Join call" msgstr "Присоединиться к звонку" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Присоединиться к сообществу" @@ -10497,15 +10492,23 @@ msgstr "Присоединиться к сообществу" msgid "Join community form" msgstr "Форма вступления в сообщество" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Присоединяйтесь к Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Присоединяйтесь к Fluxer HQ, чтобы пообщаться с командой и быть в курсе последних новостей!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Присоединиться к группе" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Присоединиться к групповому ЛС" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Уведомления о присоединении" @@ -10620,7 +10623,7 @@ msgstr "Перейти к самому старому непрочитанном msgid "Jump to page" msgstr "Перейти на страницу" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Перейти к текущему" @@ -10690,7 +10693,7 @@ msgstr "Назначенные клавиши" msgid "Keyboard" msgstr "Клавиатура" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Подсказки клавиатуры" @@ -10815,7 +10818,7 @@ msgstr "Узнать о Plutonium" msgid "Leave blank for a random username" msgstr "Оставь поле пустым для случайного имени" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Так рано уходишь?" msgid "Left" msgstr "Покинул" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "По левому краю" @@ -10945,7 +10948,7 @@ msgstr "ссылка" msgid "Link" msgstr "Ссылка" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Привязать канал" @@ -11027,7 +11030,7 @@ msgstr "Загрузка банов..." msgid "Loading communities..." msgstr "Загрузка сообществ..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Загрузка изображения" @@ -11039,8 +11042,8 @@ msgstr "Загрузка приглашений..." msgid "Loading more..." msgstr "Загрузка ещё..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Заглушка загрузки" @@ -11064,7 +11067,7 @@ msgstr "Загрузка темы..." msgid "Loading verification methods..." msgstr "Загрузка способов подтверждения..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Загрузка: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Локальное отключение микрофона" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Войдите через браузер, затем введите по msgid "Log in via browser" msgstr "Войти через браузер" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Войти через браузер или настраиваемый экземпляр" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Выйти" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Выйти на {0} устройствах" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Выйти из {sessionCount} устройств" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Выйти на 1 устройстве" @@ -11141,7 +11144,7 @@ msgstr "Выйти со всех устройств" msgid "Log out all other devices" msgstr "Выйти из всех остальных устройств" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Выйти на всех остальных устройствах" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Отметить как 18+ (для взрослых)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "упоминания:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "упоминания:" msgid "Message" msgstr "Сообщение" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Сообщение " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Сообщение @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Сообщение #" @@ -11838,7 +11842,7 @@ msgstr "Сообщения и медиа" msgid "Messages Deleted" msgstr "Сообщения удалены" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Не удалось загрузить сообщения" @@ -12016,7 +12020,7 @@ msgstr "Ещё" msgid "More Actions" msgstr "Дополнительные действия" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Дополнительные слоты для эмодзи" @@ -12028,7 +12032,7 @@ msgstr "Дополнительные опции" msgid "More Options" msgstr "Дополнительные опции" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Дополнительные слоты для стикеров" @@ -12162,8 +12166,8 @@ msgstr "Отключить звук канала" msgid "Mute Channel" msgstr "Отключить звук канала" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Звук отключён до {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Отключение уведомлений сообщества скрывает индикаторы непрочитанного и уведомления, если только тебя не упомянули" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Общие сообщества ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Общие друзья ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Общие группы ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Моё приложение" @@ -12247,7 +12251,7 @@ msgstr "Мой классный стикер" msgid "My Category" msgstr "Моя категория" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Мои устройства" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Навигация" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Нужен аккаунт?" @@ -12364,7 +12368,7 @@ msgstr "Сеть" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Ошибка сети" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Нет баннера сообщества" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Описание не указано." @@ -12684,15 +12688,15 @@ msgstr "Микрофоны не обнаружены" msgid "No more scheduled messages." msgstr "Больше нет запланированных сообщений." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Общие сообщества не найдены." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Общие друзья не найдены." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Общие группы не найдены." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Не твоё? Ты всегда можешь отключить эту функцию." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Переопределения уведомлений" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Уведомить пользователей с этой ролью, к msgid "now" msgstr "сейчас" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Сейчас" @@ -13090,7 +13094,7 @@ msgstr "По щелчку" msgid "on:" msgstr "вкл:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "После удаления приложение и его данные нельзя восстановить." @@ -13252,7 +13256,7 @@ msgstr "Только ЛС" msgid "Open Fluxer" msgstr "Открыть Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Открыть изображение в полном размере" @@ -13368,7 +13372,7 @@ msgstr "Открыть сообщество Visionary" msgid "Opening..." msgstr "Открывается..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Оператор" @@ -13441,7 +13445,7 @@ msgstr "Исходное сообщение было удалено" msgid "Other" msgstr "Другое" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Другие устройства" @@ -13501,7 +13505,7 @@ msgstr "Переопределить статус непривязанной у msgid "Override unread gift inventory status" msgstr "Переопределить статус непрочитанного подарочного инвентаря" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Обзор" @@ -13695,7 +13699,7 @@ msgstr "Разрешения" msgid "Permissions granted" msgstr "Разрешения предоставлены" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Личные заметки" @@ -13868,12 +13872,12 @@ msgstr "Воспроизвести" msgid "Play animated emojis" msgstr "Включить анимированные эмодзи" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Воспроизвести аудио" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Вставьте ссылку на сообщение, на которо msgid "Please provide an email address." msgstr "Укажите адрес электронной почты." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Попробуйте снова или вернитесь к списку приложений." @@ -13989,7 +13993,7 @@ msgstr "Плюшки Plutonium" msgid "Plutonium Subscription" msgstr "Подписка Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Панель конфиденциальности" msgid "Privacy Policy" msgstr "Политика конфиденциальности" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Очистить эту наклейку из хранилища и CDN" msgid "Push Notification Inactive Timeout" msgstr "Тайм-аут неактивных push-уведомлений" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push-уведомления" @@ -14412,7 +14416,7 @@ msgstr "Взаимодействие с реакциями отключено" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Реакции" @@ -14583,7 +14587,7 @@ msgstr "Обновить push-подписку" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Перегенерировать" @@ -14591,19 +14595,19 @@ msgstr "Перегенерировать" msgid "Regenerate backup codes" msgstr "Перегенерировать резервные коды" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Перегенерировать токен бота?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Перегенерировать секрет клиента?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Перегенерация аннулирует текущий секрет. Обнови любой код, использующий старое значение." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Перегенерация аннулирует текущий токен. Обнови любой код, использующий старое значение." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Удалить фильтр" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Удалить фильтр" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Жалоба успешно отправлена. Команда без #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Пожаловаться на пользователя" @@ -15105,7 +15109,7 @@ msgstr "Запрошенные области доступа" msgid "Require 2FA for moderation actions" msgstr "Требовать 2FA для модерации" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Требовать двойной щелчок для входа в голосовые каналы" @@ -15144,7 +15148,7 @@ msgstr "Требуется всё из уровня «Средний», плюс msgid "Requires Plutonium" msgstr "Требует Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Перенести сообщение" @@ -15290,11 +15294,11 @@ msgstr "Подписаться снова" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Повторить" @@ -15359,7 +15363,7 @@ msgstr "Отозвать" msgid "Revoke Ban" msgstr "Снять бан" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Отозвать устройство" @@ -15386,7 +15390,7 @@ msgstr "Перемотать на {DEFAULT_SEEK_AMOUNT} секунд назад" msgid "Right" msgstr "Справа" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Выровнено по правому краю" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Поиск участников..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Поиск сообщений" @@ -15834,13 +15838,13 @@ msgstr "Поиск ролей или участников..." msgid "Search saved media" msgstr "Поиск сохранённых медиа" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Область поиска" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Область поиска: {0}" @@ -15857,7 +15861,7 @@ msgstr "Поиск в настройках..." msgid "Search stickers..." msgstr "Поиск стикеров..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Подсказки поиска" @@ -15938,7 +15942,7 @@ msgstr "Ключ безопасности / Passkey" msgid "Security key verification failed. Please try again." msgstr "Проверка ключа безопасности не удалась. Попробуй снова." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Посмотри все устройства, где ты сейчас в аккаунте. Отозови сессии, которых не узнаешь." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Выбрать аккаунт" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Выбрать всё" @@ -16040,7 +16044,7 @@ msgstr "Выбери размер медиа для вставок по ссыл msgid "Select media size for uploaded attachments" msgstr "Выбери размер медиа для загруженных вложений" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Выбери взаимный просмотр" @@ -16151,9 +16155,9 @@ msgstr "Отправить код" msgid "Send Code" msgstr "Отправить код" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Отправить запрос в друзья" @@ -16170,7 +16174,7 @@ msgstr "Отправить сообщение · Щёлкни правой кн msgid "Send Message Disabled" msgstr "Отправка сообщений отключена" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Отправлять сообщения" @@ -16624,7 +16628,7 @@ msgstr "Показать кнопку подарка" msgid "Show inline images and videos" msgstr "Показывать изображения и видео в сообщениях" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Показывать только индикатор набора текста без аватарок" @@ -16788,11 +16792,11 @@ msgstr "Показать подарок как уже активированны msgid "Show this role separately" msgstr "Показать эту роль отдельно" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Показать индикатор набора текста с аватарками пользователей в списке каналов" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Показывать набор текста в выбранном канале" @@ -17151,7 +17155,7 @@ msgstr "Испанский (Испания)" msgid "Speak" msgstr "Говори" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Произнести сообщение" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Начать обмен" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Начать видеозвонок" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Начать голосовой звонок" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Плотность стикеров" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Набор стикеров" @@ -17427,7 +17431,7 @@ msgstr "Прекратить звонок" msgid "Stop Sharing" msgstr "Прекратить трансляцию" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Прекратить речь" @@ -17570,19 +17574,19 @@ msgstr "Отключить все упоминания ролей" msgid "Suppress All Role @mentions" msgstr "Отключить все упоминания ролей" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Отключить встраивание" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Текст" msgid "Text (NSFW)" msgstr "Текст (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Текстовый канал" @@ -18028,10 +18032,10 @@ msgstr "Для продолжения требуется проверка." msgid "This application" msgstr "Это приложение" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Срок действия вложения истёк" @@ -18039,7 +18043,7 @@ msgstr "Срок действия вложения истёк" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Этот бот запрашивает права администратора. Не рекомендуем выдавать их рабочим приложениям, если ты полностью не доверяешь разработчику. Попроси его запросить минимальный набор разрешений. Закрой страницу, если не уверен." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Это невозможно отменить. Удаление приложения также удаляет его бота." @@ -18101,7 +18105,7 @@ msgstr "Сообщество достигло максимального чис msgid "This community has temporarily disabled invites." msgstr "В сообществе временно отключены приглашения." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "В сообществе временно отключены приглашения. Попробуй позже." @@ -18178,7 +18182,7 @@ msgstr "У этого приглашения неограниченное чис msgid "This invite link never expires." msgstr "Эта ссылка-приглашение никогда не истекает." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Это начало истории <0>{displayName}. Добавь друзей, чтобы начать разговор!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Это начало истории личных сообщений с <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Это было @silent сообщение." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "Это создаст разрыв в пространственно-временном континууме — и назад пути нет." @@ -18351,7 +18355,7 @@ msgstr "Это создаст разрыв в пространственно-в msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Это скроет все элементы интерфейса, связанные с избранным, включая кнопки и меню. Твои текущие избранные будут сохранены и всегда могут быть снова включены в <0>Настройках пользователя → Внешний вид → Избранное." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Это изменит уже запланированное сообщение, а не отправит его сразу." @@ -18387,8 +18391,8 @@ msgstr "Это удалит сохранённую сессию этого ак msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Это заменит твою текущую пользовательскую тему. Позже можно отредактировать в настройках пользователя." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Миниатюра для {title}" @@ -18485,7 +18489,7 @@ msgstr "Тосты появляются в верхней центральной msgid "today" msgstr "сегодня" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Сегодня" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "Попробуй другой термин поиска или фильтр" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Попробуй снова" @@ -18737,7 +18741,7 @@ msgstr "Попробуй другое имя или проверь орфогр msgid "Try another search term" msgstr "Попробуй другой поисковый термин" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Попроси новое приглашение." @@ -18864,7 +18868,7 @@ msgstr "Масштаб шрифта" msgid "Type your message here..." msgstr "Напиши сообщение здесь..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "События набора" @@ -18877,11 +18881,11 @@ msgstr "Индикатор набора" msgid "Typing Indicator" msgstr "Индикатор набора" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Индикатор набора + аватары" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Только индикатор набора" @@ -18961,11 +18965,11 @@ msgstr "Не удалось начать звонок" msgid "Unable to start email change" msgstr "Не удалось начать смену email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Недоступно для всех" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Недоступно для всех, кроме персонала" @@ -18978,7 +18982,7 @@ msgstr "Недоступно для всех, кроме персонала" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Разблокируй этого пользователя, прежде #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Разблокировать пользователя" @@ -19165,7 +19169,7 @@ msgstr "Неизвестная ошибка" msgid "Unknown Gift" msgstr "Неизвестный подарок" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Неизвестное приглашение" @@ -19205,11 +19209,11 @@ msgstr "неизвестная-роль" msgid "Unlimited" msgstr "Безлимитный" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Безлимитные эмодзи" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Безлимитные стикеры" @@ -19254,7 +19258,7 @@ msgstr "Разблокируй стикеры в ЛС с Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Включить звук категории" msgid "Unmute Channel" msgstr "Включить звук канала" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Включить звук избранного" msgid "Unmute User" msgstr "Включить звук пользователя" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Безымянный" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Пока я сам этого не изменю" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Неподтверждённый email" msgid "Up to 4K/60fps" msgstr "До 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Обновить" @@ -19629,7 +19633,7 @@ msgstr "Загрузить звук входа" msgid "Upload Failed" msgstr "Загрузка не удалась" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Загрузить файл" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Пользователь перемещён в канал" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Профиль пользователя" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Профиль пользователя: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Значения" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Пользовательский URL" @@ -20059,14 +20063,14 @@ msgstr "Перед просмотром запасных кодов может #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Подтверждённое сообщество" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Подтверждённая гильдия" @@ -20167,8 +20171,8 @@ msgstr "Качество видео" msgid "Video Settings" msgstr "Настройки видео" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Миниатюра видео" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Посмотреть коды" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Просмотреть профиль сообщества" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Посмотреть инвентарь подарков" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Посмотреть глобальный профиль" @@ -20329,7 +20333,7 @@ msgstr "Выбор категории нарушения" msgid "Violent or Graphic Content" msgstr "Насильственный или шокирующий контент" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-голос" @@ -20341,7 +20345,7 @@ msgstr "Видимые кнопки" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Голосовые вызовы" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Голосовой канал" @@ -20442,7 +20446,7 @@ msgstr "Голосовой канал" msgid "Voice Channel Full" msgstr "Голосовой канал заполнен" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Поведение при подключении к голосовому каналу" @@ -20559,7 +20563,7 @@ msgstr "Не удалось сейчас присоединиться к это msgid "We couldn't load the invites at this time." msgstr "Не удалось сейчас загрузить приглашения." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Не удалось загрузить это приложение" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Возникли проблемы с подключением к серверам Fluxer. Это может быть временная сетевая проблема или плановое обслуживание." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Мы не можем подключиться к пространственно-временному континууму. Проверь соединение и попробуй снова." @@ -20759,7 +20763,7 @@ msgstr "Уикенд-воители" msgid "Welcome and system messages will appear here." msgstr "Здесь появятся приветственные и системные сообщения." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "С возвращением" @@ -20820,7 +20824,7 @@ msgstr "Что происходит?" msgid "What's included in your export:" msgstr "Что включено в экспорт:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Когда отключено (по умолчанию), индикаторы набора не появляются в канале, который ты смотришь." @@ -20836,7 +20840,7 @@ msgstr "Когда включено, быстрое нажатие сочета msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Когда включено, открываются отладочные меню по всему приложению для просмотра и копирования сырых JSON-объектов внутренних структур (сообщений, каналов, пользователей и сообществ). Также включаются инструменты для отладки парсера Fluxer Markdown и AST любого сообщения." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Когда включено, значки сочетаний скрываются в подсказках." @@ -20868,7 +20872,7 @@ msgstr "Когда включено, используется локаль ко msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Когда включено, ты можешь добавлять каналы в избранное — они появятся в разделе Избранное. Когда отключено, все элементы интерфейса, связанные с избранным (кнопки, пункты меню), скрываются. Уже добавленные избранные сохраняются." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Когда включено, чтобы присоединиться к голосовым каналам, нужно двойное нажатие. Когда отключено (по умолчанию), достаточно одного клика." @@ -20970,7 +20974,7 @@ msgstr "Ежегодно {yearlyPrice}" msgid "yesterday" msgstr "вчера" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Вчера" @@ -21013,7 +21017,7 @@ msgstr "Ты редактируешь профиль для этого сооб msgid "You are in slowmode. Please wait before sending another message." msgstr "Ты находишься в режиме задержки. Подожди, прежде чем отправить следующее сообщение." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Ты теперь разработчик!" @@ -21113,7 +21117,7 @@ msgstr "Ты можешь использовать ссылки и Markdown дл msgid "You can't add new reactions while you're on timeout." msgstr "Ты не можешь добавлять реакции, пока на тайм-ауте." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Ты не можешь добавить в друзья себя" @@ -21128,7 +21132,7 @@ msgstr "Ты не можешь взаимодействовать с реакц msgid "You can't join while you're on timeout." msgstr "Ты не можешь присоединиться, пока на тайм-ауте." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Ты не можешь включить микрофон, потому msgid "You do not have access to the channel where this message was sent." msgstr "У тебя нет доступа к каналу, где отправлено это сообщение." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "У тебя нет разрешения отправлять сообщения в этом канале." @@ -21439,7 +21443,7 @@ msgstr "Ты будешь отображаться как офлайн" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Ты настроишь, какие разрешения получает бот, на следующем экране." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Тебе придётся снова войти на всех устройствах, где ты вышел" @@ -21508,7 +21512,7 @@ msgstr "Ты в голосовом канале" msgid "You're sending messages too quickly" msgstr "Ты отправляешь сообщения слишком быстро" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 53190df1..871ed3fd 100644 --- a/fluxer_app/src/locales/sv-SE/messages.po +++ b/fluxer_app/src/locales/sv-SE/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# objekt} other {# objekt}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# medlem} other {# medlemmar}}" @@ -566,18 +566,18 @@ msgstr "Bilder i {label} kan inte animeras. Vänligen använd JPEG, PNG eller We #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} medlem" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} medlemmar" @@ -612,11 +612,11 @@ msgstr "{minutes} minuter och {seconds} sekunder" msgid "{minutes} minutes and 1 second" msgstr "{minutes} minuter och 1 sekund" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} ömsesidig gemenskap" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} ömsesidiga gemenskaper" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} deltagare i samtal" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} online" @@ -650,15 +650,15 @@ msgstr "{remaining} tecken kvar" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} tecken kvar. Skaffa Plutonium för att skriva upp till {premiumMaxLength} tecken." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} medlem" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} medlemmar" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} online" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone-omnämningar" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Accentfärg" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Acceptera" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Acceptera vänförfrågan" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Acceptera inbjudan" @@ -1364,8 +1364,8 @@ msgstr "Acceptera inbjudan" msgid "Accept the incoming call" msgstr "Acceptera det inkommande samtalet" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Genom att acceptera denna inbjudan installeras paketet automatiskt." @@ -1594,7 +1594,7 @@ msgstr "Lägg till favoritkanaler" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Tillåt {0}." msgid "Already have an account?" msgstr "Har du redan ett konto?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Redan ansluten" @@ -2191,7 +2191,7 @@ msgstr "Animerade avatarer & banderoller" msgid "Animated Avatars Require Plutonium" msgstr "Animerade avatarer kräver Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Animerad banderoll" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Animerade emojis ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Animerad GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Animerad GIF-video" @@ -2219,7 +2219,7 @@ msgstr "Animerad GIF-video" msgid "Animated GIF Video" msgstr "Animerad GIF-video" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Animerad ikon" @@ -2277,7 +2277,7 @@ msgstr "Alla kan @nämna den här rollen. Medlemmar med \"Använd @everyone/@her msgid "API Endpoint" msgstr "API-slutpunkt" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Applikationsinformation" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Applikationsnamn" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Applikationsnamn krävs" @@ -2554,7 +2553,7 @@ msgstr "Är du säker på att du vill återkalla avstängningen för <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Bilaga {0}" msgid "Attachment Actions" msgstr "Bilageåtgärder" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Bilagan har utgått" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Autofyll" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Automatisk" @@ -2859,7 +2858,7 @@ msgstr "Tillbaka" msgid "Back to Applications" msgstr "Tillbaka till applikationer" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Tillbaka till listan" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Tillbaka till inloggning" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Tillbaka till överskrivningar" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Tillbaka till roller" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Tillbaka till inställningar" @@ -3003,7 +3002,7 @@ msgstr "Bannade användare" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Banderoll" @@ -3096,7 +3095,7 @@ msgstr "Bio-teckengräns" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Botomfattning begärd" msgid "Bot token" msgstr "Bot-token" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot-token har återskapats. Uppdatera all kod som använder den gamla token." @@ -3435,7 +3434,7 @@ msgstr "Kamerainställningar" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kamerainställningar" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kamerainställningar" msgid "Cancel" msgstr "Avbryt" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Avbryt vänförfrågan" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Försiktigt! Du har osparade ändringar." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategori" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategorinamn" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategoriinställningar" @@ -3617,7 +3616,7 @@ msgstr "Varning" msgid "Center" msgstr "Center" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Centrerad" @@ -3765,7 +3764,7 @@ msgstr "Ändrade bitraten till {0}." msgid "Changed the voice region to {0}." msgstr "Ändrade röstregionen till {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "Kanal-ID kopierat till urklipp" msgid "Channel link copied" msgstr "Kanallänk kopierad" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Läge för skrivindikator i kanallista" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Skrivindikatorer för kanallista" @@ -3891,7 +3890,7 @@ msgstr "Kanal borttagen från favoriter" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanalinställningar" @@ -4052,7 +4051,7 @@ msgstr "Välj hur tider visas i hela appen." msgid "Choose how typing indicators appear in the channel list" msgstr "Välj hur skrivindikatorer visas i kanallistan" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Välj hur skrivindikatorer visas i kanallistan när någon skriver i en kanal." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Gör anspråk på ditt konto för att lösa in denna present." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Gör anspråk på ditt konto för att skicka vänförfrågningar." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Rensa behörigheter" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Rensa sökning" msgid "Clear search input" msgstr "Rensa sökinmatning" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Rensa val" @@ -4314,7 +4313,7 @@ msgstr "Klicka på uppladdningsikonen bredvid valfritt ljud för att anpassa det msgid "Click the verification link in the email." msgstr "Klicka på verifieringslänken i e-postmeddelandet." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Klicka för att lägga till en anteckning" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Klicka för att hämta din gåva!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Klicka för att kopiera" @@ -4388,7 +4387,7 @@ msgstr "Klicka för att visa alla reaktioner" msgid "Client secret" msgstr "Klienthemlighet" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Klienthemligheten har återskapats. Uppdatera all kod som använder den gamla hemligheten." @@ -4649,8 +4648,8 @@ msgstr "Community främjar hat baserat på skyddade egenskaper" msgid "Community promotes or facilitates illegal activities" msgstr "Community främjar eller underlättar olagliga aktiviteter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Snabbmenyer" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Snabbmenyer kan öppnas med vänsterklick (på knappar) eller högerklick (på andra element). Detta demonstrerar olika menyobjekt inklusive kryssrutor, alternativknappar, reglage och undermenyer." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kontrollera hur webbplatslänkar förhandsvisas i chatten" msgid "Control how you join voice channels" msgstr "Hantera hur du ansluter till röstkanaler" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Styr hur du går med i röstkanaler i communitys." @@ -5012,7 +5011,7 @@ msgstr "Hantera klistermärkesanimationer" msgid "Control the visibility of favorites throughout the app." msgstr "Styr synligheten för favoriter i hela appen." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Styr om kortkommandotips visas i verktygstips." @@ -5071,7 +5070,7 @@ msgstr "Kopierad" msgid "Copied to clipboard" msgstr "Kopierad till urklipp" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Kopierad URL till urklipp" @@ -5149,7 +5148,7 @@ msgstr "Kopiera fillänk" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Kopiera FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Kopiera FluxerTag" msgid "Copy GIF" msgstr "Kopiera GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Kopiera guild-ID" @@ -5222,7 +5221,7 @@ msgstr "Kopiera text" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Gemytlig" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Skapa" @@ -5331,14 +5330,14 @@ msgstr "Skapa och hantera applikationer och bottar för ditt konto." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Skapa och dela anpassade emojis och klistermärkespaket med Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Skapa applikation" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Skapa applikation" msgid "Create Category" msgstr "Skapa kategori" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Skapad {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Skapad av {0}" @@ -5569,7 +5568,7 @@ msgstr "Den beskurna bilden är för stor. Välj ett mindre område eller en min msgid "Current Community" msgstr "Nuvarande community" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Nuvarande enhet" @@ -5606,7 +5605,7 @@ msgstr "För närvarande fast i 1885, verkar vara offline" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "För närvarande: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Fara Sekundär" msgid "Danger secondary clicked!" msgstr "Fara sekundär klickad!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Fara zon" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Radera alla mina meddelanden" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Radera applikation" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Radera bilaga" @@ -6063,7 +6062,7 @@ msgstr "Radera bilaga" msgid "Delete Attachment" msgstr "Radera bilaga" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Radera kategori" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Radera kanal" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Radera media" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Radera meddelande" @@ -6215,7 +6214,7 @@ msgstr "Tät" msgid "Dense layout" msgstr "Tät layout" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Distribuerad" @@ -6281,7 +6280,7 @@ msgstr "Destinationskanal" msgid "Destination URL:" msgstr "Destinations-URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Fristående banner" @@ -6362,7 +6361,7 @@ msgstr "Olika storlekar (Status stöds)" msgid "Different Sizes & Member Counts" msgstr "Olika storlekar & medlemsantal" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "direktmeddelande" @@ -6541,7 +6540,7 @@ msgstr "Om du inaktiverar ditt konto loggas du ut från alla sessioner. Du kan msgid "Disallow @mention." msgstr "Tillåt inte @omnämnande." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Tillåt inte oanspråkade konton" @@ -6747,7 +6746,7 @@ msgstr "Visa inte förhandsvisning av meddelanden i DM-listan" msgid "Don't show this again" msgstr "Visa inte detta igen" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Visa inte skrivindikatorer i kanallistan" @@ -6760,7 +6759,7 @@ msgstr "Visa inte skrivindikatorer i kanallistan" msgid "Done" msgstr "Klar" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Redigera kategori" msgid "Edit Channel" msgstr "Redigera kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Redigera överskrivningar för roller och medlemmar i denna kanal." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Inbäddningssplash" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Inbäddningssplashbilder kan inte vara animerade. Använd JPEG, PNG eller WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Inbäddat ljud" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emojinamn måste vara minst 2 tecken långa och får bara innehålla alfanumeriska tecken och understreck. Tillåtna filtyper: JPEG, PNG, WebP, GIF. Vi komprimerar bilder till 128x128 pixlar. Maximal storlek: {0} KB per emoji." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emojipaket" @@ -7473,7 +7472,7 @@ msgstr "Ange telefonnummer" msgid "Enter picture-in-picture" msgstr "Gå till bild-i-bild" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Gå till urvalsläge" @@ -7536,7 +7535,7 @@ msgstr "Ange den nya e-postadressen du vill använda. Vi skickar en kod dit här msgid "Enter the SMS code you received." msgstr "Ange SMS-koden du fick." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "tryck enter för att <0><1>spara" @@ -7604,7 +7603,7 @@ msgstr "Fel vid rendering av LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Escape-tangenten avslutar tangentbordsläget" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "tryck på escape för att <0><1>avbryta" @@ -7667,7 +7666,7 @@ msgstr "Avsluta bild-i-bild" msgid "Exit Preview" msgstr "Avsluta förhandsgranskning" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Avsluta urvalsläge" @@ -7701,7 +7700,7 @@ msgstr "Utgången (Inom 30 dagar)" msgid "Expired {absolute}" msgstr "Utgången {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Utgången mellan {earliest} och {latest}" @@ -7709,7 +7708,7 @@ msgstr "Utgången mellan {earliest} och {latest}" msgid "Expired on {date}" msgstr "Utgången den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Utgången den {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Går ut" msgid "Expires {absolute} ({relativeText})" msgstr "Går ut {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Går ut mellan {earliest} och {latest}" @@ -7730,7 +7729,7 @@ msgstr "Går ut mellan {earliest} och {latest}" msgid "Expires on {date}" msgstr "Går ut den {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Går ut den {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Uttryckspaket är en Plutonium-funktion" msgid "Expression picker categories" msgstr "Kategorier för uttrycksväljare" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Rensa uttryck" @@ -7839,10 +7838,6 @@ msgstr "Det gick inte att kopiera till urklipp" msgid "Failed to copy URL" msgstr "Det gick inte att kopiera URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Det gick inte att skapa applikation. Kontrollera dina inmatningar och försök igen." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Det gick inte att skapa roll" @@ -8100,7 +8095,7 @@ msgstr "Det gick inte att återkalla avstängning. Försök igen." msgid "Failed to revoke invite" msgstr "Det gick inte att återkalla inbjudan" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Det gick inte att rotera. Försök igen." @@ -8413,7 +8408,7 @@ msgstr "Fitness Friends" msgid "Flags" msgstr "Flaggor" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Flexibla textkanalnamn" @@ -8577,7 +8572,7 @@ msgstr "Foodie-vänner" msgid "For 1 hour" msgstr "I 1 timme" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "I 1 timme" msgid "For 15 minutes" msgstr "I 15 minuter" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "I 15 minuter" msgid "For 24 hours" msgstr "I 24 timmar" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "I 3 dagar" msgid "For 3 hours" msgstr "I 3 timmar" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "I 3 timmar" msgid "For 8 hours" msgstr "I 8 timmar" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Glöm prenumerationer" msgid "Forgot Password" msgstr "Glömt lösenord" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Glömt ditt lösenord?" @@ -8795,7 +8790,7 @@ msgstr "Vidarebefordra {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Forward Message" msgstr "Vidarebefordra meddelande" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Vidarebefordrat" @@ -9065,7 +9060,7 @@ msgstr "Hämta Fluxer skrivbordsappen för systemomfattande push-to-talk och nå #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Gå tillbaka till den tidigare fokuserade textkanalen" msgid "Go forward in navigation history" msgstr "Gå framåt i navigeringshistorik" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Gå till Community" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Gruppinbjudningar" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Gruppmeddelande" @@ -9548,7 +9543,7 @@ msgstr "Hej, {username}, välkommen! Du kan åstadkomma vad som helst." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hej, {username}! När den når 88 mph kommer du se allvarliga grejer!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Dold" @@ -9569,7 +9564,7 @@ msgstr "Dölj favoriter" msgid "Hide Join Messages" msgstr "Dölj anslutningsmeddelanden" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Dölj tangentbordstips i verktygstips" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Dölj tystade kanaler" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Om du vill exportera dina data eller radera dina meddelanden först, besök avsnittet Integritetsinstrumentpanel i Användarinställningar innan du fortsätter." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "bild" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Inmatningar med ikoner" msgid "Insert emoji" msgstr "Infoga emoji" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Installera emojipaket" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Installera klistermärkespaket" @@ -10153,7 +10148,7 @@ msgstr "Installerat den {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Installation av emoji- och klistermärkespaket kräver ett premiumabonnemang." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Direktinbjudningar" @@ -10286,7 +10281,7 @@ msgstr "Inställningar för inbjudningslänkar" msgid "Invite Links" msgstr "Inbjudningslänkar" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Inbjudningsmodal" msgid "Invite modal preview" msgstr "Förhandsgranskning av inbjudningsmodal" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Inbjudning skickad för {0}" msgid "Invite sent to {guildName}" msgstr "Inbjudan skickad till {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Inbjudningssplash" @@ -10354,7 +10349,7 @@ msgstr "Bjud in till {0}" msgid "Invite to Community" msgstr "Bjud in till community" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Inbjudning otillgänglig" @@ -10369,12 +10364,12 @@ msgstr "Inbjuden av {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Inbjuden av {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Inbjuden av {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Inbjudningar är för närvarande pausade i detta community" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Inbjudningar är låsta för förhandsgranskningscommunities. Aktivera ditt konto genom att ange en e-postadress och lösenord för att aktivera inbjudningar." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Inbjudningar inaktiverade" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Inbjudningar inaktiverade" @@ -10482,13 +10477,13 @@ msgstr "Gå med i ett community med klistermärken för att komma igång!" msgid "Join call" msgstr "Gå med i samtal" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Gå med i community" @@ -10497,15 +10492,23 @@ msgstr "Gå med i community" msgid "Join community form" msgstr "Anmälningsformulär för community" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Gå med i Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Gå med i Fluxer HQ för att chatta med teamet och hålla dig uppdaterad om det senaste!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Gå med i grupp" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Gå med i grupp-DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Anslutningsaviseringar" @@ -10620,7 +10623,7 @@ msgstr "Hoppa till äldsta olästa meddelandet" msgid "Jump to page" msgstr "Hoppa till sida" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Hoppa till nuet" @@ -10690,7 +10693,7 @@ msgstr "Tangentbindningar" msgid "Keyboard" msgstr "Tangentbord" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Tangentbordstips" @@ -10815,7 +10818,7 @@ msgstr "Läs mer om Plutonium" msgid "Leave blank for a random username" msgstr "Lämna tomt för ett slumpmässigt användarnamn" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Lämnar du redan?" msgid "Left" msgstr "Lämnade" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Vänsterjusterad" @@ -10945,7 +10948,7 @@ msgstr "länk" msgid "Link" msgstr "Länk" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Länka kanal" @@ -11027,7 +11030,7 @@ msgstr "Laddar avstängningar..." msgid "Loading communities..." msgstr "Laddar gemenskaper..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Laddar bild" @@ -11039,8 +11042,8 @@ msgstr "Laddar inbjudningar..." msgid "Loading more..." msgstr "Laddar fler..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Laddar platshållare" @@ -11064,7 +11067,7 @@ msgstr "Laddar tema..." msgid "Loading verification methods..." msgstr "Laddar verifieringsmetoder..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Laddar: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Lokal ljudavstängning" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Logga in via din webbläsare, ange sedan koden som visas för att lägga msgid "Log in via browser" msgstr "Logga in via webbläsare" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Logga in via webbläsare eller anpassad instans" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Logga ut" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Logga ut {0} enheter" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Logga ut {sessionCount} enheter" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Logga ut 1 enhet" @@ -11141,7 +11144,7 @@ msgstr "Logga ut från alla enheter" msgid "Log out all other devices" msgstr "Logga ut alla andra enheter" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Logga ut alla andra enheter" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Markera som 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "nämningar:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "nämningar:" msgid "Message" msgstr "Meddelande" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Meddelande " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Meddelande @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Meddelande #" @@ -11838,7 +11842,7 @@ msgstr "Meddelanden & media" msgid "Messages Deleted" msgstr "Meddelanden raderade" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Meddelanden kunde inte laddas" @@ -12016,7 +12020,7 @@ msgstr "Mer" msgid "More Actions" msgstr "Fler åtgärder" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Fler emoji-platser" @@ -12028,7 +12032,7 @@ msgstr "Fler alternativ" msgid "More Options" msgstr "Fler alternativ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Fler klistermärkesplatser" @@ -12162,8 +12166,8 @@ msgstr "Tysta kanal" msgid "Mute Channel" msgstr "Tysta kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Tystad tills {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Genom att tysta ett community förhindras olästa indikatorer och aviseringar från att visas om du inte nämns" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Gemensamma gemenskaper ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Gemensamma vänner ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Gemensamma grupper ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Min applikation" @@ -12247,7 +12251,7 @@ msgstr "Mitt fantastiska klistermärke" msgid "My Category" msgstr "Min kategori" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Mina enheter" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Navigering" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Behöver du ett konto?" @@ -12364,7 +12368,7 @@ msgstr "Nätverk" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Nätverksfel" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Ingen gemenskapsbanner" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Ingen beskrivning angiven." @@ -12684,15 +12688,15 @@ msgstr "Inga mikrofoner upptäckta" msgid "No more scheduled messages." msgstr "Inga fler schemalagda meddelanden." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Inga gemensamma gemenskaper hittades." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Inga gemensamma vänner hittades." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Inga gemensamma grupper hittades." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Inte din grej? Du kan inaktivera den här funktionen när som helst." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Aviseringsöverstyranden" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Meddela användare med den här rollen som har behörighet att se den h msgid "now" msgstr "nu" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Nu" @@ -13090,7 +13094,7 @@ msgstr "Vid klick" msgid "on:" msgstr "på:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "När den har tagits bort tas applikationen och dess inloggningsuppgifter bort permanent." @@ -13252,7 +13256,7 @@ msgstr "Öppna endast DM" msgid "Open Fluxer" msgstr "Öppna Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Öppna bild i helskärmsvy" @@ -13368,7 +13372,7 @@ msgstr "Öppna Visionary Community" msgid "Opening..." msgstr "Öppnar..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatör" @@ -13441,7 +13445,7 @@ msgstr "Det ursprungliga meddelandet har tagits bort" msgid "Other" msgstr "Annat" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Andra enheter" @@ -13501,7 +13505,7 @@ msgstr "Åsidosätt oåterkallat kontostatus" msgid "Override unread gift inventory status" msgstr "Åsidosätt oläst presentinventariestatus" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Översikt" @@ -13695,7 +13699,7 @@ msgstr "Behörigheter" msgid "Permissions granted" msgstr "Behörigheter beviljade" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Personliga anteckningar" @@ -13868,12 +13872,12 @@ msgstr "Spela upp" msgid "Play animated emojis" msgstr "Spela upp animerade emojis" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Spela upp ljud" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Klistra in meddelandelänken du rapporterar." msgid "Please provide an email address." msgstr "Ange en e-postadress." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Försök igen eller gå tillbaka till applikationslistan." @@ -13989,7 +13993,7 @@ msgstr "Plutoniumfördelar" msgid "Plutonium Subscription" msgstr "Plutoniumprenumeration" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Integritetsöversikt" msgid "Privacy Policy" msgstr "Integritetspolicy" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Rensa detta klistermärke från lagring och CDN" msgid "Push Notification Inactive Timeout" msgstr "Timeout för inaktiv push-notis" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Push-notiser" @@ -14412,7 +14416,7 @@ msgstr "Reaktionsinteraktion inaktiverad" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Reaktioner" @@ -14583,7 +14587,7 @@ msgstr "Uppdatera push-prenumeration" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Återskapa" @@ -14591,19 +14595,19 @@ msgstr "Återskapa" msgid "Regenerate backup codes" msgstr "Återskapa reservkoder" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Återskapa bot-token?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Återskapa klienthemlighet?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Återskapande kommer att ogiltigförklara den nuvarande hemligheten. Uppdatera all kod som använder det gamla värdet." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Återskapande kommer att ogiltigförklara den nuvarande token. Uppdatera all kod som använder det gamla värdet." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Ta bort filter" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Ta bort filter" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Rapport inskickad. Vårt säkerhetsteam kommer att granska den inom kort #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Rapportera användare" @@ -15105,7 +15109,7 @@ msgstr "Begärda omfattningar" msgid "Require 2FA for moderation actions" msgstr "Kräv 2FA för modereringsåtgärder" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Kräv dubbelklick för att gå med i röstkanaler" @@ -15144,7 +15148,7 @@ msgstr "Kräver allt i Medel, plus att vara medlem på servern i minst 10 minute msgid "Requires Plutonium" msgstr "Kräver Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Schemalägg om meddelande" @@ -15290,11 +15294,11 @@ msgstr "Prenumerera igen" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Försök igen" @@ -15359,7 +15363,7 @@ msgstr "Återkalla" msgid "Revoke Ban" msgstr "Återkalla avstängning" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Återkalla enhet" @@ -15386,7 +15390,7 @@ msgstr "Spola tillbaka {DEFAULT_SEEK_AMOUNT} sekunder" msgid "Right" msgstr "Höger" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Högerjusterad" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Sök medlemmar..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Sök meddelanden" @@ -15834,13 +15838,13 @@ msgstr "Sök roller eller medlemmar..." msgid "Search saved media" msgstr "Sök sparad media" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Sökområde" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Sökområde: {0}" @@ -15857,7 +15861,7 @@ msgstr "Sök inställningar..." msgid "Search stickers..." msgstr "Sök klistermärken..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Sökförslag" @@ -15938,7 +15942,7 @@ msgstr "Säkerhetsnyckel / Passkey" msgid "Security key verification failed. Please try again." msgstr "Verifiering av säkerhetsnyckel misslyckades. Försök igen." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Se alla enheter som för närvarande är inloggade på ditt konto. Återkalla sessioner du inte känner igen." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Välj konto" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Välj alla" @@ -16040,7 +16044,7 @@ msgstr "Välj mediastorlek för inbäddat innehåll från länkar" msgid "Select media size for uploaded attachments" msgstr "Välj mediastorlek för uppladdade bilagor" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Välj ömsesidig vy" @@ -16151,9 +16155,9 @@ msgstr "Skicka kod" msgid "Send Code" msgstr "Skicka kod" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Skicka vänförfrågan" @@ -16170,7 +16174,7 @@ msgstr "Skicka meddelande · Högerklicka för att schemalägga" msgid "Send Message Disabled" msgstr "Skicka meddelande inaktiverat" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Skicka meddelanden" @@ -16624,7 +16628,7 @@ msgstr "Visa presentknapp" msgid "Show inline images and videos" msgstr "Visa inbäddade bilder och videor" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Visa bara skrivindikatorn utan avatarer" @@ -16788,11 +16792,11 @@ msgstr "Visa gåvan som redan inlöst" msgid "Show this role separately" msgstr "Visa denna roll separat" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Visa skrivindikator med användaravatarer i kanallistan" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Visa skrivande på vald kanal" @@ -17151,7 +17155,7 @@ msgstr "Spanska (Spanien)" msgid "Speak" msgstr "Tala" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Tala meddelande" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Börja dela" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Starta videosamtal" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Starta röstsamtal" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Klistermärkestäthet" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Klistermärkespaket" @@ -17427,7 +17431,7 @@ msgstr "Sluta ringa" msgid "Stop Sharing" msgstr "Sluta dela" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Sluta prata" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Dölj inbäddningar" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Text" msgid "Text (NSFW)" msgstr "Text (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Textkanal" @@ -18028,10 +18032,10 @@ msgstr "Den här åtgärden kräver verifiering för att fortsätta." msgid "This application" msgstr "Den här applikationen" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Den här bilagan har löpt ut" @@ -18039,7 +18043,7 @@ msgstr "Den här bilagan har löpt ut" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Den här botten begär administratörsbehörighet. Vi rekommenderar inte att bevilja detta till produktionsappar om du inte litar fullt ut på utvecklaren. Överväg att be dem begära en reducerad uppsättning behörigheter. Stäng den här sidan om du är osäker." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Det här kan inte ångras. Att ta bort applikationen raderar också dess bot." @@ -18101,7 +18105,7 @@ msgstr "Den här gemenskapen har nått sin maximala medlemsgräns och tar inte e msgid "This community has temporarily disabled invites." msgstr "Den här gemenskapen har tillfälligt inaktiverat inbjudningar." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Den här gemenskapen har tillfälligt inaktiverat inbjudningar. Du kan försöka igen senare." @@ -18178,7 +18182,7 @@ msgstr "Den här inbjudan har obegränsade användningar." msgid "This invite link never expires." msgstr "Den här inbjudningslänken går aldrig ut." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Det här är början av <0>{displayName}. Lägg till vänner för att starta ett samtal!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Det här är början på din direktmeddelandehistorik med <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Det här var ett @silent-meddelande." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Det här kommer att skapa en rift i rumtidskontinuumet och kan inte ång msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Det här kommer att dölja alla favoritrelaterade UI-element inklusive knappar och menyalternativ. Dina befintliga favoriter kommer att bevaras och kan aktiveras igen när som helst från <0>Användarinställningar → Utseende & känsla → Favoriter." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Det här kommer att ändra det befintliga schemalagda meddelandet istället för att skicka det omedelbart." @@ -18387,8 +18391,8 @@ msgstr "Det här kommer att ta bort den sparade sessionen för det här kontot." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Det här kommer att ersätta ditt nuvarande anpassade tema. Du kan redigera det senare i dina användarinställningar." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Miniatyrbild för {title}" @@ -18485,7 +18489,7 @@ msgstr "Toasts visas i mitten överst på skärmen." msgid "today" msgstr "idag" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Idag" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Försök igen" @@ -18737,7 +18741,7 @@ msgstr "Prova ett annat namn eller kontrollera din stavning." msgid "Try another search term" msgstr "Prova en annan sökterm" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Försök be om en ny inbjudan." @@ -18864,7 +18868,7 @@ msgstr "Typstorlek" msgid "Type your message here..." msgstr "Skriv ditt meddelande här..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Skrivhändelser" @@ -18877,11 +18881,11 @@ msgstr "Skrivindikator" msgid "Typing Indicator" msgstr "Skrivindikator" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Skrivindikator + avatarer" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Endast skrivindikator" @@ -18961,11 +18965,11 @@ msgstr "Kan inte starta samtal" msgid "Unable to start email change" msgstr "Kan inte starta e-poständring" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Ej tillgänglig för alla" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Ej tillgänglig för alla utom personal" @@ -18978,7 +18982,7 @@ msgstr "Ej tillgänglig för alla utom personal" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Avblockera den här användaren innan du skickar en vänförfrågan." #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Avblockera användare" @@ -19165,7 +19169,7 @@ msgstr "Okänt fel" msgid "Unknown Gift" msgstr "Okänd gåva" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Okänd inbjudan" @@ -19205,11 +19209,11 @@ msgstr "okänd-roll" msgid "Unlimited" msgstr "Obegränsad" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Obegränsad emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Obegränsade stickers" @@ -19254,7 +19258,7 @@ msgstr "Lås upp stickers i DMs med Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Avmuta kategori" msgid "Unmute Channel" msgstr "Avmuta kanal" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Avmuta favoriter" msgid "Unmute User" msgstr "Avmuta användare" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Namnlös" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Tills jag ändrar det" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Overifierad e-post" msgid "Up to 4K/60fps" msgstr "Upp till 4K/60 fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Uppdatera" @@ -19629,7 +19633,7 @@ msgstr "Ladda upp entré-ljud" msgid "Upload Failed" msgstr "Uppladdning misslyckades" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Ladda upp fil" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Användare flyttade kanal" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Användarprofil" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Användarprofil: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Värden" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Anpassad URL" @@ -20059,14 +20063,14 @@ msgstr "Verifiering kan krävas innan du kan se dina reservkoder." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Verifierad gemenskap" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Verifierad guild" @@ -20167,8 +20171,8 @@ msgstr "Videokvalitet" msgid "Video Settings" msgstr "Videoinställningar" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Videominiatyr" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Visa koder" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Visa community-profil" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Visa gåvoförråd" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Visa global profil" @@ -20329,7 +20333,7 @@ msgstr "Val av överträdelsekategori" msgid "Violent or Graphic Content" msgstr "Våldsamt eller grafiskt innehåll" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-röst" @@ -20341,7 +20345,7 @@ msgstr "Synliga knappar" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionär" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Röstsamtal" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Röstkanal" @@ -20442,7 +20446,7 @@ msgstr "Röstkanal" msgid "Voice Channel Full" msgstr "Röstkanalen är full" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Beteende för anslutning till röstkanal" @@ -20559,7 +20563,7 @@ msgstr "Vi kunde inte gå med i denna community just nu." msgid "We couldn't load the invites at this time." msgstr "Vi kunde inte ladda inbjudningarna för tillfället." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Vi kunde inte ladda denna applikation" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Vi har problem med att ansluta till Fluxers servrar. Detta kan vara ett tillfälligt nätverksproblem eller planerat underhåll." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Vi har problem med att ansluta till rumtidskontinuumet. Kontrollera din anslutning och försök igen." @@ -20759,7 +20763,7 @@ msgstr "Helgkrigare" msgid "Welcome and system messages will appear here." msgstr "Välkomst- och systemmeddelanden kommer att visas här." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Välkommen tillbaka" @@ -20820,7 +20824,7 @@ msgstr "Vad händer?" msgid "What's included in your export:" msgstr "Vad som ingår i din export:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "När inaktiverat (standard) visas inte skrivindikatorer på kanalen du för närvarande tittar på." @@ -20836,7 +20840,7 @@ msgstr "När aktiverat håller ett snabbt tryck på din push-to-talk-genvägen d msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "När aktiverat avslöjar felsökningsmenyer i hela appen för att inspektera och kopiera råa JSON-objekt av interna datastrukturer som meddelanden, kanaler, användare och communitys. Inkluderar även verktyg för att felsöka Fluxer Markdown-parserprestanda och AST för vilket meddelande som helst." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "När aktiverat är genvägsmärken dolda i verktygstips-popuper." @@ -20868,7 +20872,7 @@ msgstr "När aktiverat används datorns språkinställning för att bestämma 12 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "När aktiverat kan du favoritmarkera kanaler och de visas i favoritsektionen. När inaktiverat döljs alla favoritrelaterade gränssnittselement (knappar, menyalternativ). Dina befintliga favoriter bevaras." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "När aktiverat måste du dubbelklicka på röstkanaler för att gå med. När inaktiverat (standard) går du med i kanalen omedelbart med ett enkelt klick." @@ -20970,7 +20974,7 @@ msgstr "Årligen {yearlyPrice}" msgid "yesterday" msgstr "igår" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Igår" @@ -21013,7 +21017,7 @@ msgstr "Du redigerar din per-community-profil. Denna profil kommer endast att va msgid "You are in slowmode. Please wait before sending another message." msgstr "Du är i slowmode. Vänta innan du skickar ett nytt meddelande." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Du är nu en utvecklare!" @@ -21113,7 +21117,7 @@ msgstr "Du kan använda länkar och Markdown för att formatera din text. Med <0 msgid "You can't add new reactions while you're on timeout." msgstr "Du kan inte lägga till nya reaktioner medan du är i timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Du kan inte bli vän med dig själv" @@ -21128,7 +21132,7 @@ msgstr "Du kan inte interagera med reaktioner i sökresultat eftersom det kan st msgid "You can't join while you're on timeout." msgstr "Du kan inte gå med medan du är i timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Du kan inte avtysta dig själv eftersom du har tystats av en moderator." 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 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." @@ -21439,7 +21443,7 @@ msgstr "Du kommer att visas som offline" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Du kommer att konfigurera vilka behörigheter boten får på nästa skärm." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Du måste logga in igen på alla utloggade enheter" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 d6802655..94eca11d 100644 --- a/fluxer_app/src/locales/th/messages.po +++ b/fluxer_app/src/locales/th/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# รายการ} other {# รายการ}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# สมาชิก} other {# สมาชิก}}" @@ -566,18 +566,18 @@ msgstr "ภาพ {label} ไม่สามารถทำให้เคลื #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} สมาชิก" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} สมาชิก" @@ -612,11 +612,11 @@ msgstr "{minutes} นาทีและ {seconds} วินาที" msgid "{minutes} minutes and 1 second" msgstr "{minutes} นาทีและ 1 วินาที" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} ชุมชนที่มีร่วมกัน" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} ชุมชนที่มีร่วมกัน" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} ผู้เข้าร่วมในสาย" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} ออนไลน์" @@ -650,15 +650,15 @@ msgstr "เหลืออีก {remaining} อักขระ" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "เหลืออีก {remaining} อักขระ รับ Plutonium เพื่อเขียนได้ถึง {premiumMaxLength} อักขระ" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} สมาชิก" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} สมาชิก" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} ออนไลน์" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} มิลลิวินาที" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "การกล่าวถึง @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "สีเน้น" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "ยอมรับ" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "ตอบรับคำขอเป็นเพื่อน" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "ยอมรับคำเชิญ" @@ -1364,8 +1364,8 @@ msgstr "ยอมรับคำเชิญ" msgid "Accept the incoming call" msgstr "รับสายที่เข้ามา" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "การยอมรับคำเชิญนี้จะติดตั้งแพ็กให้อัตโนมัติ" @@ -1594,7 +1594,7 @@ msgstr "เพิ่มแชนแนลที่ชอบ" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "อนุญาต {0} แล้ว" msgid "Already have an account?" msgstr "มีบัญชีอยู่แล้วหรือยัง" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "เข้าร่วมแล้ว" @@ -2191,7 +2191,7 @@ msgstr "อวาตาร์และแบนเนอร์เคลื่อ msgid "Animated Avatars Require Plutonium" msgstr "อวาตาร์เคลื่อนไหวต้องใช้ Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "แบนเนอร์เคลื่อนไหว" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "อีโมจิเคลื่อนไหว ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF เคลื่อนไหว" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "วิดีโอ GIF เคลื่อนไหว" @@ -2219,7 +2219,7 @@ msgstr "วิดีโอ GIF เคลื่อนไหว" msgid "Animated GIF Video" msgstr "วิดีโอ GIF เคลื่อนไหว" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "ไอคอนเคลื่อนไหว" @@ -2277,7 +2277,7 @@ msgstr "ใครๆ ก็สามารถ @mention บทบาทนี้ msgid "API Endpoint" msgstr "จุดปลาย API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "ข้อมูลแอปพลิเคชัน" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "ชื่อแอปพลิเคชัน" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "ต้องระบุชื่อแอปพลิเคชัน" @@ -2554,7 +2553,7 @@ msgstr "แน่ใจไหมว่าต้องการยกเลิก msgid "Are you sure you want to revoke this invite? This action cannot be undone." msgstr "แน่ใจไหมว่าต้องการเพิกถอนคำเชิญนี้? การกระทำนี้ไม่สามารถย้อนกลับได้" -#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "แน่ใจไหมว่าต้องการปิดการฝังลิงก์ทั้งหมดในข้อความนี้? การกระทำนี้จะซ่อนการฝังทั้งหมดออกจากข้อความนี้" @@ -2603,7 +2602,7 @@ msgstr "ไฟล์แนบ {0}" msgid "Attachment Actions" msgstr "การดำเนินการกับไฟล์แนบ" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "ไฟล์แนบหมดอายุ" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "เติมข้อความอัตโนมัติ" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "อัตโนมัติ" @@ -2859,7 +2858,7 @@ msgstr "ย้อนกลับ" msgid "Back to Applications" msgstr "กลับไปยังแอปพลิเคชัน" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "กลับไปยังรายการ" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "กลับไปยังหน้าลงชื่อเข้าใช้" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "กลับไปยังการแทนค่า" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "กลับไปยังบทบาท" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "กลับไปยังการตั้งค่า" @@ -3003,7 +3002,7 @@ msgstr "ผู้ใช้ที่ถูกแบน" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "แบนเนอร์" @@ -3096,7 +3095,7 @@ msgstr "ขีดจำกัดตัวอักษรประวัติ" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "สโคปบอทที่ขอ" msgid "Bot token" msgstr "โทเค็นบอท" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "สร้างโทเค็นบอทใหม่แล้ว อัปเดตโค้ดที่ใช้โทเค็นเดิม" @@ -3435,7 +3434,7 @@ msgstr "การตั้งค่ากล้อง" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "การตั้งค่ากล้อง" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "การตั้งค่ากล้อง" msgid "Cancel" msgstr "ยกเลิก" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "ยกเลิกคำขอเป็นเพื่อน" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "ระวัง! คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก" #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "หมวดหมู่" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "ชื่อหมวดหมู่" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "การตั้งค่าหมวดหมู่" @@ -3617,7 +3616,7 @@ msgstr "ระวัง" msgid "Center" msgstr "กลาง" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "จัดตรงกลาง" @@ -3765,7 +3764,7 @@ msgstr "เปลี่ยนบิตเรตเป็น {0}" msgid "Changed the voice region to {0}." msgstr "เปลี่ยนภูมิภาคเสียงเป็น {0}" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "แชนแนล" @@ -3828,11 +3827,11 @@ msgstr "คัดลอก ID แชนแนลไปยังคลิปบ msgid "Channel link copied" msgstr "คัดลอกลิงก์แชนแนลแล้ว" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "โหมดแสดงสถานะพิมพ์ในรายการแชนแนล" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "ตัวบ่งชี้การพิมพ์ในรายการแชนแนล" @@ -3891,7 +3890,7 @@ msgstr "นำแชนแนลออกจากรายการโปรด #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "การตั้งค่าแชนแนล" @@ -4052,7 +4051,7 @@ msgstr "เลือกวิธีการแสดงเวลาทั่ว msgid "Choose how typing indicators appear in the channel list" msgstr "เลือกวิธีการแสดงตัวบ่งชี้การพิมพ์ในรายการแชนแนล" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "เลือกวิธีแสดงตัวบ่งชี้กำลังพิมพ์ในรายการแชนแนลเมื่อมีคนพิมพ์อยู่ในแชนแนล" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "ยืนยันบัญชีของคุณเพื่อแลกของขวัญนี้" #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "ยืนยันบัญชีของคุณเพื่อส่งคำขอเป็นเพื่อน" @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "ล้างสิทธิ์" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "ล้างการค้นหา" msgid "Clear search input" msgstr "ล้างช่องค้นหา" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "ล้างการเลือก" @@ -4314,7 +4313,7 @@ msgstr "คลิกไอคอนอัปโหลดข้างเสีย msgid "Click the verification link in the email." msgstr "คลิกลิงก์ยืนยันในอีเมล" -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "คลิกเพื่อเพิ่มหมายเหตุ" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "คลิกเพื่อรับของขวัญของคุณ!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "คลิกเพื่อคัดลอก" @@ -4388,7 +4387,7 @@ msgstr "คลิกเพื่อดูการตอบสนองทั้ msgid "Client secret" msgstr "รหัสลับไคลเอนต์" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "รหัสลับไคลเอนต์ได้รับการสร้างใหม่ ปรับปรุงโค้ดที่ใช้รหัสเก่า" @@ -4649,8 +4648,8 @@ msgstr "ชุมชนส่งเสริมความเกลียดช msgid "Community promotes or facilitates illegal activities" msgstr "ชุมชนส่งเสริมหรืออำนวยความสะดวกกิจกรรมที่ผิดกฎหมาย" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "เมนูบริบท" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "เมนูบริบทสามารถเปิดได้ด้วยการคลิกซ้าย (บนปุ่ม) หรือคลิกขวา (บนองค์ประกอบอื่น) ตัวอย่างนี้แสดงรายการเมนูต่างๆ รวมทั้งช่องทำเครื่องหมาย ปุ่มตัวเลือก แถบเลื่อน และเมนูย่อย" -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "ควบคุมวิธีการแสดงตัวอย่า msgid "Control how you join voice channels" msgstr "ควบคุมวิธีการเข้าร่วมแชนแนลเสียง" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "ควบคุมวิธีที่คุณเข้าร่วมแชนแนลเสียงในชุมชน" @@ -5012,7 +5011,7 @@ msgstr "ควบคุมอนิเมชั่นสติกเกอร์ msgid "Control the visibility of favorites throughout the app." msgstr "ควบคุมการมองเห็นรายการโปรดทั่วแอป" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "ควบคุมว่าคำแนะนำทางลัดบนคีย์บอร์ดจะแสดงในคำอธิบายเครื่องมือหรือไม่" @@ -5071,7 +5070,7 @@ msgstr "คัดลอกแล้ว" msgid "Copied to clipboard" msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "คัดลอก URL ไปยังคลิปบอร์ดแล้ว" @@ -5149,7 +5148,7 @@ msgstr "คัดลอกลิงก์ไฟล์" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "คัดลอก FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "คัดลอก FluxerTag" msgid "Copy GIF" msgstr "คัดลอก GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "คัดลอก ID กิลด์" @@ -5222,7 +5221,7 @@ msgstr "คัดลอกข้อความ" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "อบอุ่น" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "สร้าง" @@ -5331,14 +5330,14 @@ msgstr "สร้างและจัดการแอปและบอทส msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "สร้างและแบ่งปันชุดอิโมจิและสติ๊กเกอร์แบบกำหนดเองกับ Fluxer Plutonium" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "สร้างแอปพลิเคชัน" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "สร้างแอปพลิเคชัน" msgid "Create Category" msgstr "สร้างหมวดหมู่" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "สร้างเมื่อ {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "สร้างโดย {0}" @@ -5569,7 +5568,7 @@ msgstr "ภาพที่ครอบใหญ่เกินไป โปร msgid "Current Community" msgstr "ชุมชนปัจจุบัน" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "อุปกรณ์ปัจจุบัน" @@ -5606,7 +5605,7 @@ msgstr "ติดอยู่ในปี 1885 แสดงสถานะออ #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "ปัจจุบัน: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "ปุ่มรองอันตราย" msgid "Danger secondary clicked!" msgstr "กดปุ่มรองอันตรายแล้ว!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "โซนอันตราย" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "ค่าเริ่มต้นปิดใช้งานบนมือถือเพื่อประหยัดแบตเตอรี่และการใช้ข้อมูล" #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "ลบข้อความทั้งหมดของฉัน" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "ลบแอปพลิเคชัน" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "ลบไฟล์แนบ" @@ -6063,7 +6062,7 @@ msgstr "ลบไฟล์แนบ" msgid "Delete Attachment" msgstr "ลบไฟล์แนบ" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "ลบหมวดหมู่" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "ลบแชนแนล" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "ลบสื่อ" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "ลบข้อความ" @@ -6215,7 +6214,7 @@ msgstr "แน่น" msgid "Dense layout" msgstr "เค้าโครงแน่น" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "ดีพลอยแล้ว" @@ -6281,7 +6280,7 @@ msgstr "แชนแนลปลายทาง" msgid "Destination URL:" msgstr "URL ปลายทาง:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "แบนเนอร์แยก" @@ -6362,7 +6361,7 @@ msgstr "ขนาดต่างกัน (รองรับสถานะ)" msgid "Different Sizes & Member Counts" msgstr "ขนาดต่างกัน & จำนวนสมาชิก" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "ข้อความโดยตรง" @@ -6541,7 +6540,7 @@ msgstr "การปิดใช้งานบัญชีจะออกจา msgid "Disallow @mention." msgstr "ไม่อนุญาต @mention" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "ไม่อนุญาตบัญชีที่ยังไม่เคลม" @@ -6747,7 +6746,7 @@ msgstr "อย่าแสดงตัวอย่างข้อความใ msgid "Don't show this again" msgstr "อย่าแสดงอีก" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "อย่าแสดงสถานะพิมพ์ในรายชื่อแชนแนล" @@ -6760,7 +6759,7 @@ msgstr "อย่าแสดงสถานะพิมพ์ในรายช msgid "Done" msgstr "เสร็จแล้ว" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "แก้ไขหมวดหมู่" msgid "Edit Channel" msgstr "แก้ไขแชนแนล" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "แก้ไขการเขียนทับสำหรับบทบาทและสมาชิกในแชนแนลนี้" #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "หน้าต้อนรับฝัง" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "ภาพหน้าต้อนรับฝังไม่สามารถเคลื่อนไหวได้ โปรดใช้ JPEG, PNG หรือ WebP" -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "เสียงฝัง" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "ชื่ออีโมจิต้องมีความยาวอย่างน้อย 2 ตัวอักษรและอนุญาตให้ใช้เพียงตัวอักษรหรือตัวเลขและขีดล่างเท่านั้น ประเภทไฟล์ที่รองรับ: JPEG, PNG, WebP, GIF เราบีบอัดภาพเป็น 128x128 พิกเซล ขนาดสูงสุด: {0} KB ต่ออีโมจิ" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "ชุดอีโมจิ" @@ -7473,7 +7472,7 @@ msgstr "ใส่เบอร์โทร" msgid "Enter picture-in-picture" msgstr "เข้าภาพซ้อนภาพ" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "เข้าสู่โหมดเลือก" @@ -7536,7 +7535,7 @@ msgstr "ใส่อีเมลใหม่ที่คุณต้องกา msgid "Enter the SMS code you received." msgstr "ใส่รหัส SMS ที่คุณได้รับ" -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "กด Enter เพื่อ<0><1>บันทึก" @@ -7604,7 +7603,7 @@ msgstr "แสดง LaTeX ไม่สำเร็จ: {0}" msgid "Escape key exits keyboard mode" msgstr "กด Esc เพื่อออกจากโหมดคีย์บอร์ด" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "กด Esc เพื่อ<0><1>ยกเลิก" @@ -7667,7 +7666,7 @@ msgstr "ออกจากโหมดภาพซ้อนภาพ" msgid "Exit Preview" msgstr "ออกจากการแสดงตัวอย่าง" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "ออกจากโหมดเลือก" @@ -7701,7 +7700,7 @@ msgstr "หมดอายุ (ภายใน 30 วัน)" msgid "Expired {absolute}" msgstr "หมดอายุ {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "หมดอายุระหว่าง {earliest} ถึง {latest}" @@ -7709,7 +7708,7 @@ msgstr "หมดอายุระหว่าง {earliest} ถึง {latest} msgid "Expired on {date}" msgstr "หมดอายุเมื่อ {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "หมดอายุเมื่อ {earliest}" @@ -7722,7 +7721,7 @@ msgstr "หมดอายุ" msgid "Expires {absolute} ({relativeText})" msgstr "หมดอายุ {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "หมดอายุระหว่าง {earliest} ถึง {latest}" @@ -7730,7 +7729,7 @@ msgstr "หมดอายุระหว่าง {earliest} ถึง {latest} msgid "Expires on {date}" msgstr "หมดอายุเมื่อ {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "หมดอายุเมื่อ {earliest}" @@ -7766,7 +7765,7 @@ msgstr "แพ็กแสดงอารมณ์เป็นฟีเจอร msgid "Expression picker categories" msgstr "หมวดหมู่ตัวเลือกแสดงอารมณ์" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "ลบแสดงอารมณ์" @@ -7839,10 +7838,6 @@ msgstr "คัดลอกไปยังคลิปบอร์ดไม่ส msgid "Failed to copy URL" msgstr "คัดลอก URL ไม่สำเร็จ" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "สร้างแอปพลิเคชันไม่สำเร็จ โปรดตรวจสอบข้อมูลแล้วลองอีกครั้ง" - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "สร้างบทบาทไม่สำเร็จ" @@ -8100,7 +8095,7 @@ msgstr "ยกเลิกการแบนไม่สำเร็จ โป msgid "Failed to revoke invite" msgstr "ยกเลิกคำเชิญไม่สำเร็จ" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "หมุนไม่สำเร็จ โปรดลองอีกครั้ง" @@ -8413,7 +8408,7 @@ msgstr "เพื่อนสายฟิตเนส" msgid "Flags" msgstr "ธง" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "ชื่อแชนแนลข้อความที่ยืดหยุ่น" @@ -8577,7 +8572,7 @@ msgstr "เพื่อนสายกิน" msgid "For 1 hour" msgstr "เป็นเวลา 1 ชั่วโมง" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "เป็นเวลา 1 ชั่วโมง" msgid "For 15 minutes" msgstr "เป็นเวลา 15 นาที" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "เป็นเวลา 15 นาที" msgid "For 24 hours" msgstr "เป็นเวลา 24 ชั่วโมง" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "เป็นเวลา 3 วัน" msgid "For 3 hours" msgstr "เป็นเวลา 3 ชั่วโมง" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "เป็นเวลา 3 ชั่วโมง" msgid "For 8 hours" msgstr "เป็นเวลา 8 ชั่วโมง" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "ลืมการสมัครรับ" msgid "Forgot Password" msgstr "ลืมรหัสผ่าน" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "ลืมรหัสผ่านของคุณ?" @@ -8795,7 +8790,7 @@ msgstr "ขยับไปข้างหน้า {DEFAULT_SEEK_AMOUNT} วิ msgid "Forward Message" msgstr "ส่งต่อข้อความ" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "ถูกส่งต่อ" @@ -9065,7 +9060,7 @@ msgstr "ติดตั้งแอป Fluxer บนเดสก์ท็อป #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "กลับไปยังแชนแนลข้อความที msgid "Go forward in navigation history" msgstr "ไปข้างหน้าในประวัติการนำทาง" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "ไปยังชุมชน" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "คำเชิญกลุ่ม" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "ข้อความกลุ่ม" @@ -9548,7 +9543,7 @@ msgstr "สวัสดี {username}, ยินดีต้อนรับ! ค msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "เฮ้ {username}! เมื่อถึง 88 ไมล์ต่อชั่วโมง คุณจะได้เห็นของเจ๋งๆ!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "ซ่อน" @@ -9569,7 +9564,7 @@ msgstr "ซ่อนรายการโปรด" msgid "Hide Join Messages" msgstr "ซ่อนข้อความเข้าร่วม" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "ซ่อนคำแนะนำแป้นพิมพ์ในทูลทิป" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "ซ่อนแชนแนลที่ปิดเสียง" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "หากคุณต้องการส่งออกข้อมูลหรือลบข้อความก่อน กรุณาไปที่ส่วน แดชบอร์ดความเป็นส่วนตัว ในการตั้งค่าผู้ใช้ก่อนดำเนินการต่อ" #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "รูปภาพ" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "อินพุตพร้อมไอคอน" msgid "Insert emoji" msgstr "แทรกอีโมจิ" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "ติดตั้งชุดอีโมจิ" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "ติดตั้งชุดสติกเกอร์" @@ -10153,7 +10148,7 @@ msgstr "ติดตั้งเมื่อ {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "การติดตั้งชุดอีโมจิและสติกเกอร์ต้องใช้การสมัครพรีเมียม" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "คำเชิญทันที" @@ -10286,7 +10281,7 @@ msgstr "การตั้งค่าลิงก์เชิญ" msgid "Invite Links" msgstr "ลิงก์เชิญ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "โมดัลคำเชิญ" msgid "Invite modal preview" msgstr "ตัวอย่างโมดัลคำเชิญ" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "ส่งคำเชิญสำหรับ {0}" msgid "Invite sent to {guildName}" msgstr "ส่งคำเชิญไปที่ {guildName} แล้ว" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "หน้าต้อนรับคำเชิญ" @@ -10354,7 +10349,7 @@ msgstr "เชิญไปที่ {0}" msgid "Invite to Community" msgstr "เชิญเข้าชุมชน" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "ไม่สามารถใช้คำเชิญได้" @@ -10369,12 +10364,12 @@ msgstr "เชิญโดย {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "เชิญโดย {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "เชิญโดย {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "คำเชิญถูกระงับในชุมชนนี้ msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "คำเชิญถูกล็อกไว้สำหรับชุมชนตัวอย่าง ให้ยืนยันบัญชีของคุณด้วยการตั้งอีเมลและรหัสผ่านเพื่อเปิดใช้งานคำเชิญ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "ปิดใช้งานคำเชิญแล้ว" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "ปิดใช้งานคำเชิญ" @@ -10482,13 +10477,13 @@ msgstr "เข้าร่วมชุมชนที่มีสติกเก msgid "Join call" msgstr "เข้าร่วมสาย" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "เข้าร่วมชุมชน" @@ -10497,15 +10492,23 @@ msgstr "เข้าร่วมชุมชน" msgid "Join community form" msgstr "แบบฟอร์มเข้าร่วมชุมชน" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "เข้าร่วม Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "เข้าร่วม Fluxer HQ เพื่อสนทนากับทีมและติดตามข้อมูลล่าสุด!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "เข้าร่วมกลุ่ม" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "เข้าร่วม DM กลุ่ม" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "การแจ้งเตือนเข้าร่วม" @@ -10620,7 +10623,7 @@ msgstr "กระโดดไปยังข้อความที่ยัง msgid "Jump to page" msgstr "กระโดดไปยังหน้า" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "กระโดดไปยังปัจจุบัน" @@ -10690,7 +10693,7 @@ msgstr "ปุ่มลัด" msgid "Keyboard" msgstr "แป้นพิมพ์" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "คำแนะนำแป้นพิมพ์" @@ -10815,7 +10818,7 @@ msgstr "เรียนรู้เกี่ยวกับ Plutonium" msgid "Leave blank for a random username" msgstr "เว้นว่างไว้เพื่อใช้ชื่อผู้ใช้สุ่ม" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "จะออกแล้วเหรอ?" msgid "Left" msgstr "ออกแล้ว" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "จัดชิดซ้าย" @@ -10945,7 +10948,7 @@ msgstr "ลิงก์" msgid "Link" msgstr "ลิงก์" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "เชื่อมต่อแชนแนล" @@ -11027,7 +11030,7 @@ msgstr "กำลังโหลดการแบน..." msgid "Loading communities..." msgstr "กำลังโหลดชุมชน..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "กำลังโหลดรูปภาพ" @@ -11039,8 +11042,8 @@ msgstr "กำลังโหลดคำเชิญ..." msgid "Loading more..." msgstr "กำลังโหลดเพิ่มเติม..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "กำลังโหลดที่ว่าง" @@ -11064,7 +11067,7 @@ msgstr "กำลังโหลดธีม..." msgid "Loading verification methods..." msgstr "กำลังโหลดวิธีการยืนยันตัวตน..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "กำลังโหลด: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "ปิดเสียงท้องถิ่น" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "เข้าสู่ระบบผ่านเบราว์เซอ msgid "Log in via browser" msgstr "เข้าสู่ระบบผ่านเบราว์เซอร์" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "เข้าสู่ระบบผ่านเบราว์เซอร์หรืออินสแตนซ์ที่กำหนด" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "ออกจากระบบ" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "ออกจากระบบ {0} อุปกรณ์" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "ออกจากระบบ {sessionCount} อุปกรณ์" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "ออกจากระบบ 1 อุปกรณ์" @@ -11141,7 +11144,7 @@ msgstr "ออกจากระบบทุกอุปกรณ์" msgid "Log out all other devices" msgstr "ออกจากระบบอุปกรณ์อื่นทั้งหมด" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "ออกจากระบบอุปกรณ์อื่นทั้งหมด" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "ทำเครื่องหมายว่า 18+ (เนื้อห #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "การกล่าวถึง:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "การกล่าวถึง:" msgid "Message" msgstr "ข้อความ" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "ข้อความ " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "ข้อความ @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "ข้อความ #" @@ -11838,7 +11842,7 @@ msgstr "ข้อความและสื่อ" msgid "Messages Deleted" msgstr "ข้อความถูกลบ" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "โหลดข้อความไม่สำเร็จ" @@ -12016,7 +12020,7 @@ msgstr "เพิ่มเติม" msgid "More Actions" msgstr "การดำเนินการเพิ่มเติม" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "ช่องว่างอีโมจิเพิ่ม" @@ -12028,7 +12032,7 @@ msgstr "ตัวเลือกเพิ่มเติม" msgid "More Options" msgstr "ตัวเลือกเพิ่มเติม" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "ช่องว่างสติกเกอร์เพิ่ม" @@ -12162,8 +12166,8 @@ msgstr "ปิดเสียงแชนแนล" msgid "Mute Channel" msgstr "ปิดเสียงแชนแนล" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "ปิดเสียงจนถึง {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "การปิดเสียงชุมชนจะไม่แสดงตัวชี้วัดที่ยังไม่ได้อ่านและการแจ้งเตือน จนกว่าจะมีการพูดถึงคุณ" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "ชุมชนร่วม ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "เพื่อนร่วม ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "กลุ่มร่วม ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "แอปของฉัน" @@ -12247,7 +12251,7 @@ msgstr "สติกเกอร์เจ๋งๆ ของฉัน" msgid "My Category" msgstr "หมวดหมู่ของฉัน" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "อุปกรณ์ของฉัน" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "การนำทาง" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "ต้องการบัญชีไหม" @@ -12364,7 +12368,7 @@ msgstr "เครือข่าย" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "เกิดข้อผิดพลาดของเครือข่าย" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "ไม่มีแบนเนอร์ชุมชน" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "ไม่มีคำอธิบาย" @@ -12684,15 +12688,15 @@ msgstr "ไม่พบไมโครโฟน" msgid "No more scheduled messages." msgstr "ไม่มีข้อความที่ตั้งเวลาไว้เพิ่มเติม" -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "ไม่พบชุมชนร่วม" -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "ไม่พบเพื่อนร่วมกัน" -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "ไม่พบกลุ่มร่วมกัน" @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "ไม่ใช่ความชอบของคุณหรือเปล่า? คุณปิดฟีเจอร์นี้ได้ทุกเมื่อ" #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "แทนที่การแจ้งเตือน" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "แจ้งเตือนผู้ใช้ที่มีบทบา msgid "now" msgstr "ตอนนี้" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "ตอนนี้" @@ -13090,7 +13094,7 @@ msgstr "เมื่อคลิก" msgid "on:" msgstr "เปิด:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "เมื่อถูกลบ แอปและข้อมูลประจำตัวจะถูกลบอย่างถาวร" @@ -13252,7 +13256,7 @@ msgstr "เปิดเฉพาะ DM" msgid "Open Fluxer" msgstr "เปิด Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "เปิดภาพแบบเต็มจอ" @@ -13368,7 +13372,7 @@ msgstr "เปิดชุมชน Visionary" msgid "Opening..." msgstr "กำลังเปิด..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "ผู้ปฏิบัติการ" @@ -13441,7 +13445,7 @@ msgstr "ข้อความต้นฉบับถูกลบ" msgid "Other" msgstr "อื่นๆ" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "อุปกรณ์อื่น" @@ -13501,7 +13505,7 @@ msgstr "แทนที่สถานะบัญชียังไม่รั msgid "Override unread gift inventory status" msgstr "แทนที่สถานะคลังของขวัญที่ยังไม่อ่าน" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "ภาพรวม" @@ -13695,7 +13699,7 @@ msgstr "สิทธิ์" msgid "Permissions granted" msgstr "อนุญาตสิทธิ์แล้ว" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "บันทึกส่วนตัว" @@ -13868,12 +13872,12 @@ msgstr "เล่น" msgid "Play animated emojis" msgstr "เล่นอิโมจิอนิเมชัน" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "เล่นเสียง" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "โปรดวางลิงก์ข้อความที่คุ msgid "Please provide an email address." msgstr "โปรดระบุที่อยู่อีเมล" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "โปรดลองอีกครั้งหรือกลับไปที่รายการแอปพลิเคชัน" @@ -13989,7 +13993,7 @@ msgstr "สิทธิประโยชน์ Plutonium" msgid "Plutonium Subscription" msgstr "การสมัครสมาชิก Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "แผงควบคุมความเป็นส่วนตัว msgid "Privacy Policy" msgstr "นโยบายความเป็นส่วนตัว" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "ลบสติกเกอร์นี้จากที่จัดเ msgid "Push Notification Inactive Timeout" msgstr "เวลาหมดเขตการแจ้งเตือนแบบพุชไม่ทำงาน" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "การแจ้งเตือนแบบพุช" @@ -14412,7 +14416,7 @@ msgstr "ปฏิสัมพันธ์ปฏิกิริยาถูกป #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "ปฏิกิริยา" @@ -14583,7 +14587,7 @@ msgstr "รีเฟรชการสมัครแจ้งเตือนแ #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "สร้างใหม่" @@ -14591,19 +14595,19 @@ msgstr "สร้างใหม่" msgid "Regenerate backup codes" msgstr "สร้างรหัสสำรองใหม่" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "ต้องการสร้างโทเค็นบอตใหม่?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "ต้องการสร้างความลับของไคลเอนต์ใหม่?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "การสร้างใหม่จะทำให้ความลับปัจจุบันใช้ไม่ได้ อัปเดตโค้ดที่ใช้ค่าเก่าด้วย" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "การสร้างใหม่จะทำให้โทเค็นปัจจุบันใช้ไม่ได้ อัปเดตโค้ดที่ใช้ค่าเก่าด้วย" @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "ลบตัวกรอง" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "ลบตัวกรอง" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "ส่งรายงานเรียบร้อย ทีมคว #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "รายงานผู้ใช้" @@ -15105,7 +15109,7 @@ msgstr "ขอบเขตที่ขอ" msgid "Require 2FA for moderation actions" msgstr "ต้องใช้ 2FA สำหรับการดำเนินการดูแล" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "ต้องดับเบิลคลิกเพื่อเข้าร่วมแชนแนลเสียง" @@ -15144,7 +15148,7 @@ msgstr "ต้องมีทุกอย่างในระดับกลา msgid "Requires Plutonium" msgstr "ต้องมี Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "เปลี่ยนเวลาข้อความ" @@ -15290,11 +15294,11 @@ msgstr "สมัครรับใหม่" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "ลองอีกครั้ง" @@ -15359,7 +15363,7 @@ msgstr "เพิกถอน" msgid "Revoke Ban" msgstr "ยกเลิกการแบน" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "เพิกถอนอุปกรณ์" @@ -15386,7 +15390,7 @@ msgstr "ย้อนไป {DEFAULT_SEEK_AMOUNT} วินาที" msgid "Right" msgstr "ขวา" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "จัดชิดขวา" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "ค้นหาสมาชิก..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "ค้นหาข้อความ" @@ -15834,13 +15838,13 @@ msgstr "ค้นหาบทบาทหรือสมาชิก..." msgid "Search saved media" msgstr "ค้นหาสื่อที่บันทึกไว้" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "ขอบเขตการค้นหา" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "ขอบเขตการค้นหา: {0}" @@ -15857,7 +15861,7 @@ msgstr "ค้นหาการตั้งค่า..." msgid "Search stickers..." msgstr "ค้นหาสติกเกอร์..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "คำแนะนำการค้นหา" @@ -15938,7 +15942,7 @@ msgstr "คีย์ความปลอดภัย / รหัสผ่าน msgid "Security key verification failed. Please try again." msgstr "การตรวจสอบคีย์ความปลอดภัยล้มเหลว โปรดลองอีกครั้ง" -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "ดูอุปกรณ์ทั้งหมดที่เข้าสู่ระบบบัญชีของคุณอยู่ในขณะนี้ ยกเลิกเซสชันที่คุณไม่รู้จัก" @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "เลือกบัญชี" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "เลือกทั้งหมด" @@ -16040,7 +16044,7 @@ msgstr "เลือกขนาดสื่อสำหรับเนื้อ msgid "Select media size for uploaded attachments" msgstr "เลือกขนาดสื่อสำหรับแนบที่อัปโหลด" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "เลือกมุมมองร่วม" @@ -16151,9 +16155,9 @@ msgstr "ส่งรหัส" msgid "Send Code" msgstr "ส่งรหัส" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "ส่งคำขอเป็นเพื่อน" @@ -16170,7 +16174,7 @@ msgstr "ส่งข้อความ · คลิกขวาเพื่อ msgid "Send Message Disabled" msgstr "ปิดการส่งข้อความ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "ส่งข้อความ" @@ -16624,7 +16628,7 @@ msgstr "แสดงปุ่มของขวัญ" msgid "Show inline images and videos" msgstr "แสดงรูปภาพและวิดีโอแบบอินไลน์" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "แสดงเฉพาะสัญญาณพิมพ์โดยไม่แสดงอวาตาร์" @@ -16788,11 +16792,11 @@ msgstr "แสดงของขวัญว่าแลกแล้ว" msgid "Show this role separately" msgstr "แสดงบทบาทนี้แยกต่างหาก" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "แสดงสัญญาณพิมพ์พร้อมรูปโปรไฟล์ผู้ใช้ในรายชื่อแชนแนล" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "แสดงการพิมพ์ในแชนแนลที่เลือก" @@ -17151,7 +17155,7 @@ msgstr "สเปน (สเปน)" msgid "Speak" msgstr "พูด" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "พูดข้อความ" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "เริ่มแชร์" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "เริ่มวิดีโอคอล" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "เริ่มโทรด้วยเสียง" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "ความหนาแน่นของสติกเกอร์" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "ชุดสติกเกอร์" @@ -17427,7 +17431,7 @@ msgstr "หยุดเสียงเรียก" msgid "Stop Sharing" msgstr "หยุดแชร์" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "หยุดพูด" @@ -17570,19 +17574,19 @@ msgstr "ปิดเสียงการกล่าวถึงทุกบท msgid "Suppress All Role @mentions" msgstr "ปิดเสียงการกล่าวถึงทุกบทบาท" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "ปิดการฝัง" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "ข้อความ" msgid "Text (NSFW)" msgstr "ข้อความ (ไม่เหมาะสม)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "ช่องข้อความ" @@ -18028,10 +18032,10 @@ msgstr "การกระทำนี้ต้องยืนยันตัว msgid "This application" msgstr "แอปพลิเคชันนี้" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "ไฟล์แนบนี้หมดอายุแล้ว" @@ -18039,7 +18043,7 @@ msgstr "ไฟล์แนบนี้หมดอายุแล้ว" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "บอทนี้ขอสิทธิ์ผู้ดูแลระบบ เราไม่แนะนำให้ยอมให้สิทธิ์นี้กับแอปที่ใช้งานจริงเว้นแต่คุณจะเชื่อใจผู้พัฒนาเต็มที่ ลองขอให้พวกเขาขอสิทธิ์ที่ลดลง หากไม่แน่ใจให้ปิดหน้านี้" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "ไม่สามารถย้อนกลับได้ การลบแอปจะลบบอทของมันด้วย" @@ -18101,7 +18105,7 @@ msgstr "ชุมชนนี้ถึงจำนวนสมาชิกสู msgid "This community has temporarily disabled invites." msgstr "ชุมชนนี้ได้ปิดการเชิญชั่วคราว" -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "ชุมชนนี้ได้ปิดการเชิญชั่วคราว คุณสามารถลองใหม่ในภายหลัง" @@ -18178,7 +18182,7 @@ msgstr "คำเชิญนี้ใช้ได้ไม่จำกัด" msgid "This invite link never expires." msgstr "ลิงก์เชิญนี้ไม่มีวันหมดอายุ" -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "นี่คือจุดเริ่มต้นของ <0>{displayName} เพิ่มเพื่อนเพื่อเริ่มการสนทนา!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "นี่คือจุดเริ่มต้นของประวัติข้อความส่วนตัวกับ <0>{0}" @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "ข้อความนี้เป็น @silent" #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "สิ่งนี้จะสร้างรอยแยกในมิติเวลาและไม่สามารถย้อนกลับได้" @@ -18351,7 +18355,7 @@ msgstr "สิ่งนี้จะสร้างรอยแยกในมิ msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "สิ่งนี้จะซ่อนองค์ประกอบ UI ที่เกี่ยวกับรายการโปรดทั้งหมดรวมถึงปุ่มและเมนู รายการโปรดของคุณจะถูกเก็บไว้และสามารถเปิดใช้งานใหม่ได้เสมอจาก <0>การตั้งค่าผู้ใช้ → ลักษณะและความรู้สึก → รายการโปรด" -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "สิ่งนี้จะปรับข้อความที่กำหนดเวลาปัจจุบันแทนที่จะส่งทันที" @@ -18387,8 +18391,8 @@ msgstr "สิ่งนี้จะลบเซสชันที่บันท msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "สิ่งนี้จะแทนที่ธีมกำหนดเองปัจจุบันของคุณ คุณสามารถแก้ไขได้ภายหลังในการตั้งค่าผู้ใช้" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "ภาพขนาดย่อสำหรับ {title}" @@ -18485,7 +18489,7 @@ msgstr "ข้อความแจ้งเตือนปรากฏที่ msgid "today" msgstr "วันนี้" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "วันนี้" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "ลองคำค้นหา/ตัวกรองอื่น" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "ลองอีกครั้ง" @@ -18737,7 +18741,7 @@ msgstr "ลองชื่ออื่นหรือตรวจคำสะก msgid "Try another search term" msgstr "ลองคำค้นหาอื่น" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "ลองขอคำเชิญใหม่" @@ -18864,7 +18868,7 @@ msgstr "ขนาดตัวอักษร" msgid "Type your message here..." msgstr "พิมพ์ข้อความของคุณที่นี่..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "เหตุการณ์การพิมพ์" @@ -18877,11 +18881,11 @@ msgstr "ตัวบ่งชี้การพิมพ์" msgid "Typing Indicator" msgstr "ตัวบ่งชี้การพิมพ์" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "ตัวบ่งชี้การพิมพ์ + รูปประจำตัว" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "แสดงเฉพาะตัวบ่งชี้การพิมพ์" @@ -18961,11 +18965,11 @@ msgstr "ไม่สามารถเริ่มสายได้" msgid "Unable to start email change" msgstr "ไม่สามารถเริ่มเปลี่ยนอีเมลได้" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "ไม่พร้อมใช้งานสำหรับทุกคน" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "ไม่พร้อมใช้งานสำหรับทุกคนยกเว้นเจ้าหน้าที่" @@ -18978,7 +18982,7 @@ msgstr "ไม่พร้อมใช้งานสำหรับทุกค #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "ปลดบล็อกผู้ใช้รายนี้ก่อน #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "ปลดบล็อกผู้ใช้" @@ -19165,7 +19169,7 @@ msgstr "ข้อผิดพลาดไม่ทราบสาเหตุ" msgid "Unknown Gift" msgstr "ของขวัญไม่รู้จัก" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "คำเชิญไม่รู้จัก" @@ -19205,11 +19209,11 @@ msgstr "บทบาท-ไม่รู้จัก" msgid "Unlimited" msgstr "ไม่จำกัด" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "อิโมจิไม่จำกัด" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "สติกเกอร์ไม่จำกัด" @@ -19254,7 +19258,7 @@ msgstr "ปลดล็อกสติกเกอร์ใน DM ด้วย P #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "เปิดเสียงหมวดหมู่" msgid "Unmute Channel" msgstr "เปิดเสียงแชนแนล" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "เปิดเสียงที่ชื่นชอบ" msgid "Unmute User" msgstr "เปิดเสียงผู้ใช้" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "ไม่มีชื่อ" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "จนกว่าฉันจะเปลี่ยน" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "อีเมลยังไม่ยืนยัน" msgid "Up to 4K/60fps" msgstr "สูงสุด 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "อัปเดต" @@ -19629,7 +19633,7 @@ msgstr "อัปโหลดเสียงตอนเข้าช่อง" msgid "Upload Failed" msgstr "อัปโหลดล้มเหลว" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "อัปโหลดไฟล์" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "ผู้ใช้ย้ายช่องแล้ว" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "โปรไฟล์ผู้ใช้" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "โปรไฟล์ผู้ใช้: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "ค่า" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL กำหนดเอง" @@ -20059,14 +20063,14 @@ msgstr "อาจต้องยืนยันก่อนดูรหัสส #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "คอมมูนิตี้ที่ได้รับการยืนยัน" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "กิลด์ที่ได้รับการยืนยัน" @@ -20167,8 +20171,8 @@ msgstr "คุณภาพวิดีโอ" msgid "Video Settings" msgstr "การตั้งค่าวิดีโอ" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "ภาพขนาดย่อวิดีโอ" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "ดูรหัส" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "ดูโปรไฟล์ชุมชน" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "ดูคลังของขวัญ" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "ดูโปรไฟล์ระดับโลก" @@ -20329,7 +20333,7 @@ msgstr "การเลือกหมวดหมู่การละเมิ msgid "Violent or Graphic Content" msgstr "เนื้อหาความรุนแรงหรือกราฟิก" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "เสียง VIP" @@ -20341,7 +20345,7 @@ msgstr "ปุ่มที่มองเห็นได้" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "การโทรเสียง" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "แชนแนลเสียง" @@ -20442,7 +20446,7 @@ msgstr "แชนแนลเสียง" msgid "Voice Channel Full" msgstr "แชนแนลเสียงเต็ม" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "พฤติกรรมการเข้าร่วมแชนแนลเสียง" @@ -20559,7 +20563,7 @@ msgstr "เราไม่สามารถเข้าร่วมชุมช msgid "We couldn't load the invites at this time." msgstr "เราไม่สามารถโหลดคำเชิญได้ในขณะนี้" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "เราไม่สามารถโหลดแอปพลิเคชันนี้ได้" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "เราพบปัญหาในการเชื่อมต่อกับเซิร์ฟเวอร์ของ Fluxer อาจเป็นปัญหาเครือข่ายชั่วคราวหรืองานบำรุงรักษาที่กำหนดไว้" #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "เราพบปัญหาในการเชื่อมต่อกับมิติกาลเวลา กรุณาตรวจสอบการเชื่อมต่อแล้วลองใหม่" @@ -20759,7 +20763,7 @@ msgstr "นักรบวันหยุดสุดสัปดาห์" msgid "Welcome and system messages will appear here." msgstr "ข้อความต้อนรับและข้อความระบบจะปรากฏที่นี่" -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "ยินดีต้อนรับกลับ" @@ -20820,7 +20824,7 @@ msgstr "เกิดอะไรขึ้น?" msgid "What's included in your export:" msgstr "สิ่งที่รวมอยู่ในการส่งออกของคุณ:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "เมื่อปิดใช้งาน (ค่าเริ่มต้น) ตัวบ่งชี้การพิมพ์จะไม่ปรากฏในแชนแนลที่คุณกำลังดูอยู่" @@ -20836,7 +20840,7 @@ msgstr "เมื่อเปิดใช้งาน แตะทางลั msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "เมื่อเปิดใช้งาน จะเผยเมนูดีบักทั่วแอปเพื่อดูและคัดลอกวัตถุ JSON ดิบของโครงสร้างข้อมูลภายใน เช่น ข้อความ แชนแนล ผู้ใช้ และชุมชน รวมถึงเครื่องมือดีบักประสิทธิภาพและ AST ของ Fluxer Markdown สำหรับข้อความใดก็ได้" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "เมื่อเปิดใช้งาน ป้ายทางลัดจะถูกซ่อนไว้ในป็อปอัปคำอธิบายเครื่องมือ" @@ -20868,7 +20872,7 @@ msgstr "เมื่อเปิดใช้งาน จะใช้ภาษ msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "เมื่อเปิดใช้งาน คุณสามารถกำหนดให้แชนแนลเป็นรายการโปรดและจะปรากฏในส่วนรายการโปรด เมื่อปิดใช้งาน องค์ประกอบ UI ที่เกี่ยวกับรายการโปรดทั้งหมด (ปุ่ม รายการเมนู) จะถูกซ่อนไว้ รายการโปรดที่มีอยู่จะยังคงอยู่" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "เมื่อเปิดใช้งาน คุณต้องดับเบิลคลิกแชนแนลเสียงเพื่อเข้าร่วม เมื่อปิดใช้งาน (ค่าเริ่มต้น) การคลิกครั้งเดียวจะเข้าร่วมทันที" @@ -20970,7 +20974,7 @@ msgstr "รายปี {yearlyPrice}" msgid "yesterday" msgstr "เมื่อวาน" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "เมื่อวานนี้" @@ -21013,7 +21017,7 @@ msgstr "คุณกำลังแก้ไขโปรไฟล์เฉพา msgid "You are in slowmode. Please wait before sending another message." msgstr "คุณอยู่ในโหมดช้า กรุณารอก่อนส่งข้อความใหม่" -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "คุณกลายเป็นนักพัฒนาแล้ว!" @@ -21113,7 +21117,7 @@ msgstr "คุณสามารถใช้ลิงก์และ Markdown msgid "You can't add new reactions while you're on timeout." msgstr "คุณไม่สามารถเพิ่มรีแอคชันใหม่ขณะที่อยู่ในช่วงพักเวลา" -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "คุณไม่สามารถเพิ่มตัวเองเป็นเพื่อนได้" @@ -21128,7 +21132,7 @@ msgstr "คุณไม่สามารถโต้ตอบกับรีแ msgid "You can't join while you're on timeout." msgstr "คุณไม่สามารถเข้าร่วมขณะที่อยู่ในช่วงพักเวลา" -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "คุณไม่สามารถเปิดเสียงไมโ msgid "You do not have access to the channel where this message was sent." msgstr "คุณไม่มีสิทธิ์เข้าถึงแชนแนลที่ส่งข้อความนี้" -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "คุณไม่มีสิทธิ์ส่งข้อความในแชนแนลนี้" @@ -21439,7 +21443,7 @@ msgstr "คุณจะปรากฏว่าออฟไลน์" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "คุณจะตั้งค่าสิทธิ์ที่บอทจะได้รับในหน้าต่อไป" -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "คุณจะต้องลงชื่อเข้าใช้ใหม่บนอุปกรณ์ทั้งหมดที่ถูกออกจากระบบ" @@ -21508,7 +21512,7 @@ msgstr "คุณอยู่ในแชนแนลเสียง" msgid "You're sending messages too quickly" msgstr "คุณส่งข้อความเร็วเกินไป" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 6c167c69..3bba5944 100644 --- a/fluxer_app/src/locales/tr/messages.po +++ b/fluxer_app/src/locales/tr/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# öğe} other {# öğe}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Üye} other {# Üye}}" @@ -566,18 +566,18 @@ msgstr "{label} görüntüleri animasyonlu olamaz. Lütfen JPEG, PNG veya WebP k #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Üye" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Üyeler" @@ -612,11 +612,11 @@ msgstr "{minutes} dakika ve {seconds} saniye" msgid "{minutes} minutes and 1 second" msgstr "{minutes} dakika ve 1 saniye" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} karşılıklı topluluk" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} karşılıklı topluluklar" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} katılımcı çağrıda" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} Çevrimiçi" @@ -650,15 +650,15 @@ msgstr "{remaining} karakter kaldı" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "{remaining} karakter kaldı. Plutonium ile {premiumMaxLength} karaktere kadar yazabilirsiniz." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Üye" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Üyeler" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} Çevrimiçi" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone etiketleri" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Vurgu Rengi" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Kabul Et" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Arkadaşlık İsteğini Kabul Et" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Daveti kabul et" @@ -1364,8 +1364,8 @@ msgstr "Daveti Kabul Et" msgid "Accept the incoming call" msgstr "Gelen aramayı kabul et" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Bu daveti kabul etmek paketi otomatik olarak yükler." @@ -1594,7 +1594,7 @@ msgstr "Favori Kanallar Ekle" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "{0} izin verildi." msgid "Already have an account?" msgstr "Zaten bir hesabın var mı?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Zaten katıldın" @@ -2191,7 +2191,7 @@ msgstr "Hareketli avatarlar & afişler" msgid "Animated Avatars Require Plutonium" msgstr "Hareketli Avatarlar Plutonium Gerektirir" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Hareketli afiş" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Hareketli Emoji ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Hareketli GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Hareketli GIF videosu" @@ -2219,7 +2219,7 @@ msgstr "Hareketli GIF videosu" msgid "Animated GIF Video" msgstr "Hareketli GIF Videosu" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Hareketli ikon" @@ -2277,7 +2277,7 @@ msgstr "Bu rolü herkes @olarak anabilir. \"@everyone/@here ve @rollerini kullan msgid "API Endpoint" msgstr "API Uç Noktası" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Uygulama bilgileri" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Uygulama Adı" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Uygulama adı gerekli" @@ -2554,7 +2553,7 @@ msgstr "<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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Ek {0}" msgid "Attachment Actions" msgstr "Ek İşlemleri" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Ek süresi doldu" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Otomatik Tamamlama" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Otomatik" @@ -2859,7 +2858,7 @@ msgstr "Geri" msgid "Back to Applications" msgstr "Uygulamalara Geri Dön" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Listeye Geri Dön" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Girişe Geri Dön" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Geçersiz Kılmalara Geri Dön" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Rollere Geri Dön" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Ayarlara Geri Dön" @@ -3003,7 +3002,7 @@ msgstr "Yasaklı Kullanıcılar" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Afiş" @@ -3096,7 +3095,7 @@ msgstr "Biyografi karakter sınırı" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Bot kapsamı istendi" msgid "Bot token" msgstr "Bot token'ı" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Bot token'ı yenilendi. Eski token'ı kullanan tüm kodları güncelleyin." @@ -3435,7 +3434,7 @@ msgstr "Kamera Ayarları" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Kamera Ayarları" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Kamera Ayarları" msgid "Cancel" msgstr "İptal" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Arkadaşlık İsteğini İptal Et" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Dikkat! Kaydedilmemiş değişiklikleriniz var." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Kategori" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Kategori Adı" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Kategori Ayarları" @@ -3617,7 +3616,7 @@ msgstr "Dikkat" msgid "Center" msgstr "Merkez" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Ortalanmış" @@ -3765,7 +3764,7 @@ msgstr "Bit hızı {0} olarak değiştirildi." msgid "Changed the voice region to {0}." msgstr "Ses bölgesi {0} olarak değiştirildi." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kanal" @@ -3828,11 +3827,11 @@ msgstr "Kanal kimliği panoya kopyalandı" msgid "Channel link copied" msgstr "Kanal bağlantısı kopyalandı" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Kanal listesi yazma göstergesi modu" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Kanal Listesi Yazma Göstergeleri" @@ -3891,7 +3890,7 @@ msgstr "Kanal favorilerden kaldırıldı" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Kanal Ayarları" @@ -4052,7 +4051,7 @@ msgstr "Uygulama genelinde saatlerin nasıl görüntüleneceğini seç." msgid "Choose how typing indicators appear in the channel list" msgstr "Kanal listesinde yazma göstergelerinin nasıl görüneceğini seç" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Birisi bir kanalda yazı yazarken, yazma göstergelerinin kanal listesinde nasıl görüneceğini seç." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Bu hediyeyi iade etmek için hesabını talep et." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Arkadaşlık istekleri göndermek için hesabını talep et." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "İzinleri Temizle" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Aramayı temizle" msgid "Clear search input" msgstr "Arama girişini temizle" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Seçimi Temizle" @@ -4314,7 +4313,7 @@ msgstr "Herhangi bir sesin yanındaki yükleme simgesine tıklayarak kendi ses d msgid "Click the verification link in the email." msgstr "E-postadaki doğrulama bağlantısına tıkla." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Not eklemek için tıkla" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Hediyeni almak için tıkla!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Kopyalamak için tıkla" @@ -4388,7 +4387,7 @@ msgstr "Tüm tepkileri görüntülemek için tıkla" msgid "Client secret" msgstr "İstemci sırrı" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "İstemci sırrı yeniden oluşturuldu. Eski sırrı kullanan tüm kodları güncelle." @@ -4649,8 +4648,8 @@ msgstr "Topluluk korunan özelliklere dayalı nefreti destekliyor" msgid "Community promotes or facilitates illegal activities" msgstr "Topluluk yasadışı faaliyetleri destekliyor veya kolaylaştırıyor" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Bağlam Menüleri" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Bağlam menüleri sol tıkla (düğmelerde) veya sağ tıkla (diğer öğelerde) açılabilir. Bu, onay kutuları, radyo düğmeleri, kaydırıcılar ve alt menüler dahil çeşitli menü öğelerini gösterir." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Web sitesi bağlantılarının sohbette nasıl önizleneceğini kontrol msgid "Control how you join voice channels" msgstr "Ses kanallarına katılma şeklini kontrol et" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Topluluklardaki ses kanallarına nasıl katılacağınızı kontrol edin." @@ -5012,7 +5011,7 @@ msgstr "Çıkartma animasyonlarını kontrol et" msgid "Control the visibility of favorites throughout the app." msgstr "Uygulama genelinde favorilerin görünürlüğünü kontrol edin." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Klavye kısayolu ipuçlarının araç ipuçları içinde görünüp görünmeyeceğini kontrol edin." @@ -5071,7 +5070,7 @@ msgstr "Kopyalandı" msgid "Copied to clipboard" msgstr "Panoya kopyalandı" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL panoya kopyalandı" @@ -5149,7 +5148,7 @@ msgstr "Dosya Bağlantısını Kopyala" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "FluxerTag'ı Kopyala" @@ -5157,7 +5156,7 @@ msgstr "FluxerTag'ı Kopyala" msgid "Copy GIF" msgstr "GIF'i Kopyala" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Sunucu Kimliğini Kopyala" @@ -5222,7 +5221,7 @@ msgstr "Metni Kopyala" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Rahat" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Oluştur" @@ -5331,14 +5330,14 @@ msgstr "Hesabın için uygulamalar ve botlar oluştur ve yönet." msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Fluxer Plutonium ile özel emoji ve sticker paketleri oluştur ve paylaş." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Uygulama Oluştur" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Uygulama Oluştur" msgid "Create Category" msgstr "Kategori Oluştur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Oluşturuldu {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "{0} tarafından oluşturuldu" @@ -5569,7 +5568,7 @@ msgstr "Kırpılan görüntü çok büyük. Lütfen daha küçük bir alan veya msgid "Current Community" msgstr "Mevcut Topluluk" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Mevcut Cihaz" @@ -5606,7 +5605,7 @@ msgstr "Şu anda 1885'te sıkışmış, çevrimdışı görünüyor" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Şu anda: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Tehlike İkincil" msgid "Danger secondary clicked!" msgstr "Tehlike ikincil tıklandı!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Tehlike bölgesi" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Tüm mesajlarımı sil" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Uygulamayı Sil" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Ek dosyayı sil" @@ -6063,7 +6062,7 @@ msgstr "Ek dosyayı sil" msgid "Delete Attachment" msgstr "Ek Dosyayı Sil" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Kategoriyi Sil" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Kanalı Sil" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Medyayı sil" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Mesajı Sil" @@ -6215,7 +6214,7 @@ msgstr "Yoğun" msgid "Dense layout" msgstr "Yoğun düzen" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Dağıtıldı" @@ -6281,7 +6280,7 @@ msgstr "Hedef Kanal" msgid "Destination URL:" msgstr "Hedef URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Ayrılmış banner" @@ -6362,7 +6361,7 @@ msgstr "Farklı Boyutlar (Durum Destekli)" msgid "Different Sizes & Member Counts" msgstr "Farklı Boyutlar & Üye Sayıları" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Doğrudan mesaj" @@ -6541,7 +6540,7 @@ msgstr "Hesabınızı devre dışı bırakmak, tüm oturumlardan çıkış yapma msgid "Disallow @mention." msgstr "@bahsetmeye izin verme." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Sahiplenilmemiş hesaplara izin verme" @@ -6747,7 +6746,7 @@ msgstr "DM listesinde mesaj önizlemelerini gösterme" msgid "Don't show this again" msgstr "Bunu bir daha gösterme" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Kanal listesinde yazma göstergelerini gösterme" @@ -6760,7 +6759,7 @@ msgstr "Kanal listesinde yazma göstergelerini gösterme" msgid "Done" msgstr "Tamam" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Kategoriyi Düzenle" msgid "Edit Channel" msgstr "Kanalı Düzenle" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Bu kanaldaki roller ve üyeler için geçersiz kılmaları düzenle." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Splash göm" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Gömülü splash görselleri animasyonlu olamaz. Lütfen JPEG, PNG veya WebP kullanın." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Gömülü ses" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Emoji adları en az 2 karakter uzunluğunda olmalı ve yalnızca alfasayısal karakterler ve alt çizgi içerebilir. İzin verilen dosya türleri: JPEG, PNG, WebP, GIF. Görselleri 128x128 piksel olarak sıkıştırıyoruz. Maksimum boyut: emoji başına {0} KB." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Emoji paketi" @@ -7473,7 +7472,7 @@ msgstr "Telefonu Gir" msgid "Enter picture-in-picture" msgstr "Resim içinde resim moduna geç" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Seçim Moduna Gir" @@ -7536,7 +7535,7 @@ msgstr "Kullanmak istediğiniz yeni e-posta adresini girin. Ardından oraya bir msgid "Enter the SMS code you received." msgstr "Aldığınız SMS kodunu girin." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "kaydetmek için Enter tuşuna bas" @@ -7604,7 +7603,7 @@ msgstr "LaTeX oluşturulurken hata: {0}" msgid "Escape key exits keyboard mode" msgstr "Esc tuşu klavye modundan çıkar" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "iptal etmek için Esc tuşuna bas" @@ -7667,7 +7666,7 @@ msgstr "Resim içinde resimden çık" msgid "Exit Preview" msgstr "Önizlemeden Çık" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Seçim Modundan Çık" @@ -7701,7 +7700,7 @@ msgstr "Süresi Doldu (30 Gün İçinde)" msgid "Expired {absolute}" msgstr "{absolute} süresi doldu" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "{earliest} ile {latest} arasında süresi doldu" @@ -7709,7 +7708,7 @@ msgstr "{earliest} ile {latest} arasında süresi doldu" msgid "Expired on {date}" msgstr "{date} tarihinde süresi doldu" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "{earliest} tarihinde süresi doldu" @@ -7722,7 +7721,7 @@ msgstr "Süresi Doluyor" msgid "Expires {absolute} ({relativeText})" msgstr "{absolute} süresi doluyor ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "{earliest} ile {latest} arasında süresi doluyor" @@ -7730,7 +7729,7 @@ msgstr "{earliest} ile {latest} arasında süresi doluyor" msgid "Expires on {date}" msgstr "{date} tarihinde süresi doluyor" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "{earliest} tarihinde süresi doluyor" @@ -7766,7 +7765,7 @@ msgstr "İfade Paketleri bir Plutonium özelliğidir" msgid "Expression picker categories" msgstr "İfade seçici kategorileri" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "İfade temizleme" @@ -7839,10 +7838,6 @@ msgstr "Panoya kopyalanamadı" msgid "Failed to copy URL" msgstr "URL kopyalanamadı" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Uygulama oluşturulamadı. Lütfen girdilerinizi kontrol edip tekrar deneyin." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Rol oluşturulamadı" @@ -8100,7 +8095,7 @@ msgstr "Yasak kaldırılamadı. Lütfen tekrar deneyin." msgid "Failed to revoke invite" msgstr "Davet iptal edilemedi" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Döndürülemedi. Lütfen tekrar deneyin." @@ -8413,7 +8408,7 @@ msgstr "Spor Arkadaşları" msgid "Flags" msgstr "Bayraklar" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Esnek metin kanalı adları" @@ -8577,7 +8572,7 @@ msgstr "Yemek Sever Arkadaşlar" msgid "For 1 hour" msgstr "1 saat için" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 Saat İçin" msgid "For 15 minutes" msgstr "15 dakika için" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 Dakika İçin" msgid "For 24 hours" msgstr "24 saat için" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 gün için" msgid "For 3 hours" msgstr "3 saat için" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 Saat İçin" msgid "For 8 hours" msgstr "8 saat için" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Abonelikleri unut" msgid "Forgot Password" msgstr "Şifremi Unuttum" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Şifrenizi mi unuttunuz?" @@ -8795,7 +8790,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} saniye ileri sar" msgid "Forward Message" msgstr "Mesajı İlet" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "İletildi" @@ -9065,7 +9060,7 @@ msgstr "Sistem genelinde push-to-talk ve birkaç başka güzellik için Fluxer m #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Önceki odaklanılan metin kanalına geri dön" msgid "Go forward in navigation history" msgstr "Gezinme geçmişinde ileri git" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Topluluğa git" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Grup Davetleri" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Grup mesajı" @@ -9548,7 +9543,7 @@ msgstr "Hey, {username}, hoş geldin! Her şeyi başarabilirsin." msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Hey, {username}! 88mph'a ulaştığında, ciddi şeyler göreceksin!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Gizli" @@ -9569,7 +9564,7 @@ msgstr "Favorileri Gizle" msgid "Hide Join Messages" msgstr "Katılma Mesajlarını Gizle" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Araç ipuçlarında klavye ipuçlarını gizle" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Sessize alınan kanalları gizle" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Verilerinizi dışa aktarmak veya önce mesajlarınızı silmek istiyorsanız, lütfen devam etmeden önce Kullanıcı Ayarları'ndaki Gizlilik Panosu bölümünü ziyaret edin." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "görsel" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Simge İçeren Girişler" msgid "Insert emoji" msgstr "Emoji ekle" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Emoji Paketi Yükle" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Sticker Paketi Yükle" @@ -10153,7 +10148,7 @@ msgstr "{installedAt} tarihinde yüklendi" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Emoji ve sticker paketlerini yüklemek için premium abonelik gereklidir." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Anında davetler" @@ -10286,7 +10281,7 @@ msgstr "Davet bağlantısı ayarları" msgid "Invite Links" msgstr "Davet Bağlantıları" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Davet Modali" msgid "Invite modal preview" msgstr "Davet modali önizlemesi" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "{0} için davet gönderildi" msgid "Invite sent to {guildName}" msgstr "Davet {guildName} gönderildi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Davet sıçraması" @@ -10354,7 +10349,7 @@ msgstr "{0} sunucusuna davet" msgid "Invite to Community" msgstr "Topluluğa Davet" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Davet Kullanılamıyor" @@ -10369,12 +10364,12 @@ msgstr "{0} tarafından davet edildi." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "{0}#{1} tarafından davet edildi" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "{inviterTag} tarafından davet edildi" @@ -10410,12 +10405,12 @@ msgstr "Bu toplulukta davetler şu anda duraklatıldı" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Önizleme topluluklarında davetler kilitlidir. Davetleri etkinleştirmek için bir e-posta ve şifre belirleyerek hesabınızı talep edin." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Davetler devre dışı" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Davetler Devre Dışı" @@ -10482,13 +10477,13 @@ msgstr "Başlamak için çıkartmaları olan bir topluluğa katılın!" msgid "Join call" msgstr "Aramaya katıl" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Topluluğa Katıl" @@ -10497,15 +10492,23 @@ msgstr "Topluluğa Katıl" msgid "Join community form" msgstr "Topluluğa katılma formu" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Fluxer HQ'ya katıl" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Ekiple sohbet etmek ve en son gelişmelerden haberdar olmak için Fluxer HQ'ya katıl!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Gruba Katıl" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Grup DM'sine Katıl" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Katılma bildirimleri" @@ -10620,7 +10623,7 @@ msgstr "En Eski Okunmamış Mesaja Atla" msgid "Jump to page" msgstr "Sayfaya atla" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Şimdiki Zamana Atla" @@ -10690,7 +10693,7 @@ msgstr "Tuş Bağlamaları" msgid "Keyboard" msgstr "Klavye" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Klavye İpuçları" @@ -10815,7 +10818,7 @@ msgstr "Plutonium hakkında bilgi edin" msgid "Leave blank for a random username" msgstr "Rastgele bir kullanıcı adı için boş bırak" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Bu kadar erken mi ayrılıyorsun?" msgid "Left" msgstr "Ayrıldı" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Sola hizalı" @@ -10945,7 +10948,7 @@ msgstr "bağlantı" msgid "Link" msgstr "Bağlantı" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Kanalı bağla" @@ -11027,7 +11030,7 @@ msgstr "Yasaklar yükleniyor..." msgid "Loading communities..." msgstr "Topluluklar yükleniyor..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Resim yükleniyor" @@ -11039,8 +11042,8 @@ msgstr "Davetler yükleniyor..." msgid "Loading more..." msgstr "Daha fazlası yükleniyor..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Yer tutucu yükleniyor" @@ -11064,7 +11067,7 @@ msgstr "Tema yükleniyor..." msgid "Loading verification methods..." msgstr "Doğrulama yöntemleri yükleniyor..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Yükleniyor: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Yerel Sessize Alma" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Tarayıcını kullanarak giriş yap, ardından hesabı eklemek için gö msgid "Log in via browser" msgstr "Tarayıcı üzerinden giriş yap" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Tarayıcı veya özel örnek üzerinden giriş yap" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Çıkış Yap" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "{0} cihazdan çıkış yap" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "{sessionCount} cihazdan çıkış yap" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "1 cihazdan çıkış yap" @@ -11141,7 +11144,7 @@ msgstr "Tüm Cihazlardan Çıkış Yap" msgid "Log out all other devices" msgstr "Diğer tüm cihazlardan çıkış yap" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Diğer Tüm Cihazlardan Çıkış Yap" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "18+ olarak işaretle (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "anmalar:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "anmalar:" msgid "Message" msgstr "Mesaj" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Mesaj " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Mesaj @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Mesaj #" @@ -11838,7 +11842,7 @@ msgstr "Mesajlar ve Medya" msgid "Messages Deleted" msgstr "Mesajlar Silindi" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Mesajlar yüklenemedi" @@ -12016,7 +12020,7 @@ msgstr "Daha Fazla" msgid "More Actions" msgstr "Daha Fazla Eylem" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Daha fazla emoji yuvası" @@ -12028,7 +12032,7 @@ msgstr "Daha fazla seçenek" msgid "More Options" msgstr "Daha Fazla Seçenek" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Daha fazla çıkartma yuvası" @@ -12162,8 +12166,8 @@ msgstr "Kanalı sustur" msgid "Mute Channel" msgstr "Kanalı Sustur" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "{0} tarihine kadar susturuldu" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Bir topluluğu susturmak, bahsedilmediğiniz sürece okunmamış göstergelerin ve bildirimlerin görünmesini engeller" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Karşılıklı Topluluklar ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Karşılıklı Arkadaşlar ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Karşılıklı Gruplar ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Uygulamam" @@ -12247,7 +12251,7 @@ msgstr "Harika çıkartmam" msgid "My Category" msgstr "Kategorim" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Cihazlarım" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Gezinme" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Hesaba mı ihtiyacınız var?" @@ -12364,7 +12368,7 @@ msgstr "Ağ" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Ağ hatası" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Topluluk afişi yok" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Açıklama sağlanmadı." @@ -12684,15 +12688,15 @@ msgstr "Mikrofon algılanmadı" msgid "No more scheduled messages." msgstr "Planlanmış mesaj kalmadı." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Ortak topluluk bulunamadı." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Ortak arkadaş bulunamadı." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Ortak grup bulunamadı." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Senin tarzın değil mi? Bu özelliği istediğin zaman devre dışı bırakabilirsin." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Bildirim Geçersiz Kılmaları" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Bu kanalı görme izni olan bu role sahip kullanıcıları bilgilendir." msgid "now" msgstr "şimdi" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Şimdi" @@ -13090,7 +13094,7 @@ msgstr "Tıklandığında" msgid "on:" msgstr "açık:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Silindikten sonra, uygulama ve kimlik bilgileri kalıcı olarak kaldırılır." @@ -13252,7 +13256,7 @@ msgstr "Sadece DM'leri Aç" msgid "Open Fluxer" msgstr "Fluxer'ı Aç" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Resmi tam görünümde aç" @@ -13368,7 +13372,7 @@ msgstr "Vizyoner Topluluğunu Aç" msgid "Opening..." msgstr "Açılıyor..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Operatör" @@ -13441,7 +13445,7 @@ msgstr "Orijinal mesaj silindi" msgid "Other" msgstr "Diğer" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Diğer Cihazlar" @@ -13501,7 +13505,7 @@ msgstr "Talep edilmemiş hesap durumunu geçersiz kıl" msgid "Override unread gift inventory status" msgstr "Okunmamış hediye envanteri durumunu geçersiz kıl" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Genel Bakış" @@ -13695,7 +13699,7 @@ msgstr "İzinler" msgid "Permissions granted" msgstr "İzinler verildi" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Kişisel notlar" @@ -13868,12 +13872,12 @@ msgstr "Oynat" msgid "Play animated emojis" msgstr "Hareketli emojileri oynat" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Sesi oynat" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Lütfen bildirdiğiniz mesajın bağlantısını yapıştırın." msgid "Please provide an email address." msgstr "Lütfen bir e-posta adresi belirtin." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Lütfen yeniden deneyin veya uygulamalar listesine dönün." @@ -13989,7 +13993,7 @@ msgstr "Plutonium avantajları" msgid "Plutonium Subscription" msgstr "Plutonium Aboneliği" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Gizlilik Panosu" msgid "Privacy Policy" msgstr "Gizlilik Politikası" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Bu çıkartmayı depolama ve CDN'den temizle" msgid "Push Notification Inactive Timeout" msgstr "Anlık Bildirim Etkin Olmama Zaman Aşımı" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Anlık bildirimler" @@ -14412,7 +14416,7 @@ msgstr "Tepki Etkileşimi Devre Dışı" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Tepkiler" @@ -14583,7 +14587,7 @@ msgstr "Push aboneliğini yenile" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Yeniden oluştur" @@ -14591,19 +14595,19 @@ msgstr "Yeniden oluştur" msgid "Regenerate backup codes" msgstr "Yedek kodları yeniden oluştur" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Bot token'ı yeniden oluşturulsun mu?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "İstemci sırrı yeniden oluşturulsun mu?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Yeniden oluşturma mevcut sırrı geçersiz kılacaktır. Eski değeri kullanan tüm kodları güncelleyin." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Yeniden oluşturma mevcut token'ı geçersiz kılacaktır. Eski değeri kullanan tüm kodları güncelleyin." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Filtreyi kaldır" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Filtreyi kaldır" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Bildirim başarıyla gönderildi. Güvenlik Ekibimiz kısa süre içinde #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Kullanıcıyı Bildir" @@ -15105,7 +15109,7 @@ msgstr "Talep edilen kapsamlar" msgid "Require 2FA for moderation actions" msgstr "Moderasyon işlemleri için 2FA gerektir" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Ses kanallarına katılmak için çift tıklama gerektir" @@ -15144,7 +15148,7 @@ msgstr "Orta'daki her şeyi ve sunucu üyesi olarak en az 10 dakika geçirmiş o msgid "Requires Plutonium" msgstr "Plutonium gerektirir" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Mesajı Yeniden Planla" @@ -15290,11 +15294,11 @@ msgstr "Yeniden Abone Ol" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Yeniden Dene" @@ -15359,7 +15363,7 @@ msgstr "İptal Et" msgid "Revoke Ban" msgstr "Yasağı Kaldır" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Cihazı iptal et" @@ -15386,7 +15390,7 @@ msgstr "{DEFAULT_SEEK_AMOUNT} saniye geri sar" msgid "Right" msgstr "Sağ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Sağa hizalı" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Üyeleri ara..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Mesajları ara" @@ -15834,13 +15838,13 @@ msgstr "Rolleri veya üyeleri ara..." msgid "Search saved media" msgstr "Kayıtlı medyayı ara" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Arama kapsamı" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Arama kapsamı: {0}" @@ -15857,7 +15861,7 @@ msgstr "Ayarları ara..." msgid "Search stickers..." msgstr "Çıkartmaları ara..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Arama önerileri" @@ -15938,7 +15942,7 @@ msgstr "Güvenlik Anahtarı / Geçiş Anahtarı" msgid "Security key verification failed. Please try again." msgstr "Güvenlik anahtarı doğrulaması başarısız oldu. Lütfen tekrar deneyin." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Hesabınıza şu anda giriş yapmış tüm cihazları görün. Tanımadığınız oturumları iptal edin." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Hesap seç" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Tümünü Seç" @@ -16040,7 +16044,7 @@ msgstr "Bağlantılardan gömülü içerik için medya boyutunu seç" msgid "Select media size for uploaded attachments" msgstr "Yüklenen ekler için medya boyutunu seç" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Karşılıklı görünümü seç" @@ -16151,9 +16155,9 @@ msgstr "Kodu gönder" msgid "Send Code" msgstr "Kodu Gönder" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Arkadaşlık İsteği Gönder" @@ -16170,7 +16174,7 @@ msgstr "Mesaj Gönder · Planlamak için sağ tıkla" msgid "Send Message Disabled" msgstr "Mesaj Gönderme Devre Dışı" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Mesaj gönder" @@ -16624,7 +16628,7 @@ msgstr "Hediye Düğmesini Göster" msgid "Show inline images and videos" msgstr "Satır içi resim ve videoları göster" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Sadece yazma göstergesini, avatar olmadan göster" @@ -16788,11 +16792,11 @@ msgstr "Hediyeyi zaten kullanılmış olarak göster" msgid "Show this role separately" msgstr "Bu rolü ayrı göster" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Kanal listesinde kullanıcı avatarıyla yazma göstergesini göster" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Seçili kanalda yazmayı göster" @@ -17151,7 +17155,7 @@ msgstr "İspanyolca (İspanya)" msgid "Speak" msgstr "Konuş" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Mesajı Seslendir" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Paylaşmaya Başla" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Görüntülü Aramayı Başlat" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Sesli Aramayı Başlat" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Çıkartma yoğunluğu" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Çıkartma paketi" @@ -17427,7 +17431,7 @@ msgstr "Çalmayı Durdur" msgid "Stop Sharing" msgstr "Paylaşmayı Durdur" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Konuşmayı Durdur" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Gömülüleri bastır" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Metin" msgid "Text (NSFW)" msgstr "Metin (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Metin kanalı" @@ -18028,10 +18032,10 @@ msgstr "Bu işlemin devam etmesi için doğrulama gerekiyor." msgid "This application" msgstr "Bu uygulama" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Bu ek süresi doldu" @@ -18039,7 +18043,7 @@ msgstr "Bu ek süresi doldu" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Bu bot, Yönetici izni talep ediyor. Geliştiriciye tamamen güvenmedikçe, bunu üretim uygulamalarına vermenizi önermiyoruz. Onlardan daha az izin seti talep etmelerini isteyin. Emin değilseniz bu sayfayı kapatın." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Bu geri alınamaz. Uygulamayı kaldırmak, botunu da siler." @@ -18101,7 +18105,7 @@ msgstr "Bu topluluk maksimum üye sınırına ulaştı ve şu anda yeni üye kab msgid "This community has temporarily disabled invites." msgstr "Bu topluluk geçici olarak davetleri devre dışı bıraktı." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Bu topluluk geçici olarak davetleri devre dışı bıraktı. Daha sonra tekrar deneyebilirsiniz." @@ -18178,7 +18182,7 @@ msgstr "Bu davetin sınırsız kullanımı var." msgid "This invite link never expires." msgstr "Bu davet bağlantısı asla sona ermez." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Bu, <0>{displayName}'ın başlangıcı. Bir konuşma başlatmak için arkadaş ekleyin!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Bu, <0>{0} ile olan doğrudan mesaj geçmişinizin başlangıcı." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Bu bir @sessiz mesajdı." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Bu, uzay-zaman sürekliliğinde bir yarık oluşturacak ve geri alınama msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Bu, düğmeler ve menü öğeleri dahil tüm favorilerle ilgili kullanıcı arayüzü öğelerini gizleyecek. Mevcut favorileriniz korunacak ve istediğiniz zaman <0>Kullanıcı Ayarları → Görünüm ve Hissiyat → Favoriler bölümünden yeniden etkinleştirilebilir." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Bu, hemen göndermek yerine mevcut zamanlanmış mesajı değiştirecek." @@ -18387,8 +18391,8 @@ msgstr "Bu, bu hesabın kaydedilmiş oturumunu kaldıracak." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Bu, mevcut özel temanızın yerini alacak. Daha sonra Kullanıcı Ayarları'ndan düzenleyebilirsiniz." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title} için küçük resim" @@ -18485,7 +18489,7 @@ msgstr "Toasts ekranın üst-orta kısmında görünür." msgid "today" msgstr "bugün" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Bugün" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Tekrar dene" @@ -18737,7 +18741,7 @@ msgstr "Başka bir isim deneyin veya yazımınızı kontrol edin." msgid "Try another search term" msgstr "Başka bir arama terimi deneyin" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Yeni bir davetiye istemeyi deneyin." @@ -18864,7 +18868,7 @@ msgstr "Yazı Tipi Ölçeği" msgid "Type your message here..." msgstr "Mesajınızı buraya yazın..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Yazma etkinlikleri" @@ -18877,11 +18881,11 @@ msgstr "Yazma göstergesi" msgid "Typing Indicator" msgstr "Yazma Göstergesi" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Yazma göstergesi + avatarlar" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Yalnızca yazma göstergesi" @@ -18961,11 +18965,11 @@ msgstr "Arama Başlatılamıyor" msgid "Unable to start email change" msgstr "E-posta değişikliği başlatılamıyor" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Herkes için kullanılamıyor" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Personel dışındaki herkes için kullanılamıyor" @@ -18978,7 +18982,7 @@ msgstr "Personel dışındaki herkes için kullanılamıyor" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Arkadaşlık isteği göndermeden önce bu kullanıcının engelini kald #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Kullanıcı Engellemesini Kaldır" @@ -19165,7 +19169,7 @@ msgstr "Bilinmeyen hata" msgid "Unknown Gift" msgstr "Bilinmeyen Hediye" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Bilinmeyen Davetiye" @@ -19205,11 +19209,11 @@ msgstr "bilinmeyen-rol" msgid "Unlimited" msgstr "Sınırsız" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Sınırsız emoji" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Sınırsız çıkartma" @@ -19254,7 +19258,7 @@ msgstr "Plutonium ile DM'lerde çıkartmaları aç" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Kategori Sesini Aç" msgid "Unmute Channel" msgstr "Kanal Sesini Aç" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Favorilerin Sesini Aç" msgid "Unmute User" msgstr "Kullanıcı Sesini Aç" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "İsimsiz" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Ben değiştirene kadar" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Doğrulanmamış E-posta" msgid "Up to 4K/60fps" msgstr "4K/60fps'ye kadar" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Güncelle" @@ -19629,7 +19633,7 @@ msgstr "Giriş Sesi Yükle" msgid "Upload Failed" msgstr "Yükleme Başarısız" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Dosya yükle" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Kullanıcı Kanalı Taşıdı" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Kullanıcı Profili" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Kullanıcı Profili: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Değerler" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Özel URL" @@ -20059,14 +20063,14 @@ msgstr "Yedek kodlarınızı görüntülemeden önce doğrulama gerekebilir." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Doğrulanmış Topluluk" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Doğrulanmış lonca" @@ -20167,8 +20171,8 @@ msgstr "Video Kalitesi" msgid "Video Settings" msgstr "Video Ayarları" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Video küçük resmi" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Kodları Görüntüle" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Topluluk Profilini Görüntüle" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Hediye Envanterini Görüntüle" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Genel Profili Görüntüle" @@ -20329,7 +20333,7 @@ msgstr "İhlal kategorisi seçimi" msgid "Violent or Graphic Content" msgstr "Şiddet veya Grafik İçerik" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP ses" @@ -20341,7 +20345,7 @@ msgstr "Görünür Düğmeler" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Sesli Aramalar" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Ses kanalı" @@ -20442,7 +20446,7 @@ msgstr "Ses Kanalı" msgid "Voice Channel Full" msgstr "Ses Kanalı Dolu" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Ses Kanalına Katılma Davranışı" @@ -20559,7 +20563,7 @@ msgstr "Şu anda bu topluluğa katılamadık." msgid "We couldn't load the invites at this time." msgstr "Davetleri şu anda yükleyemedik." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Bu uygulamayı yükleyemedik" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Fluxer sunucularına bağlanırken sorun yaşıyoruz. Bu geçici bir ağ sorunu veya planlı bakım olabilir." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Uzay-zaman sürekliliğine bağlanırken sorun yaşıyoruz. Lütfen bağlantını kontrol et ve tekrar dene." @@ -20759,7 +20763,7 @@ msgstr "Hafta Sonu Savaşçıları" msgid "Welcome and system messages will appear here." msgstr "Hoş geldin ve sistem mesajları burada görünecek." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Tekrar hoş geldin" @@ -20820,7 +20824,7 @@ msgstr "Neler oluyor?" msgid "What's included in your export:" msgstr "Dışa aktarımında neler var:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Devre dışı bırakıldığında (varsayılan), şu anda görüntülediğin kanalda yazma göstergeleri görünmez." @@ -20836,7 +20840,7 @@ msgstr "Etkinleştirildiğinde, push-to-talk kısayoluna hızlıca dokunmak mikr msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Etkinleştirildiğinde, mesajlar, kanallar, kullanıcılar ve topluluklar gibi dahili veri yapılarının ham JSON nesnelerini incelemek ve kopyalamak için uygulama genelinde hata ayıklama menülerini gösterir. Ayrıca herhangi bir mesaj için Fluxer Markdown ayrıştırıcı performansını ve AST'yi hata ayıklamak için araçlar içerir." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Etkinleştirildiğinde, kısayol rozetleri araç ipucu açılır pencerelerinde gizlenir." @@ -20868,7 +20872,7 @@ msgstr "Etkinleştirildiğinde, 12/24 saat formatını belirlemek için uygulama msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Etkinleştirildiğinde, kanalları favorilere ekleyebilirsin ve Favoriler bölümünde görünürler. Devre dışı bırakıldığında, favorilerle ilgili tüm UI öğeleri (düğmeler, menü öğeleri) gizlenir. Mevcut favorilerin korunur." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Etkinleştirildiğinde, ses kanallarına katılmak için çift tıklaman gerekir. Devre dışı bırakıldığında (varsayılan), tek tıklamayla kanala hemen katılırsın." @@ -20970,7 +20974,7 @@ msgstr "Yıllık {yearlyPrice}" msgid "yesterday" msgstr "dün" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Dün" @@ -21013,7 +21017,7 @@ msgstr "Topluluk başına profilinizi düzenliyorsunuz. Bu profil yalnızca bu t msgid "You are in slowmode. Please wait before sending another message." msgstr "Yavaş moddasınız. Lütfen başka bir mesaj göndermeden önce bekleyin." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Artık bir geliştiricisiniz!" @@ -21113,7 +21117,7 @@ msgstr "Metnini biçimlendirmek için bağlantılar ve Markdown kullanabilirsin. msgid "You can't add new reactions while you're on timeout." msgstr "Zaman aşımındayken yeni tepkiler ekleyemezsin." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Kendinle arkadaş olamazsın" @@ -21128,7 +21132,7 @@ msgstr "Uzay-zaman sürekliliğini bozabileceğinden arama sonuçlarındaki tepk msgid "You can't join while you're on timeout." msgstr "Zaman aşımındayken katılamazsın." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Bir moderatör tarafından susturulduğun için kendini sessizden çıka 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Bu kanalda mesaj gönderme iznin yok." @@ -21439,7 +21443,7 @@ msgstr "Çevrimdışı görüneceksin" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Botun hangi izinleri alacağını bir sonraki ekranda yapılandıracaksın." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Tüm oturumu kapatılmış cihazlarda tekrar giriş yapman gerekecek" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 d9b13690..c1cffc37 100644 --- a/fluxer_app/src/locales/uk/messages.po +++ b/fluxer_app/src/locales/uk/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# елемент} other {# елементів}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# учасник} other {# учасників}}" @@ -566,18 +566,18 @@ msgstr "Зображення {label} не можуть бути анімован #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} учасник" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} учасників" @@ -612,11 +612,11 @@ msgstr "{minutes} хвилин і {seconds} секунд" msgid "{minutes} minutes and 1 second" msgstr "{minutes} хвилин та 1 секунда" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} спільна спільнота" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} спільних спільнот" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} учасників в дзвінку" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} онлайн" @@ -650,15 +650,15 @@ msgstr "Залишилося {remaining} символів" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Залишилося {remaining} символів. Оформи Plutonium, щоб писати до {premiumMaxLength} символів." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} учасник" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} учасників" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} онлайн" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} мс" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "згадки @everyone" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Колір акценту" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Прийняти" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Прийняти запит у друзі" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Прийняти запрошення" @@ -1364,8 +1364,8 @@ msgstr "Прийняти запрошення" msgid "Accept the incoming call" msgstr "Прийняти вхідний дзвінок" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Прийняття цього запрошення автоматично встановить пакет." @@ -1594,7 +1594,7 @@ msgstr "Додати улюблені канали" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Дозволив {0}." msgid "Already have an account?" msgstr "Вже є обліковий запис?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Вже приєднався" @@ -2191,7 +2191,7 @@ msgstr "Анімовані аватари й банери" msgid "Animated Avatars Require Plutonium" msgstr "Анімовані аватари вимагають Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Анімований банер" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "Анімовані емодзі ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "Анімований GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Анімоване відео GIF" @@ -2219,7 +2219,7 @@ msgstr "Анімоване відео GIF" msgid "Animated GIF Video" msgstr "Анімоване відео GIF" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Анімована іконка" @@ -2277,7 +2277,7 @@ msgstr "Кожен може згадати цю роль. Учасники з п msgid "API Endpoint" msgstr "API-кінцева точка" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Інформація про застосунок" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Назва застосунку" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Потрібна назва застосунку" @@ -2554,7 +2553,7 @@ msgstr "Ти впевнений, що хочеш скасувати бан дл msgid "Are you sure you want to revoke this invite? This action cannot be undone." msgstr "Ти впевнений, що хочеш відкликати це запрошення? Цю дію не можна скасувати." -#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "Ти впевнений, що хочеш приховати всі вставки посилань у цьому повідомленні? Ця дія сховає всі вставки." @@ -2603,7 +2602,7 @@ msgstr "Вкладення {0}" msgid "Attachment Actions" msgstr "Дії з вкладенням" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Термін дії вкладення закінчився" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Автодоповнення" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Автоматично" @@ -2859,7 +2858,7 @@ msgstr "Назад" msgid "Back to Applications" msgstr "Назад до застосунків" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Назад до списку" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Назад до входу" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Назад до переважень" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Назад до ролей" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Назад до налаштувань" @@ -3003,7 +3002,7 @@ msgstr "Забанені користувачі" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Банер" @@ -3096,7 +3095,7 @@ msgstr "Ліміт символів у біографії" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Запитана область дій бота" msgid "Bot token" msgstr "Токен бота" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Токен бота перегенеровано. Оновіть код, що використовує старий токен." @@ -3435,7 +3434,7 @@ msgstr "Налаштування камери" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Налаштування камери" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Налаштування камери" msgid "Cancel" msgstr "Скасувати" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Скасувати запит у друзі" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Обережно! У вас є незбережені зміни." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Категорія" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Назва категорії" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Налаштування категорії" @@ -3617,7 +3616,7 @@ msgstr "Увага" msgid "Center" msgstr "Центр" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Центровано" @@ -3765,7 +3764,7 @@ msgstr "Бітрейт змінено на {0}." msgid "Changed the voice region to {0}." msgstr "Регіон голосу змінено на {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "канал" @@ -3828,11 +3827,11 @@ msgstr "ID каналу скопійовано в буфер обміну" msgid "Channel link copied" msgstr "Посилання на канал скопійовано" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Режим індикатора набору в списку каналів" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Індикатори набору в списку каналів" @@ -3891,7 +3890,7 @@ msgstr "Канал видалено з обраних" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Налаштування каналу" @@ -4052,7 +4051,7 @@ msgstr "Оберіть формат відображення часу в усь msgid "Choose how typing indicators appear in the channel list" msgstr "Оберіть, як індикатори набору з’являються в списку каналів" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Оберіть, як індикатори набору з’являються в списку каналів, коли хтось щось пише." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Претендуйте на свій обліковий запис, щоб викупити цей подарунок." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Претендуйте на свій обліковий запис, щоб надсилати запити на дружбу." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Скинути дозволи" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Очистити пошук" msgid "Clear search input" msgstr "Очистити поле пошуку" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Зняти виділення" @@ -4314,7 +4313,7 @@ msgstr "Натисніть значок завантаження поруч із msgid "Click the verification link in the email." msgstr "Перейдіть за посиланням підтвердження в електронному листі." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Натисніть, щоб додати нотатку" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Натисніть, щоб забрати подарунок!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Натисніть, щоб скопіювати" @@ -4388,7 +4387,7 @@ msgstr "Натисніть, щоб переглянути всі реакції" msgid "Client secret" msgstr "Секрет клієнта" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Секрет клієнта перегенеровано. Оновіть код, що використовує старий секрет." @@ -4649,8 +4648,8 @@ msgstr "Спільнота пропагує ненависть на основі msgid "Community promotes or facilitates illegal activities" msgstr "Спільнота пропагує або сприяє незаконним діям" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Контекстні меню" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Контекстні меню можна відкривати лівим кліком (на кнопках) або правим (на інших елементах). Це демонструє різні елементи меню, включно з чекбоксами, радіокнопками, слайдерами та підменю." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Контролюйте, як попередньо переглядают msgid "Control how you join voice channels" msgstr "Керувати тим, як ти приєднуєшся до голосових каналів" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Керувати тим, як ви приєднуєтеся до голосових каналів у спільнотах." @@ -5012,7 +5011,7 @@ msgstr "Керувати анімаціями стікерів" msgid "Control the visibility of favorites throughout the app." msgstr "Керувати видимістю обраного у всьому додатку." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Керувати тим, чи з'являються підказки гарячих клавіш у спливаючих підказках." @@ -5071,7 +5070,7 @@ msgstr "Скопійовано" msgid "Copied to clipboard" msgstr "Скопійовано в буфер" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "URL скопійовано в буфер" @@ -5149,7 +5148,7 @@ msgstr "Скопіювати посилання на файл" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Скопіювати FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Скопіювати FluxerTag" msgid "Copy GIF" msgstr "Скопіювати GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Скопіювати ID гільдії" @@ -5222,7 +5221,7 @@ msgstr "Скопіювати текст" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Затишно" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Створити" @@ -5331,14 +5330,14 @@ msgstr "Створюйте й керуйте додатками та ботам msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Створюйте й діліться власними наборами емодзі й стікерів за допомогою Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Створити додаток" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Створити додаток" msgid "Create Category" msgstr "Створити категорію" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Створено {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Створено {0}" @@ -5569,7 +5568,7 @@ msgstr "Обрізане зображення занадто велике. Об msgid "Current Community" msgstr "Поточна спільнота" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Поточний пристрій" @@ -5606,7 +5605,7 @@ msgstr "Зараз застряг у 1885 році, виглядаю офлай #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Наразі: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Додаткова небезпека" msgid "Danger secondary clicked!" msgstr "Додаткову небезпеку натиснуто!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Зона небезпеки" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "За замовчуванням вимкнено на мобільних пристроях, щоб зберігати заряд і трафік." #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Видалити всі мої повідомлення" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Видалити додаток" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Видалити вкладення" @@ -6063,7 +6062,7 @@ msgstr "Видалити вкладення" msgid "Delete Attachment" msgstr "Видалити вкладення" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Видалити категорію" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Видалити канал" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Видалити медіа" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Видалити повідомлення" @@ -6215,7 +6214,7 @@ msgstr "Щільний" msgid "Dense layout" msgstr "Щільне розташування" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Розгорнуто" @@ -6281,7 +6280,7 @@ msgstr "Канал призначення" msgid "Destination URL:" msgstr "URL-адреса призначення:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Відокремлений банер" @@ -6362,7 +6361,7 @@ msgstr "Різні розміри (статус підтримується)" msgid "Different Sizes & Member Counts" msgstr "Різні розміри й кількість учасників" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "Пряме повідомлення" @@ -6541,7 +6540,7 @@ msgstr "Вимкнення акаунта вийде з усіх сесій. Т msgid "Disallow @mention." msgstr "Заборонити згадку (@)." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Заборонити непідтверджені акаунти" @@ -6747,7 +6746,7 @@ msgstr "Не показувати попередній перегляд пові msgid "Don't show this again" msgstr "Не показувати це знову" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Не показувати індикатори набору в списку каналів" @@ -6760,7 +6759,7 @@ msgstr "Не показувати індикатори набору в спис msgid "Done" msgstr "Готово" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Редагувати категорію" msgid "Edit Channel" msgstr "Редагувати канал" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Редагуй перезаписи прав доступу для ролей і учасників у цьому каналі." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Вбудована заставка" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Зображення заставки не можуть бути анімованими. Використовуй JPEG, PNG або WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Вбудоване аудіо" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Назви емодзі мають містити щонайменше 2 символи та можуть містити лише буквено-цифрові символи й нижнє підкреслення. Дозволені формати: JPEG, PNG, WebP, GIF. Ми стискаємо зображення до 128x128 пікселів. Максимальний розмір: {0} КБ на емодзі." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Пакет емодзі" @@ -7473,7 +7472,7 @@ msgstr "Введи номер телефону" msgid "Enter picture-in-picture" msgstr "Увімкнути картинку в картинці" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Увімкнути режим вибору" @@ -7536,7 +7535,7 @@ msgstr "Введи нову електронну адресу, яку хочеш msgid "Enter the SMS code you received." msgstr "Введи отриманий SMS-код." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "натисни Enter, щоб <0><1>зберегти" @@ -7604,7 +7603,7 @@ msgstr "Помилка рендерингу LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Клавіша Esc виходить з режиму клавіатури" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "натисни Esc, щоб <0><1>скасувати" @@ -7667,7 +7666,7 @@ msgstr "Вийти з режиму картинка в картинці" msgid "Exit Preview" msgstr "Вийти з попереднього перегляду" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Вийти з режиму вибору" @@ -7701,7 +7700,7 @@ msgstr "Термін дії минув (протягом 30 днів)" msgid "Expired {absolute}" msgstr "Термін дії минув {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Термін дії минув між {earliest} і {latest}" @@ -7709,7 +7708,7 @@ msgstr "Термін дії минув між {earliest} і {latest}" msgid "Expired on {date}" msgstr "Термін дії минув {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Термін дії минув {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Закінчується" msgid "Expires {absolute} ({relativeText})" msgstr "Закінчується {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Закінчується між {earliest} і {latest}" @@ -7730,7 +7729,7 @@ msgstr "Закінчується між {earliest} і {latest}" msgid "Expires on {date}" msgstr "Закінчується {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Закінчується {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Пакети експресій — це функція Plutonium" msgid "Expression picker categories" msgstr "Категорії вибору експресій" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Очищення експресій" @@ -7839,10 +7838,6 @@ msgstr "Не вдалося скопіювати в буфер обміну" msgid "Failed to copy URL" msgstr "Не вдалося скопіювати URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Не вдалося створити застосунок. Перевір введені дані та спробуй ще раз." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Не вдалося створити роль" @@ -8100,7 +8095,7 @@ msgstr "Не вдалося скасувати бан. Спробуй ще ра msgid "Failed to revoke invite" msgstr "Не вдалося відкликати запрошення" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Не вдалося повернути. Спробуй ще раз." @@ -8413,7 +8408,7 @@ msgstr "Фітнес-друзі" msgid "Flags" msgstr "Прапори" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Гнучкі назви текстових каналів" @@ -8577,7 +8572,7 @@ msgstr "Гурмани-друзі" msgid "For 1 hour" msgstr "На 1 годину" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "На 1 годину" msgid "For 15 minutes" msgstr "На 15 хвилин" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "На 15 хвилин" msgid "For 24 hours" msgstr "На 24 години" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "На 3 дні" msgid "For 3 hours" msgstr "На 3 години" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "На 3 години" msgid "For 8 hours" msgstr "На 8 годин" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Забути підписки" msgid "Forgot Password" msgstr "Забули пароль" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Забули пароль?" @@ -8795,7 +8790,7 @@ msgstr "Перемістити вперед на {DEFAULT_SEEK_AMOUNT} секу msgid "Forward Message" msgstr "Переслати повідомлення" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Переслано" @@ -9065,7 +9060,7 @@ msgstr "Завантажте Fluxer для десктопа, щоб корист #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Повернутися до попереднього текстовог msgid "Go forward in navigation history" msgstr "Перейти вперед в історії навігації" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Перейти до спільноти" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Запрошення в групу" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Групове повідомлення" @@ -9548,7 +9543,7 @@ msgstr "Гей, {username}, ласкаво просимо! Ти можеш ус msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Гей, {username}! Коли досягне 88 миль/год, побачиш справжні речі!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Приховано" @@ -9569,7 +9564,7 @@ msgstr "Сховати улюблені" msgid "Hide Join Messages" msgstr "Приховати повідомлення про приєднання" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Приховати підказки клавіатури в спливаючих підказках" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Приховати заглушені канали" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Якщо хочете спочатку експортувати дані або видалити повідомлення, зайдіть у Розділ конфіденційності в Користувацьких налаштуваннях перед продовженням." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "зображення" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Введення з іконками" msgid "Insert emoji" msgstr "Вставити емодзі" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Встановити пакет емодзі" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Встановити пакет стікерів" @@ -10153,7 +10148,7 @@ msgstr "Встановлено {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Для встановлення пакетів емодзі та стікерів потрібна преміум-підписка." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Миттєві запрошення" @@ -10286,7 +10281,7 @@ msgstr "Налаштування посилань-запрошень" msgid "Invite Links" msgstr "Посилання-запрошення" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Модальне вікно запрошення" msgid "Invite modal preview" msgstr "Попередній перегляд модального вікна запрошення" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Відправлено запрошення для {0}" msgid "Invite sent to {guildName}" msgstr "Запрошення надіслано до {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Сплеш запрошення" @@ -10354,7 +10349,7 @@ msgstr "Запросити до {0}" msgid "Invite to Community" msgstr "Запросити до спільноти" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Запрошення недоступне" @@ -10369,12 +10364,12 @@ msgstr "Запросив {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Запросив {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Запросив {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Запрошення наразі призупинено в цій сп msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Запрошення заблоковано для спільнот попереднього перегляду. Підтвердіть акаунт, встановивши електронну пошту й пароль, щоб увімкнути запрошення." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Запрошення вимкнено" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Запрошення вимкнено" @@ -10482,13 +10477,13 @@ msgstr "Приєднайся до спільноти зі стікерами, щ msgid "Join call" msgstr "Приєднатися до виклику" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Приєднатися до спільноти" @@ -10497,15 +10492,23 @@ msgstr "Приєднатися до спільноти" msgid "Join community form" msgstr "Форма приєднання до спільноти" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Приєднуйся до Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Приєднуйся до Fluxer HQ, щоб спілкуватися з командою та бути в курсі новин!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Приєднатися до групи" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Приєднатися до групового DM" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Сповіщення про приєднання" @@ -10620,7 +10623,7 @@ msgstr "Перейти до найстарішого непрочитаного msgid "Jump to page" msgstr "Перейти до сторінки" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Перейти до теперішнього" @@ -10690,7 +10693,7 @@ msgstr "Комбінації клавіш" msgid "Keyboard" msgstr "Клавіатура" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Підказки клавіатури" @@ -10815,7 +10818,7 @@ msgstr "Дізнатися про Plutonium" msgid "Leave blank for a random username" msgstr "Залиш порожнім для випадкового імені користувача" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Так швидко йдеш?" msgid "Left" msgstr "Покинув" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Вирівняно вліво" @@ -10945,7 +10948,7 @@ msgstr "посилання" msgid "Link" msgstr "Посилання" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Пов’язати канал" @@ -11027,7 +11030,7 @@ msgstr "Завантаження банів..." msgid "Loading communities..." msgstr "Завантаження спільнот..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Завантаження зображення" @@ -11039,8 +11042,8 @@ msgstr "Завантаження запрошень..." msgid "Loading more..." msgstr "Завантаження ще..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Завантаження заповнювача" @@ -11064,7 +11067,7 @@ msgstr "Завантаження теми..." msgid "Loading verification methods..." msgstr "Завантаження способів верифікації..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Завантаження: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Локальне вимкнення звуку" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Увійди через браузер, а потім введи код, msgid "Log in via browser" msgstr "Увійти через браузер" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Увійти через браузер або власний екземпляр" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Вийти" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Вийти з {0} пристроїв" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Вийти з {sessionCount} пристроїв" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Вийти з 1 пристрою" @@ -11141,7 +11144,7 @@ msgstr "Вийти з усіх пристроїв" msgid "Log out all other devices" msgstr "Вийти з усіх інших пристроїв" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Вийти з усіх інших пристроїв" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Позначити як 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "згадки:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "згадки:" msgid "Message" msgstr "Повідомлення" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Повідомлення " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Повідомлення @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Повідомлення #" @@ -11838,7 +11842,7 @@ msgstr "Повідомлення та медіа" msgid "Messages Deleted" msgstr "Повідомлення видалено" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Не вдалося завантажити повідомлення" @@ -12016,7 +12020,7 @@ msgstr "Ще" msgid "More Actions" msgstr "Більше дій" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Більше слотів для емодзі" @@ -12028,7 +12032,7 @@ msgstr "Більше опцій" msgid "More Options" msgstr "Більше опцій" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Більше слотів для стікерів" @@ -12162,8 +12166,8 @@ msgstr "Вимкнути канал" msgid "Mute Channel" msgstr "Вимкнути канал" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Без звуку до {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Вимкнення спільноти приховує індикатори непрочитаних та сповіщення, якщо вас не згадали" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Взаємні спільноти ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Взаємні друзі ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Взаємні групи ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Мій додаток" @@ -12247,7 +12251,7 @@ msgstr "Мій крутий стікер" msgid "My Category" msgstr "Моя категорія" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Мої пристрої" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Навігація" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Потрібен акаунт?" @@ -12364,7 +12368,7 @@ msgstr "Мережа" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Помилка мережі" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Банера спільноти немає" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Опис не надано." @@ -12684,15 +12688,15 @@ msgstr "Мікрофони не виявлено" msgid "No more scheduled messages." msgstr "Більше запланованих повідомлень немає." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Спільних спільнот не знайдено." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Спільних друзів не знайдено." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Спільних груп не знайдено." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Не твоє? Можеш вимкнути цю функцію будь-коли." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Перевизначення сповіщень" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Повідомити користувачів цієї ролі, які msgid "now" msgstr "зараз" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Зараз" @@ -13090,7 +13094,7 @@ msgstr "При натисканні" msgid "on:" msgstr "увімкнено:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Після видалення застосунок і його облікові дані зникають назавжди." @@ -13252,7 +13256,7 @@ msgstr "Лише особисті повідомлення" msgid "Open Fluxer" msgstr "Відкрити Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Відкрити зображення у повному перегляді" @@ -13368,7 +13372,7 @@ msgstr "Відкрити спільноту Visionary" msgid "Opening..." msgstr "Відкривається..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Оператор" @@ -13441,7 +13445,7 @@ msgstr "Оригінальне повідомлення видалено" msgid "Other" msgstr "Інше" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Інші пристрої" @@ -13501,7 +13505,7 @@ msgstr "Перевизначити статус невизначеного об msgid "Override unread gift inventory status" msgstr "Перевизначити статус невитрачених подарунків" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Огляд" @@ -13695,7 +13699,7 @@ msgstr "Дозволи" msgid "Permissions granted" msgstr "Дозволи надано" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Особисті нотатки" @@ -13868,12 +13872,12 @@ msgstr "Відтворити" msgid "Play animated emojis" msgstr "Відтворити анімовані емодзі" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Відтворити аудіо" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Встав посилання на повідомлення, яке ти msgid "Please provide an email address." msgstr "Вкажи електронну адресу." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Спробуй ще раз або повернись до списку програм." @@ -13989,7 +13993,7 @@ msgstr "Переваги Plutonium" msgid "Plutonium Subscription" msgstr "Підписка Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Панель конфіденційності" msgid "Privacy Policy" msgstr "Політика конфіденційності" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Вилучити цей стікер зі сховища та CDN" msgid "Push Notification Inactive Timeout" msgstr "Таймаут неактивних пуш-сповіщень" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Пуш-сповіщення" @@ -14412,7 +14416,7 @@ msgstr "Взаємодія з реакціями вимкнена" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Реакції" @@ -14583,7 +14587,7 @@ msgstr "Оновити підписку на пуші" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Створити заново" @@ -14591,19 +14595,19 @@ msgstr "Створити заново" msgid "Regenerate backup codes" msgstr "Перегенерувати резервні коди" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Перегенерувати токен бота?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Перегенерувати секрет клієнта?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Перегенерація анулює поточний секрет. Онови код, що використовує старе значення." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Перегенерація анулює поточний токен. Онови код, що використовує старе значення." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Видалити фільтр" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Видалити фільтр" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Скаргу успішно надіслано. Наша команда #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Поскаржитися на користувача" @@ -15105,7 +15109,7 @@ msgstr "Запитувані області доступу" msgid "Require 2FA for moderation actions" msgstr "Вимагати 2FA для модерації" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Вимагати подвійне натискання для входу в голосові канали" @@ -15144,7 +15148,7 @@ msgstr "Потребує всього з «Середнього» рівня т msgid "Requires Plutonium" msgstr "Потребує Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Перепланувати повідомлення" @@ -15290,11 +15294,11 @@ msgstr "Підписатися знову" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Спробувати ще" @@ -15359,7 +15363,7 @@ msgstr "Відкликати" msgid "Revoke Ban" msgstr "Скасувати бан" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Відкликати пристрій" @@ -15386,7 +15390,7 @@ msgstr "Перемотати назад на {DEFAULT_SEEK_AMOUNT} секунд" msgid "Right" msgstr "Праворуч" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Вирівняно по правому краю" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Шукати учасників..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Шукати повідомлення" @@ -15834,13 +15838,13 @@ msgstr "Шукати ролі чи учасників..." msgid "Search saved media" msgstr "Шукати збережені медіа" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Область пошуку" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Область пошуку: {0}" @@ -15857,7 +15861,7 @@ msgstr "Шукати налаштування..." msgid "Search stickers..." msgstr "Шукати стікери..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Підказки пошуку" @@ -15938,7 +15942,7 @@ msgstr "Ключ безпеки / Passkey" msgid "Security key verification failed. Please try again." msgstr "Перевірка ключа безпеки не вдалася. Спробуйте ще раз." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Перегляньте всі пристрої, які наразі ввійшли в акаунт. Скасуйте сеанси, які ви не впізнаєте." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Вибрати акаунт" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Вибрати все" @@ -16040,7 +16044,7 @@ msgstr "Виберіть розмір медіа для вбудованого msgid "Select media size for uploaded attachments" msgstr "Виберіть розмір медіа для завантажених вкладень" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Виберіть взаємне відображення" @@ -16151,9 +16155,9 @@ msgstr "Надіслати код" msgid "Send Code" msgstr "Надіслати код" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Надіслати запит у друзі" @@ -16170,7 +16174,7 @@ msgstr "Надіслати повідомлення · клацніть прав msgid "Send Message Disabled" msgstr "Надсилання повідомлень вимкнено" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Надсилати повідомлення" @@ -16624,7 +16628,7 @@ msgstr "Показати кнопку подарунка" msgid "Show inline images and videos" msgstr "Показувати вбудовані зображення та відео" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Показати лише індикатор набору тексту без аватарок" @@ -16788,11 +16792,11 @@ msgstr "Показати подарунок як уже використаний msgid "Show this role separately" msgstr "Показати цю роль окремо" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Показувати індикатор набору з аватарками користувачів у списку каналів" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Показувати набір на вибраному каналі" @@ -17151,7 +17155,7 @@ msgstr "Іспанська (Іспанія)" msgid "Speak" msgstr "Говорити" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Проголосити повідомлення" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Почати трансляцію" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Розпочати відеодзвінок" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Розпочати голосовий дзвінок" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Щільність стікерів" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Набір стікерів" @@ -17427,7 +17431,7 @@ msgstr "Припинити дзвінок" msgid "Stop Sharing" msgstr "Припинити трансляцію" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Припинити говорити" @@ -17570,19 +17574,19 @@ msgstr "Приховати всі згадки ролей" msgid "Suppress All Role @mentions" msgstr "Приховати всі згадки ролей" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Приховати вставки" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Текст" msgid "Text (NSFW)" msgstr "Текст (18+)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Текстовий канал" @@ -18028,10 +18032,10 @@ msgstr "Ця дія вимагає підтвердження для продо msgid "This application" msgstr "Цей додаток" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Це вкладення більше не дійсне" @@ -18039,7 +18043,7 @@ msgstr "Це вкладення більше не дійсне" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Цей бот запитує дозвіл Адміністратора. Не рекомендуємо надавати його продуктивним додаткам, якщо ви повністю не довіряєте розробнику. Попросіть запросити обмеженіший набір дозволів. Якщо не впевнені, закрийте цю сторінку." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Цього не можна скасувати. Видалення додатка також видаляє його бота." @@ -18101,7 +18105,7 @@ msgstr "Спільнота досягла граничної кількості msgid "This community has temporarily disabled invites." msgstr "Ця спільнота тимчасово вимкнула запрошення." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Ця спільнота тимчасово вимкнула запрошення. Спробуйте пізніше." @@ -18178,7 +18182,7 @@ msgstr "Це запрошення має необмежену кількість msgid "This invite link never expires." msgstr "Це запрошення ніколи не закінчується." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Це початок історії <0>{displayName}. Додайте друзів, щоб почати розмову!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Це початок історії ваших приватних повідомлень із <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Це було @silent повідомлення." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "Це створить розрив у просторово-часовому континуумі, і його не можна буде скасувати." @@ -18351,7 +18355,7 @@ msgstr "Це створить розрив у просторово-часово msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Це приховає всі елементи інтерфейсу, пов’язані з улюбленим. Ваші існуючі вподобання збережуться й їх можна буде знову ввімкнути в будь-який момент у <0>Налаштуваннях користувача → Вигляд → Улюблене." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Це змінить існуюче відкладене повідомлення замість негайної відправки." @@ -18387,8 +18391,8 @@ msgstr "Це видалить збережену сесію цього облі msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Це замінить вашу поточну кастомну тему. Ви зможете редагувати її пізніше в налаштуваннях користувача." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Мініатюра для {title}" @@ -18485,7 +18489,7 @@ msgstr "Сповіщення з’являються в центрі верхн msgid "today" msgstr "сьогодні" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Сьогодні" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "Спробуй інший пошуковий термін або фільтр" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Спробуй ще раз" @@ -18737,7 +18741,7 @@ msgstr "Спробуй інше ім’я або перевір написанн msgid "Try another search term" msgstr "Спробуй інший пошуковий термін" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Спробуй попросити нове запрошення." @@ -18864,7 +18868,7 @@ msgstr "Масштаб шрифту" msgid "Type your message here..." msgstr "Напиши тут своє повідомлення..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Події набору" @@ -18877,11 +18881,11 @@ msgstr "Індикатор набору" msgid "Typing Indicator" msgstr "Індикатор набору" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Індикатор набору + аватари" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Тільки індикатор набору" @@ -18961,11 +18965,11 @@ msgstr "Не вдалося розпочати дзвінок" msgid "Unable to start email change" msgstr "Не вдалося розпочати зміну e-mail" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Недоступно для всіх" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Недоступно для всіх, окрім персоналу" @@ -18978,7 +18982,7 @@ msgstr "Недоступно для всіх, окрім персоналу" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Розблокуй цього користувача перед тим, #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Розблокувати користувача" @@ -19165,7 +19169,7 @@ msgstr "Невідома помилка" msgid "Unknown Gift" msgstr "Невідомий подарунок" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Невідоме запрошення" @@ -19205,11 +19209,11 @@ msgstr "невідома-роль" msgid "Unlimited" msgstr "Необмежено" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Необмежено емодзі" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Необмежено стікерів" @@ -19254,7 +19258,7 @@ msgstr "Розблокуйте стікери в особистих повідо #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Увімкнути звук для категорії" msgid "Unmute Channel" msgstr "Увімкнути звук для каналу" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Увімкнути звук для обраного" msgid "Unmute User" msgstr "Увімкнути звук для користувача" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Без імені" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Поки я не зміню" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Неверифікований e-mail" msgid "Up to 4K/60fps" msgstr "До 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Оновити" @@ -19629,7 +19633,7 @@ msgstr "Завантажити звук входу" msgid "Upload Failed" msgstr "Не вдалося завантажити" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Завантажити файл" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Користувача перемістили до каналу" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Профіль користувача" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Профіль користувача: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Значення" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "Унікальна URL-адреса" @@ -20059,14 +20063,14 @@ msgstr "Перед переглядом резервних кодів може #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Підтверджена спільнота" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Підтверджена гільдія" @@ -20167,8 +20171,8 @@ msgstr "Якість відео" msgid "Video Settings" msgstr "Налаштування відео" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Зображення відео" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Переглянути коди" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Переглянути профіль спільноти" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Переглянути інвентар подарунків" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Переглянути глобальний профіль" @@ -20329,7 +20333,7 @@ msgstr "Вибір категорії порушення" msgid "Violent or Graphic Content" msgstr "Жорстокий або графічний контент" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP-голос" @@ -20341,7 +20345,7 @@ msgstr "Видимі кнопки" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Голосові дзвінки" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Голосовий канал" @@ -20442,7 +20446,7 @@ msgstr "Голосовий канал" msgid "Voice Channel Full" msgstr "Голосовий канал заповнений" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Поведінка при приєднанні до голосового каналу" @@ -20559,7 +20563,7 @@ msgstr "Не вдалося приєднатися до цієї спільно msgid "We couldn't load the invites at this time." msgstr "Наразі ми не можемо завантажити запрошення." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Не вдалося завантажити цей застосунок" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Ми маємо проблеми з підключенням до серверів Fluxer. Це може бути тимчасова мережева проблема або планове обслуговування." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Маємо проблеми з підключенням до просторово-часового континууму. Перевір своє з'єднання та спробуй знову." @@ -20759,7 +20763,7 @@ msgstr "Воїни вихідних" msgid "Welcome and system messages will appear here." msgstr "Привітальні та системні повідомлення з'являтимуться тут." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Радий бачити знову" @@ -20820,7 +20824,7 @@ msgstr "Що відбувається?" msgid "What's included in your export:" msgstr "Що входить до експорту:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Якщо вимкнено (за замовчуванням), індикатори набору не з'являтимуться в каналі, який ти зараз переглядаєш." @@ -20836,7 +20840,7 @@ msgstr "Якщо увімкнено, коротке натискання кла msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Якщо увімкнено, відкриває меню налагодження по всьому застосунку, щоб переглядати та копіювати сирі JSON-об’єкти внутрішніх структур, таких як повідомлення, канали, користувачі та спільноти. Також включає інструменти для налагодження продуктивності парсера Fluxer Markdown та AST для будь-якого повідомлення." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Якщо увімкнено, бейджі скорочень приховано у підказках." @@ -20868,7 +20872,7 @@ msgstr "Якщо увімкнено, використовується локал msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Якщо увімкнено, ти можеш додавати канали до вибраного, і вони з'являться в розділі «Вибране». Якщо вимкнено, усі елементи інтерфейсу, пов’язані з вибраним (кнопки, пункти меню), будуть приховані. Твої поточні вибрані канали збережуться." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Якщо увімкнено, потрібно двічі клацнути голосовий канал, щоб приєднатися. Якщо вимкнено (за замовчуванням), один клік приєднає одразу." @@ -20970,7 +20974,7 @@ msgstr "Щорічно {yearlyPrice}" msgid "yesterday" msgstr "вчора" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Вчора" @@ -21013,7 +21017,7 @@ msgstr "Ти редагуєш профіль для цієї спільноти. msgid "You are in slowmode. Please wait before sending another message." msgstr "Ти в режимі уповільнення. Зачекай перед наступним повідомленням." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Ти тепер розробник!" @@ -21113,7 +21117,7 @@ msgstr "Ти можеш використовувати посилання та M msgid "You can't add new reactions while you're on timeout." msgstr "Ти не можеш додавати нові реакції, коли на тайм-ауті." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Ти не можеш додати себе в друзі" @@ -21128,7 +21132,7 @@ msgstr "Ти не можеш взаємодіяти з реакціями в р msgid "You can't join while you're on timeout." msgstr "Ти не можеш приєднатися, коли на тайм-ауті." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Ти не можеш увімкнути мікрофон, бо моде msgid "You do not have access to the channel where this message was sent." msgstr "У тебе немає доступу до каналу, де було надіслано це повідомлення." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "Ти не маєш дозволу надсилати повідомлення в цьому каналі." @@ -21439,7 +21443,7 @@ msgstr "Ти будеш в режимі офлайн" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "На наступному екрані ти налаштуєш дозволи, які отримає бот." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Тобі доведеться повторно ввійти на всіх вихідних пристроях" @@ -21508,7 +21512,7 @@ msgstr "Ти в голосовому каналі" msgid "You're sending messages too quickly" msgstr "Ти надсилаєш повідомлення занадто швидко" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 07a62e32..d7a70fc6 100644 --- a/fluxer_app/src/locales/vi/messages.po +++ b/fluxer_app/src/locales/vi/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# mục} other {# mục}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# Thành viên} other {# Thành viên}}" @@ -566,18 +566,18 @@ msgstr "Hình ảnh {label} không thể được hoạt hình. Vui lòng sử d #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} Thành viên" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} Thành viên" @@ -612,11 +612,11 @@ msgstr "{minutes} phút và {seconds} giây" msgid "{minutes} minutes and 1 second" msgstr "{minutes} phút và 1 giây" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} cộng đồng tương hỗ" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} cộng đồng tương hỗ" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} người tham gia trong cuộc gọi" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} đang trực tuyến" @@ -650,15 +650,15 @@ msgstr "Còn {remaining} ký tự" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "Còn {remaining} ký tự. Nâng cấp Plutonium để viết tối đa {premiumMaxLength} ký tự." -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} Thành viên" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} Thành viên" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} đang trực tuyến" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone đề cập" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "Màu nhấn" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "Chấp nhận" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "Chấp nhận lời mời kết bạn" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "Chấp nhận lời mời" @@ -1364,8 +1364,8 @@ msgstr "Chấp nhận lời mời" msgid "Accept the incoming call" msgstr "Nhận cuộc gọi đến" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "Chấp nhận lời mời này sẽ tự động cài gói." @@ -1594,7 +1594,7 @@ msgstr "Thêm kênh yêu thích" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "Cho phép {0}." msgid "Already have an account?" msgstr "Đã có tài khoản?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "Đã gia nhập" @@ -2191,7 +2191,7 @@ msgstr "Ảnh đại diện & biểu ngữ hoạt hình" msgid "Animated Avatars Require Plutonium" msgstr "Ảnh đại diện hoạt hình cần Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "Biểu ngữ hoạt hình" @@ -2205,13 +2205,13 @@ 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:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "GIF hoạt hình" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "Video GIF hoạt hình" @@ -2219,7 +2219,7 @@ msgstr "Video GIF hoạt hình" msgid "Animated GIF Video" msgstr "Video GIF hoạt hình" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "Biểu tượng hoạt hình" @@ -2277,7 +2277,7 @@ msgstr "Bất kỳ ai cũng có thể @nhắc đến vai trò này. Thành viên msgid "API Endpoint" msgstr "Điểm cuối API" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "Thông tin ứng dụng" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "Tên ứng dụng" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "Yêu cầu tên ứng dụng" @@ -2554,7 +2553,7 @@ msgstr "Bạn có chắc muốn thu hồi lệnh cấm cho <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:143 +#: src/components/channel/embeds/Embed.tsx:145 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." @@ -2603,7 +2602,7 @@ msgstr "Tệp đính kèm {0}" msgid "Attachment Actions" msgstr "Hành động tệp đính kèm" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "Tệp đính kèm hết hạn" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "Tự động hoàn thành" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "Tự động" @@ -2859,7 +2858,7 @@ msgstr "Quay lại" msgid "Back to Applications" msgstr "Quay lại Ứng dụng" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "Quay lại danh sách" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "Quay lại đăng nhập" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "Quay lại Ghi đè" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "Quay lại Vai trò" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "Quay lại Cài đặt" @@ -3003,7 +3002,7 @@ msgstr "Người dùng bị cấm" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "Biểu ngữ" @@ -3096,7 +3095,7 @@ msgstr "Giới hạn ký tự tiểu sử" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "Phạm vi bot được yêu cầu" msgid "Bot token" msgstr "Mã thông báo bot" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "Đã tạo lại mã thông báo bot. Cập nhật mã dùng mã cũ." @@ -3435,7 +3434,7 @@ msgstr "Cài đặt camera" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "Cài đặt camera" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "Cài đặt camera" msgid "Cancel" msgstr "Hủy" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "Hủy lời mời kết bạn" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "Cẩn thận! Bạn có thay đổi chưa lưu." #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "Danh mục" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "Tên danh mục" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "Cài đặt danh mục" @@ -3617,7 +3616,7 @@ msgstr "Chú ý" msgid "Center" msgstr "Giữa" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "Đã căn giữa" @@ -3765,7 +3764,7 @@ msgstr "Đã đổi bitrate thành {0}." msgid "Changed the voice region to {0}." msgstr "Đã đổi vùng âm thanh thành {0}." -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "kênh" @@ -3828,11 +3827,11 @@ msgstr "Đã sao chép ID kênh vào bảng nhớ tạm" msgid "Channel link copied" msgstr "Đã sao chép liên kết kênh" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "Chế độ hiển thị đang gõ của danh sách kênh" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "Chỉ báo đang gõ danh sách kênh" @@ -3891,7 +3890,7 @@ msgstr "Đã bỏ kênh khỏi yêu thích" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "Cài đặt kênh" @@ -4052,7 +4051,7 @@ msgstr "Chọn cách hiển thị thời gian trong toàn app." msgid "Choose how typing indicators appear in the channel list" msgstr "Chọn cách chỉ báo đang nhập xuất hiện trong danh sách kênh" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "Chọn cách hiển thị chỉ báo đang nhập trong danh sách kênh khi ai đó đang gõ trong kênh." @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "Đăng ký tài khoản của bạn để đổi thưởng món quà này." #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "Đăng ký tài khoản của bạn để gửi yêu cầu kết bạn." @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "Xoá quyền" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "Xoá tìm kiếm" msgid "Clear search input" msgstr "Xoá ô nhập tìm kiếm" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "Xoá lựa chọn" @@ -4314,7 +4313,7 @@ msgstr "Nhấn biểu tượng tải lên cạnh bất kỳ âm thanh nào để msgid "Click the verification link in the email." msgstr "Nhấn liên kết xác minh trong email." -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "Nhấn để thêm ghi chú" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "Nhấn để nhận quà!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "Nhấn để sao chép" @@ -4388,7 +4387,7 @@ msgstr "Nhấn để xem tất cả phản ứng" msgid "Client secret" msgstr "Bí mật client" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "Bí mật client đã được tạo lại. Cập nhật mọi mã sử dụng bí mật cũ." @@ -4649,8 +4648,8 @@ msgstr "Cộng đồng kích động hận thù dựa trên đặc điểm đư msgid "Community promotes or facilitates illegal activities" msgstr "Cộng đồng khuyến khích hoặc tạo điều kiện cho hoạt động bất hợp pháp" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "Menu ngữ cảnh" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "Menu ngữ cảnh có thể mở bằng cách nhấp trái (trên nút) hoặc nhấp phải (trên các phần tử khác). Đây minh họa nhiều mục menu bao gồm hộp chọn, nút radio, thanh trượt và menu con." -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "Kiểm soát cách liên kết trang web được xem trước trong tr msgid "Control how you join voice channels" msgstr "Kiểm soát cách bạn tham gia kênh thoại" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "Kiểm soát cách bạn tham gia các kênh thoại trong cộng đồng." @@ -5012,7 +5011,7 @@ msgstr "Kiểm soát hiệu ứng nhãn dán" msgid "Control the visibility of favorites throughout the app." msgstr "Kiểm soát độ hiển thị của mục yêu thích trong toàn app." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "Kiểm soát việc hiển thị gợi ý phím tắt trong mẹo công cụ." @@ -5071,7 +5070,7 @@ msgstr "Đã sao chép" msgid "Copied to clipboard" msgstr "Đã sao chép vào khay nhớ tạm" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "Đã sao chép URL vào khay nhớ tạm" @@ -5149,7 +5148,7 @@ msgstr "Sao chép liên kết tệp" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "Sao chép FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "Sao chép FluxerTag" msgid "Copy GIF" msgstr "Sao chép GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "Sao chép ID máy chủ" @@ -5222,7 +5221,7 @@ msgstr "Sao chép văn bản" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "Ấm cúng" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "Tạo" @@ -5331,14 +5330,14 @@ msgstr "Tạo và quản lý ứng dụng cùng bot cho tài khoản của bạn msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "Tạo và chia sẻ gói biểu tượng cảm xúc và nhãn dán tùy chỉnh với Fluxer Plutonium." -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "Tạo ứng dụng" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "Tạo ứng dụng" msgid "Create Category" msgstr "Tạo danh mục" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "Được tạo vào {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "Được tạo bởi {0}" @@ -5569,7 +5568,7 @@ msgstr "Hình ảnh sau khi cắt quá lớn. Vui lòng chọn vùng nhỏ hơn msgid "Current Community" msgstr "Cộng đồng hiện tại" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "Thiết bị hiện tại" @@ -5606,7 +5605,7 @@ msgstr "Đang mắc kẹt ở năm 1885, hiển thị ngoại tuyến" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "Hiện tại: {mutedText}" @@ -5782,7 +5781,7 @@ msgstr "Nguy hiểm phụ" msgid "Danger secondary clicked!" msgstr "Đã nhấn nút nguy hiểm phụ!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "Vùng nguy hiểm" @@ -5991,10 +5990,10 @@ 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:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "Xóa tất cả tin nhắn của tôi" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "Xóa ứng dụng" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "Xóa tệp đính kèm" @@ -6063,7 +6062,7 @@ msgstr "Xóa tệp đính kèm" msgid "Delete Attachment" msgstr "Xóa tệp đính kèm" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "Xóa danh mục" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "Xóa kênh" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "Xóa nội dung phương tiện" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "Xóa tin nhắn" @@ -6215,7 +6214,7 @@ msgstr "Mật" msgid "Dense layout" msgstr "Giao diện mật" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "Đã triển khai" @@ -6281,7 +6280,7 @@ msgstr "Kênh đích" msgid "Destination URL:" msgstr "URL đích:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "Biểu ngữ tách rời" @@ -6362,7 +6361,7 @@ msgstr "Kích thước khác nhau (Hỗ trợ trạng thái)" msgid "Different Sizes & Member Counts" msgstr "Kích thước và số lượng thành viên khác nhau" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "tin nhắn trực tiếp" @@ -6541,7 +6540,7 @@ msgstr "Vô hiệu hóa tài khoản sẽ đăng xuất bạn khỏi mọi phiê msgid "Disallow @mention." msgstr "Không cho phép đề cập @." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "Không cho phép tài khoản chưa xác thực" @@ -6747,7 +6746,7 @@ msgstr "Đừng hiển thị xem trước tin nhắn trong danh sách DM" msgid "Don't show this again" msgstr "Đừng hiển thị lại" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "Đừng hiển thị chỉ báo gõ trong danh sách kênh" @@ -6760,7 +6759,7 @@ msgstr "Đừng hiển thị chỉ báo gõ trong danh sách kênh" msgid "Done" msgstr "Hoàn tất" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "Chỉnh sửa hạng mục" msgid "Edit Channel" msgstr "Chỉnh sửa kênh" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "Chỉnh sửa ghi đè cho vai trò và thành viên trong kênh này." #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "Ảnh nền nhúng" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "Ảnh nền nhúng không thể là ảnh động. Vui lòng dùng JPEG, PNG hoặc WebP." -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "Âm thanh nhúng" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "Tên biểu tượng phải có ít nhất 2 ký tự và chỉ chứa chữ số, chữ cái và dấu gạch dưới. Các loại tệp được phép: JPEG, PNG, WebP, GIF. Chúng tôi nén ảnh về kích thước 128x128 pixel. Kích thước tối đa: {0} KB cho mỗi biểu tượng." #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "Gói biểu tượng cảm xúc" @@ -7473,7 +7472,7 @@ msgstr "Nhập số điện thoại" msgid "Enter picture-in-picture" msgstr "Vào chế độ hình trong hình" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "Bật chế độ chọn lựa" @@ -7536,7 +7535,7 @@ msgstr "Nhập email mới mà bạn muốn dùng. Chúng tôi sẽ gửi mã đ msgid "Enter the SMS code you received." msgstr "Nhập mã SMS bạn nhận được." -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "nhấn Enter để <0><1>lưu" @@ -7604,7 +7603,7 @@ msgstr "Lỗi khi hiển thị LaTeX: {0}" msgid "Escape key exits keyboard mode" msgstr "Phím Escape thoát chế độ bàn phím" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "nhấn Escape để <0><1>hủy" @@ -7667,7 +7666,7 @@ msgstr "Thoát chế độ hình trong hình" msgid "Exit Preview" msgstr "Thoát xem trước" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "Thoát chế độ chọn" @@ -7701,7 +7700,7 @@ msgstr "Đã hết hạn (trong vòng 30 ngày)" msgid "Expired {absolute}" msgstr "Hết hạn {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "Hết hạn từ {earliest} đến {latest}" @@ -7709,7 +7708,7 @@ msgstr "Hết hạn từ {earliest} đến {latest}" msgid "Expired on {date}" msgstr "Hết hạn vào {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "Hết hạn vào {earliest}" @@ -7722,7 +7721,7 @@ msgstr "Hết hạn" msgid "Expires {absolute} ({relativeText})" msgstr "Hết hạn {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "Hết hạn từ {earliest} đến {latest}" @@ -7730,7 +7729,7 @@ msgstr "Hết hạn từ {earliest} đến {latest}" msgid "Expires on {date}" msgstr "Hết hạn vào {date}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "Hết hạn vào {earliest}" @@ -7766,7 +7765,7 @@ msgstr "Gói biểu cảm là tính năng của Plutonium" msgid "Expression picker categories" msgstr "Danh mục chọn biểu cảm" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "Xóa biểu cảm" @@ -7839,10 +7838,6 @@ msgstr "Không thể sao chép vào khay nhớ tạm" msgid "Failed to copy URL" msgstr "Không thể sao chép URL" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "Không thể tạo ứng dụng. Vui lòng kiểm tra thông tin và thử lại." - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "Không thể tạo vai trò" @@ -8100,7 +8095,7 @@ msgstr "Không thể thu hồi lệnh cấm. Vui lòng thử lại." msgid "Failed to revoke invite" msgstr "Không thể thu hồi lời mời" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "Không thể xoay. Vui lòng thử lại." @@ -8413,7 +8408,7 @@ msgstr "Bạn bè thể thao" msgid "Flags" msgstr "Cờ" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "Tên kênh văn bản linh hoạt" @@ -8577,7 +8572,7 @@ msgstr "Bạn bè mê ẩm thực" msgid "For 1 hour" msgstr "Trong 1 giờ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "Trong 1 giờ" msgid "For 15 minutes" msgstr "Trong 15 phút" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "Trong 15 phút" msgid "For 24 hours" msgstr "Trong 24 giờ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "Trong 3 ngày" msgid "For 3 hours" msgstr "Trong 3 giờ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "Trong 3 giờ" msgid "For 8 hours" msgstr "Trong 8 giờ" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "Quên đăng ký" msgid "Forgot Password" msgstr "Quên mật khẩu" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "Quên mật khẩu của bạn?" @@ -8795,7 +8790,7 @@ msgstr "Tiến {DEFAULT_SEEK_AMOUNT} giây" msgid "Forward Message" msgstr "Chuyển tiếp tin nhắn" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "Đã chuyển tiếp" @@ -9065,7 +9060,7 @@ msgstr "Tải ứng dụng Fluxer máy tính để dùng tính năng nhấn đ #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "Quay lại kênh văn bản đã có tiêu điểm trước đó" msgid "Go forward in navigation history" msgstr "Tiến tới trong lịch sử điều hướng" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "Đến Cộng đồng" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "Lời mời nhóm" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "Tin nhắn nhóm" @@ -9548,7 +9543,7 @@ msgstr "Này {username}, chào mừng! Bạn có thể đạt được mọi đi msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "Này {username}! Khi đạt 88mph, bạn sẽ thấy chuyện cực kỳ hoành tráng!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "Ẩn" @@ -9569,7 +9564,7 @@ msgstr "Ẩn mục yêu thích" msgid "Hide Join Messages" msgstr "Ẩn tin nhắn tham gia" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "Ẩn gợi ý bàn phím trong chú giải công cụ" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "Ẩn các kênh tắt tiếng" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "Nếu bạn muốn xuất dữ liệu hoặc xóa tin nhắn trước, hãy vào phần Bảng điều khiển quyền riêng tư trong Cài đặt người dùng trước khi tiếp tục." #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "hình ảnh" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "Đầu vào có biểu tượng" msgid "Insert emoji" msgstr "Chèn biểu tượng" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "Cài gói biểu tượng" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "Cài gói nhãn dán" @@ -10153,7 +10148,7 @@ msgstr "Đã cài vào {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "Cài gói biểu tượng và nhãn dán cần đăng ký cao cấp." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "Lời mời ngay lập tức" @@ -10286,7 +10281,7 @@ msgstr "Cài đặt liên kết mời" msgid "Invite Links" msgstr "Liên kết mời" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "Cửa sổ lời mời" msgid "Invite modal preview" msgstr "Xem trước cửa sổ lời mời" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "Đã gửi lời mời cho {0}" msgid "Invite sent to {guildName}" msgstr "Lời mời đã được gửi đến {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "Trang chào mời" @@ -10354,7 +10349,7 @@ msgstr "Mời đến {0}" msgid "Invite to Community" msgstr "Mời vào cộng đồng" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "Lời mời không khả dụng" @@ -10369,12 +10364,12 @@ msgstr "Được mời bởi {0}." #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "Được mời bởi {0}#{1}" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "Được mời bởi {inviterTag}" @@ -10410,12 +10405,12 @@ msgstr "Hiện lời mời đang bị tạm dừng trong cộng đồng này" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "Lời mời bị khóa cho cộng đồng xem trước. Xác nhận tài khoản bằng cách đặt email và mật khẩu để bật lời mời." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "Lời mời bị vô hiệu" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "Lời mời bị vô hiệu" @@ -10482,13 +10477,13 @@ msgstr "Tham gia một cộng đồng có nhãn dán để bắt đầu!" msgid "Join call" msgstr "Tham gia cuộc gọi" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "Tham gia cộng đồng" @@ -10497,15 +10492,23 @@ msgstr "Tham gia cộng đồng" msgid "Join community form" msgstr "Biểu mẫu tham gia cộng đồng" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "Tham gia Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "Tham gia Fluxer HQ để trò chuyện với đội ngũ và cập nhật thông tin mới nhất!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "Tham gia nhóm" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "Tham gia DM nhóm" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "Nhận thông báo tham gia" @@ -10620,7 +10623,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:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "Nhảy đến hiện tại" @@ -10690,7 +10693,7 @@ msgstr "Phím tắt" msgid "Keyboard" msgstr "Bàn phím" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "Gợi ý bàn phím" @@ -10815,7 +10818,7 @@ msgstr "Tìm hiểu về Plutonium" msgid "Leave blank for a random username" msgstr "Để trống để lấy tên người dùng ngẫu nhiên" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "Rời nhanh vậy?" msgid "Left" msgstr "Đã rời" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "Căn trái" @@ -10945,7 +10948,7 @@ msgstr "liên kết" msgid "Link" msgstr "Liên kết" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "Liên kết kênh" @@ -11027,7 +11030,7 @@ msgstr "Đang tải danh sách cấm..." msgid "Loading communities..." msgstr "Đang tải các cộng đồng..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "Đang tải hình ảnh" @@ -11039,8 +11042,8 @@ msgstr "Đang tải lời mời..." msgid "Loading more..." msgstr "Đang tải thêm..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "Chỗ giữ chỗ đang tải" @@ -11064,7 +11067,7 @@ msgstr "Đang tải chủ đề..." msgid "Loading verification methods..." msgstr "Đang tải phương thức xác minh..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "Đang tải: {alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "Tắt tiếng cục bộ" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "Đăng nhập bằng trình duyệt, sau đó nhập mã hiển thị đ msgid "Log in via browser" msgstr "Đăng nhập qua trình duyệt" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "Đăng nhập qua trình duyệt hoặc phiên bản tùy chỉnh" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "Đăng xuất" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "Đăng xuất {0} thiết bị" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "Đăng xuất {sessionCount} thiết bị" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "Đăng xuất 1 thiết bị" @@ -11141,7 +11144,7 @@ msgstr "Đăng xuất khỏi tất cả thiết bị" msgid "Log out all other devices" msgstr "Đăng xuất tất cả thiết bị khác" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "Đăng xuất tất cả thiết bị khác" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "Đánh dấu 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "đề cập:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "đề cập:" msgid "Message" msgstr "Tin nhắn" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "Tin nhắn " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "Tin nhắn @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "Tin nhắn #" @@ -11838,7 +11842,7 @@ msgstr "Tin nhắn & Phương tiện" msgid "Messages Deleted" msgstr "Tin nhắn đã xóa" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "Không tải được tin nhắn" @@ -12016,7 +12020,7 @@ msgstr "Thêm" msgid "More Actions" msgstr "Thêm thao tác" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "Thêm vị trí emoji" @@ -12028,7 +12032,7 @@ msgstr "Thêm tùy chọn" msgid "More Options" msgstr "Thêm tùy chọn" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "Thêm vị trí nhãn dán" @@ -12162,8 +12166,8 @@ msgstr "Tắt âm kênh" msgid "Mute Channel" msgstr "Tắt âm kênh" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "Đã tắt âm đến {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "Tắt âm một cộng đồng sẽ ngăn chỉ số chưa đọc và thông báo xuất hiện trừ khi bạn được đề cập" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "Cộng đồng tương hỗ ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "Bạn bè tương hỗ ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "Nhóm tương hỗ ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "Ứng dụng của tôi" @@ -12247,7 +12251,7 @@ msgstr "Nhãn dán tuyệt vời của tôi" msgid "My Category" msgstr "Hạng mục của tôi" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "Thiết bị của tôi" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "Điều hướng" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "Cần tài khoản?" @@ -12364,7 +12368,7 @@ msgstr "Mạng" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "Lỗi mạng" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "Không có banner cộng đồng" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "Không có mô tả nào." @@ -12684,15 +12688,15 @@ msgstr "Không phát hiện mic" msgid "No more scheduled messages." msgstr "Không còn tin nhắn đã lên lịch." -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "Không tìm thấy cộng đồng chung nào." -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "Không tìm thấy bạn chung nào." -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "Không tìm thấy nhóm chung nào." @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "Không phải thứ bạn thích? Bạn có thể tắt tính năng này bất cứ lúc nào." #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "Ghi đè thông báo" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "Thông báo người dùng với vai trò này có quyền xem kênh nà msgid "now" msgstr "ngay bây giờ" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "Bây giờ" @@ -13090,7 +13094,7 @@ msgstr "Khi nhấn" msgid "on:" msgstr "bật:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "Sau khi xóa, ứng dụng và thông tin đăng nhập của nó sẽ bị gỡ bỏ vĩnh viễn." @@ -13252,7 +13256,7 @@ msgstr "Chỉ mở DM" msgid "Open Fluxer" msgstr "Mở Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "Mở ảnh ở chế độ toàn màn hình" @@ -13368,7 +13372,7 @@ msgstr "Mở cộng đồng Visionary" msgid "Opening..." msgstr "Đang mở..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "Điều hành viên" @@ -13441,7 +13445,7 @@ msgstr "Tin nhắn gốc đã bị xóa" msgid "Other" msgstr "Khác" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "Thiết bị khác" @@ -13501,7 +13505,7 @@ msgstr "Ghi đè trạng thái tài khoản chưa nhận" msgid "Override unread gift inventory status" msgstr "Ghi đè trạng thái tồn kho quà chưa đọc" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "Tổng quan" @@ -13695,7 +13699,7 @@ msgstr "Quyền" msgid "Permissions granted" msgstr "Đã cấp quyền" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "Ghi chú cá nhân" @@ -13868,12 +13872,12 @@ msgstr "Phát" msgid "Play animated emojis" msgstr "Phát biểu tượng cảm xúc động" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "Phát âm thanh" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "Vui lòng dán liên kết tin nhắn bạn đang báo cáo." msgid "Please provide an email address." msgstr "Vui lòng cung cấp địa chỉ email." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "Vui lòng thử lại hoặc quay lại danh sách ứng dụng." @@ -13989,7 +13993,7 @@ msgstr "Ưu đãi Plutonium" msgid "Plutonium Subscription" msgstr "Đăng ký Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "Bảng điều khiển quyền riêng tư" msgid "Privacy Policy" msgstr "Chính sách quyền riêng tư" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "Xóa nhãn dán này khỏi bộ nhớ và CDN" msgid "Push Notification Inactive Timeout" msgstr "Thời gian chờ thông báo đẩy không hoạt động" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "Thông báo đẩy" @@ -14412,7 +14416,7 @@ msgstr "Tương tác phản ứng bị tắt" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "Phản ứng" @@ -14583,7 +14587,7 @@ msgstr "Làm mới đăng ký đẩy" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "Tạo lại" @@ -14591,19 +14595,19 @@ msgstr "Tạo lại" msgid "Regenerate backup codes" msgstr "Tạo lại mã dự phòng" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "Tạo lại token bot?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "Tạo lại mật khẩu bí mật của khách hàng?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "Việc tạo lại sẽ làm vô hiệu mật khẩu hiện tại. Cập nhật mọi mã sử dụng giá trị cũ." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "Việc tạo lại sẽ làm vô hiệu token hiện tại. Cập nhật mọi mã sử dụng giá trị cũ." @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "Xóa bộ lọc" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "Xóa bộ lọc" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "Báo cáo đã gửi thành công. Đội An toàn sẽ xem xét sớm." #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "Báo cáo người dùng" @@ -15105,7 +15109,7 @@ msgstr "Phạm vi được yêu cầu" msgid "Require 2FA for moderation actions" msgstr "Yêu cầu 2FA cho hành động điều tiết" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "Yêu cầu nhấp đôi để tham gia kênh thoại" @@ -15144,7 +15148,7 @@ msgstr "Yêu cầu mọi điều kiện trong cấp Trung bình, cộng thêm l msgid "Requires Plutonium" msgstr "Yêu cầu Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "Đặt lại lịch tin nhắn" @@ -15290,11 +15294,11 @@ msgstr "Đăng ký lại" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "Thử lại" @@ -15359,7 +15363,7 @@ msgstr "Thu hồi" msgid "Revoke Ban" msgstr "Thu hồi cấm" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "Thu hồi thiết bị" @@ -15386,7 +15390,7 @@ msgstr "Tua lại {DEFAULT_SEEK_AMOUNT} giây" msgid "Right" msgstr "Phải" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "Canh phải" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "Tìm thành viên..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "Tìm tin nhắn" @@ -15834,13 +15838,13 @@ msgstr "Tìm vai trò hoặc thành viên..." msgid "Search saved media" msgstr "Tìm phương tiện đã lưu" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "Phạm vi tìm kiếm" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "Phạm vi tìm kiếm: {0}" @@ -15857,7 +15861,7 @@ msgstr "Tìm cài đặt..." msgid "Search stickers..." msgstr "Tìm nhãn dán..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "Gợi ý tìm kiếm" @@ -15938,7 +15942,7 @@ msgstr "Khóa Bảo mật / Passkey" msgid "Security key verification failed. Please try again." msgstr "Xác minh khóa bảo mật thất bại. Vui lòng thử lại." -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "Xem tất cả thiết bị đang đăng nhập tài khoản của bạn. Thu hồi bất kỳ phiên nào bạn không nhận ra." @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "Chọn tài khoản" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "Chọn tất cả" @@ -16040,7 +16044,7 @@ msgstr "Chọn kích thước phương tiện cho nội dung nhúng từ liên k msgid "Select media size for uploaded attachments" msgstr "Chọn kích thước phương tiện cho tệp đính kèm đã tải lên" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "Chọn chế độ xem chung" @@ -16151,9 +16155,9 @@ msgstr "Gửi mã" msgid "Send Code" msgstr "Gửi mã" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "Gửi lời mời kết bạn" @@ -16170,7 +16174,7 @@ msgstr "Gửi tin nhắn · Nhấp phải để lên lịch" msgid "Send Message Disabled" msgstr "Gửi tin nhắn bị vô hiệu hóa" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "Gửi tin nhắn" @@ -16624,7 +16628,7 @@ msgstr "Hiển thị nút Quà" msgid "Show inline images and videos" msgstr "Hiển thị hình ảnh và video nội tuyến" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "Chỉ hiển thị chỉ báo đang gõ mà không có ảnh đại diện" @@ -16788,11 +16792,11 @@ msgstr "Hiển thị quà đã được đổi" msgid "Show this role separately" msgstr "Hiển thị vai trò này riêng biệt" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "Hiển thị chỉ báo gõ kèm ảnh đại diện người dùng trong danh sách kênh" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "Hiển thị đang gõ trên kênh đã chọn" @@ -17151,7 +17155,7 @@ msgstr "Tiếng Tây Ban Nha (Tây Ban Nha)" msgid "Speak" msgstr "Nói" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "Đọc tin nhắn" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "Bắt đầu chia sẻ" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "Bắt đầu cuộc gọi video" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "Bắt đầu cuộc gọi thoại" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "Mật độ nhãn dán" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "Bộ nhãn dán" @@ -17427,7 +17431,7 @@ msgstr "Ngừng reo" msgid "Stop Sharing" msgstr "Ngừng chia sẻ" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "Ngừng nói" @@ -17570,19 +17574,19 @@ 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: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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "Chặn nhúng" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "Văn bản" msgid "Text (NSFW)" msgstr "Văn bản (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "Kênh văn bản" @@ -18028,10 +18032,10 @@ msgstr "Hành động này yêu cầu xác minh để tiếp tục." msgid "This application" msgstr "Ứng dụng này" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "Tệp đính kèm này đã hết hạn" @@ -18039,7 +18043,7 @@ msgstr "Tệp đính kèm này đã hết hạn" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "Bot này đang yêu cầu quyền Administrator. Chúng tôi không khuyên cấp quyền này cho ứng dụng trên môi trường sản xuất trừ khi bạn hoàn toàn tin tưởng nhà phát triển. Hãy yêu cầu họ xin tập quyền hạn chế hơn. Đóng trang nếu bạn không chắc chắn." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "Điều này không thể hoàn tác. Xóa ứng dụng cũng xóa bot của nó." @@ -18101,7 +18105,7 @@ msgstr "Cộng đồng này đã đạt giới hạn thành viên tối đa và msgid "This community has temporarily disabled invites." msgstr "Cộng đồng này đã tạm thời tắt lời mời." -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "Cộng đồng này đã tạm thời tắt lời mời. Bạn có thể thử lại sau." @@ -18178,7 +18182,7 @@ msgstr "Lời mời này có lượt dùng không giới hạn." msgid "This invite link never expires." msgstr "Liên kết mời này không bao giờ hết hạn." -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "Đây là khởi đầu của <0>{displayName}. Thêm bạn bè để bắt đầu trò chuyện!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "Đây là phần bắt đầu lịch sử tin nhắn trực tiếp với <0>{0}." @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "Đây là tin nhắn @silent." #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 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." @@ -18351,7 +18355,7 @@ msgstr "Điều này sẽ tạo ra một vết nứt trong không-thời gian v msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "Điều này sẽ ẩn tất cả thành phần giao diện liên quan đến Ưa thích bao gồm nút và mục menu. Các mục ưa thích hiện có sẽ được giữ và có thể bật lại bất cứ lúc nào từ <0>Cài đặt người dùng → Giao diện → Ưa thích." -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "Điều này sẽ sửa tin nhắn đã lên lịch thay vì gửi ngay." @@ -18387,8 +18391,8 @@ msgstr "Điều này sẽ xóa phiên đã lưu cho tài khoản này." msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "Điều này sẽ thay thế giao diện tùy chỉnh hiện tại của bạn. Bạn có thể chỉnh sửa sau trong Cài đặt người dùng." -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "Ảnh thu nhỏ cho {title}" @@ -18485,7 +18489,7 @@ msgstr "Thông báo xuất hiện ở giữa phía trên màn hình." msgid "today" msgstr "hôm nay" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "Hôm nay" @@ -18710,7 +18714,7 @@ 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:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "Thử lại" @@ -18737,7 +18741,7 @@ msgstr "Thử tên khác hoặc kiểm tra chính tả." msgid "Try another search term" msgstr "Thử thuật ngữ tìm kiếm khác" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "Hãy thử yêu cầu lời mời mới." @@ -18864,7 +18868,7 @@ msgstr "Chọn tỷ lệ" msgid "Type your message here..." msgstr "Nhập tin nhắn vào đây..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "Sự kiện gõ" @@ -18877,11 +18881,11 @@ msgstr "Hiển thị đang gõ" msgid "Typing Indicator" msgstr "Chỉ báo đang nhập" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "Hiển thị đang gõ + ảnh đại diện" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "Chỉ hiển thị đang gõ" @@ -18961,11 +18965,11 @@ msgstr "Không thể bắt đầu cuộc gọi" msgid "Unable to start email change" msgstr "Không thể bắt đầu thay đổi email" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "Không khả dụng cho tất cả mọi người" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "Chỉ nhân viên mới thấy" @@ -18978,7 +18982,7 @@ msgstr "Chỉ nhân viên mới thấy" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "Bỏ chặn người dùng này trước khi gửi lời mời kết b #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "Bỏ chặn người dùng" @@ -19165,7 +19169,7 @@ msgstr "Lỗi không xác định" msgid "Unknown Gift" msgstr "Quà không xác định" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "Lời mời không xác định" @@ -19205,11 +19209,11 @@ msgstr "vai-trò-không-xác-định" msgid "Unlimited" msgstr "Không giới hạn" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "Biểu cảm không giới hạn" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "Nhãn dán không giới hạn" @@ -19254,7 +19258,7 @@ msgstr "Mở khóa nhãn dán trong DM với Plutonium" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "Bỏ tắt tiếng hạng mục" msgid "Unmute Channel" msgstr "Bỏ tắt tiếng kênh" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "Bỏ tắt tiếng yêu thích" msgid "Unmute User" msgstr "Bỏ tắt tiếng người dùng" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "Không tên" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "Cho đến khi tôi thay đổi" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "Email chưa xác minh" msgid "Up to 4K/60fps" msgstr "Lên đến 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "Cập nhật" @@ -19629,7 +19633,7 @@ msgstr "Tải lên âm thanh vào cửa" msgid "Upload Failed" msgstr "Tải lên thất bại" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "Tải lên tệp" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "Người dùng đã chuyển kênh" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "Hồ sơ người dùng" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "Hồ sơ người dùng: {tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "Các giá trị" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "URL tùy chỉnh" @@ -20059,14 +20063,14 @@ msgstr "Có thể cần xác minh trước khi xem mã dự phòng của bạn." #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "Cộng đồng đã xác minh" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "Guild đã xác minh" @@ -20167,8 +20171,8 @@ msgstr "Chất lượng video" msgid "Video Settings" msgstr "Cài đặt video" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "Ảnh thu nhỏ video" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "Xem mã" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "Xem hồ sơ cộng đồng" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "Xem kho quà" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "Xem hồ sơ toàn cầu" @@ -20329,7 +20333,7 @@ msgstr "Chọn loại vi phạm" msgid "Violent or Graphic Content" msgstr "Nội dung bạo lực hoặc gây sốc" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "Giọng VIP" @@ -20341,7 +20345,7 @@ msgstr "Nút hiển thị" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "Các cuộc gọi thoại" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "Kênh thoại" @@ -20442,7 +20446,7 @@ msgstr "Kênh thoại" msgid "Voice Channel Full" msgstr "Kênh thoại đầy" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "Hành vi tham gia kênh thoại" @@ -20559,7 +20563,7 @@ msgstr "Chúng tôi không thể tham gia cộng đồng này vào lúc này." msgid "We couldn't load the invites at this time." msgstr "Chúng tôi không thể tải lời mời vào lúc này." -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "Chúng tôi không thể tải ứng dụng này" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "Chúng tôi gặp khó khăn khi kết nối đến máy chủ của Fluxer. Có thể là do mạng tạm thời hoặc bảo trì theo lịch." #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "Chúng tôi gặp khó khăn khi kết nối đến không-thời gian. Vui lòng kiểm tra kết nối và thử lại." @@ -20759,7 +20763,7 @@ msgstr "Những chiến binh cuối tuần" msgid "Welcome and system messages will appear here." msgstr "Tin nhắn chào mừng và hệ thống sẽ xuất hiện ở đây." -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "Chào mừng bạn trở lại" @@ -20820,7 +20824,7 @@ msgstr "Có gì mới?" msgid "What's included in your export:" msgstr "Những gì bao gồm trong bản xuất của bạn:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "Khi tắt (mặc định), chỉ báo đang nhập sẽ không xuất hiện trên kênh bạn đang xem." @@ -20836,7 +20840,7 @@ msgstr "Khi bật, chạm nhanh vào phím tắt nhấn để nói sẽ giữ mi msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "Khi bật, sẽ hiển thị các menu gỡ lỗi trong toàn ứng dụng để kiểm tra và sao chép đối tượng JSON thô của cấu trúc dữ liệu nội bộ như tin nhắn, kênh, người dùng và cộng đồng. Cũng bao gồm công cụ gỡ lỗi hiệu năng trình phân tích cú pháp Fluxer Markdown và AST cho bất kỳ tin nhắn nào." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "Khi bật, huy hiệu phím tắt sẽ bị ẩn trong tooltip." @@ -20868,7 +20872,7 @@ msgstr "Khi bật, sử dụng vùng ngôn ngữ máy tính của bạn để x msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "Khi bật, bạn có thể đánh dấu kênh yêu thích và chúng sẽ xuất hiện trong mục Yêu thích. Khi tắt, tất cả yếu tố giao diện liên quan đến yêu thích (nút, mục menu) sẽ bị ẩn. Các yêu thích hiện có của bạn vẫn được giữ." -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "Khi bật, bạn cần nhấp đôi vào kênh thoại để tham gia. Khi tắt (mặc định), nhấp một lần sẽ tham gia ngay." @@ -20970,7 +20974,7 @@ msgstr "Hàng năm {yearlyPrice}" msgid "yesterday" msgstr "hôm qua" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "Hôm qua" @@ -21013,7 +21017,7 @@ msgstr "Bạn đang chỉnh sửa hồ sơ theo cộng đồng. Hồ sơ này s msgid "You are in slowmode. Please wait before sending another message." msgstr "Bạn đang ở chế độ chậm. Vui lòng đợi trước khi gửi tin nhắn tiếp theo." -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "Bạn giờ là nhà phát triển!" @@ -21113,7 +21117,7 @@ msgstr "Bạn có thể dùng liên kết và Markdown để định dạng văn msgid "You can't add new reactions while you're on timeout." msgstr "Bạn không thể thêm phản ứng mới khi đang bị timeout." -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "Bạn không thể kết bạn với chính mình" @@ -21128,7 +21132,7 @@ msgstr "Bạn không thể tương tác với phản ứng trong kết quả tì msgid "You can't join while you're on timeout." msgstr "Bạn không thể tham gia khi đang bị timeout." -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "Bạn không thể bật lại tiếng vì bạn đã bị người đi 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." -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 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." @@ -21439,7 +21443,7 @@ msgstr "Bạn sẽ hiện là ngoại tuyến" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "Bạn sẽ chọn các quyền bot nhận ở màn hình tiếp theo." -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "Bạn sẽ phải đăng nhập lại trên tất cả thiết bị đã đăng xuất" @@ -21508,7 +21512,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:912 +#: src/components/channel/Messages.tsx:923 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 2498ede9..75968a0e 100644 --- a/fluxer_app/src/locales/zh-CN/messages.po +++ b/fluxer_app/src/locales/zh-CN/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# 个项目} other {# 个项目}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# 位成员} other {# 位成员}}" @@ -566,18 +566,18 @@ msgstr "{label} 图像不能动画。请使用 JPEG、PNG 或 WebP。" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} 位成员" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} 位成员" @@ -612,11 +612,11 @@ msgstr "{minutes}分钟和{seconds}秒" msgid "{minutes} minutes and 1 second" msgstr "{minutes}分钟和1秒" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} 个共同社区" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} 个共同社区" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} 位参与者在通话中" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} 在线" @@ -650,15 +650,15 @@ msgstr "剩余 {remaining} 个字符" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "剩余 {remaining} 个字符。获取 Plutonium 以书写最多 {premiumMaxLength} 个字符。" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} 位成员" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} 位成员" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} 在线" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value}ms" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone 提及" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "强调色" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "接受" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "接受好友请求" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "接受邀请" @@ -1364,8 +1364,8 @@ msgstr "接受邀请" msgid "Accept the incoming call" msgstr "接听来电" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "接受此邀请将自动安装该包。" @@ -1594,7 +1594,7 @@ msgstr "添加收藏频道" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "已允许 {0}。" msgid "Already have an account?" msgstr "已有账户?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "已加入" @@ -2191,7 +2191,7 @@ msgstr "动画头像和横幅" msgid "Animated Avatars Require Plutonium" msgstr "动画头像需要 Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "动画横幅" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "动画表情 ({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "动画 GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "动画 GIF 视频" @@ -2219,7 +2219,7 @@ msgstr "动画 GIF 视频" msgid "Animated GIF Video" msgstr "动画 GIF 视频" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "动画图标" @@ -2277,7 +2277,7 @@ msgstr "任何人都可以@提及此角色。拥有“使用@everyone/@here和@r msgid "API Endpoint" msgstr "API 端点" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "应用信息" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "应用名称" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "应用名称是必填项" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "确定要屏蔽此消息中的所有链接嵌入内容吗?此操作将隐藏此消息中的所有嵌入内容。" @@ -2603,7 +2602,7 @@ msgstr "附件 {0}" msgid "Attachment Actions" msgstr "附件操作" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "附件已过期" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "自动补全" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "自动" @@ -2859,7 +2858,7 @@ msgstr "返回" msgid "Back to Applications" msgstr "返回应用" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "返回列表" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "返回登录" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "返回覆盖设置" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "返回角色" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "返回设置" @@ -3003,7 +3002,7 @@ msgstr "被封禁用户" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "横幅" @@ -3096,7 +3095,7 @@ msgstr "个人简介字符限制" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "请求的机器人作用域" msgid "Bot token" msgstr "机器人令牌" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "机器人令牌已重新生成。请更新任何使用旧令牌的代码。" @@ -3435,7 +3434,7 @@ msgstr "摄像头设置" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "摄像头设置" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "摄像头设置" msgid "Cancel" msgstr "取消" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "取消好友请求" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "注意!您有未保存的更改。" #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "类别" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "类别名称" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "类别设置" @@ -3617,7 +3616,7 @@ msgstr "警告" msgid "Center" msgstr "居中" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "已居中" @@ -3765,7 +3764,7 @@ msgstr "已将比特率更改为 {0}。" msgid "Changed the voice region to {0}." msgstr "已将语音区域更改为 {0}。" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "频道" @@ -3828,11 +3827,11 @@ msgstr "频道ID已复制到剪贴板" msgid "Channel link copied" msgstr "频道链接已复制" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "频道列表输入指示器模式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "频道列表输入指示器" @@ -3891,7 +3890,7 @@ msgstr "频道已从收藏中移除" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "频道设置" @@ -4052,7 +4051,7 @@ msgstr "选择应用内时间的显示方式。" msgid "Choose how typing indicators appear in the channel list" msgstr "选择输入指示器在频道列表中的显示方式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "选择当有人在频道内输入时,频道列表中输入指示器的显示方式。" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "索取您的账户以兑换此礼物。" #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "索取您的账户以发送好友请求。" @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "清除权限" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "清除搜索" msgid "Clear search input" msgstr "清除搜索输入" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "清除选择" @@ -4314,7 +4313,7 @@ msgstr "点击任意声音旁边的上传图标,使用您自己的音频文件 msgid "Click the verification link in the email." msgstr "点击邮件中的验证链接。" -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "点击添加备注" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "点击领取您的礼物!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "点击复制" @@ -4388,7 +4387,7 @@ msgstr "点击查看所有反应" msgid "Client secret" msgstr "客户端密钥" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "客户端密钥已重新生成。请更新任何使用旧密钥的代码。" @@ -4649,8 +4648,8 @@ msgstr "社区基于受保护特征宣扬仇恨" msgid "Community promotes or facilitates illegal activities" msgstr "社区宣扬或协助非法活动" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "上下文菜单" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "上下文菜单可通过左键单击(在按钮上)或右键单击(在其他元素上)打开。此示例展示了各种菜单项,包括复选框、单选按钮、滑块和子菜单。" -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "控制聊天中网站链接的预览方式" msgid "Control how you join voice channels" msgstr "控制你加入语音频道的方式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "控制你如何加入社区中的语音频道。" @@ -5012,7 +5011,7 @@ msgstr "控制贴纸动画" msgid "Control the visibility of favorites throughout the app." msgstr "控制收藏夹在应用中的可见性。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "控制键盘快捷键提示是否在工具提示中显示。" @@ -5071,7 +5070,7 @@ msgstr "已复制" msgid "Copied to clipboard" msgstr "已复制到剪贴板" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "已复制URL到剪贴板" @@ -5149,7 +5148,7 @@ msgstr "复制文件链接" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "复制FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "复制FluxerTag" msgid "Copy GIF" msgstr "复制GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "复制服务器ID" @@ -5222,7 +5221,7 @@ msgstr "复制文本" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "温馨" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "创建" @@ -5331,14 +5330,14 @@ msgstr "为您的账户创建和管理应用程序与机器人。" msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "使用Fluxer Plutonium创建并分享自定义表情符号和贴纸包。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "创建应用程序" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "创建应用程序" msgid "Create Category" msgstr "创建类别" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "创建于 {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "由 {0} 创建" @@ -5569,7 +5568,7 @@ msgstr "裁剪后的图像太大。请选择更小的区域或更小的文件( msgid "Current Community" msgstr "当前社区" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "当前设备" @@ -5606,7 +5605,7 @@ msgstr "当前困在1885年,显示为离线" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "当前:{mutedText}" @@ -5782,7 +5781,7 @@ msgstr "次要危险" msgid "Danger secondary clicked!" msgstr "次要危险已点击!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "危险区域" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "默认为移动设备关闭以节省电量和数据使用。" #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "删除我的所有消息" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "删除应用" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "删除附件" @@ -6063,7 +6062,7 @@ msgstr "删除附件" msgid "Delete Attachment" msgstr "删除附件" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "删除类别" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "删除频道" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "删除媒体" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "删除消息" @@ -6215,7 +6214,7 @@ msgstr "紧凑" msgid "Dense layout" msgstr "紧凑布局" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "已部署" @@ -6281,7 +6280,7 @@ msgstr "目标频道" msgid "Destination URL:" msgstr "目标URL:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "分离式横幅" @@ -6362,7 +6361,7 @@ msgstr "不同尺寸(支持状态)" msgid "Different Sizes & Member Counts" msgstr "不同尺寸和成员数量" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "私信" @@ -6541,7 +6540,7 @@ msgstr "禁用您的账户将注销所有会话。您随时可以重新登录来 msgid "Disallow @mention." msgstr "不允许@提及。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "不允许未认领账户" @@ -6747,7 +6746,7 @@ msgstr "不在私信列表中显示消息预览" msgid "Don't show this again" msgstr "不再显示此内容" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "不在频道列表中显示正在输入指示器" @@ -6760,7 +6759,7 @@ msgstr "不在频道列表中显示正在输入指示器" msgid "Done" msgstr "完成" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "编辑分类" msgid "Edit Channel" msgstr "编辑频道" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "编辑此频道中角色和成员的覆盖权限。" #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "嵌入启动画面" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "嵌入启动画面图像不能是动画。请使用JPEG、PNG或WebP。" -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "内嵌音频" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "表情符号名称长度至少为2个字符,只能包含字母数字字符和下划线。允许的文件类型:JPEG、PNG、WebP、GIF。我们将图像压缩至128x128像素。最大大小:每个表情符号{0} KB。" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "表情符号包" @@ -7473,7 +7472,7 @@ msgstr "输入手机号" msgid "Enter picture-in-picture" msgstr "进入画中画" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "进入选择模式" @@ -7536,7 +7535,7 @@ msgstr "输入你想使用的新邮箱。接下来我们会发送代码到那里 msgid "Enter the SMS code you received." msgstr "输入你收到的短信验证码。" -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "按回车键<0><1>保存" @@ -7604,7 +7603,7 @@ msgstr "渲染LaTeX时出错:{0}" msgid "Escape key exits keyboard mode" msgstr "按Esc键退出键盘模式" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "按Esc键<0><1>取消" @@ -7667,7 +7666,7 @@ msgstr "退出画中画" msgid "Exit Preview" msgstr "退出预览" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "退出选择模式" @@ -7701,7 +7700,7 @@ msgstr "已过期(30天内)" msgid "Expired {absolute}" msgstr "已过期 {absolute}" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "在 {earliest} 至 {latest} 之间过期" @@ -7709,7 +7708,7 @@ msgstr "在 {earliest} 至 {latest} 之间过期" msgid "Expired on {date}" msgstr "于 {date} 过期" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "于 {earliest} 过期" @@ -7722,7 +7721,7 @@ msgstr "到期时间" msgid "Expires {absolute} ({relativeText})" msgstr "到期时间 {absolute} ({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "在 {earliest} 至 {latest} 之间到期" @@ -7730,7 +7729,7 @@ msgstr "在 {earliest} 至 {latest} 之间到期" msgid "Expires on {date}" msgstr "于 {date} 到期" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "于 {earliest} 到期" @@ -7766,7 +7765,7 @@ msgstr "表情包是 Plutonium 功能" msgid "Expression picker categories" msgstr "表情选择器分类" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "表情清理" @@ -7839,10 +7838,6 @@ msgstr "复制到剪贴板失败" msgid "Failed to copy URL" msgstr "复制URL失败" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "创建应用程序失败。请检查输入并重试。" - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "创建角色失败" @@ -8100,7 +8095,7 @@ msgstr "撤销封禁失败。请重试。" msgid "Failed to revoke invite" msgstr "撤销邀请失败" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "旋转失败。请重试。" @@ -8413,7 +8408,7 @@ msgstr "健身好友" msgid "Flags" msgstr "旗帜" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "灵活的文本频道名称" @@ -8577,7 +8572,7 @@ msgstr "吃货朋友" msgid "For 1 hour" msgstr "1小时" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1小时" msgid "For 15 minutes" msgstr "15分钟" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15分钟" msgid "For 24 hours" msgstr "24小时" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3天" msgid "For 3 hours" msgstr "3小时" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3小时" msgid "For 8 hours" msgstr "8小时" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "忘记订阅" msgid "Forgot Password" msgstr "忘记密码" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "忘记密码了?" @@ -8795,7 +8790,7 @@ msgstr "快进{DEFAULT_SEEK_AMOUNT}秒" msgid "Forward Message" msgstr "转发消息" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "已转发" @@ -9065,7 +9060,7 @@ msgstr "获取 Fluxer 桌面应用,享受系统范围内的按键通话及其 #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "返回之前聚焦的文本频道" msgid "Go forward in navigation history" msgstr "在导航历史中前进" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "前往社区" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "群组邀请" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "群组消息" @@ -9548,7 +9543,7 @@ msgstr "嘿,{username},欢迎!你可以成就任何事。" msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "嘿,{username}!当它达到 88 英里/小时,你会看到些厉害的东西!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "已隐藏" @@ -9569,7 +9564,7 @@ msgstr "隐藏收藏" msgid "Hide Join Messages" msgstr "隐藏加入消息" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "在工具提示中隐藏键盘提示" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "隐藏已静音的频道" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "如果您想先导出数据或删除消息,请在继续前访问用户设置中的隐私仪表板。" #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "图片" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "带图标的输入项" msgid "Insert emoji" msgstr "插入表情符号" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "安装表情符号包" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "安装贴纸包" @@ -10153,7 +10148,7 @@ msgstr "安装于 {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "安装表情符号和贴纸包需要高级订阅。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "即时邀请" @@ -10286,7 +10281,7 @@ msgstr "邀请链接设置" msgid "Invite Links" msgstr "邀请链接" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "邀请模态框" msgid "Invite modal preview" msgstr "邀请模态框预览" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "已发送{0}的邀请" msgid "Invite sent to {guildName}" msgstr "已向{name}发送邀请" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "邀请闪屏" @@ -10354,7 +10349,7 @@ msgstr "邀请加入{0}" msgid "Invite to Community" msgstr "邀请加入社区" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "邀请不可用" @@ -10369,12 +10364,12 @@ msgstr "由{0}邀请。" #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "由{0}#{1}邀请" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "由{inviterTag}邀请" @@ -10410,12 +10405,12 @@ msgstr "该社区目前已暂停邀请功能" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "预览社区的邀请功能已锁定。通过设置邮箱和密码来认领您的账户以启用邀请。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "邀请已禁用" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "邀请已禁用" @@ -10482,13 +10477,13 @@ msgstr "加入一个有贴纸的社区来开始吧!" msgid "Join call" msgstr "加入通话" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "加入社区" @@ -10497,15 +10492,23 @@ msgstr "加入社区" msgid "Join community form" msgstr "加入社区表单" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "加入Fluxer总部" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "加入Fluxer总部,与团队聊天,及时了解最新动态!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "加入群组" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "加入群组私信" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "加入通知" @@ -10620,7 +10623,7 @@ msgstr "跳转到最早未读消息" msgid "Jump to page" msgstr "跳转到页面" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "跳转到当前" @@ -10690,7 +10693,7 @@ msgstr "按键绑定" msgid "Keyboard" msgstr "键盘" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "键盘提示" @@ -10815,7 +10818,7 @@ msgstr "了解 Plutonium" msgid "Leave blank for a random username" msgstr "留空以生成随机用户名" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "这么快就要离开?" msgid "Left" msgstr "已离开" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "左对齐" @@ -10945,7 +10948,7 @@ msgstr "链接" msgid "Link" msgstr "链接" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "链接频道" @@ -11027,7 +11030,7 @@ msgstr "加载封禁列表..." msgid "Loading communities..." msgstr "加载社区..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "加载图片" @@ -11039,8 +11042,8 @@ msgstr "加载邀请..." msgid "Loading more..." msgstr "正在加载更多..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "加载占位符" @@ -11064,7 +11067,7 @@ msgstr "加载主题..." msgid "Loading verification methods..." msgstr "加载验证方法..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "正在加载:{alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "本地静音" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "使用浏览器登录,然后输入显示的代码以添加账户。" msgid "Log in via browser" msgstr "通过浏览器登录" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "通过浏览器或自定义实例登录" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "登出" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "登出 {0} 台设备" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "从 {sessionCount} 台设备注销" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "登出 1 台设备" @@ -11141,7 +11144,7 @@ msgstr "登出所有设备" msgid "Log out all other devices" msgstr "从所有其他设备注销" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "登出所有其他设备" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "标记为 18+ (NSFW)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "提及:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "提及:" msgid "Message" msgstr "消息" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "消息 " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "消息 @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "消息 #" @@ -11838,7 +11842,7 @@ msgstr "消息和媒体" msgid "Messages Deleted" msgstr "消息已删除" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "消息加载失败" @@ -12016,7 +12020,7 @@ msgstr "更多" msgid "More Actions" msgstr "更多操作" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "更多表情槽位" @@ -12028,7 +12032,7 @@ msgstr "更多选项" msgid "More Options" msgstr "更多选项" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "更多贴纸槽位" @@ -12162,8 +12166,8 @@ msgstr "静音频道" msgid "Mute Channel" msgstr "静音频道" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "静音至 {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "静音社区后,除非你被提及,否则将不会显示未读指示器和通知" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "共同社区({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "共同好友({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "共同群组({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "我的应用" @@ -12247,7 +12251,7 @@ msgstr "我的超棒贴纸" msgid "My Category" msgstr "我的类别" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "我的设备" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "导航" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "需要账户吗?" @@ -12364,7 +12368,7 @@ msgstr "网络" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "网络错误" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "没有社区横幅" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "未提供描述。" @@ -12684,15 +12688,15 @@ msgstr "未检测到麦克风" msgid "No more scheduled messages." msgstr "没有更多定时消息。" -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "未找到共同社区。" -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "未找到共同好友。" -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "未找到共同群组。" @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "不合你口味?你可以随时禁用此功能。" #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "通知覆盖" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "通知具有此角色且有权查看此频道的用户。" msgid "now" msgstr "现在" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "现在" @@ -13090,7 +13094,7 @@ msgstr "点击时" msgid "on:" msgstr "开启:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "删除后,应用程序及其凭证将被永久移除。" @@ -13252,7 +13256,7 @@ msgstr "仅打开私信" msgid "Open Fluxer" msgstr "打开Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "全屏查看图片" @@ -13368,7 +13372,7 @@ msgstr "打开远见者社区" msgid "Opening..." msgstr "正在打开..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "操作员" @@ -13441,7 +13445,7 @@ msgstr "原始消息已被删除" msgid "Other" msgstr "其他" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "其他设备" @@ -13501,7 +13505,7 @@ msgstr "覆盖未认领账户状态" msgid "Override unread gift inventory status" msgstr "覆盖未读礼物库存状态" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "概览" @@ -13695,7 +13699,7 @@ msgstr "权限" msgid "Permissions granted" msgstr "权限已授予" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "个人备注" @@ -13868,12 +13872,12 @@ msgstr "播放" msgid "Play animated emojis" msgstr "播放动态表情" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "播放音频" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "请粘贴你正在举报的消息链接。" msgid "Please provide an email address." msgstr "请提供电子邮件地址。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "请重试或返回应用程序列表。" @@ -13989,7 +13993,7 @@ msgstr "Plutonium特权" msgid "Plutonium Subscription" msgstr "Plutonium订阅" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "隐私仪表板" msgid "Privacy Policy" msgstr "隐私政策" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "从存储和CDN中清除此贴纸" msgid "Push Notification Inactive Timeout" msgstr "推送通知不活跃超时" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "推送通知" @@ -14412,7 +14416,7 @@ msgstr "反应交互已禁用" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "反应" @@ -14583,7 +14587,7 @@ msgstr "刷新推送订阅" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "重新生成" @@ -14591,19 +14595,19 @@ msgstr "重新生成" msgid "Regenerate backup codes" msgstr "重新生成备份代码" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "重新生成机器人令牌?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "重新生成客户端密钥?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "重新生成将使当前密钥失效。更新任何使用旧值的代码。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "重新生成将使当前令牌失效。更新任何使用旧值的代码。" @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "移除过滤器" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "移除过滤器" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "举报提交成功。我们的安全团队将尽快审核。" #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "举报用户" @@ -15105,7 +15109,7 @@ msgstr "请求的权限范围" msgid "Require 2FA for moderation actions" msgstr "要求管理员操作时进行双重验证" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "要求双击加入语音频道" @@ -15144,7 +15148,7 @@ msgstr "需要满足中等级的所有条件,外加加入服务器至少10分 msgid "Requires Plutonium" msgstr "需要 Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "重新安排消息" @@ -15290,11 +15294,11 @@ msgstr "重新订阅" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "重试" @@ -15359,7 +15363,7 @@ msgstr "撤销" msgid "Revoke Ban" msgstr "撤销封禁" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "撤销设备" @@ -15386,7 +15390,7 @@ msgstr "倒回{DEFAULT_SEEK_AMOUNT}秒" msgid "Right" msgstr "右" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "右对齐" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "搜索成员..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "搜索消息" @@ -15834,13 +15838,13 @@ msgstr "搜索角色或成员..." msgid "Search saved media" msgstr "搜索已保存的媒体" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "搜索范围" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "搜索范围:{0}" @@ -15857,7 +15861,7 @@ msgstr "搜索设置..." msgid "Search stickers..." msgstr "搜索贴纸..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "搜索建议" @@ -15938,7 +15942,7 @@ msgstr "安全密钥/通行密钥" msgid "Security key verification failed. Please try again." msgstr "安全密钥验证失败。请重试。" -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "查看当前登录您账户的所有设备。撤销任何您不认识的会话。" @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "选择账户" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "全选" @@ -16040,7 +16044,7 @@ msgstr "选择链接中嵌入内容的媒体大小" msgid "Select media size for uploaded attachments" msgstr "选择上传附件的媒体大小" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "选择共同查看" @@ -16151,9 +16155,9 @@ msgstr "发送代码" msgid "Send Code" msgstr "发送代码" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "发送好友请求" @@ -16170,7 +16174,7 @@ msgstr "发送消息 · 右键点击以安排" msgid "Send Message Disabled" msgstr "发送消息已禁用" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "发送消息" @@ -16624,7 +16628,7 @@ msgstr "显示礼品按钮" msgid "Show inline images and videos" msgstr "显示内嵌图片和视频" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "仅显示输入指示器,不显示头像" @@ -16788,11 +16792,11 @@ msgstr "将礼物显示为已兑换" msgid "Show this role separately" msgstr "单独显示此角色" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "在频道列表中显示带用户头像的输入指示器" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "在所选频道上显示输入状态" @@ -17151,7 +17155,7 @@ msgstr "西班牙语(西班牙)" msgid "Speak" msgstr "说话" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "朗读消息" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "开始分享" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "开始视频通话" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "开始语音通话" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "贴纸密度" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "贴纸包" @@ -17427,7 +17431,7 @@ msgstr "停止响铃" msgid "Stop Sharing" msgstr "停止共享" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "停止发言" @@ -17570,19 +17574,19 @@ msgstr "屏蔽所有角色@提及" msgid "Suppress All Role @mentions" msgstr "屏蔽所有角色@提及" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "屏蔽嵌入内容" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "文本" msgid "Text (NSFW)" msgstr "文本 (NSFW)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "文字频道" @@ -18028,10 +18032,10 @@ msgstr "此操作需要验证才能继续。" msgid "This application" msgstr "此应用程序" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "此附件已过期" @@ -18039,7 +18043,7 @@ msgstr "此附件已过期" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "此机器人正在请求管理员权限。我们不建议将此权限授予生产应用程序,除非你完全信任开发者。考虑要求他们请求一组减少的权限。如果不确定,请关闭此页面。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "此操作无法撤销。移除应用程序也会删除其机器人。" @@ -18101,7 +18105,7 @@ msgstr "此社区已达到最大成员数限制,目前不接受新成员。" msgid "This community has temporarily disabled invites." msgstr "此社区已暂时禁用邀请。" -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "此社区已暂时禁用邀请。您可以稍后再试。" @@ -18178,7 +18182,7 @@ msgstr "此邀请使用次数无限制。" msgid "This invite link never expires." msgstr "此邀请链接永不过期。" -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "这是 <0>{displayName} 的开始。添加好友以开始对话!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "这是您与 <0>{0} 的私聊历史开始。" @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "这是一条@静默消息。" #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "这将在时空连续体中造成裂痕且无法撤销。" @@ -18351,7 +18355,7 @@ msgstr "这将在时空连续体中造成裂痕且无法撤销。" msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "这将隐藏所有与收藏相关的UI元素,包括按钮和菜单项。您现有的收藏将被保留,并可随时从<0>用户设置 → 外观与感觉 → 收藏重新启用。" -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "这将修改现有的定时消息,而不是立即发送。" @@ -18387,8 +18391,8 @@ msgstr "这将移除此账户的已保存会话。" msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "这将替换您当前的自定义主题。您稍后可在用户设置中编辑它。" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title}的缩略图" @@ -18485,7 +18489,7 @@ msgstr "Toast通知出现在屏幕顶部中央。" msgid "today" msgstr "今天" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "今天" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "尝试不同的搜索词或筛选器" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "重试" @@ -18737,7 +18741,7 @@ msgstr "尝试另一个名称或检查拼写。" msgid "Try another search term" msgstr "尝试其他搜索词" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "尝试请求新的邀请。" @@ -18864,7 +18868,7 @@ msgstr "字体缩放" msgid "Type your message here..." msgstr "在此输入消息..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "输入事件" @@ -18877,11 +18881,11 @@ msgstr "输入指示器" msgid "Typing Indicator" msgstr "正在输入指示器" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "输入指示器 + 头像" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "仅输入指示器" @@ -18961,11 +18965,11 @@ msgstr "无法开始通话" msgid "Unable to start email change" msgstr "无法开始更改邮箱" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "对所有人不可用" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "仅对员工可用" @@ -18978,7 +18982,7 @@ msgstr "仅对员工可用" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "发送好友请求前请先解除屏蔽此用户。" #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "解除屏蔽用户" @@ -19165,7 +19169,7 @@ msgstr "未知错误" msgid "Unknown Gift" msgstr "未知礼物" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "未知邀请" @@ -19205,11 +19209,11 @@ msgstr "unknown-role" msgid "Unlimited" msgstr "无限制" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "无限制表情" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "无限贴纸" @@ -19254,7 +19258,7 @@ msgstr "使用Plutonium解锁私信中的贴纸" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "取消类别静音" msgid "Unmute Channel" msgstr "取消频道静音" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "取消收藏静音" msgid "Unmute User" msgstr "取消用户静音" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "未命名" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "直到我更改它" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "未验证邮箱" msgid "Up to 4K/60fps" msgstr "最高4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "更新" @@ -19629,7 +19633,7 @@ msgstr "上传入场音效" msgid "Upload Failed" msgstr "上传失败" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "上传文件" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "用户移动频道" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "用户个人资料" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "用户资料:{tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "值" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "自定义URL" @@ -20059,14 +20063,14 @@ msgstr "查看备份代码前可能需要验证。" #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "已验证社区" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "已验证服务器" @@ -20167,8 +20171,8 @@ msgstr "视频质量" msgid "Video Settings" msgstr "视频设置" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "视频缩略图" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "查看代码" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "查看社区资料" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "查看礼物库存" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "查看全局资料" @@ -20329,7 +20333,7 @@ msgstr "违规类别选择" msgid "Violent or Graphic Content" msgstr "暴力或血腥内容" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP语音" @@ -20341,7 +20345,7 @@ msgstr "可见按钮" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "语音通话" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "语音频道" @@ -20442,7 +20446,7 @@ msgstr "语音频道" msgid "Voice Channel Full" msgstr "语音频道已满" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "语音频道加入行为" @@ -20559,7 +20563,7 @@ msgstr "我们目前无法加入此社区。" msgid "We couldn't load the invites at this time." msgstr "我们目前无法加载邀请。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "我们无法加载此应用" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "我们连接Fluxer服务器时遇到问题。这可能是临时网络问题或计划维护。" #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "我们连接时空连续体时遇到问题。请检查你的连接并重试。" @@ -20759,7 +20763,7 @@ msgstr "周末战士" msgid "Welcome and system messages will appear here." msgstr "欢迎和系统消息将显示在这里。" -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "欢迎回来" @@ -20820,7 +20824,7 @@ msgstr "发生了什么?" msgid "What's included in your export:" msgstr "你的导出包含什么:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "禁用时(默认),您当前查看的频道上将不会显示输入指示器。" @@ -20836,7 +20840,7 @@ msgstr "启用时,快速点击您的按键通话快捷键将使麦克风保持 msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "启用时,将在整个应用中显示调试菜单,用于检查和复制内部数据结构(如消息、频道、用户和社区)的原始JSON对象。还包括用于调试Fluxer Markdown解析器性能和任何给定消息的AST的工具。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "启用时,快捷键徽章将在工具提示弹窗中隐藏。" @@ -20868,7 +20872,7 @@ msgstr "启用时,将使用您计算机的区域设置来确定12/24小时制 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "启用时,您可以收藏频道,它们将出现在收藏夹区域。禁用时,所有与收藏相关的UI元素(按钮、菜单项)将被隐藏。您现有的收藏将被保留。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "启用时,您需要双击语音频道才能加入。禁用时(默认),单击将立即加入频道。" @@ -20970,7 +20974,7 @@ msgstr "每年{yearlyPrice}" msgid "yesterday" msgstr "昨天" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "昨天" @@ -21013,7 +21017,7 @@ msgstr "您正在编辑您的社区专属个人资料。此个人资料仅在此 msgid "You are in slowmode. Please wait before sending another message." msgstr "您正处于慢速模式。请等待后再发送下一条消息。" -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "您现在是一名开发者了!" @@ -21113,7 +21117,7 @@ msgstr "你可以使用链接和Markdown来格式化你的文本。使用<0/>, msgid "You can't add new reactions while you're on timeout." msgstr "你在禁言期间无法添加新的反应。" -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "你不能和自己成为好友" @@ -21128,7 +21132,7 @@ msgstr "你不能与搜索结果中的反应互动,因为这可能会扰乱时 msgid "You can't join while you're on timeout." msgstr "你在禁言期间无法加入。" -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "你无法取消自己的禁言,因为你已被管理员禁言。" msgid "You do not have access to the channel where this message was sent." msgstr "你无权访问发送此消息的频道。" -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "你无权在此频道中发送消息。" @@ -21439,7 +21443,7 @@ msgstr "您将显示为离线" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "您将在下一屏幕配置机器人获得的权限。" -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "您需要在所有已登出的设备上重新登录" @@ -21508,7 +21512,7 @@ msgstr "您在语音频道中" msgid "You're sending messages too quickly" msgstr "您发送消息的速度太快了" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 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 4a452eaa..0b058428 100644 --- a/fluxer_app/src/locales/zh-TW/messages.po +++ b/fluxer_app/src/locales/zh-TW/messages.po @@ -97,7 +97,7 @@ msgstr "{0, plural, one {# 個項目} other {# 個項目}}" #. placeholder {0}: group.recipientIds.length + 1 #: src/components/channel/dm/DMList.tsx:446 #: src/components/channel/dm/DMList.tsx:526 -#: src/components/modals/UserProfileModal.tsx:818 +#: src/components/modals/UserProfileModal.tsx:844 msgid "{0, plural, one {# Member} other {# Members}}" msgstr "{0, plural, one {# 位成員} other {# 位成員}}" @@ -566,18 +566,18 @@ msgstr "{label} 圖片無法動態顯示。請使用 JPEG、PNG 或 WebP 格式. #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Member" msgstr "{memberCount} 位成員" #: src/components/auth/InviteHeader.tsx:96 #: src/components/auth/InviteHeader.tsx:127 #: src/components/auth/InviteHeader.tsx:241 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 -#: src/components/channel/InviteEmbed.tsx:182 -#: src/components/channel/InviteEmbed.tsx:446 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:308 +#: src/components/channel/InviteEmbed.tsx:194 +#: src/components/channel/InviteEmbed.tsx:462 msgid "{memberCount} Members" msgstr "{memberCount} 位成員" @@ -612,11 +612,11 @@ msgstr "{minutes} 分鐘和 {seconds} 秒" msgid "{minutes} minutes and 1 second" msgstr "{minutes}分鐘和1秒" -#: src/components/channel/dm/DMWelcomeSection.tsx:167 +#: src/components/channel/dm/DMWelcomeSection.tsx:175 msgid "{mutualGuildCount} mutual commmunity" msgstr "{mutualGuildCount} 個互通社群" -#: src/components/channel/dm/DMWelcomeSection.tsx:168 +#: src/components/channel/dm/DMWelcomeSection.tsx:176 msgid "{mutualGuildCount} mutual communities" msgstr "{mutualGuildCount} 個互通社群" @@ -637,8 +637,8 @@ msgid "{participantCount} participants in call" msgstr "{participantCount} 位在通話中的參與者" #: src/components/auth/InviteHeader.tsx:235 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:276 -#: src/components/channel/InviteEmbed.tsx:441 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:303 +#: src/components/channel/InviteEmbed.tsx:457 msgid "{presenceCount} Online" msgstr "{presenceCount} 在線" @@ -650,15 +650,15 @@ msgstr "剩餘 {remaining} 字元" msgid "{remaining} characters left. Get Plutonium to write up to {premiumMaxLength} characters." msgstr "剩餘 {remaining} 字元。如使用 Plutonium 可輸入至多 {premiumMaxLength} 字元。" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Member" msgstr "{renderedMemberCount} 位成員" -#: src/components/channel/InviteEmbed.tsx:303 +#: src/components/channel/InviteEmbed.tsx:312 msgid "{renderedMemberCount} Members" msgstr "{renderedMemberCount} 位成員" -#: src/components/channel/InviteEmbed.tsx:298 +#: src/components/channel/InviteEmbed.tsx:307 msgid "{renderedPresenceCount} Online" msgstr "{renderedPresenceCount} 在線" @@ -812,7 +812,7 @@ msgstr "{value}%" msgid "{value}ms" msgstr "{value} 毫秒" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 msgid "@everyone mentions" msgstr "@everyone 提及" @@ -1337,7 +1337,7 @@ msgid "Accent Color" msgstr "強調色" #: src/components/channel/channel-view/DMChannelView.tsx:292 -#: src/components/channel/dm/DMWelcomeSection.tsx:128 +#: src/components/channel/dm/DMWelcomeSection.tsx:134 #: src/components/channel/friends/FriendListItem.tsx:238 #: src/components/channel/friends/MobileFriendRequestItem.tsx:99 #: src/components/voice/IncomingCallUI.tsx:302 @@ -1346,12 +1346,12 @@ msgstr "接受" #: src/components/bottomsheets/DMBottomSheet.tsx:517 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262 -#: src/components/modals/UserProfileModal.tsx:1261 +#: src/components/modals/UserProfileModal.tsx:1287 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109 msgid "Accept Friend Request" msgstr "接受好友邀請" -#: src/components/modals/InviteAcceptModal.tsx:195 +#: src/components/modals/InviteAcceptModal.tsx:209 msgid "Accept invite" msgstr "接受邀請" @@ -1364,8 +1364,8 @@ msgstr "接受邀請" msgid "Accept the incoming call" msgstr "接聽來電" -#: src/components/channel/InviteEmbed.tsx:228 -#: src/components/modals/InviteAcceptModal.tsx:163 +#: src/components/channel/InviteEmbed.tsx:238 +#: src/components/modals/InviteAcceptModal.tsx:177 msgid "Accepting this invite installs the pack automatically." msgstr "接受此邀請會自動安裝套件。" @@ -1594,7 +1594,7 @@ msgstr "新增最愛頻道" #: src/components/channel/dm/AddFriendView.tsx:32 #: src/components/channel/dm/DMFriendsView.tsx:199 #: src/components/modals/AddFriendSheet.tsx:50 -#: src/components/modals/UserProfileModal.tsx:1181 +#: src/components/modals/UserProfileModal.tsx:1207 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89 msgid "Add Friend" @@ -2078,7 +2078,7 @@ msgstr "已允許 {0}。" msgid "Already have an account?" msgstr "已經有帳號了嗎?" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/channel/InviteEmbed.tsx:201 msgid "Already joined" msgstr "已加入" @@ -2191,7 +2191,7 @@ msgstr "動畫大頭貼與橫幅" msgid "Animated Avatars Require Plutonium" msgstr "動畫大頭貼需要 Plutonium" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 msgid "Animated banner" msgstr "動畫橫幅" @@ -2205,13 +2205,13 @@ msgid "Animated Emoji ({0})" msgstr "動畫表情符號({0})" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedGifv.tsx:752 +#: src/components/channel/embeds/media/EmbedGifv.tsx:758 #: src/components/modals/MediaViewerModal.tsx:294 #: src/components/modals/MediaViewerModal.tsx:362 msgid "Animated GIF" msgstr "動畫 GIF" -#: src/components/channel/embeds/media/EmbedGifv.tsx:508 +#: src/components/channel/embeds/media/EmbedGifv.tsx:512 msgid "Animated GIF video" msgstr "動畫 GIF 影片" @@ -2219,7 +2219,7 @@ msgstr "動畫 GIF 影片" msgid "Animated GIF Video" msgstr "動畫 GIF 影片" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:257 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:258 msgid "Animated icon" msgstr "動畫圖示" @@ -2277,7 +2277,7 @@ msgstr "任何人都可以 @提及 這個身分組。擁有「使用 @everyone/@ msgid "API Endpoint" msgstr "API 端點" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 msgid "APNG" msgstr "APNG" @@ -2310,12 +2310,11 @@ msgid "Application information" msgstr "應用程式資訊" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:53 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:91 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:84 msgid "Application Name" msgstr "應用程式名稱" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:52 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:104 msgid "Application name is required" msgstr "需要應用程式名稱" @@ -2554,7 +2553,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:143 +#: src/components/channel/embeds/Embed.tsx:145 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." msgstr "確定要隱藏這則訊息的所有連結嵌入嗎?此操作會隱藏該訊息的所有嵌入內容。" @@ -2603,7 +2602,7 @@ msgstr "附件 {0}" msgid "Attachment Actions" msgstr "附件操作" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:179 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:182 msgid "Attachment expired" msgstr "附件已過期" @@ -2779,8 +2778,8 @@ msgid "Autocomplete" msgstr "自動完成" #: src/components/modals/channelTabs/ChannelOverviewTab.tsx:161 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:235 #: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:236 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:237 msgid "Automatic" msgstr "自動" @@ -2859,7 +2858,7 @@ msgstr "返回" msgid "Back to Applications" msgstr "返回應用程式" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:563 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:564 msgid "Back to list" msgstr "返回列表" @@ -2872,20 +2871,20 @@ msgid "Back to login" msgstr "返回登入" #: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:965 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:144 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:158 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/components/DesktopSettingsView.tsx:295 msgid "Back to Overrides" msgstr "返回覆寫設定" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:159 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:170 #: src/components/modals/guildTabs/GuildRolesTab.tsx:756 #: src/components/modals/guildTabs/GuildRolesTab.tsx:979 msgid "Back to Roles" msgstr "返回身分組" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:124 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:139 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:136 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:148 #: src/components/modals/components/DesktopSettingsView.tsx:275 msgid "Back to Settings" msgstr "返回設定" @@ -3003,7 +3002,7 @@ msgstr "被封鎖的使用者" #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:152 #: src/components/modals/tabs/MyProfileTab/BannerUploader.tsx:192 #: src/components/modals/utils/settingsSearchIndex.ts:50 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:259 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 msgid "Banner" msgstr "橫幅" @@ -3096,7 +3095,7 @@ msgstr "個人簡介字數上限" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:348 #: src/components/modals/UserProfileActionsSheet.tsx:134 #: src/components/modals/UserProfileActionsSheet.tsx:298 -#: src/components/modals/UserProfileModal.tsx:1064 +#: src/components/modals/UserProfileModal.tsx:1090 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211 #: src/utils/RelationshipActionUtils.tsx:143 msgid "Block" @@ -3242,7 +3241,7 @@ msgstr "機器人要求的權限範圍" msgid "Bot token" msgstr "機器人金鑰" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:426 msgid "Bot token regenerated. Update any code that uses the old token." msgstr "機器人金鑰已重置,請更新使用舊金鑰的程式碼。" @@ -3435,7 +3434,7 @@ msgstr "相機設定" #: src/components/alerts/FileSizeTooLargeModal.tsx:49 #: src/components/auth/BrowserLoginHandoffModal.tsx:322 #: src/components/bottomsheets/CreateDMBottomSheet.tsx:133 -#: src/components/channel/ChannelTextarea.tsx:236 +#: src/components/channel/ChannelTextarea.tsx:300 #: src/components/channel/friends/FriendListItem.tsx:253 #: src/components/channel/MentionEveryonePopout.tsx:125 #: src/components/emojis/EmojiListItem.tsx:120 @@ -3496,7 +3495,7 @@ msgstr "相機設定" #: src/components/modals/ScreenShareSettingsModal.tsx:160 #: src/components/modals/ScreenShareSourceModal.tsx:75 #: src/components/modals/SudoVerificationModal.tsx:403 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:109 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:100 #: src/components/modals/tabs/MyProfileTab/AvatarUploader.tsx:124 #: src/components/modals/tabs/PrivacySafetyTab/DataDeletionTab.tsx:85 #: src/components/modals/tabs/PrivacySafetyTab/DataExportTab.tsx:85 @@ -3508,10 +3507,10 @@ msgstr "相機設定" msgid "Cancel" msgstr "取消" -#: src/components/channel/dm/DMWelcomeSection.tsx:138 +#: src/components/channel/dm/DMWelcomeSection.tsx:144 #: src/components/channel/friends/FriendListItem.tsx:164 #: src/components/channel/friends/FriendListItem.tsx:166 -#: src/components/modals/UserProfileModal.tsx:1276 +#: src/components/modals/UserProfileModal.tsx:1302 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192 msgid "Cancel Friend Request" msgstr "取消好友邀請" @@ -3582,7 +3581,7 @@ msgid "Careful! You have unsaved changes." msgstr "小心!你有未儲存的變更。" #: src/utils/ChannelUtils.tsx:66 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:220 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:221 msgid "Category" msgstr "分類" @@ -3605,7 +3604,7 @@ msgid "Category Name" msgstr "分類名稱" #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Category Settings" msgstr "分類設定" @@ -3617,7 +3616,7 @@ msgstr "注意" msgid "Center" msgstr "置中" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:246 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:247 msgid "Centered" msgstr "置中" @@ -3765,7 +3764,7 @@ msgstr "將位元率改為 {0}。" msgid "Changed the voice region to {0}." msgstr "將語音區域改為 {0}。" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 #: src/utils/SearchUtils.ts:270 msgid "channel" msgstr "頻道" @@ -3828,11 +3827,11 @@ msgstr "頻道 ID 已複製到剪貼簿" msgid "Channel link copied" msgstr "頻道連結已複製" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:113 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:116 msgid "Channel list typing indicator mode" msgstr "頻道清單打字指示器模式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:105 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:108 #: src/components/modals/utils/settingsSearchIndex.ts:223 msgid "Channel List Typing Indicators" msgstr "頻道清單打字指示器" @@ -3891,7 +3890,7 @@ msgstr "頻道已從最愛移除" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1116 #: src/components/layout/ChannelItem.tsx:647 #: src/components/modals/ChannelSettingsModal.tsx:113 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:188 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:202 msgid "Channel Settings" msgstr "頻道設定" @@ -4052,7 +4051,7 @@ msgstr "選擇整個應用程式顯示時間的方式。" msgid "Choose how typing indicators appear in the channel list" msgstr "選擇輸入指示器在頻道清單中的顯示方式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:106 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:109 msgid "Choose how typing indicators appear in the channel list when someone is typing in a channel." msgstr "選擇有人在頻道輸入時,頻道列表中打字指示的顯示方式。" @@ -4180,8 +4179,8 @@ msgid "Claim your account to redeem this gift." msgstr "認領你的帳戶以兌換此禮物。" #: src/components/channel/dm/AddFriendForm.tsx:54 -#: src/components/channel/dm/DMWelcomeSection.tsx:109 -#: src/components/modals/UserProfileModal.tsx:1291 +#: src/components/channel/dm/DMWelcomeSection.tsx:115 +#: src/components/modals/UserProfileModal.tsx:1317 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65 msgid "Claim your account to send friend requests." msgstr "認領你的帳戶以發送好友請求。" @@ -4245,7 +4244,7 @@ msgid "Clear Permissions" msgstr "清除權限" #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:420 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1424 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1452 #: src/components/channel/shared/PickerSearchInput.tsx:194 #: src/components/channel/shared/PickerSearchInput.tsx:211 #: src/components/modals/components/SettingsSearch.tsx:108 @@ -4256,7 +4255,7 @@ msgstr "清除搜尋" msgid "Clear search input" msgstr "清除搜尋輸入" -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Clear Selection" msgstr "清除選擇" @@ -4314,7 +4313,7 @@ msgstr "點擊任一音效旁的上傳圖示即可自訂音訊檔。支援格式 msgid "Click the verification link in the email." msgstr "點擊電子郵件內的驗證連結。" -#: src/components/modals/UserProfileModal.tsx:259 +#: src/components/modals/UserProfileModal.tsx:260 msgid "Click to add a note" msgstr "點擊以新增備註" @@ -4327,7 +4326,7 @@ msgid "Click to claim your gift!" msgstr "點擊以領取您的禮物!" #: src/components/invites/InviteListItem.tsx:184 -#: src/components/modals/components/ClientInfo.tsx:76 +#: src/components/modals/components/ClientInfo.tsx:100 #: src/components/modals/tabs/BetaCodesTab.tsx:174 msgid "Click to copy" msgstr "點擊以複製" @@ -4388,7 +4387,7 @@ msgstr "點擊以查看所有回應" msgid "Client secret" msgstr "用戶端密鑰" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:424 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:425 msgid "Client secret regenerated. Update any code that uses the old secret." msgstr "用戶端密鑰已重新產生。請更新所有使用舊密鑰的程式碼。" @@ -4649,8 +4648,8 @@ msgstr "社群宣揚基於受保護特徵的仇恨" msgid "Community promotes or facilitates illegal activities" msgstr "社群宣揚或促成非法活動" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:172 -#: src/components/modals/components/DesktopGuildSettingsView.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:215 #: src/components/modals/GuildSettingsModal.tsx:173 #: src/components/popouts/GuildHeaderPopout.tsx:187 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:360 @@ -4935,7 +4934,7 @@ msgstr "內容選單" msgid "Context menus can be opened with left-click (on buttons) or right-click (on other elements). This demonstrates various menu items including checkboxes, radio buttons, sliders, and submenus." msgstr "內容選單可用左鍵(按鈕)或右鍵(其他元件)開啟。此示範包含核取方塊、單選按鈕、滑桿與子選單等項目。" -#: src/components/channel/ChannelTextarea.tsx:235 +#: src/components/channel/ChannelTextarea.tsx:299 #: src/components/modals/BackupCodesRegenerateModal.tsx:63 #: src/components/modals/BackupCodesViewModal.tsx:66 #: src/components/modals/DeviceRevokeModal.tsx:68 @@ -4992,7 +4991,7 @@ msgstr "控制網站鏈接在聊天中的預覽方式" msgid "Control how you join voice channels" msgstr "控制您加入語音頻道的方式" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:141 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 msgid "Control how you join voice channels in communities." msgstr "控制您如何加入社群語音頻道。" @@ -5012,7 +5011,7 @@ msgstr "控制貼圖動畫" msgid "Control the visibility of favorites throughout the app." msgstr "控制整個應用程式中最愛的顯示可見性。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:127 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:130 msgid "Control whether keyboard shortcut hints appear inside tooltips." msgstr "控制工具提示內是否顯示鍵盤捷徑提示。" @@ -5071,7 +5070,7 @@ msgstr "已複製" msgid "Copied to clipboard" msgstr "已複製到剪貼簿" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:541 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:542 msgid "Copied URL to clipboard" msgstr "已複製連結到剪貼簿" @@ -5149,7 +5148,7 @@ msgstr "複製檔案連結" #: src/components/modals/tabs/BlockedUsersTab.tsx:98 #: src/components/modals/UserProfileActionsSheet.tsx:208 -#: src/components/modals/UserProfileModal.tsx:1123 +#: src/components/modals/UserProfileModal.tsx:1149 msgid "Copy FluxerTag" msgstr "複製 FluxerTag" @@ -5157,7 +5156,7 @@ msgstr "複製 FluxerTag" msgid "Copy GIF" msgstr "複製 GIF" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:254 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:281 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:475 msgid "Copy Guild ID" msgstr "複製伺服器 ID" @@ -5222,7 +5221,7 @@ msgstr "複製文字" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:361 #: src/components/modals/tabs/BlockedUsersTab.tsx:107 #: src/components/modals/UserProfileActionsSheet.tsx:213 -#: src/components/modals/UserProfileModal.tsx:1132 +#: src/components/modals/UserProfileModal.tsx:1158 #: src/components/popouts/UserAreaPopout.tsx:509 #: src/components/profile/ProfileCard/ProfileCardActions.tsx:60 #: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42 @@ -5270,7 +5269,7 @@ msgstr "舒適" #: src/components/modals/AddFriendsToGroupModal.tsx:99 #: src/components/modals/AddGuildStickerModal.tsx:119 #: src/components/modals/CreatePackModal.tsx:109 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:112 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:103 msgid "Create" msgstr "建立" @@ -5331,14 +5330,14 @@ msgstr "為你的帳號建立與管理應用程式和機器人。" msgid "Create and share custom emoji and sticker packs with Fluxer Plutonium." msgstr "透過 Fluxer Plutonium 建立與分享自訂表情符號與貼圖包。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:87 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:80 #: src/components/modals/tabs/ApplicationsTab/index.tsx:149 #: src/components/modals/tabs/ApplicationsTab/index.tsx:155 msgid "Create Application" msgstr "建立應用程式" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:83 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:185 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:212 #: src/components/modals/CategoryCreateModal.tsx:63 #: src/components/modals/CategoryCreateModal.tsx:82 #: src/components/modals/CreateFavoriteCategoryModal.tsx:58 @@ -5351,7 +5350,7 @@ msgstr "建立應用程式" msgid "Create Category" msgstr "建立分類" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:180 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:207 #: src/components/layout/ChannelItem.tsx:624 #: src/components/modals/ChannelCreateModal.tsx:58 #: src/components/modals/ChannelCreateModal.tsx:103 @@ -5475,8 +5474,8 @@ msgstr "建立於 {createdAt}" #. placeholder {0}: invite.pack.creator.username #. placeholder {0}: pack.creator.username #: src/components/auth/InviteHeader.tsx:158 -#: src/components/channel/InviteEmbed.tsx:220 -#: src/components/modals/InviteAcceptModal.tsx:152 +#: src/components/channel/InviteEmbed.tsx:230 +#: src/components/modals/InviteAcceptModal.tsx:166 msgid "Created by {0}" msgstr "由 {0} 建立" @@ -5569,7 +5568,7 @@ msgstr "裁切的圖片太大。請選擇較小區域或檔案(最大 {maxMB}M msgid "Current Community" msgstr "目前社群" -#: src/components/modals/tabs/DevicesTab.tsx:252 +#: src/components/modals/tabs/DevicesTab.tsx:255 msgid "Current Device" msgstr "目前裝置" @@ -5606,7 +5605,7 @@ msgstr "目前卡在 1885 年,顯示離線" #: src/components/bottomsheets/ChannelBottomSheet.tsx:461 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1047 #: src/components/bottomsheets/DMBottomSheet.tsx:608 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:305 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 msgid "Currently: {mutedText}" msgstr "目前狀態:{mutedText}" @@ -5782,7 +5781,7 @@ msgstr "次要危險操作" msgid "Danger secondary clicked!" msgstr "已點擊次要危險操作!" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:667 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 msgid "Danger zone" msgstr "危險區域" @@ -5991,10 +5990,10 @@ msgid "Defaults to off on mobile to preserve battery life and data usage." msgstr "行動裝置上預設關閉以節省電力與資料用量。" #: src/actions/MessageActionCreators.tsx:406 -#: src/components/channel/embeds/media/EmbedAudio.tsx:227 +#: src/components/channel/embeds/media/EmbedAudio.tsx:234 #: src/components/channel/embeds/media/MediaContainer.tsx:115 -#: src/components/channel/Messages.tsx:447 -#: src/components/channel/Messages.tsx:527 +#: src/components/channel/Messages.tsx:446 +#: src/components/channel/Messages.tsx:526 #: src/components/channel/MobileMemesPicker.tsx:546 #: src/components/channel/pickers/memes/MemeGridItem.tsx:120 #: src/components/emojis/EmojiListItem.tsx:189 @@ -6048,12 +6047,12 @@ msgstr "刪除我所有的訊息" #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:370 #: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:384 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:682 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:683 msgid "Delete Application" msgstr "刪除應用程式" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:164 -#: src/components/channel/embeds/media/EmbedAudio.tsx:232 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:167 +#: src/components/channel/embeds/media/EmbedAudio.tsx:239 #: src/components/channel/embeds/media/MediaContainer.tsx:120 msgid "Delete attachment" msgstr "刪除附件" @@ -6063,7 +6062,7 @@ msgstr "刪除附件" msgid "Delete Attachment" msgstr "刪除附件" -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/FavoritesCategoryContextMenu.tsx:90 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:335 @@ -6077,14 +6076,14 @@ msgstr "刪除分類" #: src/components/bottomsheets/ChannelBottomSheet.tsx:421 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:682 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1248 -#: src/components/modals/components/DesktopChannelSettingsView.tsx:176 +#: src/components/modals/components/DesktopChannelSettingsView.tsx:190 #: src/components/modals/components/MobileChannelSettingsView.tsx:85 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:322 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:348 msgid "Delete Channel" msgstr "刪除頻道" -#: src/components/modals/components/DesktopGuildSettingsView.tsx:192 +#: src/components/modals/components/DesktopGuildSettingsView.tsx:203 #: src/components/modals/components/MobileGuildSettingsView.tsx:85 #: src/components/modals/GuildDeleteModal.tsx:50 #: src/components/modals/GuildDeleteModal.tsx:62 @@ -6109,8 +6108,8 @@ msgstr "刪除媒體" #: src/components/channel/MessageActionBar.tsx:804 #: 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/channel/Messages.tsx:443 +#: src/components/channel/Messages.tsx:523 #: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:273 msgid "Delete Message" msgstr "刪除訊息" @@ -6215,7 +6214,7 @@ msgstr "緊密" msgid "Dense layout" msgstr "緊密佈局" -#: src/components/modals/components/ClientInfo.tsx:89 +#: src/components/modals/components/ClientInfo.tsx:113 msgid "Deployed" msgstr "已部署" @@ -6281,7 +6280,7 @@ msgstr "目標頻道" msgid "Destination URL:" msgstr "目標網址:" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:260 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 msgid "Detached banner" msgstr "分離橫幅" @@ -6362,7 +6361,7 @@ msgstr "不同尺寸(支援狀態)" msgid "Different Sizes & Member Counts" msgstr "不同尺寸與成員數" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:224 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:225 msgid "Direct message" msgstr "私訊" @@ -6541,7 +6540,7 @@ msgstr "停用帳號將會登出所有裝置。您可在任何時候重新登入 msgid "Disallow @mention." msgstr "禁止提及 @。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:277 msgid "Disallow unclaimed accounts" msgstr "禁止未認領帳號" @@ -6747,7 +6746,7 @@ msgstr "在私訊清單中不要顯示訊息預覽" msgid "Don't show this again" msgstr "不要再顯示此訊息" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:98 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:101 msgid "Don't show typing indicators in the channel list" msgstr "在頻道列表中不要顯示輸入指示器" @@ -6760,7 +6759,7 @@ msgstr "在頻道列表中不要顯示輸入指示器" msgid "Done" msgstr "完成" -#: src/components/channel/embeds/attachments/AttachmentFile.tsx:189 +#: src/components/channel/embeds/attachments/AttachmentFile.tsx:192 #: src/components/channel/embeds/media/MediaContainer.tsx:127 #: src/components/layout/app-layout/nagbars/DesktopDownloadNagbar.tsx:63 #: src/components/layout/app-layout/nagbars/MobileDownloadNagbar.tsx:66 @@ -6947,7 +6946,7 @@ msgstr "編輯分類" msgid "Edit Channel" msgstr "編輯頻道" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:209 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:236 #: src/components/popouts/GuildHeaderPopout.tsx:217 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:406 msgid "Edit Community Profile" @@ -7004,7 +7003,7 @@ msgid "Edit overwrites for roles and members in this channel." msgstr "編輯此頻道中角色與成員的覆寫權限。" #: src/components/modals/UserProfileMobileSheet.tsx:492 -#: src/components/modals/UserProfileModal.tsx:1208 +#: src/components/modals/UserProfileModal.tsx:1234 #: src/components/pages/YouPage.tsx:123 #: src/components/popouts/UserAreaPopout.tsx:521 #: src/components/popouts/UserProfilePopout.tsx:301 @@ -7143,7 +7142,7 @@ msgstr "內嵌啟動畫面" msgid "Embed splash images cannot be animated. Please use JPEG, PNG, or WebP." msgstr "內嵌啟動畫面圖片不能使用動畫。請改用 JPEG、PNG 或 WebP。" -#: src/components/channel/embeds/media/EmbedAudio.tsx:198 +#: src/components/channel/embeds/media/EmbedAudio.tsx:205 msgid "Embedded audio" msgstr "內嵌音訊" @@ -7198,8 +7197,8 @@ msgid "Emoji names must be at least 2 characters long and can only contain alpha msgstr "表情符號名稱最少需 2 個字元,只能使用英數字與底線。允許的檔案類型:JPEG、PNG、WebP、GIF。我們會壓縮圖像至 128x128 像素。每個表情符號最大 {0} KB。" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Emoji pack" msgstr "表情符號套件" @@ -7473,7 +7472,7 @@ msgstr "輸入電話號碼" msgid "Enter picture-in-picture" msgstr "進入畫中畫模式" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Enter Selection Mode" msgstr "進入選取模式" @@ -7536,7 +7535,7 @@ msgstr "輸入你想使用的新電子郵件,我們會接著寄送一組驗證 msgid "Enter the SMS code you received." msgstr "輸入你收到的簡訊驗證碼。" -#: src/components/channel/EditingMessageInput.tsx:286 +#: src/components/channel/EditingMessageInput.tsx:287 msgid "enter to <0><1>save" msgstr "按 Enter 可<0><1>儲存" @@ -7604,7 +7603,7 @@ msgstr "LaTeX 呈現錯誤:{0}" msgid "Escape key exits keyboard mode" msgstr "按 Esc 可離開鍵盤模式" -#: src/components/channel/EditingMessageInput.tsx:277 +#: src/components/channel/EditingMessageInput.tsx:278 msgid "escape to <0><1>cancel" msgstr "按 Esc 可<0><1>取消" @@ -7667,7 +7666,7 @@ msgstr "離開畫中畫" msgid "Exit Preview" msgstr "離開預覽" -#: src/components/modals/tabs/DevicesTab.tsx:266 +#: src/components/modals/tabs/DevicesTab.tsx:269 msgid "Exit Selection Mode" msgstr "離開選取模式" @@ -7701,7 +7700,7 @@ msgstr "已到期(30 天內)" msgid "Expired {absolute}" msgstr "已於 {absolute} 到期" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:526 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:540 msgid "Expired between {earliest} and {latest}" msgstr "於 {earliest} 與 {latest} 之間到期" @@ -7709,7 +7708,7 @@ msgstr "於 {earliest} 與 {latest} 之間到期" msgid "Expired on {date}" msgstr "於 {date} 到期" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expired on {earliest}" msgstr "於 {earliest} 到期" @@ -7722,7 +7721,7 @@ msgstr "到期於" msgid "Expires {absolute} ({relativeText})" msgstr "將於 {absolute} 到期({relativeText})" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:527 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:541 msgid "Expires between {earliest} and {latest}" msgstr "在 {earliest} 與 {latest} 間到期" @@ -7730,7 +7729,7 @@ msgstr "在 {earliest} 與 {latest} 間到期" msgid "Expires on {date}" msgstr "將於 {date} 到期" -#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:529 +#: src/components/channel/embeds/attachments/AttachmentMosaic.tsx:543 msgid "Expires on {earliest}" msgstr "將於 {earliest} 到期" @@ -7766,7 +7765,7 @@ msgstr "表情符號包為 Plutonium 功能" msgid "Expression picker categories" msgstr "表情選擇器分類" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 msgid "Expression purge" msgstr "清除表情" @@ -7839,10 +7838,6 @@ msgstr "複製到剪貼簿失敗" msgid "Failed to copy URL" msgstr "複製連結失敗" -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:78 -msgid "Failed to create application. Please check your inputs and try again." -msgstr "建立應用程式失敗,請檢查輸入並再試一次。" - #: src/components/alerts/RoleCreateFailedModal.tsx:27 msgid "Failed to create role" msgstr "建立身分組失敗" @@ -8100,7 +8095,7 @@ msgstr "無法撤銷封鎖。請再試一次。" msgid "Failed to revoke invite" msgstr "無法撤銷邀請" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:431 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:432 msgid "Failed to rotate. Please try again." msgstr "無法旋轉。請再試一次。" @@ -8413,7 +8408,7 @@ msgstr "健身好友" msgid "Flags" msgstr "旗標" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 msgid "Flexible text channel names" msgstr "彈性文字頻道名稱" @@ -8577,7 +8572,7 @@ msgstr "美食好友" msgid "For 1 hour" msgstr "1小時" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:330 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:357 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:53 #: src/components/channel/muteOptions.ts:35 #: src/components/popouts/UserAreaPopout.tsx:78 @@ -8592,7 +8587,7 @@ msgstr "1 小時" msgid "For 15 minutes" msgstr "15 分鐘" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:329 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:356 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:52 #: src/components/channel/muteOptions.ts:34 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:142 @@ -8605,7 +8600,7 @@ msgstr "15 分鐘" msgid "For 24 hours" msgstr "24小時" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:333 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:360 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:56 #: src/components/channel/muteOptions.ts:38 #: src/components/popouts/UserAreaPopout.tsx:80 @@ -8623,7 +8618,7 @@ msgstr "3 天" msgid "For 3 hours" msgstr "3小時" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:331 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:358 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:54 #: src/components/channel/muteOptions.ts:36 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:144 @@ -8636,7 +8631,7 @@ msgstr "3 小時" msgid "For 8 hours" msgstr "8小時" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:332 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:359 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:55 #: src/components/channel/muteOptions.ts:37 #: src/components/popouts/UserAreaPopout.tsx:79 @@ -8774,7 +8769,7 @@ msgstr "取消訂閱" msgid "Forgot Password" msgstr "忘記密碼" -#: src/components/auth/AuthLoginLayout.tsx:248 +#: src/components/auth/AuthLoginLayout.tsx:249 #: src/components/pages/ForgotPasswordPage.tsx:83 msgid "Forgot your password?" msgstr "忘記密碼了嗎?" @@ -8795,7 +8790,7 @@ msgstr "快轉 {DEFAULT_SEEK_AMOUNT} 秒" msgid "Forward Message" msgstr "轉寄訊息" -#: src/components/channel/MessageAttachments.tsx:155 +#: src/components/channel/MessageAttachments.tsx:156 msgid "Forwarded" msgstr "已轉寄" @@ -9065,7 +9060,7 @@ msgstr "下載 Fluxer 桌面應用程式以使用系統範圍的按鍵通話與 #: src/components/stickers/StickerGridItem.tsx:100 #: src/utils/FavoriteMemeUtils.ts:70 #: src/utils/FavoriteMemeUtils.ts:97 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:352 msgid "GIF" msgstr "GIF" @@ -9236,8 +9231,8 @@ msgstr "返回先前聚焦的文字頻道" msgid "Go forward in navigation history" msgstr "前進導覽歷史" -#: src/components/channel/InviteEmbed.tsx:261 -#: src/components/modals/InviteAcceptModal.tsx:100 +#: src/components/channel/InviteEmbed.tsx:270 +#: src/components/modals/InviteAcceptModal.tsx:114 msgid "Go to Community" msgstr "前往社群" @@ -9389,7 +9384,7 @@ msgid "Group Invites" msgstr "群組邀請" #: src/stores/QuickSwitcherStore.tsx:657 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:226 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:227 msgid "Group message" msgstr "群組訊息" @@ -9548,7 +9543,7 @@ msgstr "嘿,{username},歡迎!你無所不能。" msgid "Hey, {username}! When it hits 88mph, you'll see some serious stuff!" msgstr "嘿,{username}!當時速達到 88 英里時,你會看到厲害的事情!" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:97 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:100 msgid "Hidden" msgstr "隱藏" @@ -9569,7 +9564,7 @@ msgstr "隱藏最愛" msgid "Hide Join Messages" msgstr "隱藏加入訊息" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:131 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:134 msgid "Hide keyboard hints in tooltips" msgstr "在工具提示中隱藏鍵盤提示" @@ -9582,7 +9577,7 @@ msgid "Hide muted channels" msgstr "隱藏靜音頻道" #: src/components/bottomsheets/FavoritesGuildHeaderBottomSheet.tsx:100 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:229 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:256 #: src/components/popouts/FavoritesGuildHeaderPopout.tsx:145 #: src/components/popouts/GuildHeaderPopout.tsx:225 #: src/components/uikit/ContextMenu/ChannelListContextMenu.tsx:78 @@ -9822,7 +9817,7 @@ msgid "If you want to export your data or delete your messages first, please vis msgstr "若你想先匯出資料或刪除訊息,請在進行前前往使用者設定的隱私儀表板區段。" #: src/components/channel/channel-view/DMChannelView.tsx:302 -#: src/components/channel/dm/DMWelcomeSection.tsx:131 +#: src/components/channel/dm/DMWelcomeSection.tsx:137 #: src/components/channel/friends/FriendListItem.tsx:145 #: src/components/channel/friends/FriendListItem.tsx:244 #: src/components/channel/friends/MobileFriendRequestItem.tsx:69 @@ -9855,7 +9850,7 @@ msgid "image" msgstr "圖片" #: src/components/channel/embeds/media/EmbedGifv.tsx:237 -#: src/components/channel/embeds/media/EmbedImage.tsx:374 +#: src/components/channel/embeds/media/EmbedImage.tsx:377 #: src/components/modals/MediaViewerModal.tsx:362 #: src/components/search/HasFilterSheet.tsx:50 #: src/utils/FavoriteMemeUtils.ts:71 @@ -10129,13 +10124,13 @@ msgstr "附圖示的輸入" msgid "Insert emoji" msgstr "插入表情符號" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Emoji Pack" msgstr "安裝表情符號包" -#: src/components/channel/InviteEmbed.tsx:200 -#: src/components/modals/InviteAcceptModal.tsx:143 +#: src/components/channel/InviteEmbed.tsx:210 +#: src/components/modals/InviteAcceptModal.tsx:157 msgid "Install Sticker Pack" msgstr "安裝貼圖包" @@ -10153,7 +10148,7 @@ msgstr "安裝於 {installedAt}" msgid "Installing emoji and sticker packs requires a premium subscription." msgstr "安裝表情符號與貼圖包需要高級訂閱。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 msgid "Instant invites" msgstr "立即邀請" @@ -10286,7 +10281,7 @@ msgstr "邀請連結設定" msgid "Invite Links" msgstr "邀請連結" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:164 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:191 #: src/components/layout/ChannelItem.tsx:616 #: src/components/popouts/GuildHeaderPopout.tsx:178 msgid "Invite Members" @@ -10300,7 +10295,7 @@ msgstr "邀請視窗" msgid "Invite modal preview" msgstr "邀請視窗預覽" -#: src/components/modals/InviteAcceptModal.tsx:134 +#: src/components/modals/InviteAcceptModal.tsx:148 #: src/components/pages/InviteLoginPage.tsx:196 #: src/components/pages/InviteRegisterPage.tsx:92 msgid "Invite not found" @@ -10337,7 +10332,7 @@ msgstr "已傳送 {0} 的邀請" msgid "Invite sent to {guildName}" msgstr "邀請已發送至 {guildName}" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:261 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 msgid "Invite splash" msgstr "邀請啟動畫面" @@ -10354,7 +10349,7 @@ msgstr "邀請至 {0}" msgid "Invite to Community" msgstr "邀請加入社群" -#: src/components/channel/InviteEmbed.tsx:364 +#: src/components/channel/InviteEmbed.tsx:380 msgid "Invite Unavailable" msgstr "邀請無法使用" @@ -10369,12 +10364,12 @@ msgstr "由 {0} 邀請。" #. placeholder {0}: invite.inviter.username #. placeholder {1}: invite.inviter.discriminator -#: src/components/modals/InviteAcceptModal.tsx:156 +#: src/components/modals/InviteAcceptModal.tsx:170 msgid "Invited by {0}#{1}" msgstr "由 {0}#{1} 邀請" #: src/components/auth/InviteHeader.tsx:159 -#: src/components/channel/InviteEmbed.tsx:224 +#: src/components/channel/InviteEmbed.tsx:234 msgid "Invited by {inviterTag}" msgstr "由 {inviterTag} 邀請" @@ -10410,12 +10405,12 @@ msgstr "此社群目前暫停邀請功能" msgid "Invites are locked for preview communities. Claim your account by setting an email and password to enable invites." msgstr "預覽社群已鎖定邀請。設定電子郵件與密碼以認領帳號並啟用邀請。" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:262 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:263 msgid "Invites disabled" msgstr "邀請已停用" -#: src/components/channel/InviteEmbed.tsx:259 -#: src/components/modals/InviteAcceptModal.tsx:98 +#: src/components/channel/InviteEmbed.tsx:268 +#: src/components/modals/InviteAcceptModal.tsx:112 msgid "Invites Disabled" msgstr "邀請已停用" @@ -10482,13 +10477,13 @@ msgstr "加入有貼圖的社群開始吧!" msgid "Join call" msgstr "加入通話" -#: src/components/channel/InviteEmbed.tsx:263 -#: src/components/channel/InviteEmbed.tsx:453 +#: src/components/channel/InviteEmbed.tsx:272 +#: src/components/channel/InviteEmbed.tsx:469 #: src/components/layout/guild-list/AddGuildButton.tsx:71 #: src/components/modals/AddGuildModal.tsx:129 #: src/components/modals/AddGuildModal.tsx:410 #: src/components/modals/components/plutonium/SubscriptionCard.tsx:342 -#: src/components/modals/InviteAcceptModal.tsx:102 +#: src/components/modals/InviteAcceptModal.tsx:116 #: src/components/modals/InviteAcceptModalPreview.tsx:114 msgid "Join Community" msgstr "加入社群" @@ -10497,15 +10492,23 @@ msgstr "加入社群" msgid "Join community form" msgstr "加入社群表單" -#: src/components/channel/InviteEmbed.tsx:189 +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:97 +msgid "Join Fluxer HQ" +msgstr "加入Fluxer HQ" + +#: src/components/layout/app-layout/nagbars/GuildMembershipCtaNagbar.tsx:94 +msgid "Join Fluxer HQ to chat with the team and stay up to date on the latest!" +msgstr "加入Fluxer HQ 與團隊聊天,隨時了解最新資訊!" + +#: src/components/channel/InviteEmbed.tsx:201 msgid "Join Group" msgstr "加入群組" -#: src/components/modals/InviteAcceptModal.tsx:95 +#: src/components/modals/InviteAcceptModal.tsx:109 msgid "Join Group DM" msgstr "加入群組私訊" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:310 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:311 msgid "Join notifications" msgstr "加入通知" @@ -10620,7 +10623,7 @@ msgstr "跳到最舊未讀訊息" msgid "Jump to page" msgstr "跳到頁面" -#: src/components/channel/Messages.tsx:920 +#: src/components/channel/Messages.tsx:924 msgid "Jump to Present" msgstr "跳到目前" @@ -10690,7 +10693,7 @@ msgstr "快速鍵" msgid "Keyboard" msgstr "鍵盤" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:126 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:129 #: src/components/modals/utils/settingsSearchIndex.ts:231 msgid "Keyboard Hints" msgstr "鍵盤提示" @@ -10815,7 +10818,7 @@ msgstr "了解 Plutonium" msgid "Leave blank for a random username" msgstr "留空將使用隨機使用者名稱" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:243 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:270 #: src/components/popouts/GuildHeaderPopout.tsx:234 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:461 #: src/hooks/useLeaveGuild.tsx:39 @@ -10874,7 +10877,7 @@ msgstr "這麼快就要離開?" msgid "Left" msgstr "已離開" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:248 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:249 msgid "Left aligned" msgstr "靠左對齊" @@ -10945,7 +10948,7 @@ msgstr "連結" msgid "Link" msgstr "連結" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:222 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:223 msgid "Link channel" msgstr "連結頻道" @@ -11027,7 +11030,7 @@ msgstr "正在載入封鎖..." msgid "Loading communities..." msgstr "正在載入社群..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading image" msgstr "正在載入圖片" @@ -11039,8 +11042,8 @@ msgstr "正在載入邀請..." msgid "Loading more..." msgstr "正在載入更多..." -#: src/components/channel/embeds/media/EmbedGifv.tsx:493 -#: src/components/channel/embeds/media/EmbedGifv.tsx:748 +#: src/components/channel/embeds/media/EmbedGifv.tsx:497 +#: src/components/channel/embeds/media/EmbedGifv.tsx:754 msgid "Loading placeholder" msgstr "載入中佔位符" @@ -11064,7 +11067,7 @@ msgstr "載入主題..." msgid "Loading verification methods..." msgstr "正在載入驗證方式..." -#: src/components/channel/embeds/media/EmbedImage.tsx:368 +#: src/components/channel/embeds/media/EmbedImage.tsx:371 msgid "Loading: {alt}" msgstr "正在載入:{alt}" @@ -11082,7 +11085,7 @@ msgid "Local Mute" msgstr "本地關閉麥克風" #: src/components/auth/AuthBottomLink.tsx:36 -#: src/components/auth/AuthLoginLayout.tsx:243 +#: src/components/auth/AuthLoginLayout.tsx:244 #: src/components/auth/MfaScreen.tsx:136 #: src/components/pages/LoginPage.tsx:129 msgid "Log in" @@ -11105,7 +11108,7 @@ msgstr "使用瀏覽器登入,然後輸入顯示的代碼以新增帳號。" msgid "Log in via browser" msgstr "透過瀏覽器登入" -#: src/components/auth/AuthLoginLayout.tsx:270 +#: src/components/auth/AuthLoginLayout.tsx:271 msgid "Log in via browser or custom instance" msgstr "透過瀏覽器或自訂實例登入" @@ -11120,7 +11123,7 @@ msgid "Log Out" msgstr "登出" #. placeholder {0}: selectedDevices.size -#: src/components/modals/tabs/DevicesTab.tsx:330 +#: src/components/modals/tabs/DevicesTab.tsx:333 msgid "Log out {0} devices" msgstr "登出 {0} 個裝置" @@ -11129,7 +11132,7 @@ msgid "Log out {sessionCount} devices" msgstr "登出 {sessionCount} 台設備" #: src/components/modals/DeviceRevokeModal.tsx:40 -#: src/components/modals/tabs/DevicesTab.tsx:328 +#: src/components/modals/tabs/DevicesTab.tsx:331 msgid "Log out 1 device" msgstr "登出 1 個裝置" @@ -11141,7 +11144,7 @@ msgstr "登出所有裝置" msgid "Log out all other devices" msgstr "登出所有其他設備" -#: src/components/modals/tabs/DevicesTab.tsx:333 +#: src/components/modals/tabs/DevicesTab.tsx:336 msgid "Log Out All Other Devices" msgstr "登出其他所有裝置" @@ -11181,7 +11184,7 @@ msgstr "Lorem ipsum dolor sit amet" msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:350 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:351 msgid "Lottie" msgstr "Lottie" @@ -11351,6 +11354,7 @@ msgstr "標記為 18+(成人內容)" #: src/components/bottomsheets/ChannelBottomSheet.tsx:358 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1139 #: src/components/bottomsheets/DMBottomSheet.tsx:390 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:183 #: src/components/channel/NewMessagesBar.tsx:60 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:81 #: src/components/uikit/ContextMenu/items/ChannelMenuItems.tsx:79 @@ -11705,8 +11709,8 @@ msgstr "提及:" #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220 #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164 #: src/components/modals/UserProfileMobileSheet.tsx:503 -#: src/components/modals/UserProfileModal.tsx:1192 -#: src/components/modals/UserProfileModal.tsx:1318 +#: src/components/modals/UserProfileModal.tsx:1218 +#: src/components/modals/UserProfileModal.tsx:1344 #: src/components/popouts/UserProfilePopout.tsx:291 #: src/components/popouts/UserProfilePopout.tsx:310 #: src/components/profile/ProfilePreview.tsx:292 @@ -11714,15 +11718,15 @@ msgstr "提及:" msgid "Message" msgstr "訊息" -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message " msgstr "訊息 " -#: src/components/channel/ChannelTextarea.tsx:621 +#: src/components/channel/ChannelTextarea.tsx:685 msgid "Message @" msgstr "訊息 @" -#: src/components/channel/ChannelTextarea.tsx:618 +#: src/components/channel/ChannelTextarea.tsx:682 msgid "Message #" msgstr "訊息 #" @@ -11838,7 +11842,7 @@ msgstr "訊息與媒體" msgid "Messages Deleted" msgstr "訊息已刪除" -#: src/components/channel/Messages.tsx:941 +#: src/components/channel/Messages.tsx:944 msgid "Messages failed to load" msgstr "訊息載入失敗" @@ -12016,7 +12020,7 @@ msgstr "更多" msgid "More Actions" msgstr "更多操作" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:264 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 msgid "More emoji slots" msgstr "更多表情符號格" @@ -12028,7 +12032,7 @@ msgstr "更多選項" msgid "More Options" msgstr "更多選項" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:265 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 msgid "More sticker slots" msgstr "更多貼圖格" @@ -12162,8 +12166,8 @@ msgstr "靜音頻道" msgid "Mute Channel" msgstr "靜音頻道" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:186 msgid "Mute Community" @@ -12214,20 +12218,20 @@ msgstr "靜音至 {0}" msgid "Muting a community prevents unread indicators and notifications from appearing unless you are mentioned" msgstr "靜音社群會阻止未讀提示與通知出現,除非有人提到你" -#: src/components/modals/UserProfileModal.tsx:360 +#: src/components/modals/UserProfileModal.tsx:376 msgid "Mutual Communities ({count})" msgstr "共同社群 ({count})" -#: src/components/modals/UserProfileModal.tsx:352 +#: src/components/modals/UserProfileModal.tsx:368 msgid "Mutual Friends ({count})" msgstr "共同朋友 ({count})" -#: src/components/modals/UserProfileModal.tsx:356 +#: src/components/modals/UserProfileModal.tsx:372 msgid "Mutual Groups ({count})" msgstr "共同群組 ({count})" #: src/components/modals/tabs/ApplicationsTab/application-detail/ApplicationInfoSection.tsx:55 -#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:97 +#: src/components/modals/tabs/ApplicationsTab/ApplicationCreateModal.tsx:90 msgid "My Application" msgstr "我的應用程式" @@ -12247,7 +12251,7 @@ msgstr "我超棒的貼圖" msgid "My Category" msgstr "我的分類" -#: src/components/modals/tabs/DevicesTab.tsx:240 +#: src/components/modals/tabs/DevicesTab.tsx:243 msgid "My Devices" msgstr "我的裝置" @@ -12345,7 +12349,7 @@ msgid "Navigation" msgstr "導覽" #: src/components/auth/AuthBottomLink.tsx:33 -#: src/components/auth/AuthLoginLayout.tsx:276 +#: src/components/auth/AuthLoginLayout.tsx:277 msgid "Need an account?" msgstr "需要帳號嗎?" @@ -12364,7 +12368,7 @@ msgstr "網路" #: src/components/modals/components/PlutoniumContent.tsx:156 #: src/components/modals/components/PlutoniumContent.tsx:288 #: src/components/modals/tabs/BetaCodesTab.tsx:320 -#: src/components/modals/tabs/DevicesTab.tsx:229 +#: src/components/modals/tabs/DevicesTab.tsx:232 msgid "Network error" msgstr "網路錯誤" @@ -12584,8 +12588,8 @@ msgid "No community banner" msgstr "沒有社群橫幅" #: src/components/auth/InviteHeader.tsx:156 -#: src/components/channel/InviteEmbed.tsx:217 -#: src/components/modals/InviteAcceptModal.tsx:148 +#: src/components/channel/InviteEmbed.tsx:227 +#: src/components/modals/InviteAcceptModal.tsx:162 #: src/components/modals/tabs/ExpressionPacksTab.tsx:73 msgid "No description provided." msgstr "未提供描述。" @@ -12684,15 +12688,15 @@ msgstr "未偵測到麥克風" msgid "No more scheduled messages." msgstr "沒有更多排程訊息。" -#: src/components/modals/UserProfileModal.tsx:586 +#: src/components/modals/UserProfileModal.tsx:603 msgid "No mutual communities found." msgstr "找不到共同的社群。" -#: src/components/modals/UserProfileModal.tsx:542 +#: src/components/modals/UserProfileModal.tsx:558 msgid "No mutual friends found." msgstr "找不到共同好友。" -#: src/components/modals/UserProfileModal.tsx:564 +#: src/components/modals/UserProfileModal.tsx:580 msgid "No mutual groups found." msgstr "找不到共同群組。" @@ -12905,8 +12909,8 @@ msgid "Not your cup of tea? You can disable this feature anytime." msgstr "不合你的胃口嗎?你可以隨時關閉此功能。" #: src/components/modals/UserProfileMobileSheet.tsx:555 -#: src/components/modals/UserProfileModal.tsx:244 -#: src/components/modals/UserProfileModal.tsx:248 +#: src/components/modals/UserProfileModal.tsx:245 +#: src/components/modals/UserProfileModal.tsx:249 #: src/components/pages/YouPage.tsx:144 #: src/lib/markdown/renderers/common/block-elements.tsx:213 msgid "Note" @@ -12944,7 +12948,7 @@ msgstr "通知覆寫" #: src/components/bottomsheets/ChannelBottomSheet.tsx:405 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1184 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1365 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:199 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:226 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsButton.tsx:59 #: src/components/modals/GuildNotificationSettingsModal.tsx:162 #: src/components/modals/tabs/NotificationsTab/Notifications.tsx:82 @@ -12995,7 +12999,7 @@ msgstr "通知擁有此身分且有權查看此頻道的使用者。" msgid "now" msgstr "現在" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:704 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:732 msgid "Now" msgstr "現在" @@ -13090,7 +13094,7 @@ msgstr "點擊時" msgid "on:" msgstr "在:" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:672 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:673 msgid "Once deleted, the application and its credentials are permanently removed." msgstr "刪除後,應用程式及其憑證將永久移除。" @@ -13252,7 +13256,7 @@ msgstr "僅開啟私訊" msgid "Open Fluxer" msgstr "開啟 Fluxer" -#: src/components/channel/embeds/media/EmbedImage.tsx:186 +#: src/components/channel/embeds/media/EmbedImage.tsx:187 msgid "Open image in full view" msgstr "以完整檢視開啟圖片" @@ -13368,7 +13372,7 @@ msgstr "開啟 Visionary 社群" msgid "Opening..." msgstr "正在開啟…" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:276 msgid "Operator" msgstr "操作員" @@ -13441,7 +13445,7 @@ msgstr "原始訊息已刪除" msgid "Other" msgstr "其他" -#: src/components/modals/tabs/DevicesTab.tsx:261 +#: src/components/modals/tabs/DevicesTab.tsx:264 msgid "Other Devices" msgstr "其他裝置" @@ -13501,7 +13505,7 @@ msgstr "覆寫未認領帳號狀態" msgid "Override unread gift inventory status" msgstr "覆寫未讀禮物庫存狀態" -#: src/components/modals/UserProfileModal.tsx:414 +#: src/components/modals/UserProfileModal.tsx:430 msgid "Overview" msgstr "概覽" @@ -13695,7 +13699,7 @@ msgstr "權限" msgid "Permissions granted" msgstr "權限已授予" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:228 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:229 msgid "Personal notes" msgstr "個人備註" @@ -13868,12 +13872,12 @@ msgstr "播放" msgid "Play animated emojis" msgstr "播放動態表情符號" -#: src/components/channel/embeds/media/EmbedAudio.tsx:204 +#: src/components/channel/embeds/media/EmbedAudio.tsx:211 msgid "Play audio" msgstr "播放音訊" -#: src/components/channel/embeds/media/EmbedVideo.tsx:79 -#: src/components/channel/embeds/media/EmbedVideo.tsx:103 +#: src/components/channel/embeds/media/EmbedVideo.tsx:80 +#: src/components/channel/embeds/media/EmbedVideo.tsx:104 #: src/components/channel/embeds/media/EmbedYouTube.tsx:112 #: src/components/media-player/components/VideoPlayer.tsx:299 msgid "Play video" @@ -13936,7 +13940,7 @@ msgstr "請貼上您要檢舉的訊息連結。" msgid "Please provide an email address." msgstr "請提供電子郵件地址。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:556 msgid "Please retry or go back to the applications list." msgstr "請重新嘗試或返回應用程式清單。" @@ -13989,7 +13993,7 @@ msgstr "Plutonium 特權" msgid "Plutonium Subscription" msgstr "Plutonium 訂閱" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:348 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:349 msgid "PNG" msgstr "PNG" @@ -14177,7 +14181,7 @@ msgstr "隱私儀表板" msgid "Privacy Policy" msgstr "隱私權政策" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:204 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:231 #: src/components/modals/GuildPrivacySettingsModal.tsx:56 #: src/components/popouts/GuildHeaderPopout.tsx:212 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:392 @@ -14299,7 +14303,7 @@ msgstr "從儲存與 CDN 中清除此貼圖" msgid "Push Notification Inactive Timeout" msgstr "推播通知閒置逾時" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:301 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:302 msgid "Push notifications" msgstr "推播通知" @@ -14412,7 +14416,7 @@ msgstr "反應互動已停用" #: src/components/modals/MessageReactionsModal.tsx:169 #: src/components/modals/tabs/ChatSettingsTab/DisplayTab.tsx:94 #: src/components/modals/utils/settingsSearchIndex.ts:353 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:307 msgid "Reactions" msgstr "反應" @@ -14583,7 +14587,7 @@ msgstr "重新整理推播訂閱" #: src/components/modals/BackupCodesModal.tsx:90 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:68 #: src/components/modals/tabs/ApplicationsTab/application-detail/SecretsSection.tsx:85 -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:528 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:529 msgid "Regenerate" msgstr "重新生成" @@ -14591,19 +14595,19 @@ msgstr "重新生成" msgid "Regenerate backup codes" msgstr "重新生成備援代碼" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate bot token?" msgstr "重新生成機器人令牌?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:526 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:527 msgid "Regenerate client secret?" msgstr "重新生成用戶端密鑰?" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:519 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:520 msgid "Regenerating will invalidate the current secret. Update any code that uses the old value." msgstr "重新生成將使目前密鑰失效。請更新使用舊值的程式碼。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:521 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:522 msgid "Regenerating will invalidate the current token. Update any code that uses the old value." msgstr "重新生成將使目前令牌失效。請更新使用舊值的程式碼。" @@ -14732,7 +14736,7 @@ msgid "Remove filter" msgstr "移除篩選器" #: src/components/bottomsheets/DMBottomSheet.tsx:510 -#: src/components/channel/dm/DMWelcomeSection.tsx:144 +#: src/components/channel/dm/DMWelcomeSection.tsx:150 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:146 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:148 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:255 @@ -14741,8 +14745,8 @@ msgstr "移除篩選器" #: src/components/modals/UserProfileActionsSheet.tsx:278 #: src/components/modals/UserProfileMobileSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:307 -#: src/components/modals/UserProfileModal.tsx:1145 -#: src/components/modals/UserProfileModal.tsx:1231 +#: src/components/modals/UserProfileModal.tsx:1171 +#: src/components/modals/UserProfileModal.tsx:1257 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129 #: src/utils/RelationshipActionUtils.tsx:113 #: src/utils/RelationshipActionUtils.tsx:115 @@ -15080,7 +15084,7 @@ msgstr "檢舉提交成功,我們的安全團隊將儘快審核。" #: src/components/modals/IARModal.tsx:84 #: src/components/modals/UserProfileActionsSheet.tsx:289 -#: src/components/modals/UserProfileModal.tsx:1159 +#: src/components/modals/UserProfileModal.tsx:1185 msgid "Report User" msgstr "檢舉使用者" @@ -15105,7 +15109,7 @@ msgstr "請求的範圍" msgid "Require 2FA for moderation actions" msgstr "要求管理操作使用 2FA" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:144 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:147 msgid "Require double-click to join voice channels" msgstr "加入語音頻道需要雙擊" @@ -15144,7 +15148,7 @@ msgstr "需要包含中等級別所有項目,另加在此伺服器成員身份 msgid "Requires Plutonium" msgstr "需要 Plutonium" -#: src/components/channel/ChannelTextarea.tsx:834 +#: src/components/channel/ChannelTextarea.tsx:904 msgid "Reschedule Message" msgstr "重新排程訊息" @@ -15290,11 +15294,11 @@ msgstr "重新訂閱" #: 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 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:560 #: src/components/modals/tabs/ApplicationsTab/index.tsx:112 #: src/components/modals/tabs/AuthorizedAppsTab.tsx:121 #: src/components/modals/tabs/BetaCodesTab.tsx:326 -#: src/components/modals/tabs/DevicesTab.tsx:231 +#: src/components/modals/tabs/DevicesTab.tsx:234 #: src/components/modals/tabs/GiftInventoryTab.tsx:323 msgid "Retry" msgstr "重試" @@ -15359,7 +15363,7 @@ msgstr "撤銷" msgid "Revoke Ban" msgstr "撤銷封鎖" -#: src/components/modals/tabs/DevicesTab.tsx:133 +#: src/components/modals/tabs/DevicesTab.tsx:136 msgid "Revoke device" msgstr "撤銷裝置" @@ -15386,7 +15390,7 @@ msgstr "快退 {DEFAULT_SEEK_AMOUNT} 秒" msgid "Right" msgstr "靠右" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:250 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:251 msgid "Right aligned" msgstr "靠右對齊" @@ -15791,7 +15795,7 @@ msgid "Search members..." msgstr "搜尋成員..." #: src/components/bottomsheets/ChannelSearchBottomSheet.tsx:412 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1410 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1438 msgid "Search messages" msgstr "搜尋訊息" @@ -15834,13 +15838,13 @@ msgstr "搜尋身分組或成員..." msgid "Search saved media" msgstr "搜尋已儲存媒體" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:380 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:381 msgid "Search scope" msgstr "搜尋範圍" #. placeholder {0}: activeScopeOption.label #: src/components/channel/ChannelSearchResults.tsx:1031 -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:378 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:379 msgid "Search scope: {0}" msgstr "搜尋範圍:{0}" @@ -15857,7 +15861,7 @@ msgstr "搜尋設定..." msgid "Search stickers..." msgstr "搜尋貼圖..." -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1448 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:1476 msgid "Search suggestions" msgstr "搜尋建議" @@ -15938,7 +15942,7 @@ msgstr "安全金鑰 / 通行金鑰" msgid "Security key verification failed. Please try again." msgstr "安全金鑰驗證失敗。請再試一次。" -#: src/components/modals/tabs/DevicesTab.tsx:242 +#: src/components/modals/tabs/DevicesTab.tsx:245 msgid "See all devices that are currently logged into your account. Revoke any sessions that you don't recognize." msgstr "檢視目前登入你帳號的所有裝置。撤銷任何你不認識的工作階段。" @@ -16002,7 +16006,7 @@ msgid "Select account" msgstr "選取帳號" #: src/components/channel/textarea/TextareaContextMenu.tsx:134 -#: src/components/modals/tabs/DevicesTab.tsx:281 +#: src/components/modals/tabs/DevicesTab.tsx:284 msgid "Select All" msgstr "全選" @@ -16040,7 +16044,7 @@ msgstr "為連結內嵌內容選取媒體大小" msgid "Select media size for uploaded attachments" msgstr "為已上傳附件選取媒體大小" -#: src/components/modals/UserProfileModal.tsx:686 +#: src/components/modals/UserProfileModal.tsx:709 msgid "Select mutual view" msgstr "選取共同檢視" @@ -16151,9 +16155,9 @@ msgstr "傳送代碼" msgid "Send Code" msgstr "傳送代碼" -#: src/components/channel/dm/DMWelcomeSection.tsx:112 +#: src/components/channel/dm/DMWelcomeSection.tsx:118 #: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272 -#: src/components/modals/UserProfileModal.tsx:1292 +#: src/components/modals/UserProfileModal.tsx:1318 msgid "Send Friend Request" msgstr "傳送好友邀請" @@ -16170,7 +16174,7 @@ msgstr "傳送訊息 · 右鍵點擊以排程" msgid "Send Message Disabled" msgstr "無法傳送訊息" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:305 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:306 msgid "Send messages" msgstr "傳送訊息" @@ -16624,7 +16628,7 @@ msgstr "顯示禮物按鈕" msgid "Show inline images and videos" msgstr "顯示內嵌圖片與影片" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:93 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:96 msgid "Show just the typing indicator without avatars" msgstr "只顯示正在輸入指示器,不顯示大頭貼" @@ -16788,11 +16792,11 @@ msgstr "將禮物顯示為已兌換" msgid "Show this role separately" msgstr "單獨顯示此角色" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:88 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:91 msgid "Show typing indicator with user avatars in the channel list" msgstr "在頻道列表中顯示附有大頭貼的輸入指示器" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:117 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:120 msgid "Show typing on selected channel" msgstr "顯示所選頻道的輸入狀態" @@ -17151,7 +17155,7 @@ msgstr "西班牙語(西班牙)" msgid "Speak" msgstr "開始說話" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Speak Message" msgstr "說話訊息" @@ -17270,13 +17274,13 @@ msgid "Start Sharing" msgstr "開始分享" #: src/components/channel/ChannelHeader/CallButtons.tsx:160 -#: src/components/modals/UserProfileModal.tsx:1111 +#: src/components/modals/UserProfileModal.tsx:1137 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:91 msgid "Start Video Call" msgstr "開始視訊通話" #: src/components/channel/ChannelHeader/CallButtons.tsx:90 -#: src/components/modals/UserProfileModal.tsx:1102 +#: src/components/modals/UserProfileModal.tsx:1128 #: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60 msgid "Start Voice Call" msgstr "開始語音通話" @@ -17359,8 +17363,8 @@ msgid "Sticker density" msgstr "貼圖密度" #: src/components/auth/InviteHeader.tsx:140 -#: src/components/channel/InviteEmbed.tsx:199 -#: src/components/modals/InviteAcceptModal.tsx:142 +#: src/components/channel/InviteEmbed.tsx:209 +#: src/components/modals/InviteAcceptModal.tsx:156 #: src/components/modals/tabs/ExpressionPacksTab.tsx:70 msgid "Sticker pack" msgstr "貼圖包" @@ -17427,7 +17431,7 @@ msgstr "停止響鈴" msgid "Stop Sharing" msgstr "停止分享" -#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:335 +#: src/components/uikit/ContextMenu/items/MessageMenuItems.tsx:340 msgid "Stop Speaking" msgstr "停止說話" @@ -17570,19 +17574,19 @@ msgstr "隱藏所有角色提及" msgid "Suppress All Role @mentions" msgstr "隱藏所有角色提及" -#: 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 +#: src/components/channel/embeds/Embed.tsx:822 +#: src/components/channel/embeds/Embed.tsx:859 +#: src/components/channel/embeds/Embed.tsx:883 +#: src/components/channel/embeds/Embed.tsx:928 +#: src/components/channel/embeds/Embed.tsx:964 +#: src/components/channel/embeds/Embed.tsx:1005 +#: src/components/channel/embeds/Embed.tsx:1041 +#: src/components/channel/embeds/Embed.tsx:1083 msgid "Suppress embeds" msgstr "隱藏嵌入內容" -#: src/components/channel/embeds/Embed.tsx:141 -#: src/components/channel/embeds/Embed.tsx:148 +#: src/components/channel/embeds/Embed.tsx:143 +#: src/components/channel/embeds/Embed.tsx:150 #: src/components/channel/MessageActionBar.tsx:542 #: src/components/channel/MessageActionBar.tsx:694 #: src/components/channel/messageActionMenu.tsx:150 @@ -17775,7 +17779,7 @@ msgstr "文字" msgid "Text (NSFW)" msgstr "文字(不宜在工作場所)" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:216 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:217 msgid "Text channel" msgstr "文字頻道" @@ -18028,10 +18032,10 @@ msgstr "此操作需要驗證後才能繼續。" msgid "This application" msgstr "此應用程式" -#: src/components/channel/embeds/attachments/Attachment.tsx:285 -#: src/components/channel/embeds/attachments/Attachment.tsx:306 -#: src/components/channel/embeds/attachments/Attachment.tsx:317 -#: src/components/channel/embeds/attachments/Attachment.tsx:327 +#: src/components/channel/embeds/attachments/Attachment.tsx:293 +#: src/components/channel/embeds/attachments/Attachment.tsx:314 +#: src/components/channel/embeds/attachments/Attachment.tsx:325 +#: src/components/channel/embeds/attachments/Attachment.tsx:335 msgid "This attachment has expired" msgstr "此附件已過期" @@ -18039,7 +18043,7 @@ msgstr "此附件已過期" msgid "This bot is requesting the Administrator permission. We do not recommend granting this to production apps unless you fully trust the developer. Consider asking them to request a reduced set of permissions. Close this page if you are unsure." msgstr "此機器人正在請求系統管理員權限。我們不建議在正式環境授予,除非你完全信任開發者。建議請他們改請求較少的權限。如有疑慮請關閉此頁。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:668 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:669 msgid "This cannot be undone. Removing the application also deletes its bot." msgstr "此操作無法還原。移除應用程式亦會刪除其機器人。" @@ -18101,7 +18105,7 @@ msgstr "此社群已達成員上限,暫時無法加入新成員。" msgid "This community has temporarily disabled invites." msgstr "此社群暫時停用邀請功能。" -#: src/components/modals/InviteAcceptModal.tsx:180 +#: src/components/modals/InviteAcceptModal.tsx:194 msgid "This community has temporarily disabled invites. You can try again later." msgstr "此社群暫時停用邀請功能,稍後再試。" @@ -18178,7 +18182,7 @@ msgstr "此邀請無使用次數限制。" msgid "This invite link never expires." msgstr "此邀請連結永不過期。" -#: src/components/modals/InviteAcceptModal.tsx:135 +#: src/components/modals/InviteAcceptModal.tsx:149 #: src/components/pages/InviteLoginPage.tsx:197 #: src/components/pages/InviteRegisterPage.tsx:93 msgid "This invite may have expired or been deleted." @@ -18239,7 +18243,7 @@ msgid "This is the beginning of <0>{displayName}. Add friends to start a con msgstr "這是 <0>{displayName} 的第一則訊息。新增好友開始聊天吧!" #. placeholder {0}: user.username -#: src/components/channel/dm/DMWelcomeSection.tsx:194 +#: src/components/channel/dm/DMWelcomeSection.tsx:202 msgid "This is the beginning of your direct message history with <0>{0}." msgstr "這是你與 <0>{0} 的私人訊息紀錄開端。" @@ -18342,8 +18346,8 @@ msgid "This was a @silent message." msgstr "這是一則 @silent 訊息。" #: src/actions/MessageActionCreators.tsx:404 -#: src/components/channel/Messages.tsx:445 -#: src/components/channel/Messages.tsx:525 +#: src/components/channel/Messages.tsx:444 +#: src/components/channel/Messages.tsx:524 msgid "This will create a rift in the space-time continuum and cannot be undone." msgstr "這會在時空連續體中創造裂縫,無法還原。" @@ -18351,7 +18355,7 @@ msgstr "這會在時空連續體中創造裂縫,無法還原。" msgid "This will hide all favorites-related UI elements including buttons and menu items. Your existing favorites will be preserved and can be re-enabled anytime from <0>User Settings → Look & Feel → Favorites." msgstr "這會隱藏所有與收藏相關的 UI 元素(包括按鈕與選單項目)。現有收藏會保留,隨時可在 <0>使用者設定 → 外觀與感受 → 收藏 中重新啟用。" -#: src/components/channel/ChannelTextarea.tsx:838 +#: src/components/channel/ChannelTextarea.tsx:908 msgid "This will modify the existing scheduled message rather than sending immediately." msgstr "這會修改既有排程訊息,而非立即發送。" @@ -18387,8 +18391,8 @@ msgstr "這會移除此帳號的儲存工作階段。" msgid "This will replace your current custom theme. You can edit it later in your User Settings." msgstr "這將取代你目前的自訂主題,稍後可在使用者設定中重新編輯。" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 msgid "Thumbnail for {title}" msgstr "{title} 的縮圖" @@ -18485,7 +18489,7 @@ msgstr "吐司通知會出現在畫面上方中間。" msgid "today" msgstr "今天" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:702 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:730 msgid "Today" msgstr "今天" @@ -18710,7 +18714,7 @@ msgid "Try a different search term or filter" msgstr "試試不同的搜尋詞或篩選條件" #: src/components/auth/HandoffCodeDisplay.tsx:67 -#: src/components/channel/Messages.tsx:942 +#: src/components/channel/Messages.tsx:945 msgid "Try again" msgstr "再試一次" @@ -18737,7 +18741,7 @@ msgstr "試試其他名稱或確認拼字。" msgid "Try another search term" msgstr "試試其他搜尋詞" -#: src/components/channel/InviteEmbed.tsx:361 +#: src/components/channel/InviteEmbed.tsx:377 msgid "Try asking for a new invite." msgstr "試著請求新的邀請。" @@ -18864,7 +18868,7 @@ msgstr "字型縮放" msgid "Type your message here..." msgstr "在此輸入訊息..." -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:303 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:304 msgid "Typing events" msgstr "輸入中事件" @@ -18877,11 +18881,11 @@ msgstr "輸入指示器" msgid "Typing Indicator" msgstr "正在輸入指示器" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:87 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:90 msgid "Typing indicator + avatars" msgstr "輸入指示器 + 大頭貼" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:92 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:95 msgid "Typing indicator only" msgstr "僅顯示輸入指示器" @@ -18961,11 +18965,11 @@ msgstr "無法開始通話" msgid "Unable to start email change" msgstr "無法開始更換電子郵件" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 msgid "Unavailable for everyone" msgstr "對所有人皆不可用" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:273 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 msgid "Unavailable for everyone but staff" msgstr "僅對職員可用" @@ -18978,7 +18982,7 @@ msgstr "僅對職員可用" #: src/components/modals/UserProfileActionsSheet.tsx:151 #: src/components/modals/UserProfileActionsSheet.tsx:305 #: src/components/modals/UserProfileMobileSheet.tsx:323 -#: src/components/modals/UserProfileModal.tsx:1051 +#: src/components/modals/UserProfileModal.tsx:1077 #: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230 #: src/utils/RelationshipActionUtils.tsx:169 msgid "Unblock" @@ -18992,7 +18996,7 @@ msgstr "寄送好友邀請前請先解除封鎖此用戶。" #: src/components/modals/tabs/BlockedUsersTab.tsx:56 #: src/components/modals/UserProfileActionsSheet.tsx:149 #: src/components/modals/UserProfileMobileSheet.tsx:321 -#: src/components/modals/UserProfileModal.tsx:1246 +#: src/components/modals/UserProfileModal.tsx:1272 #: src/utils/RelationshipActionUtils.tsx:167 msgid "Unblock User" msgstr "解除封鎖用戶" @@ -19165,7 +19169,7 @@ msgstr "未知錯誤" msgid "Unknown Gift" msgstr "未知贈禮" -#: src/components/channel/InviteEmbed.tsx:359 +#: src/components/channel/InviteEmbed.tsx:375 msgid "Unknown Invite" msgstr "未知邀請" @@ -19205,11 +19209,11 @@ msgstr "unknown-role" msgid "Unlimited" msgstr "無限" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:266 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 msgid "Unlimited emoji" msgstr "無限表情符號" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:267 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:268 msgid "Unlimited stickers" msgstr "無限貼圖" @@ -19254,7 +19258,7 @@ msgstr "使用 Plutonium 在私訊中解鎖貼圖" #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:882 #: src/components/bottomsheets/ChannelDetailsBottomSheet.tsx:1068 #: src/components/bottomsheets/DMBottomSheet.tsx:648 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:321 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:348 #: src/components/bottomsheets/VoiceLobbyBottomSheet.tsx:179 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:253 #: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:279 @@ -19285,8 +19289,8 @@ msgstr "解除類別靜音" msgid "Unmute Channel" msgstr "解除頻道靜音" -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:224 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:296 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:251 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:323 #: src/components/uikit/ContextMenu/FavoritesGuildContextMenu.tsx:55 #: src/components/uikit/ContextMenu/items/GuildMenuItems.tsx:179 msgid "Unmute Community" @@ -19306,7 +19310,7 @@ msgstr "解除收藏靜音" msgid "Unmute User" msgstr "解除用戶靜音" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:934 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:962 msgid "Unnamed" msgstr "未命名" @@ -19405,7 +19409,7 @@ msgid "Until I change it" msgstr "直到我更改為止" #: src/components/bottomsheets/DMBottomSheet.tsx:667 -#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:334 +#: src/components/bottomsheets/GuildHeaderBottomSheet.tsx:361 #: src/components/channel/ChannelHeader/ChannelNotificationSettingsDropdown.tsx:57 #: src/components/channel/muteOptions.ts:39 #: src/components/uikit/ContextMenu/items/CategoryMenuItems.tsx:147 @@ -19422,7 +19426,7 @@ msgstr "未驗證電子郵件" msgid "Up to 4K/60fps" msgstr "最高 4K/60fps" -#: src/components/channel/ChannelTextarea.tsx:835 +#: src/components/channel/ChannelTextarea.tsx:905 msgid "Update" msgstr "更新" @@ -19629,7 +19633,7 @@ msgstr "上傳入場音效" msgid "Upload Failed" msgstr "上傳失敗" -#: src/components/channel/ChannelTextarea.tsx:756 +#: src/components/channel/ChannelTextarea.tsx:826 msgid "Upload file" msgstr "上傳檔案" @@ -19868,11 +19872,11 @@ msgid "User Moved Channel" msgstr "使用者移動頻道" #: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133 -#: src/components/modals/UserProfileModal.tsx:947 +#: src/components/modals/UserProfileModal.tsx:973 msgid "User Profile" msgstr "使用者資料" -#: src/components/modals/UserProfileModal.tsx:949 +#: src/components/modals/UserProfileModal.tsx:975 msgid "User Profile: {tag}" msgstr "用戶檔案:{tag}" @@ -19993,7 +19997,7 @@ msgid "Values" msgstr "值" #: src/components/modals/guildTabs/GuildVanityURLTab.tsx:177 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:269 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 msgid "Vanity URL" msgstr "自訂網址" @@ -20059,14 +20063,14 @@ msgstr "查看備份代碼前可能需要驗證。" #: src/components/auth/AuthPageHeader.tsx:49 #: src/components/auth/InviteHeader.tsx:81 #: src/components/auth/InviteHeader.tsx:226 -#: src/components/channel/InviteEmbed.tsx:287 -#: src/components/channel/InviteEmbed.tsx:430 +#: src/components/channel/InviteEmbed.tsx:296 +#: src/components/channel/InviteEmbed.tsx:446 #: src/components/emojis/EmojiAttributionSubtext.tsx:143 #: src/components/layout/GuildHeader.tsx:132 msgid "Verified Community" msgstr "已驗證社群" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:270 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 msgid "Verified guild" msgstr "已驗證公會" @@ -20167,8 +20171,8 @@ msgstr "影片品質" msgid "Video Settings" msgstr "影片設定" -#: src/components/channel/embeds/media/EmbedVideo.tsx:88 -#: src/components/channel/embeds/media/EmbedVideo.tsx:97 +#: src/components/channel/embeds/media/EmbedVideo.tsx:89 +#: src/components/channel/embeds/media/EmbedVideo.tsx:98 #: src/components/channel/embeds/media/EmbedYouTube.tsx:84 msgid "Video thumbnail" msgstr "影片縮圖" @@ -20240,7 +20244,7 @@ msgid "View Codes" msgstr "檢視代碼" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Community Profile" msgstr "檢視社群資料" @@ -20259,7 +20263,7 @@ msgid "View Gift Inventory" msgstr "檢視禮物庫存" #: src/components/modals/UserProfileActionsSheet.tsx:194 -#: src/components/modals/UserProfileModal.tsx:1089 +#: src/components/modals/UserProfileModal.tsx:1115 msgid "View Global Profile" msgstr "檢視全域個人檔案" @@ -20329,7 +20333,7 @@ msgstr "違規類別選擇" msgid "Violent or Graphic Content" msgstr "暴力或血腥內容" -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:271 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:272 msgid "VIP voice" msgstr "VIP 語音" @@ -20341,7 +20345,7 @@ msgstr "可見按鈕" #: src/components/modals/components/plutonium/SubscriptionCard.tsx:129 #: src/components/modals/components/plutonium/VisionarySection.tsx:67 #: src/components/modals/tabs/DeveloperOptionsTab/MockingTab.tsx:154 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:274 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:275 msgid "Visionary" msgstr "Visionary" @@ -20427,7 +20431,7 @@ msgid "Voice Calls" msgstr "語音通話" #: src/stores/QuickSwitcherStore.tsx:710 -#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:218 +#: src/utils/modals/guildTabs/GuildAuditLogTabUtils.ts:219 msgid "Voice channel" msgstr "語音頻道" @@ -20442,7 +20446,7 @@ msgstr "語音頻道" msgid "Voice Channel Full" msgstr "語音頻道已滿" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:140 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:143 #: src/components/modals/utils/settingsSearchIndex.ts:239 msgid "Voice Channel Join Behavior" msgstr "加入語音頻道的行為方式" @@ -20559,7 +20563,7 @@ msgstr "目前無法加入此社群。" msgid "We couldn't load the invites at this time." msgstr "我們目前無法載入邀請。" -#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:554 +#: src/components/modals/tabs/ApplicationsTab/ApplicationDetail.tsx:555 msgid "We couldn't load this application" msgstr "我們無法載入此應用程式" @@ -20671,7 +20675,7 @@ msgid "We're having trouble connecting to Fluxer's servers. This could be a temp msgstr "我們連線 Fluxer 伺服器時遇到困難,可能是暫時性網路問題或排程維護。" #: src/components/modals/tabs/BetaCodesTab.tsx:322 -#: src/components/modals/tabs/DevicesTab.tsx:230 +#: src/components/modals/tabs/DevicesTab.tsx:233 msgid "We're having trouble connecting to the space-time continuum. Please check your connection and try again." msgstr "我們連線時空連續體遇到麻煩,請檢查您的連線並再試一次。" @@ -20759,7 +20763,7 @@ msgstr "週末勇士" msgid "Welcome and system messages will appear here." msgstr "歡迎訊息與系統訊息將顯示於此。" -#: src/components/auth/AuthLoginLayout.tsx:235 +#: src/components/auth/AuthLoginLayout.tsx:236 msgid "Welcome back" msgstr "歡迎回來" @@ -20820,7 +20824,7 @@ msgstr "正在發生什麼事?" msgid "What's included in your export:" msgstr "匯出內容包含:" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:118 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:121 msgid "When disabled (default), typing indicators won't appear on the channel you're currently viewing." msgstr "停用時(預設),目前瀏覽的頻道不會顯示正在輸入的提示。" @@ -20836,7 +20840,7 @@ msgstr "啟用後,快速點擊按鍵說話捷徑會持續開啟麥克風,直 msgid "When enabled, reveals debugging menus throughout the app to inspect and copy raw JSON objects of internal data structures like messages, channels, users, and communities. Also includes tools to debug the Fluxer Markdown parser performance and AST for any given message." msgstr "啟用後,會顯示整個應用程式的除錯選單,讓您檢視並複製訊息、頻道、使用者與社群等內部資料結構的原始 JSON,也包含 Fluxer Markdown 解析器效能與任一訊息 AST 的除錯工具。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:132 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:135 msgid "When enabled, shortcut badges are hidden in tooltip popups." msgstr "啟用後,工具提示彈窗中會隱藏快捷鍵徽章。" @@ -20868,7 +20872,7 @@ msgstr "啟用後,會以電腦地區設定決定 12/24 小時格式,而非 msgid "When enabled, you can favorite channels and they'll appear in the Favorites section. When disabled, all favorite-related UI elements (buttons, menu items) will be hidden. Your existing favorites will be preserved." msgstr "啟用後,您可以收藏頻道,將顯示在「我的最愛」區段。停用時,所有與最愛相關的 UI(按鈕、選單項目)會隱藏,現有收藏不會消失。" -#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:145 +#: src/components/modals/tabs/AppearanceTab/InterfaceTab.tsx:148 msgid "When enabled, you'll need to double-click on voice channels to join them. When disabled (default), single-clicking will join the channel immediately." msgstr "啟用後,加入語音頻道需連點兩次。停用時(預設)單點即可立即加入。" @@ -20970,7 +20974,7 @@ msgstr "每年 {yearlyPrice}" msgid "yesterday" msgstr "昨天" -#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:703 +#: src/components/channel/MessageSearchBar/MessageSearchBar.tsx:731 msgid "Yesterday" msgstr "昨天" @@ -21013,7 +21017,7 @@ msgstr "您正在編輯針對此社群的個人檔案,此檔案僅會在此社 msgid "You are in slowmode. Please wait before sending another message." msgstr "您目前處於慢速模式,請稍候再發送訊息。" -#: src/components/modals/components/ClientInfo.tsx:63 +#: src/components/modals/components/ClientInfo.tsx:87 msgid "You are now a developer!" msgstr "您現在是開發者!" @@ -21113,7 +21117,7 @@ msgstr "您可以使用連結與 Markdown 來格式化文字。啟用 <0/> 後 msgid "You can't add new reactions while you're on timeout." msgstr "您在冷卻期間無法新增反應。" -#: src/components/modals/UserProfileModal.tsx:1173 +#: src/components/modals/UserProfileModal.tsx:1199 msgid "You can't befriend yourself" msgstr "您無法與自己成為朋友" @@ -21128,7 +21132,7 @@ msgstr "您無法在搜尋結果中與反應互動,以免干擾時空連續體 msgid "You can't join while you're on timeout." msgstr "您在冷卻期間無法加入。" -#: src/components/modals/UserProfileModal.tsx:1185 +#: src/components/modals/UserProfileModal.tsx:1211 #: src/components/popouts/UserProfilePopout.tsx:284 #: src/components/profile/ProfilePreview.tsx:284 msgid "You can't message yourself" @@ -21213,7 +21217,7 @@ msgstr "您無法自行解除靜音,因為您已被版主靜音。" msgid "You do not have access to the channel where this message was sent." msgstr "您沒有存取此訊息所送出的頻道。" -#: src/components/channel/ChannelTextarea.tsx:616 +#: src/components/channel/ChannelTextarea.tsx:680 msgid "You do not have permission to send messages in this channel." msgstr "您沒有權限在此頻道發送訊息。" @@ -21439,7 +21443,7 @@ msgstr "您將顯示為離線" msgid "You'll configure which permissions the bot receives on the next screen." msgstr "您將在下一個畫面設定機器人取得哪些權限。" -#: src/components/modals/tabs/DevicesTab.tsx:337 +#: src/components/modals/tabs/DevicesTab.tsx:340 msgid "You'll have to log back in on all logged out devices" msgstr "您將需要在所有已登出裝置重新登入" @@ -21508,7 +21512,7 @@ msgstr "您在語音頻道中" msgid "You're sending messages too quickly" msgstr "您傳送訊息的速度過快" -#: src/components/channel/Messages.tsx:912 +#: src/components/channel/Messages.tsx:923 msgid "You're viewing older messages" msgstr "您正在查看較舊的訊息" diff --git a/fluxer_app/src/stores/NagbarStore.tsx b/fluxer_app/src/stores/NagbarStore.tsx index d168b10b..260e887a 100644 --- a/fluxer_app/src/stores/NagbarStore.tsx +++ b/fluxer_app/src/stores/NagbarStore.tsx @@ -33,6 +33,7 @@ export interface NagbarSettings { mobileDownloadDismissed: boolean; pendingBulkDeletionDismissed: Record; invitesDisabledDismissed: Record; + guildMembershipCtaDismissed: boolean; claimAccountModalShownThisSession: boolean; forceOffline: boolean; forceEmailVerification: boolean; @@ -49,6 +50,7 @@ export interface NagbarSettings { forceUpdateAvailable: boolean; forceDesktopDownload: boolean; forceMobileDownload: boolean; + forceGuildMembershipCta: boolean; forceHideOffline: boolean; forceHideEmailVerification: boolean; forceHideIOSInstall: boolean; @@ -64,6 +66,7 @@ export interface NagbarSettings { forceHideUpdateAvailable: boolean; forceHideDesktopDownload: boolean; forceHideMobileDownload: boolean; + forceHideGuildMembershipCta: boolean; } export type NagbarToggleKey = Exclude< @@ -84,6 +87,7 @@ export class NagbarStore implements NagbarSettings { mobileDownloadDismissed = false; pendingBulkDeletionDismissed: Record = {}; invitesDisabledDismissed: Record = {}; + guildMembershipCtaDismissed = false; claimAccountModalShownThisSession = false; forceOffline = false; forceEmailVerification = false; @@ -100,6 +104,7 @@ export class NagbarStore implements NagbarSettings { forceUpdateAvailable = false; forceDesktopDownload = false; forceMobileDownload = false; + forceGuildMembershipCta = false; forceHideOffline = false; forceHideEmailVerification = false; @@ -116,6 +121,7 @@ export class NagbarStore implements NagbarSettings { forceHideUpdateAvailable = false; forceHideDesktopDownload = false; forceHideMobileDownload = false; + forceHideGuildMembershipCta = false; constructor() { makeAutoObservable(this, {}, {autoBind: true}); @@ -136,6 +142,7 @@ export class NagbarStore implements NagbarSettings { 'mobileDownloadDismissed', 'pendingBulkDeletionDismissed', 'invitesDisabledDismissed', + 'guildMembershipCtaDismissed', ]); } @@ -235,6 +242,14 @@ export class NagbarStore implements NagbarSettings { return this.forceHideUpdateAvailable; } + getForceGuildMembershipCta(): boolean { + return this.forceGuildMembershipCta; + } + + getForceHideGuildMembershipCta(): boolean { + return this.forceHideGuildMembershipCta; + } + hasPendingBulkDeletionDismissed(scheduleKey: string | null): boolean { if (!scheduleKey) { return false; @@ -300,6 +315,7 @@ export class NagbarStore implements NagbarSettings { this.mobileDownloadDismissed = false; this.pendingBulkDeletionDismissed = {}; this.invitesDisabledDismissed = {}; + this.guildMembershipCtaDismissed = false; this.claimAccountModalShownThisSession = false; this.forceOffline = false; @@ -317,6 +333,7 @@ export class NagbarStore implements NagbarSettings { this.forceUpdateAvailable = false; this.forceDesktopDownload = false; this.forceMobileDownload = false; + this.forceGuildMembershipCta = false; this.forceHideOffline = false; this.forceHideEmailVerification = false; @@ -333,6 +350,7 @@ export class NagbarStore implements NagbarSettings { this.forceHideUpdateAvailable = false; this.forceHideDesktopDownload = false; this.forceHideMobileDownload = false; + this.forceHideGuildMembershipCta = false; } handleGuildUpdate(action: {