mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
fix(app): incorrect i18n usage in voice settings menus (#9)
This commit is contained in:
@@ -17,7 +17,6 @@
|
||||
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import {t} from '@lingui/core/macro';
|
||||
import {Trans, useLingui} from '@lingui/react/macro';
|
||||
import {
|
||||
CameraIcon,
|
||||
@@ -61,8 +60,7 @@ interface VoiceAudioSettingsMenuProps {
|
||||
|
||||
export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = observer(
|
||||
({inputDevices, outputDevices, onClose}) => {
|
||||
const {i18n} = useLingui();
|
||||
const tt = t(i18n);
|
||||
const {t} = useLingui();
|
||||
|
||||
const voiceSettings = VoiceSettingsStore;
|
||||
const voiceState = MediaEngineStore.getCurrentUserVoiceState();
|
||||
@@ -81,7 +79,7 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
<>
|
||||
<MenuGroup>
|
||||
<MenuItemSubmenu
|
||||
label={tt`Input Device`}
|
||||
label={t`Input Device`}
|
||||
icon={<MicrophoneIcon weight="fill" className={styles.icon} />}
|
||||
render={() => (
|
||||
<>
|
||||
@@ -94,12 +92,12 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
VoiceSettingsActionCreators.update({inputDeviceId: device.deviceId});
|
||||
}}
|
||||
>
|
||||
{device.label || tt`Microphone ${device.deviceId.slice(0, 8)}`}
|
||||
{device.label || t`Microphone ${device.deviceId.slice(0, 8)}`}
|
||||
</MenuItemRadio>
|
||||
))
|
||||
) : (
|
||||
<MenuItemRadio key="default" selected={true} onSelect={() => {}}>
|
||||
{tt`Default`}
|
||||
{t`Default`}
|
||||
</MenuItemRadio>
|
||||
)}
|
||||
</>
|
||||
@@ -107,7 +105,7 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
/>
|
||||
|
||||
<MenuItemSubmenu
|
||||
label={tt`Output Device`}
|
||||
label={t`Output Device`}
|
||||
icon={<SpeakerHighIcon weight="fill" className={styles.icon} />}
|
||||
render={() => (
|
||||
<>
|
||||
@@ -120,12 +118,12 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
VoiceSettingsActionCreators.update({outputDeviceId: device.deviceId});
|
||||
}}
|
||||
>
|
||||
{device.label || tt`Speaker ${device.deviceId.slice(0, 8)}`}
|
||||
{device.label || t`Speaker ${device.deviceId.slice(0, 8)}`}
|
||||
</MenuItemRadio>
|
||||
))
|
||||
) : (
|
||||
<MenuItemRadio key="default" selected={true} onSelect={() => {}}>
|
||||
{tt`Default`}
|
||||
{t`Default`}
|
||||
</MenuItemRadio>
|
||||
)}
|
||||
</>
|
||||
@@ -135,7 +133,7 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
|
||||
<MenuGroup>
|
||||
<MenuItemSlider
|
||||
label={tt`Input Volume`}
|
||||
label={t`Input Volume`}
|
||||
value={voiceSettings.inputVolume}
|
||||
minValue={0}
|
||||
maxValue={100}
|
||||
@@ -143,7 +141,7 @@ export const VoiceAudioSettingsMenu: React.FC<VoiceAudioSettingsMenuProps> = obs
|
||||
onFormat={(value) => `${Math.round(value)}%`}
|
||||
/>
|
||||
<MenuItemSlider
|
||||
label={tt`Output Volume`}
|
||||
label={t`Output Volume`}
|
||||
value={voiceSettings.outputVolume}
|
||||
minValue={0}
|
||||
maxValue={100}
|
||||
@@ -212,8 +210,7 @@ interface VoiceDeviceSettingsMenuProps {
|
||||
|
||||
export const VoiceDeviceSettingsMenu: React.FC<VoiceDeviceSettingsMenuProps> = observer(
|
||||
({devices, deviceType, onClose}) => {
|
||||
const {i18n} = useLingui();
|
||||
const tt = t(i18n);
|
||||
const {t} = useLingui();
|
||||
|
||||
const voiceSettings = VoiceSettingsStore;
|
||||
|
||||
@@ -227,13 +224,13 @@ export const VoiceDeviceSettingsMenu: React.FC<VoiceDeviceSettingsMenuProps> = o
|
||||
const effectiveDeviceId = resolveEffectiveDeviceId(storedDeviceId, devices);
|
||||
const devicesHaveLabels = hasDeviceLabels(devices);
|
||||
|
||||
const menuLabel = isInput ? tt`Input Device` : tt`Output Device`;
|
||||
const volumeLabel = isInput ? tt`Input Volume` : tt`Output Volume`;
|
||||
const menuLabel = isInput ? t`Input Device` : t`Output Device`;
|
||||
const volumeLabel = isInput ? t`Input Volume` : t`Output Volume`;
|
||||
const Icon = isInput ? MicrophoneIcon : SpeakerHighIcon;
|
||||
|
||||
const defaultDeviceName = isInput
|
||||
? (deviceId: string) => tt`Microphone ${deviceId.slice(0, 8)}`
|
||||
: (deviceId: string) => tt`Speaker ${deviceId.slice(0, 8)}`;
|
||||
? (deviceId: string) => t`Microphone ${deviceId.slice(0, 8)}`
|
||||
: (deviceId: string) => t`Speaker ${deviceId.slice(0, 8)}`;
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -257,7 +254,7 @@ export const VoiceDeviceSettingsMenu: React.FC<VoiceDeviceSettingsMenuProps> = o
|
||||
))
|
||||
) : (
|
||||
<MenuItemRadio key="default" selected={true} onSelect={() => {}}>
|
||||
{tt`Default`}
|
||||
{t`Default`}
|
||||
</MenuItemRadio>
|
||||
)}
|
||||
</>
|
||||
@@ -316,8 +313,7 @@ interface VoiceCameraSettingsMenuProps {
|
||||
}
|
||||
|
||||
export const VoiceCameraSettingsMenu: React.FC<VoiceCameraSettingsMenuProps> = observer(({videoDevices, onClose}) => {
|
||||
const {i18n} = useLingui();
|
||||
const tt = t(i18n);
|
||||
const {t} = useLingui();
|
||||
|
||||
const voiceSettings = VoiceSettingsStore;
|
||||
const effectiveVideoDeviceId = resolveEffectiveDeviceId(voiceSettings.videoDeviceId, videoDevices);
|
||||
@@ -327,7 +323,7 @@ export const VoiceCameraSettingsMenu: React.FC<VoiceCameraSettingsMenuProps> = o
|
||||
<>
|
||||
<MenuGroup>
|
||||
<MenuItemSubmenu
|
||||
label={tt`Camera`}
|
||||
label={t`Camera`}
|
||||
icon={<CameraIcon weight="fill" className={styles.icon} />}
|
||||
render={() => (
|
||||
<>
|
||||
@@ -340,12 +336,12 @@ export const VoiceCameraSettingsMenu: React.FC<VoiceCameraSettingsMenuProps> = o
|
||||
VoiceSettingsActionCreators.update({videoDeviceId: device.deviceId});
|
||||
}}
|
||||
>
|
||||
{device.label || tt`Camera ${device.deviceId.slice(0, 8)}`}
|
||||
{device.label || t`Camera ${device.deviceId.slice(0, 8)}`}
|
||||
</MenuItemRadio>
|
||||
))
|
||||
) : (
|
||||
<MenuItemRadio key="default" selected={true} onSelect={() => {}}>
|
||||
{tt`Default`}
|
||||
{t`Default`}
|
||||
</MenuItemRadio>
|
||||
)}
|
||||
</>
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(أقصى 15 معروض)"
|
||||
msgid "(No content)"
|
||||
msgstr "(لا يوجد محتوى)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(مرئي لك فقط)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "أوركسترا من صوت المفاتيح تنتظر..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "حولي"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "قبول"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "قبول طلب الصداقة"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "الوصول إلى أدوات المطور"
|
||||
msgid "Access granted"
|
||||
msgstr "تم منح الوصول"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "تجاوزات الوصول"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "مشترك سنوي نشط (تم جدولة الإلغاء)"
|
||||
msgid "Activities"
|
||||
msgstr "الأنشطة"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "إضافة ملاحظة"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "إضافة أو تغيير رقم هاتفك"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "إضافة تجاوز"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "ستظهر جميع الإشارات @ إليك هنا لمدة 7 أيام."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "جميع الإجراءات"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "جميع الترجمات مولدة حاليًا بواسطة LLM مع الحد الأدنى من المراجعة البشرية. نود أن نحصل على مساعدة من أشخاص حقيقيين لتوطين Fluxer إلى لغتك! للقيام بذلك، أرسل بريدًا إلكترونيًا إلى <0>i18n@fluxer.app</0> وسنكون سعداء بقبول مساهماتك."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "جميع المستخدمين"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "هل أنت متأكد أنك تريد جعل {0} مالك المجمو
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "هل أنت متأكد أنك تريد إزالة {0} كصديق؟"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "هل أنت متأكد أنك تريد نقل ملكية المجموع
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "هل أنت متأكد أنك تريد إلغاء حظر {0}؟"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "تلقائي"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "التحكم التلقائي في الكسب"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "العودة إلى القائمة"
|
||||
msgid "Back to login"
|
||||
msgstr "العودة إلى تسجيل الدخول"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "المكالمات"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "كاميرا"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "كاميرا {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "إلغاء"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "إلغاء طلب الصداقة"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "وصول القناة"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "تم رفض الوصول إلى القناة"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "تم تحديث وصول القناة"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "تمت إزالة القناة من المفضلة"
|
||||
msgid "Channel Settings"
|
||||
msgstr "إعدادات القناة"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "تمت مزامنة القناة مع الفئة الأصلية"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "قم باسترداد حسابك لاسترداد هذه الهدية."
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "قم باسترداد حسابك لإرسال طلبات الصداقة."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "مريح (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "مريح"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "تخطيط مريح"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "تكوين قناة AFK والوقت المحدد"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "تهيئة الإكمال التلقائي"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "تكوين الوصول الأساسي لهذه القناة"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "تهيئة أصوات الرسائل"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "تهيئة أصوات الإشعارات"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "تكوين التجاوزات لهذا العضو"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "تكوين التجاوزات لهذه الصلاحية"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "نسخ رابط الملف"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "نسخ FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "أيام"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "كتم الصوت"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "تقليل مستوى تكبير التطبيق"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "الافتراضي"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "الدنمارك"
|
||||
msgid "Dense"
|
||||
msgstr "كثيف"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "تخطيط كثيف"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "الوصول المبكر إلى الميزات الجديدة"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "إلغاء الصدى"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "تعديل \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "تعديل الوصول لـ {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "تعديل الملاحظة"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "تعديل التجاوزات للأدوار والأعضاء في هذه القناة."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "تعديل الملف الشخصي"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "اسم الملف:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "سيتم إرسال الملفات فورًا دون معاينة."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "تصفية حسب الإجراء"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "تصفية حسب الإجراء"
|
||||
msgid "Filter by content"
|
||||
msgstr "تصفية حسب المحتوى"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "تصفية حسب المستخدم"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "شبكة"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "عرض الشبكة"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "الإدخال"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "جهاز الإدخال"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "حالات الإدخال"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "حجم الإدخال"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "مباشر"
|
||||
msgid "Live Preview"
|
||||
msgstr "معاينة مباشرة"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "تحميل المزيد"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "الإشارات:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "تم تعطيل المراسلة مؤقتًا في هذا المجتمع
|
||||
msgid "Mic Test"
|
||||
msgstr "اختبار الميكروفون"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "ميكروفون {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "الميكروفون {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "لم يتم تعيين ربط مفتاح"
|
||||
msgid "No limit"
|
||||
msgstr "لا يوجد حد"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "لا توجد سجلات حتى الآن"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "لا توجد طلبات معلقة"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "لا توجد طلبات معلقة تطابق بحثك"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "لم يتم العثور على صلاحيات"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "لا توجد تفاعلات"
|
||||
msgid "No reason provided"
|
||||
msgstr "لم يتم تقديم سبب"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "لم يتم تقديم سبب."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "لا أحد"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "قمع الضوضاء"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "ليس الآن"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "ليست من اختيارك؟ يمكنك تعطيل هذه الميزة في أي وقت."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "طلبات الصداقة الصادرة"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "جهاز الإخراج"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "مستوى الصوت الخارجي"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "زر المعاينة"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "كاميرا المعاينة"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "هل أنت مستعد للترقية؟"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "السبب"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "إزالة الفلتر"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "إزالة الإشارة"
|
||||
msgid "Remove override"
|
||||
msgstr "إزالة التجاوز"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "إزالة التجاوز"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "تم تقديم التقرير بنجاح. سيقوم فريق الأم
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "الإبلاغ عن المستخدم"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "إعادة الاشتراك"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "البحث فقط في الرسالة المباشرة الحالية"
|
||||
msgid "Search pending requests"
|
||||
msgstr "بحث عن الطلبات المعلقة"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "بحث عن الأذونات..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "إرسال الرمز"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "إرسال طلب صداقة"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "إظهار الرسائل الأكثر صلة أولاً"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "إظهار كاميرتي الخاصة"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "إظهار نافذة الجهاز الجديد"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "إظهار المشاركين غير المرئيين بالفيديو"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "مكالمات صامتة من الجميع"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "يحاكي وجود معرف عميل Stripe (لاختبار الوصول إلى سجل المشتريات)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "عمود واحد"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "حدث خطأ ما وتوقف التطبيق. حاول إعادة التحميل أو إعادة تعيين التطبيق."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "حدث خطأ ما أثناء تحميل سجل التدقيق."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "تحدث بالرسالة"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "تحدث بشكل طبيعي في الميكروفون. يجب أن تسمع صوتك من خلال مكبرات الصوت. يجب أن يبقى المستوى في النطاق الأخضر \"جيد\" أو الأصفر \"مثالي\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "مكبر الصوت {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "المتحدث {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "ابدأ المشاركة"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "ابدأ مكالمة صوتية"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "التبديل بين آخر مجتمع والرسائل المباشر
|
||||
msgid "Switch Device"
|
||||
msgstr "تبديل الجهاز"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "التبديل إلى تخطيط مريح"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "التبديل إلى تخطيط مكثف"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "التبديل إلى عمود واحد"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "التبديل إلى هذا الحساب"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "التبديل إلى هذا الجهاز"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "التبديل إلى عمودين"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "مزامنة السمة"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "مزامنة السمة عبر الأجهزة"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "المزامنة مع الفئة"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "لم يتم تمييز هذه القناة بأنها NSFW. يمكن إرسال المحتوى الصريح فقط في قنوات NSFW. اطلب من المشرف تمييز هذه القناة كـ NSFW إذا كان ذلك مناسبًا."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "هذه القناة غير متزامنة مع الفئة الأصل <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "هذه القناة متزامنة مع الفئة الأصل <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "الموضوع"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "إجمالي وقت التحليل:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "تتبع إجراءات المشرفين عبر المجتمع."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "عدّل أساسيات هذه الفئة."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "عدّل أساسيات هذه القناة."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "عمودان"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "تعذر تثبيت حزمة الإيموجي"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "تعذر تثبيت حزمة الملصقات"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "تعذر تحميل سجلات النشاط"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "غير متاح للجميع باستثناء الموظفين"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "قم بإلغاء حظر هذا المستخدم قبل إرسال طل
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "إلغاء حظر المستخدم"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "استخدم مفتاح الأمان"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "استخدم إعدادات اللغة للنظام لتنسيق الوقت"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "استخدم هذه الأزرار لتعيين جميع الأذونات بسرعة."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "نقل المستخدم للقناة"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "الملف الشخصي للمستخدم"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "ملف المستخدم: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "فيديو"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "مكالمة فيديو"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "جودة الفيديو"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "إعدادات الفيديو"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "عرض الرموز"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "عرض ملف المجتمع"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "عرض مخزون الهدايا"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "عرض الملف العام"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "صوت"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "إعدادات الصوت والفيديو"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "مكالمة صوتية"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "مكالمة صوتية"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "منطقة الصوت"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "إعدادات الصوت"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "عند التمكين، يمكنك وضع القنوات في المفض
|
||||
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 "عند التمكين، ستحتاج إلى النقر المزدوج على قنوات الصوت للانضمام إليها. عند التعطيل (الافتراضي)، سينضم النقر الأحادي إلى القناة فورًا."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "عندما يبدأ المشرفون في الإشراف، يمكنك الإشراف على الإشراف هنا."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "يمكنك استخدام الروابط وMarkdown لتنسيق نصك.
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "لا يمكنك إضافة تفاعلات جديدة أثناء وجودك في المهلة."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "لا يمكنك أن تصادق نفسك"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "لا يمكنك التفاعل مع التفاعلات في نتائج
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "لا يمكنك الانضمام أثناء وجودك في المهلة."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "لا يمكنك مراسلة نفسك"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(показани максимум 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Няма съдържание)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(видимо само за вас)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Симфония от щракащи клавиши е на път..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "За мен"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Приеми"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Приеми заявка за приятелство"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Достъп до инструменти за разработчици"
|
||||
msgid "Access granted"
|
||||
msgstr "Достъпът е предоставен"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Пренаписвания на достъп"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Активен годишен абонат (отмяната е наср
|
||||
msgid "Activities"
|
||||
msgstr "Дейности"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Добави бележка"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Добави или промени телефонния си номер"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Добави пренаписване"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Всички @споменавания за теб ще се показват тук за 7 дни."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Всички действия"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Всички преводи в момента са генерирани от LLM с минимални човешки корекции. Ще се радваме на реални хора да ни помогнат да локализираме Fluxer на вашия език! За целта, изпратете имейл на <0>i18n@fluxer.app</0> и ще се радваме да приемем вашите приноси."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Всички потребители"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Сигурен ли си, че искаш да направиш {0} со
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Сигурен ли си, че искаш да премахнеш {0} като приятел?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Сигурен ли си, че искаш да прехвърлиш со
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Сигурен ли си, че искаш да премахнеш блокирането на {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Автоматично"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Автоматичен контрол на усилването"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Назад към списъка"
|
||||
msgid "Back to login"
|
||||
msgstr "Назад към входа"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Разговори"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Камера"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Камера {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Отказ"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Отмени заявката за приятелство"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Достъп до канала"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Достъп до канала отказан"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Достъпът до канала е обновен"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Каналът е премахнат от любими"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Настройки на канала"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Каналът е синхронизиран с родителската категория"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "Придобийте акаунта си, за да осребрите
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Придобийте акаунта си, за да изпращате заявки за приятелство."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Удобно (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Удобно"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Удобно оформление"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Конфигурирайте AFK канал и таймаут"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Конфигурирайте автоматичното довършване"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Конфигурирайте основния достъп за този канал"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Конфигурирайте звуците на съобщенията"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Конфигурирайте звуците на известията"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Конфигурирайте превишения за този член"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Конфигурирайте превишения за тази роля"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Копирай връзка към файл"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Копирай FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Дни"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Изключи звука"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Намали мащаба на приложението"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "По подразбиране"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Дания"
|
||||
msgid "Dense"
|
||||
msgstr "Компактен"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Компактен изглед"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Ранен достъп до нови функции"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Премахване на ехото"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Редактирай \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Редактирай достъпа за {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Редактиране на бележка"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "Редактирайте презаписванията за роли и членове в този канал."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Редактиране на профил"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "име на файл:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Файловете ще бъдат изпратени незабавно без визуализация."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Филтрирай по действие"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Филтрирай по действие"
|
||||
msgid "Filter by content"
|
||||
msgstr "Филтрирай по съдържание"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Филтрирай по потребител"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Изглед мрежа"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Вход"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Входно устройство"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Състояния на входа"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Сила на входа"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "На живо"
|
||||
msgid "Live Preview"
|
||||
msgstr "Преглед на живо"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Зареди още"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "споменавания:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Съобщенията временно са деактивирани в
|
||||
msgid "Mic Test"
|
||||
msgstr "Тест на микрофон"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Микрофон {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Микрофон {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Не е зададена клавишна комбинация"
|
||||
msgid "No limit"
|
||||
msgstr "Без ограничение"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Все още няма записи"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Няма чакащи заявки"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Няма чакащи заявки, съвпадащи с търсенето"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Не са намерени разрешения"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Няма реакции"
|
||||
msgid "No reason provided"
|
||||
msgstr "Не е посочена причина"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Не е предоставена причина."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Никой"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Потискане на шума"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Не сега"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "Не е по вкуса ти? Можеш да изключиш тази функция по всяко време."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Изпратени заявки за приятелство"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Изходно устройство"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Обем на изхода"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Бутон за преглед"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Камера за преглед"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Готови ли сте за ъпгрейд?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Причина"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Премахни филтъра"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Премахни споменаването"
|
||||
msgid "Remove override"
|
||||
msgstr "Премахни заместването"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Премахни заместването"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "Докладът беше подаден успешно. Екипът п
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Докладвай потребител"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Абонирай се отново"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Търси само в текущото ЛС"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Търси чакащи заявки"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Търси разрешения..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Изпрати код"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Изпрати заявка за приятелство"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Показвай най-подходящите съобщения пър
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Покажи собствената камера"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Покажи модала за ново устройство"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Показвай участници без видео"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Тихи повиквания от всички"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Симулира наличието на Stripe клиентски идентификатор (за тестване на достъп до историята на покупки)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Една колона"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Нещо се обърка и приложението се срина. Опитай да презаредиш или нулираш приложението."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Нещо се обърка при зареждане на регистъра на одитите."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Прочети съобщението"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Говори нормално в микрофона. Трябва да се чуваш през говорителите. Нивото трябва да остане в зелената \"Добро\" или жълтата \"Оптимално\" зона."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Динамик {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Говорител {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Започни споделяне"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Започни гласово повикване"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Превключвай между последната общност и
|
||||
msgid "Switch Device"
|
||||
msgstr "Смени устройство"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Превключи към комфортен изглед"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Превключи към плътен изглед"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Превключи към една колона"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Превключи към този акаунт"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Смени към това устройство"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Превключи към две колони"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Синхронизиране на темата"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Синхронизирай темата между устройствата"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Синхронизирай с категорията"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Този канал не е маркиран като NSFW. Явно съдържание може да се изпраща само в NSFW канали. Помоли модератор да маркира канала като NSFW, ако е подходящо."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Този канал не е синхронизиран с родителската категория <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Този канал е синхронизиран с родителската категория <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Тема"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Общо време за парсиране:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Проследявайте действията на модераторите в общността."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Настройте основните параметри на тази
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Настройте основните параметри на този канал."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Две колони"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Не може да се инсталира пакетът с емодж
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Не може да се инсталира пакетът със стикери"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Не може да се заредят дневниците на дейността"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Недостъпно за всички, освен за персонал
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Разблокирайте този потребител преди да
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Разблокиране на потребител"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Използвай ключ за сигурност"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Използвай системния език за формат на времето"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Използвай тези бутони, за да зададеш всички разрешения бързо."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Потребителят премести канала"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Профил на потребителя"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Профил на потребителя: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Видео"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Видео разговор"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Качество на видеото"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Настройки за видео"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Преглед на кодовете"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Преглед на профила на общността"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Преглед на инвентара с подаръци"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Преглед на глобалния профил"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Глас"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Настройки за глас и видео"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Гласово повикване"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Гласово повикване"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Гласов регион"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Гласови настройки"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Когато е включено, можете да маркирате
|
||||
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 "Когато е включено, трябва да щракнете двукратно върху гласов канал, за да се присъедините. Когато е изключено (по подразбиране), еднократното щракване ще ви включи веднага."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Когато модераторите започнат да модерират, тук можете да модерирате модерирането."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "Можете да използвате връзки и Markdown, за д
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "Не можете да добавяте нови реакции, докато сте в режим на изчакване."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Не можете да се добавите като приятел"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "Не можете да взаимодействате с реакции
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "Не можете да се присъедините, докато сте в режим на изчакване."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Не можете да си изпращате съобщения"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(zobrazeno max. 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Žádný obsah)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(viditelné jen pro vás)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Symfonie klapání kláves právě začíná..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "O mně"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Přijmout"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Přijmout žádost o přátelství"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Přístup k vývojářským nástrojům"
|
||||
msgid "Access granted"
|
||||
msgstr "Přístup povolen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Přepsání přístupu"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktivní roční předplatitel (plánováno zrušení)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktivity"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Záznam aktivit"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Přidat poznámku"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Přidat nebo změnit telefonní číslo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Přidat přepsání"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Všechny @zmínky o vás se zde zobrazí po dobu 7 dnů."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Všechny akce"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Všechny překlady jsou aktuálně generovány LLM s minimální lidskou revizí. Rádi bychom získali skutečné lidi, kteří nám pomohou lokalizovat Fluxer do vašeho jazyka! Pokud máte zájem, pošlete e-mail na <0>i18n@fluxer.app</0> a rádi přijmeme vaše příspěvky."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Všichni uživatelé"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Opravdu chcete udělat z {0} vlastníka skupiny? Ztratíte oprávnění
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Opravdu chcete odebrat {0} ze seznamu přátel?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Opravdu chcete převést vlastnictví skupiny na {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Opravdu chcete odblokovat {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatická regulace zesílení"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Zpět na seznam"
|
||||
msgid "Back to login"
|
||||
msgstr "Zpět na přihlášení"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Hovory"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Zrušit"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Zrušit žádost o přátelství"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Přístup ke kanálu"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Přístup ke kanálu odepřen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Přístup ke kanálu aktualizován"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanál odebrán z oblíbených"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Nastavení kanálu"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanál synchronizován s rodičovskou kategorií"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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í."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Komfortní (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Pohodlný"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Pohodlné rozložení"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Nastav AFK kanál a časový limit"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Nastavit automatické doplňování"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Nastav základní přístup k tomuto kanálu"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Nastavit zvuky zpráv"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Nastavit zvuky notifikací"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Nastav přepsání pro tohoto člena"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Nastav přepsání pro tuto roli"
|
||||
|
||||
@@ -5147,7 +5149,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:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Zkopírovat FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dny"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Ztlumit"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Snížit úroveň zvětšení aplikace"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Výchozí"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dánsko"
|
||||
msgid "Dense"
|
||||
msgstr "Hustý"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Husté rozvržení"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Předběžný přístup k novým funkcím"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Potlačení ozvěny"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Upravit \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Upravit přístup pro {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Upravit poznámku"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Upravit profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "název souboru:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Soubory budou odeslány okamžitě bez náhledu."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrovat podle akce"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrovat podle akce"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrovat podle obsahu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrovat podle uživatele"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Mřížka"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Zobrazení mřížky"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Vstup"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Vstupní zařízení"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Stavy vstupu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Hlasitost vstupu"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Živě"
|
||||
msgid "Live Preview"
|
||||
msgstr "Živý náhled"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Načíst další"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "zmínky:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Zprávy byly v této komunitě dočasně zakázány pracovníky platform
|
||||
msgid "Mic Test"
|
||||
msgstr "Test mikrofonu"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Není nastaven žádný klávesový zkratka"
|
||||
msgid "No limit"
|
||||
msgstr "Bez omezení"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Zatím žádné záznamy"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Žádné čekající žádosti"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Žádné čekající žádosti neodpovídají hledání"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nebyla nalezena žádná oprávnění"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Žádné reakce"
|
||||
msgid "No reason provided"
|
||||
msgstr "Není uveden žádný důvod"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nebyl uveden žádný důvod."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nikdo"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Potlačení šumu"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ne teď"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Odeslané žádosti o přátelství"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Výstupní zařízení"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Výstupní hlasitost"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Tlačítko náhledu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Náhled kamery"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Připraven na upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Důvod"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Odstranit filtr"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Odstranit zmínku"
|
||||
msgid "Remove override"
|
||||
msgstr "Odstranit přepsání"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Odstranit přepsání"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Nahlásit uživatele"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Znovu odebírat"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Hledat pouze v aktuální DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Hledat čekající žádosti"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Hledat oprávnění..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Odeslat kód"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Odeslat žádost o přátelství"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Zobrazit nejrelevantnější zprávy jako první"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Zobrazit svou kameru"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Zobrazit modální okno nového zařízení"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Zobrazit účastníky bez videa"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Tiché hovory od všech"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simuluje existenci Stripe ID zákazníka (pro testování přístupu k historii nákupů)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Jeden sloupec"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Něco se pokazilo a aplikace spadla. Zkuste ji znovu načíst nebo resetovat."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Při načítání auditního protokolu se něco pokazilo."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Přehrát zprávu"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Mluvte normálně do mikrofonu. Měli byste se slyšet přes reproduktory. Úroveň by měla zůstat v zeleném pásmu „Dobré“ nebo žlutém pásmu „Optimální“."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Reproduktor {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Reproduktor {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Začít sdílení"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Zahájit hlasový hovor"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Přepnout mezi poslední komunitou a přímými zprávami"
|
||||
msgid "Switch Device"
|
||||
msgstr "Změnit zařízení"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Přejít na pohodlné rozvržení"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Přejít na husté rozvržení"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Přejít na jeden sloupec"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Přepnout na tento účet"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Přepnout na toto zařízení"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Přejít na dva sloupce"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synchronizovat motiv"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synchronizovat motiv napříč zařízeními"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synchronizovat s kategorií"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Tento kanál není označen jako NSFW. Explicitní obsah lze posílat pouze v NSFW kanálech. Požádejte moderátora, aby tento kanál označil jako NSFW, pokud je to vhodné."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Tento kanál není synchronizovaný s nadřazenou kategorií <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Tento kanál je synchronizovaný s nadřazenou kategorií <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Téma"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Celkový čas parsování:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Sledujte akce moderátorů napříč komunitou."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Upravte základy této kategorie."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Upravte základy tohoto kanálu."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dva sloupce"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Nelze nainstalovat balíček emoji"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Nelze nainstalovat balíček samolepek"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Nelze načíst záznamy aktivit"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Nedostupné pro všechny kromě personálu"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Než pošlete žádost o přátelství, odblokujte tohoto uživatele."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Odblokovat uživatele"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Použít bezpečnostní klíč"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Použít systémové národní prostředí pro formát času"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Použijte tato tlačítka k rychlému nastavení všech oprávnění."
|
||||
|
||||
@@ -19840,11 +19868,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:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil uživatele"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil uživatele: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videohovor"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Kvalita videa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Nastavení videa"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Zobrazit kódy"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Zobrazit profil komunity"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Zobrazit inventář dárků"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Zobrazit globální profil"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Hlas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Nastavení hlasu a videa"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Hlasový hovor"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Hlasový hovor"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Hlasová oblast"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Nastavení hlasu"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Po zapnutí si můžeš oblíbit kanály, které se zobrazí v sekci Obl
|
||||
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í."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Když začnou moderátoři moderovat, můžeš tady moderovat tu moderaci."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Nemůžeš se přidat mezi přátele sám sebe"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Nemůžeš si psát sám se sebou"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maks. 15 vist)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Ingen indhold)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(kun synligt for dig)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "En symfoni af klikkende taster er i gang..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Om mig"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accepter"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Accepter venneanmodning"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Åbn udviklerværktøjer"
|
||||
msgid "Access granted"
|
||||
msgstr "Adgang givet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Adgangsoverskrivelser"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktiv årlig abonnent (afbestilling planlagt)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktiviteter"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Aktivitetslog"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Tilføj note"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Tilføj eller skift dit telefonnummer"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Tilføj overskrivelse"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Alle @omtaler af dig vises her i 7 dage."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Alle handlinger"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Alle oversættelser er i øjeblikket genereret af LLM med minimal menneskelig revision. Vi vil elske at få rigtige mennesker til at hjælpe os med at lokalisere Fluxer til dit sprog! For at gøre dette, send en e-mail til <0>i18n@fluxer.app</0>, så vil vi være glade for at modtage dine bidrag."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Alle brugere"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Er du sikker på, at du vil gøre {0} til gruppeejer? Du mister ejerrett
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Er du sikker på, at du vil fjerne {0} som ven?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Er du sikker på, at du vil overføre ejerskabet af gruppen til {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Er du sikker på, at du vil ophæve blokeringen af {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatisk niveaukontrol"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Tilbage til listen"
|
||||
msgid "Back to login"
|
||||
msgstr "Tilbage til login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Opkald"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Annuller"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Annuller venneanmodning"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanaladgang"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanaladgang nægtet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanaladgang opdateret"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal fjernet fra favoritter"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanalsindstillinger"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal synkroniseret med overordnet kategori"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Komfortabel (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Komfortabelt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Komfortabelt layout"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfigurer AFK-kanal og timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfigurer autofærdiggørelse"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfigurer basal adgang til denne kanal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfigurer beskedlyde"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfigurer notifikationslyde"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfigurer overskridelser for dette medlem"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfigurer overskridelser for denne rolle"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopier fil-link"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopier FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dage"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Deaf"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Formindsk app-zoomniveau"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danmark"
|
||||
msgid "Dense"
|
||||
msgstr "Tæt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Tæt layout"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Tidlig adgang til nye funktioner"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Ekkokontrol"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Rediger \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Rediger adgang for {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Rediger note"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Rediger profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "filnavn:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Filer sendes straks uden forhåndsvisning."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrer efter handling"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrer efter handling"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrer efter indhold"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrer efter bruger"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Rutenet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rutenetvisning"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Indgang"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Indgangsenhed"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Indgangstilstande"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Indgangsvolumen"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Live-udgave"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Indlæs mere"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "nævnelser:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Beskedsystemet er midlertidigt deaktiveret i dette fællesskab af platfo
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofontest"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Ingen genvejstast angivet"
|
||||
msgid "No limit"
|
||||
msgstr "Ingen grænse"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Ingen logfiler endnu"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Ingen ventende anmodninger"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Ingen ventende anmodninger matcher din søgning"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Ingen tilladelser fundet"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Ingen reaktioner"
|
||||
msgid "No reason provided"
|
||||
msgstr "Ingen grund angivet"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Ingen grund blev angivet."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ingen"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Støjreduktion"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ikke nu"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Udgående venneanmodninger"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Udgangsenhed"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Outputvolumen"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Forhåndsvisningsknap"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Forhåndsvis kamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Klar til at opgradere?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Årsag"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Fjern filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Fjern omtale"
|
||||
msgid "Remove override"
|
||||
msgstr "Fjern tilsidesættelse"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Fjern tilsidesættelse"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Rapporter bruger"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Tilmeld igen"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Søg kun i den aktuelle DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Søg efter ventende anmodninger"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Søg efter tilladelser..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Send kode"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Send venneanmodning"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Vis de mest relevante beskeder først"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Vis mit eget kamera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Vis modal for ny enhed"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Vis deltagere uden video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Stille opkald fra alle"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulerer at have et Stripe-kunde-ID (til test af adgang til købsoversigt)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Enkel kolonne"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Noget gik galt, og appen crashede. Prøv at genindlæse eller nulstille appen."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Noget gik galt under indlæsning af revisionsloggen."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Tal besked"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Tal normalt i mikrofonen. Du burde kunne høre dig selv gennem højttalerne. Niveauet bør holde sig i det grønne \"Godt\" eller gule \"Optimalt\" område."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Højtaler {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Højttaler {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Begynd at dele"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Start taleopkald"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Skift mellem den seneste fællesskab og direkte beskeder"
|
||||
msgid "Switch Device"
|
||||
msgstr "Skift enhed"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Skift til afslappet layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Skift til tæt layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Skift til enkeltkolonne"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Skift til denne konto"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Skift til denne enhed"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Skift til to kolonner"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synkroniser tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synkronisér tema på tværs af enheder"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synk med kategori"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Denne kanal er ikke markeret som NSFW. Eksplicit indhold kan kun sendes i NSFW-kanaler. Bed en moderator om at markere kanalen som NSFW, hvis det er relevant."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Denne kanal er ikke synkroniseret med forældre-kategorien <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Denne kanal er synkroniseret med forældre-kategorien <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Emne"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Samlet parseringsstid:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Følg moderatorhandlinger i hele fællesskabet."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Finjuster denne kategoris grundlæggende indstillinger."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Finjuster denne kanals grundlæggende indstillinger."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "To kolonner"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Kunne ikke installere emojipakke"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Kunne ikke installere klistermærkepakke"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Kunne ikke indlæse aktivitetslog"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Ikke tilgængelig for alle undtagen personale"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Fjern blokering af denne bruger, før du sender en venneanmodning."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Fjern blokering af bruger"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Brug sikkerhedsnøgle"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Brug systemets lokalitet til tidsformat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Brug disse knapper til hurtigt at indstille alle tilladelser."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Bruger flyttede kanal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Brugerprofil"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Brugerprofil: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videoopkald"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videokvalitet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videoindstillinger"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Se koder"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Se fællesskabsprofil"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Se gavebeholdning"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Se global profil"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Lyd"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Lyd- og videoindstillinger"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Opkald"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Opkald"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Lydområde"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Lydindstillinger"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Når det er aktiveret, kan du markere kanaler som favoritter, og de vise
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Når moderatorer begynder at moderere, kan du moderere moderationen her."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Du kan ikke blive venner med dig selv"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Du kan ikke sende besked til dig selv"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maximal 15 angezeigt)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Kein Inhalt)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(nur für dich sichtbar)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Eine Symphonie klackernder Tasten ist im Gange..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Über mich"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Akzeptieren"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Freundschaftsanfrage annehmen"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Entwicklerwerkzeuge aufrufen"
|
||||
msgid "Access granted"
|
||||
msgstr "Zugriff gewährt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Zugriffsüberschreibungen"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktiver Jahresabonnent (Kündigung geplant)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktivitäten"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Aktivitätsprotokoll"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Notiz hinzufügen"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Deine Telefonnummer hinzufügen oder ändern"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Überschreibung hinzufügen"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Alle @Erwähnungen von dir erscheinen hier für 7 Tage."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Alle Aktionen"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Alle Übersetzungen werden derzeit von LLM generiert mit minimaler menschlicher Überarbeitung. Wir würden uns freuen, wenn echte Menschen uns helfen, Fluxer in Ihre Sprache zu lokalisieren! Dazu senden Sie bitte eine E-Mail an <0>i18n@fluxer.app</0>, und wir freuen uns über Ihre Beiträge."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Alle Benutzer"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Möchtest du wirklich {0} zum Gruppenbesitzer machen? Du verlierst dann
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Möchtest du wirklich {0} als Freund entfernen?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Möchtest du wirklich die Gruppenbesitzrechte an {0} übertragen?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Möchtest du wirklich {0} entblocken?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automatisch"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatische Lautstärkeregelung"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Zurück zur Liste"
|
||||
msgid "Back to login"
|
||||
msgstr "Zurück zur Anmeldung"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Anrufe"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Abbrechen"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Freundschaftsanfrage abbrechen"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanalzugriff"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanalzugriff verweigert"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanalzugriff aktualisiert"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal aus Favoriten entfernt"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanal-Einstellungen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal mit übergeordneter Kategorie synchronisiert"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Beanspruche dein Konto, um Freundschaftsanfragen zu senden."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Komfortabel (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Bequem"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Bequemes Layout"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "AFK-Kanal und Timeout konfigurieren"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Autovervollständigung konfigurieren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Basiszugriff für diesen Kanal konfigurieren"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Nachrichtentöne konfigurieren"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Benachrichtigungstöne konfigurieren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Overrides für dieses Mitglied konfigurieren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Overrides für diese Rolle konfigurieren"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Dateilink kopieren"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTag kopieren"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Tage"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Stummschalten"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "App-Zoom verringern"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dänemark"
|
||||
msgid "Dense"
|
||||
msgstr "Kompakt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Kompaktes Layout"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Früher Zugang zu neuen Funktionen"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Echo-Unterdrückung"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" bearbeiten"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Zugriff für {0} bearbeiten"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Notiz bearbeiten"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "Dateiname:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Dateien werden sofort ohne Vorschau versendet."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Nach Aktion filtern"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Nach Aktion filtern"
|
||||
msgid "Filter by content"
|
||||
msgstr "Nach Inhalt filtern"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Nach Nutzer filtern"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Raster"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rasteransicht"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Eingabe"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Eingabegerät"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Eingabestatus"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Eingabelautstärke"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Live-Vorschau"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Mehr laden"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "Erwähnungen:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Nachrichten wurden von Plattformmitarbeitern in dieser Community vorübe
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofontest"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Keine Tastenkombination festgelegt"
|
||||
msgid "No limit"
|
||||
msgstr "Keine Begrenzung"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Noch keine Protokolle"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Keine ausstehenden Anfragen"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Keine ausstehenden Anfragen passen zu deiner Suche"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Keine Berechtigungen gefunden"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Keine Reaktionen"
|
||||
msgid "No reason provided"
|
||||
msgstr "Kein Grund angegeben"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Es wurde kein Grund angegeben."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Niemand"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Rauschunterdrückung"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Nicht jetzt"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Ausgehende Freundschaftsanfragen"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Ausgabegerät"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Ausgangslautstärke"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Vorschau-Schaltfläche"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Kameravorschau"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Bereit für ein Upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Grund"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Filter entfernen"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Erwähnung entfernen"
|
||||
msgid "Remove override"
|
||||
msgstr "Überschreibung entfernen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Überschreibung entfernen"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Benutzer melden"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Erneut abonnieren"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Nur in der aktuellen DM suchen"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Ausstehende Anfragen durchsuchen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Berechtigungen durchsuchen…"
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Code senden"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Freundschaftsanfrage senden"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Relevanteste Nachrichten zuerst anzeigen"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Meine eigene Kamera anzeigen"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Modal für neues Gerät anzeigen"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Nicht-Video-Teilnehmer anzeigen"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Anrufe von allen stumm"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simuliert eine Stripe-Kundennummer (zur Prüfung des Kaufverlaufs)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Einzelne Spalte"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Etwas ist schiefgelaufen und die App ist abgestürzt. Versuche, die App neu zu laden oder zurückzusetzen."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Beim Laden des Prüfprotokolls ist etwas schiefgelaufen."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Nachricht sprechen"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Sprich normal in dein Mikrofon. Du solltest dich über die Lautsprecher hören. Der Pegel sollte im grünen \"Gut\"- oder gelben \"Optimal\"-Bereich bleiben."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Lautsprecher {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Lautsprecher {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Freigabe starten"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Sprachanruf starten"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Zwischen der letzten Community und direkten Nachrichten wechseln"
|
||||
msgid "Switch Device"
|
||||
msgstr "Gerät wechseln"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Zum gemütlichen Layout wechseln"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Zum kompakten Layout wechseln"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Auf Einzelspalte umstellen"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Zu diesem Konto wechseln"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Auf dieses Gerät wechseln"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Auf Zwei-Spalten-Ansicht umstellen"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Design synchronisieren"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Design über Geräte hinweg synchronisieren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Mit Kategorie synchronisieren"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Dieser Kanal ist nicht als NSFW markiert. Explizite Inhalte dürfen nur in NSFW-Kanälen gesendet werden. Bitte einen Moderator, diesen Kanal bei Bedarf als NSFW zu markieren."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Dieser Kanal ist nicht mit der übergeordneten Kategorie <0>{0}</0> synchronisiert."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Dieser Kanal ist mit der übergeordneten Kategorie <0>{0}</0> synchronisiert."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Thema"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Gesamte Analysezeit:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Verfolge Moderatoraktionen in der Community."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Passe die Grundlagen dieser Kategorie an."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Passe die Grundlagen dieses Kanals an."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Zwei Spalten"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Emoji-Paket konnte nicht installiert werden"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Sticker-Paket konnte nicht installiert werden"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Aktivitätsprotokolle konnten nicht geladen werden"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Nur für Personal verfügbar"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Entsperre diesen Nutzer, bevor du eine Freundschaftsanfrage sendest."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Nutzer entsperren"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Sicherheitsschlüssel verwenden"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Systemeinstellung für Zeitformat verwenden"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Verwende diese Schaltflächen, um schnell alle Berechtigungen festzulegen."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Benutzer hat Kanal gewechselt"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Benutzerprofil"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Benutzerprofil: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videoanruf"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videoqualität"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videoeinstellungen"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Codes anzeigen"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Community-Profil anzeigen"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Geschenkbestand anzeigen"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Globales Profil anzeigen"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Sprache"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Sprach- & Videoeinstellungen"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Sprachanruf"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Sprachanruf"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Sprachregion"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Spracheinstellungen"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Wenn aktiviert, kannst du Kanäle favorisieren und sie erscheinen im Fav
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Wenn Moderatoren mit der Moderation beginnen, kannst du hier die Moderation moderieren."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Du kannst dich nicht selbst befreunden"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Du kannst dir selbst keine Nachricht schicken"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(μέγ. 15 εμφανίζονται)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Χωρίς περιεχόμενο)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(ορατό μόνο σε εσένα)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Μια συμφωνία από κλικ στα πλήκτρα είναι σε εξέλιξη..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Σχετικά με εμένα"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Αποδοχή"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Αποδοχή αιτήματος φιλίας"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Πρόσβαση στα εργαλεία προγραμματιστή"
|
||||
msgid "Access granted"
|
||||
msgstr "Πρόσβαση παραχωρήθηκε"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Παράκαμψη πρόσβασης"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Ενεργός ετήσιος συνδρομητής (Ακύρωση π
|
||||
msgid "Activities"
|
||||
msgstr "Δραστηριότητες"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Προσθήκη Σημείωσης"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Προσθέστε ή αλλάξτε τον αριθμό τηλεφώνου σας"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Προσθήκη Παράκαμψης"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Όλες οι @αναφορές σε εσάς θα εμφανίζονται εδώ για 7 ημέρες."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Όλες οι ενέργειες"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Όλες οι μεταφράσεις είναι αυτή τη στιγμή παραγόμενες από LLM με ελάχιστη ανθρώπινη αναθεώρηση. Θα θέλαμε πραγματικούς ανθρώπους να μας βοηθήσουν να τοπικοποιήσουμε το Fluxer στη γλώσσα σας! Για να το κάνετε αυτό, στείλτε ένα email στο <0>i18n@fluxer.app</0> και θα είμαστε χαρούμενοι να δεχτούμε τις συνεισφορές σας."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Όλοι οι χρήστες"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να κάνετε τον
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε τον/την {0} από φίλους;"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να μεταβιβάσ
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Είστε σίγουροι ότι θέλετε να ξεμπλοκάρετε τον/την {0};"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Αυτόματο"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Αυτόματος έλεγχος ενίσχυσης"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Επιστροφή στη λίστα"
|
||||
msgid "Back to login"
|
||||
msgstr "Επιστροφή στη σύνδεση"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Κλήσεις"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Κάμερα"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Κάμερα {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Ακύρωση"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Ακύρωση αιτήματος φιλίας"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Πρόσβαση καναλιού"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Η πρόσβαση στο κανάλι απορρίφθηκε"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Η πρόσβαση στο κανάλι ενημερώθηκε"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Το κανάλι αφαιρέθηκε από τα αγαπημένα"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Ρυθμίσεις καναλιού"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Το κανάλι συγχρονίστηκε με την κύρια κατηγορία"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "ΔClaim το λογαριασμό σου για να εξαργυρώσ
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "ΔClaim το λογαριασμό σου για να στείλεις αιτήματα φιλίας."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Άνετο (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Άνετο"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Άνετη διάταξη"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Ρύθμιση καναλιού AFK και χρονικού ορίου"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Ρύθμιση αυτόματης συμπλήρωσης"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Ρύθμιση βασικής πρόσβασης για αυτό το κανάλι"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Ρύθμιση ήχων μηνυμάτων"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Ρύθμιση ήχων ειδοποιήσεων"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Ρύθμιση υπερισχύσεων για αυτό το μέλος"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Ρύθμιση υπερισχύσεων για αυτόν τον ρόλο"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Αντιγραφή συνδέσμου αρχείου"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Αντιγραφή FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Ημέρες"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Σίγαση ήχου"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Μειώστε το επίπεδο ζουμ της εφαρμογής"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Προεπιλεγμένο"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Δανία"
|
||||
msgid "Dense"
|
||||
msgstr "Συμπαγές"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Συμπαγής διάταξη"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Πρόωρη πρόσβαση σε νέες δυνατότητες"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Ακύρωση ηχούς"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Επεξεργασία \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Επεξεργασία πρόσβασης για {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Επεξεργασία σημείωσης"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "Επεξεργασία υπερκαλύψεων για ρόλους και μέλη σε αυτό το κανάλι."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Επεξεργασία προφίλ"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "όνομα αρχείου:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Τα αρχεία θα αποσταλούν άμεσα χωρίς προεπισκόπηση."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Φιλτράρισμα κατά ενέργεια"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Φιλτράρισμα κατά ενέργεια"
|
||||
msgid "Filter by content"
|
||||
msgstr "Φιλτράρισμα κατά περιεχόμενο"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Φιλτράρισμα κατά χρήστη"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Πλέγμα"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Προβολή πλέγματος"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Είσοδος"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Συσκευή εισόδου"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Καταστάσεις εισόδου"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Ένταση εισόδου"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Ζωντανά"
|
||||
msgid "Live Preview"
|
||||
msgstr "Ζωντανή Προεπισκόπηση"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Φόρτωση περισσότερων"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "αναφορές:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Η αποστολή μηνυμάτων έχει προσωρινά απ
|
||||
msgid "Mic Test"
|
||||
msgstr "Δοκιμή Μικροφώνου"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Μικρόφωνο {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Μικρόφωνο {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Δεν έχει οριστεί συντόμευση πληκτρολογ
|
||||
msgid "No limit"
|
||||
msgstr "Χωρίς όριο"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Δεν υπάρχουν ακόμα αρχεία καταγραφής"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Δεν υπάρχουν εκκρεμείς αιτήματα"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Κανένα εκκρεμές αίτημα δεν ταιριάζει στην αναζήτησή σας"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Δεν βρέθηκαν δικαιώματα"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Χωρίς αντιδράσεις"
|
||||
msgid "No reason provided"
|
||||
msgstr "Δεν παρέχεται λόγος"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Δεν δόθηκε λόγος."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Κανείς"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Καταστολή θορύβου"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Όχι τώρα"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "Δεν είναι του γούστου σου; Μπορείς να απενεργοποιήσεις αυτή τη λειτουργία όποτε θέλεις."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Εξερχόμενα αιτήματα φιλίας"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Συσκευή εξόδου"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Ένταση εξόδου"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Κουμπί προεπισκόπησης"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Κάμερα προεπισκόπησης"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Έτοιμος για αναβάθμιση;"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Λόγος"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Αφαίρεση φίλτρου"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Αφαίρεση αναφοράς"
|
||||
msgid "Remove override"
|
||||
msgstr "Αφαίρεση παράκαμψης"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Αφαίρεση Παράκαμψης"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "Η αναφορά υποβλήθηκε με επιτυχία. Η Ομά
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Αναφορά χρήστη"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Επανασυνδρομή"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Αναζήτηση μόνο στο τρέχον DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Αναζήτηση εκκρεμών αιτημάτων"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Αναζήτηση δικαιωμάτων..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Αποστολή κώδικα"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Αποστολή αιτήματος φιλίας"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Εμφάνιση πρώτα των πιο σχετικών μηνυμά
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Εμφάνιση της κάμεράς μου"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Εμφάνιση αναδυόμενου παραθύρου νέας συ
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Εμφάνιση συμμετεχόντων χωρίς βίντεο"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Σιγανές κλήσεις από όλους"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Προσομοιώνει ότι έχεις ID πελάτη Stripe (για δοκιμές πρόσβασης ιστορικού αγορών)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Μία στήλη"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Κάτι πήγε στραβά και η εφαρμογή κατέρρευσε. Δοκίμασε να ξαναφορτώσεις ή να επαναφέρεις την εφαρμογή."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Κάτι πήγε στραβά κατά τη φόρτωση του αρχείου ελέγχου."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Μίλησε μήνυμα"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Μίλησε κανονικά στο μικρόφωνό σου. Θα πρέπει να ακούς τον εαυτό σου από τα ηχεία σου. Το επίπεδο πρέπει να παραμένει στο πράσινο «Καλό» ή στο κίτρινο «Άριστο»."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Ηχείο {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Ηχείο {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Ξεκίνα κοινή χρήση"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Ξεκίνα φωνητική κλήση"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Εναλλαγή μεταξύ της τελευταίας κοινότη
|
||||
msgid "Switch Device"
|
||||
msgstr "Αλλαγή συσκευής"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Μετάβαση στην άνετη διάταξη"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Μετάβαση στην πυκνή διάταξη"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Μετάβαση σε μονή στήλη"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Αλλαγή σε αυτόν τον λογαριασμό"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Εναλλαγή σε αυτή τη συσκευή"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Μετάβαση σε δύο στήλες"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Συγχρονισμός θέματος"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Συγχρονισμός θέματος σε όλες τις συσκευές"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Συγχρονισμός με κατηγορία"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Αυτό το κανάλι δεν έχει χαρακτηριστεί ως NSFW. Περιεχόμενο για ενηλίκους μπορεί να σταλεί μόνο σε κανάλια NSFW. Ζητήστε από έναν συντονιστή να το χαρακτηρίσει NSFW αν είναι κατάλληλο."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Αυτό το κανάλι δεν είναι συγχρονισμένο με την κύρια κατηγορία <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Αυτό το κανάλι είναι συγχρονισμένο με την κύρια κατηγορία <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Θέμα"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Συνολικός χρόνος ανάλυσης:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Παρακολουθήστε τις ενέργειες των διαχειριστών στην κοινότητα."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ρυθμίστε τα βασικά αυτής της κατηγορία
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ρυθμίστε τα βασικά αυτού του καναλιού."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Δύο στήλες"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Δεν είναι δυνατή η εγκατάσταση πακέτου
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Δεν είναι δυνατή η εγκατάσταση πακέτου αυτοκόλλητων"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Δεν είναι δυνατή η φόρτωση αρχείων δραστηριότητας"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Μη διαθέσιμο για όλους εκτός προσωπικο
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Καταργήστε πρώτα τον αποκλεισμό αυτού
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Κατάργηση αποκλεισμού χρήστη"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Χρήση κλειδιού ασφαλείας"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Χρήση τοπικών ρυθμίσεων συστήματος για τη μορφή ώρας"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Χρησιμοποιήστε αυτά τα κουμπιά για γρήγορο καθορισμό όλων των αδειών."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Ο χρήστης μεταφέρθηκε σε κανάλι"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Προφίλ χρήστη"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Προφίλ χρήστη: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Βίντεο"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Βιντεοκλήση"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Ποιότητα Βίντεο"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Ρυθμίσεις βίντεο"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Προβολή κωδικών"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Προβολή προφίλ κοινότητας"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Προβολή αποθέματος δώρων"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Προβολή παγκόσμιου προφίλ"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Φωνή"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Ρυθμίσεις Φωνής & Βίντεο"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Κλήση φωνής"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Κλήση Φωνής"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Περιοχή φωνής"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Ρυθμίσεις φωνής"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Όταν είναι ενεργοποιημένο, μπορείτε να
|
||||
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 "Όταν είναι ενεργοποιημένο, θα χρειάζεται διπλό κλικ στα φωνητικά κανάλια για να τα εντάξεις. Όταν είναι απενεργοποιημένο (προεπιλογή), ένα μόνο κλικ σε εντάσσει αμέσως."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Όταν οι διαχειριστές ξεκινήσουν τη διαχείριση, μπορείτε να διαχειριστείτε τη διαχείριση εδώ."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "Μπορείς να χρησιμοποιήσεις συνδέσμους
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "Δεν μπορείς να προσθέσεις νέες αντιδράσεις όσο βρίσκεσαι σε χρονικό όριο."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Δεν μπορείς να γίνεις φίλος με τον εαυτό σου"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "Δεν μπορείς να αλληλεπιδράσεις με αντι
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "Δεν μπορείς να συμμετάσχεις όσο βρίσκεσαι σε χρονικό όριο."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Δεν μπορείς να στείλεις μήνυμα στον εαυτό σου"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 shown)"
|
||||
msgid "(No content)"
|
||||
msgstr "(No content)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(only visible to you)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "A symphony of clacking keys is underway..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "About Me"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accept"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Accept Friend Request"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Access developer tools"
|
||||
msgid "Access granted"
|
||||
msgstr "Access granted"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Access Overrides"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Active Yearly Subscriber (Cancellation Scheduled)"
|
||||
msgid "Activities"
|
||||
msgstr "Activities"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Activity Log"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Add Note"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Add or change your phone number"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Add Override"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "All @mentions of you will appear here for 7 days."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "All Actions"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "All translations are currently LLM-generated with minimal human revision. We'd love to get real people to help us localise Fluxer into your language! To do so, send an email to <0>i18n@fluxer.app</0> and we'll be happy to accept your contributions."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "All Users"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Are you sure you want to make {0} the group owner? You will lose owner p
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Are you sure you want to remove {0} as a friend?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Are you sure you want to transfer ownership of the group to {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Are you sure you want to unblock {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Auto Gain Control"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Back to list"
|
||||
msgid "Back to login"
|
||||
msgstr "Back to login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Calls"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Camera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Camera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Cancel"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Cancel Friend Request"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Channel Access"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Channel Access Denied"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Channel access updated"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Channel removed from favourites"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Channel Settings"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Channel synced with parent category"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Claim your account to send friend requests."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Comfortable (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Comfy"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Comfy layout"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configure AFK channel and timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configure autocomplete"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configure base access for this channel"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configure message sounds"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configure notification sounds"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configure overrides for this member"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configure overrides for this role"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copy File Link"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copy FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Days"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Deafen"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Decrease app zoom level"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Default"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Denmark"
|
||||
msgid "Dense"
|
||||
msgstr "Dense"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Dense layout"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Early access to new features"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Echo Cancellation"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Edit \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Edit Access for {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Edit Note"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Edit Profile"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "filename:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Files will be sent immediately without preview."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filter by action"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filter by action"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filter by content"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filter by user"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Grid View"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Input"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Input Device"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Input States"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Input Volume"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Live Preview"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Load more"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "mentions:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Messaging has been temporarily disabled in this community by platform st
|
||||
msgid "Mic Test"
|
||||
msgstr "Mic Test"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microphone {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microphone {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "No keybind set"
|
||||
msgid "No limit"
|
||||
msgstr "No limit"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "No logs yet"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "No pending requests"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "No pending requests match your search"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "No permissions found"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "No reactions"
|
||||
msgid "No reason provided"
|
||||
msgstr "No reason provided"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "No reason was provided."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nobody"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Noise Suppression"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Not Now"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Outgoing friend requests"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Output Device"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Output Volume"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Preview Button"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Preview Camera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Ready to Upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Reason"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Remove filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Remove mention"
|
||||
msgid "Remove override"
|
||||
msgstr "Remove override"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Remove Override"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Report User"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Resubscribe"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Search only in the current DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Search pending requests"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Search Permissions..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Send Code"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Send Friend Request"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Show most relevant messages first"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Show My Own Camera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Show New Device Modal"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Show Non-Video Participants"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Silent calls from everyone"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Single column"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Something went wrong and the app crashed. Try reloading or resetting the app."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Something went wrong while loading the audit log."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Speak Message"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Speaker {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Speaker {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Start Sharing"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Start Voice Call"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Switch between the last community and direct messages"
|
||||
msgid "Switch Device"
|
||||
msgstr "Switch Device"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Switch to comfy layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Switch to dense layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Switch to single column"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Switch to this account"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Switch to This Device"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Switch to two columns"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sync Theme"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sync theme across devices"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sync with Category"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "This channel is not marked as NSFW. Explicit content can only be sent in NSFW channels. Ask a moderator to mark this channel as NSFW if appropriate."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "This channel is not synced with the parent category <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "This channel is synced with the parent category <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Topic"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Total Parsing Time:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Track moderator actions across the community."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Tweak this category's basics."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Tweak this channel's basics."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Two columns"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Unable to install emoji pack"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Unable to install sticker pack"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Unable to load activity logs"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Unavailable for everyone but staff"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Unblock this user before sending a friend request."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Unblock User"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Use security key"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Use system locale for time format"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Use these buttons to quickly set all permissions."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "User Moved Channel"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "User Profile"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "User Profile: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Video Call"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Video Quality"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Video Settings"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "View Codes"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "View Community Profile"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "View Gift Inventory"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "View Global Profile"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voice"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Voice & Video Settings"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Voice call"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Voice Call"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Voice Region"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Voice Settings"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "When enabled, you can favourite channels and they'll appear in the Favou
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "When moderators begin moderating, you can moderate the moderation here."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "You can't befriend yourself"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "You can't message yourself"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 shown)"
|
||||
msgid "(No content)"
|
||||
msgstr "(No content)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(only visible to you)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "A symphony of clacking keys is underway..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "About Me"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accept"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Accept Friend Request"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Access developer tools"
|
||||
msgid "Access granted"
|
||||
msgstr "Access granted"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Access Overrides"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Active Yearly Subscriber (Cancellation Scheduled)"
|
||||
msgid "Activities"
|
||||
msgstr "Activities"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Activity Log"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Add Note"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Add or change your phone number"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Add Override"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "All @mentions of you will appear here for 7 days."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "All Actions"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "All translations are currently LLM-generated with minimal human revision. We'd love to get real people to help us localize Fluxer into your language! To do so, send an email to <0>i18n@fluxer.app</0> and we'll be happy to accept your contributions."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "All Users"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Are you sure you want to make {0} the group owner? You will lose owner p
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Are you sure you want to remove {0} as a friend?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Are you sure you want to transfer ownership of the group to {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Are you sure you want to unblock {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Auto Gain Control"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Back to list"
|
||||
msgid "Back to login"
|
||||
msgstr "Back to login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Calls"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Camera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Camera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Cancel"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Cancel Friend Request"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Channel Access"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Channel Access Denied"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Channel access updated"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Channel removed from favorites"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Channel Settings"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Channel synced with parent category"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Claim your account to send friend requests."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Comfortable (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Comfy"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Comfy layout"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configure AFK channel and timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configure autocomplete"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configure base access for this channel"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configure message sounds"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configure notification sounds"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configure overrides for this member"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configure overrides for this role"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copy File Link"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copy FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Days"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Deafen"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Decrease app zoom level"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Default"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Denmark"
|
||||
msgid "Dense"
|
||||
msgstr "Dense"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Dense layout"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Early access to new features"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Echo Cancellation"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Edit \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Edit Access for {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Edit Note"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Edit Profile"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "filename:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Files will be sent immediately without preview."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filter by action"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filter by action"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filter by content"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filter by user"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Grid View"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Input"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Input Device"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Input States"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Input Volume"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Live Preview"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Load more"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "mentions:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Messaging has been temporarily disabled in this community by platform st
|
||||
msgid "Mic Test"
|
||||
msgstr "Mic Test"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microphone {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microphone {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "No keybind set"
|
||||
msgid "No limit"
|
||||
msgstr "No limit"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "No logs yet"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "No pending requests"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "No pending requests match your search"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "No permissions found"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "No reactions"
|
||||
msgid "No reason provided"
|
||||
msgstr "No reason provided"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "No reason was provided."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nobody"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Noise Suppression"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Not Now"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Outgoing friend requests"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Output Device"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Output Volume"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Preview Button"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Preview Camera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Ready to Upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Reason"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Remove filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Remove mention"
|
||||
msgid "Remove override"
|
||||
msgstr "Remove override"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Remove Override"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Report User"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Resubscribe"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Search only in the current DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Search pending requests"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Search Permissions..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Send Code"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Send Friend Request"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Show most relevant messages first"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Show My Own Camera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Show New Device Modal"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Show Non-Video Participants"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Silent calls from everyone"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Single column"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Something went wrong and the app crashed. Try reloading or resetting the app."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Something went wrong while loading the audit log."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Speak Message"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Speaker {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Speaker {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Start Sharing"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Start Voice Call"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Switch between the last community and direct messages"
|
||||
msgid "Switch Device"
|
||||
msgstr "Switch Device"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Switch to comfy layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Switch to dense layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Switch to single column"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Switch to this account"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Switch to This Device"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Switch to two columns"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sync Theme"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sync theme across devices"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sync with Category"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "This channel is not marked as NSFW. Explicit content can only be sent in NSFW channels. Ask a moderator to mark this channel as NSFW if appropriate."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "This channel is not synced with the parent category <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "This channel is synced with the parent category <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Topic"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Total Parsing Time:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Track moderator actions across the community."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Tweak this category's basics."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Tweak this channel's basics."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Two columns"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Unable to install emoji pack"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Unable to install sticker pack"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Unable to load activity logs"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Unavailable for everyone but staff"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Unblock this user before sending a friend request."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Unblock User"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Use security key"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Use system locale for time format"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Use these buttons to quickly set all permissions."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "User Moved Channel"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "User Profile"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "User Profile: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Video Call"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Video Quality"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Video Settings"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "View Codes"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "View Community Profile"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "View Gift Inventory"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "View Global Profile"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voice"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Voice & Video Settings"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Voice call"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Voice Call"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Voice Region"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Voice Settings"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "When enabled, you can favorite channels and they'll appear in the Favori
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "When moderators begin moderating, you can moderate the moderation here."
|
||||
|
||||
@@ -21089,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "You can't befriend yourself"
|
||||
|
||||
@@ -21104,8 +21132,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "You can't message yourself"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(máx. 15 mostrados)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Sin contenido)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(solo visible para ti)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Una sinfonía de teclas sonando está en marcha..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Sobre mí"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Aceptar"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Aceptar solicitud de amistad"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Acceder a las herramientas de desarrollo"
|
||||
msgid "Access granted"
|
||||
msgstr "Acceso concedido"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Anulaciones de acceso"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Suscriptor anual activo (cancelación programada)"
|
||||
msgid "Activities"
|
||||
msgstr "Actividades"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Registro de actividad"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Agregar nota"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Agregar o cambiar tu número de teléfono"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Agregar anulación"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Todas las @menciones tuyas aparecerán aquí durante 7 días."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Todas las acciones"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Todas las traducciones son actualmente generadas por LLM con mínima revisión humana. ¡Nos encantaría que personas reales nos ayuden a localizar Fluxer en tu idioma! Para hacerlo, envía un correo electrónico a <0>i18n@fluxer.app</0> y estaremos encantados de aceptar tus contribuciones."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Todos los usuarios"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "¿Estás seguro de que quieres hacer a {0} el dueño del grupo? Perderá
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "¿Estás seguro de que quieres eliminar a {0} como amigo?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "¿Estás seguro de que quieres transferir la propiedad del grupo a {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "¿Estás seguro de que quieres desbloquear a {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automático"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Control automático de ganancia"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Volver a la lista"
|
||||
msgid "Back to login"
|
||||
msgstr "Volver al inicio de sesión"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Llamadas"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Cámara"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Cámara {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Cancelar"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Cancelar solicitud de amistad"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Acceso al canal"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Acceso al canal denegado"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Acceso al canal actualizado"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Canal eliminado de favoritos"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Configuración del canal"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Canal sincronizado con la categoría principal"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Cómodo (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Cómodo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Diseño cómodo"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configura el canal AFK y el tiempo de espera"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configurar autocompletar"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configura el acceso base para este canal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configurar sonidos de mensajes"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configurar sonidos de notificaciones"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configura las anulaciones para este miembro"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configura las anulaciones para este rol"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copiar enlace del archivo"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copiar FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Días"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Silenciar"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Disminuir el nivel de zoom de la aplicación"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Predeterminado"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dinamarca"
|
||||
msgid "Dense"
|
||||
msgstr "Compacto"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Diseño compacto"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Acceso anticipado a nuevas funciones"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Cancelación de eco"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Editar \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Editar acceso para {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Editar nota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Editar perfil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nombre de archivo:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Los archivos se enviarán inmediatamente sin vista previa."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrar por acción"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrar por acción"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrar por contenido"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrar por usuario"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Cuadrícula"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Vista en cuadrícula"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Entrada"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Dispositivo de entrada"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Estados de entrada"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volumen de entrada"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "En vivo"
|
||||
msgid "Live Preview"
|
||||
msgstr "Vista previa en vivo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Cargar más"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "menciones:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "La mensajería ha sido deshabilitada temporalmente en esta comunidad por
|
||||
msgid "Mic Test"
|
||||
msgstr "Prueba de micrófono"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Micrófono {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Micrófono {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "No hay atajo de teclado configurado"
|
||||
msgid "No limit"
|
||||
msgstr "Sin límite"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Aún no hay registros"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "No hay solicitudes pendientes"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Ninguna solicitud pendiente coincide con tu búsqueda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "No se encontraron permisos"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Sin reacciones"
|
||||
msgid "No reason provided"
|
||||
msgstr "No se proporcionó motivo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "No se proporcionó motivo."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nadie"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Supresión de ruido"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ahora no"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Solicitudes de amistad enviadas"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Dispositivo de salida"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volumen de salida"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Botón de vista previa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Vista previa de cámara"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "¿Listo para actualizar?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Eliminar filtro"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Eliminar mención"
|
||||
msgid "Remove override"
|
||||
msgstr "Eliminar anulación"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Eliminar anulación"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Reportar usuario"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Volver a suscribirse"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Buscar solo en el mensaje directo actual"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Buscar solicitudes pendientes"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Buscar permisos..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Enviar código"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Enviar solicitud de amistad"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Mostrar mensajes más relevantes primero"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Mostrar mi propia cámara"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Mostrar modal de dispositivo nuevo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Mostrar participantes sin video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Llamadas silenciosas de todos"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simula tener un ID de cliente de Stripe (para probar el acceso al historial de compras)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Columna única"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Algo salió mal y la aplicación se cerró. Intenta recargar o reiniciar la aplicación."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Algo salió mal al cargar el registro de auditoría."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Hablar mensaje"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Habla normalmente en tu micrófono. Deberías escucharte a través de tus altavoces. El nivel debe permanecer en el rango verde \"Bueno\" o amarillo \"Óptimo\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Altavoz {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Altavoz {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Comenzar a compartir"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Iniciar llamada de voz"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Cambiar entre la última comunidad y mensajes directos"
|
||||
msgid "Switch Device"
|
||||
msgstr "Cambiar de dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Cambiar a diseño cómodo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Cambiar a diseño denso"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Cambiar a una sola columna"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Cambiar a esta cuenta"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Cambiar a este dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Cambiar a dos columnas"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sincronizar tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sincronizar tema entre dispositivos"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sincronizar con categoría"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Este canal no está marcado como NSFW. El contenido explícito solo se puede enviar en canales NSFW. Pídele a un moderador que marque este canal como NSFW si es apropiado."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal no está sincronizado con la categoría principal <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal está sincronizado con la categoría principal <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Tema"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Tiempo total de análisis:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Rastrea las acciones de los moderadores en la comunidad."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ajusta los aspectos básicos de esta categoría."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ajusta los aspectos básicos de este canal."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dos columnas"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "No se pudo instalar el paquete de emojis"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "No se pudo instalar el paquete de stickers"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "No se pudieron cargar los registros de actividad"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "No disponible para todos excepto el personal"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Desbloquea a este usuario antes de enviar una solicitud de amistad."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Desbloquear usuario"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Usar clave de seguridad"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Usar la configuración regional del sistema para el formato de hora"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Usa estos botones para configurar rápidamente todos los permisos."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Usuario movió canal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Perfil de usuario"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Perfil de usuario: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Llamada de video"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Calidad de video"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Configuración de video"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Ver códigos"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Ver perfil de la comunidad"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Ver inventario de regalos"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Ver perfil global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Configuración de voz y video"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Llamada de voz"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Llamada de voz"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Región de voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Configuración de voz"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Cuando está habilitado, puedes marcar canales como favoritos y aparecer
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Cuando los moderadores comiencen a moderar, puedes moderar la moderación aquí."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "No puedes hacerte amigo de ti mismo"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "No puedes enviarte mensajes a ti mismo"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(máximo 15 mostrados)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Sin contenido)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(solo visible para ti)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Una sinfonía de teclas resonando está en marcha..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Sobre mí"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Aceptar"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Aceptar solicitud de amistad"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Acceder a las herramientas de desarrollo"
|
||||
msgid "Access granted"
|
||||
msgstr "Acceso concedido"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Anulaciones de acceso"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Suscriptor anual activo (cancelación programada)"
|
||||
msgid "Activities"
|
||||
msgstr "Actividades"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Registro de actividad"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Añadir nota"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Añadir o cambiar tu número de teléfono"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Añadir anulación"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Todas las @menciones tuyas aparecerán aquí durante 7 días."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Todas las acciones"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Todas las traducciones son actualmente generadas por LLM con mínima revisión humana. Nos encantaría contar con personas reales que nos ayuden a localizar Fluxer a tu idioma. Para ello, envía un correo a <0>i18n@fluxer.app</0> y estaremos encantados de aceptar tus contribuciones."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Todos los usuarios"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "¿Estás seguro de que quieres hacer a {0} propietario del grupo? Perder
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "¿Estás seguro de que quieres eliminar a {0} como amigo?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "¿Estás seguro de que quieres transferir la propiedad del grupo a {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "¿Estás seguro de que quieres desbloquear a {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Control automático de ganancia"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Volver a la lista"
|
||||
msgid "Back to login"
|
||||
msgstr "Volver al inicio de sesión"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Llamadas"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Cámara"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Cámara {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Cancelar"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Cancelar solicitud de amistad"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Acceso al canal"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Acceso al canal denegado"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Acceso al canal actualizado"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Canal eliminado de favoritos"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Configuración del canal"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Canal sincronizado con la categoría principal"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Cómodo (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Cómodo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Diseño cómodo"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configura el canal AFK y el tiempo de espera"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configurar el autocompletado"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configura el acceso base para este canal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configurar los sonidos de mensaje"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configurar los sonidos de notificación"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configura las anulaciones para este miembro"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configura las anulaciones para este rol"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copiar enlace del archivo"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copiar FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Días"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Silenciar"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Reducir el nivel de zoom de la aplicación"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Predeterminado"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dinamarca"
|
||||
msgid "Dense"
|
||||
msgstr "Compacto"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Diseño compacto"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Acceso anticipado a nuevas funciones"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Cancelación de eco"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Editar \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Editar acceso para {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Editar nota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Editar perfil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nombre de archivo:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Los archivos se enviarán inmediatamente sin vista previa."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrar por acción"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrar por acción"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrar por contenido"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrar por usuario"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Cuadrícula"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Vista en cuadrícula"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Entrada"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Dispositivo de entrada"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Estados de entrada"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volumen de entrada"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "En directo"
|
||||
msgid "Live Preview"
|
||||
msgstr "Vista previa en directo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Cargar más"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "menciones:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "El personal de la plataforma ha desactivado temporalmente la mensajería
|
||||
msgid "Mic Test"
|
||||
msgstr "Prueba de micrófono"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Micrófono {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Micrófono {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "No hay atajo de teclado establecido"
|
||||
msgid "No limit"
|
||||
msgstr "Sin límite"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Aún no hay registros"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Sin solicitudes pendientes"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Ninguna solicitud pendiente coincide con tu búsqueda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "No se encontraron permisos"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Sin reacciones"
|
||||
msgid "No reason provided"
|
||||
msgstr "No se ha proporcionado motivo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "No se proporcionó motivo."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nadie"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Supresión de ruido"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ahora no"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Solicitudes de amistad enviadas"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Dispositivo de salida"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volumen de salida"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Botón de vista previa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Cámara de vista previa"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "¿Listo para actualizar?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Eliminar filtro"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Eliminar mención"
|
||||
msgid "Remove override"
|
||||
msgstr "Eliminar anulación"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Eliminar anulación"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Denunciar usuario"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Volver a suscribirse"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Buscar solo en el MD actual"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Buscar solicitudes pendientes"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Buscar permisos..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Enviar código"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Enviar solicitud de amistad"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Mostrar los mensajes más relevantes primero"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Mostrar mi propia cámara"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Mostrar modal de dispositivo nuevo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Mostrar participantes sin vídeo"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Llamadas silenciosas de todos"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simula tener un ID de cliente de Stripe (para probar el acceso al historial de compras)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Columna única"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Algo salió mal y la aplicación se cerró. Intenta recargar o reiniciar la aplicación."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Algo salió mal al cargar el registro de auditoría."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Hablar mensaje"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Habla normalmente en tu micrófono. Deberías escucharte a través de los altavoces. El nivel debe permanecer en el rango verde \"Bueno\" o amarillo \"Óptimo\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Altavoz {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Altavoz {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Comenzar a compartir"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Comenzar llamada de voz"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Cambiar entre la última comunidad y los mensajes directos"
|
||||
msgid "Switch Device"
|
||||
msgstr "Cambiar de dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Cambiar a diseño cómodo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Cambiar a diseño denso"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Cambiar a columna única"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Cambiar a esta cuenta"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Cambiar a este dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Cambiar a dos columnas"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sincronizar tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sincronizar tema entre dispositivos"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sincronizar con categoría"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Este canal no está marcado como NSFW. El contenido explícito solo se puede enviar en canales NSFW. Pídele a un moderador que marque este canal como NSFW si es apropiado."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal no está sincronizado con la categoría principal <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal está sincronizado con la categoría principal <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Tema"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Tiempo total de análisis:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Rastrea las acciones de los moderadores en toda la comunidad."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ajusta los aspectos básicos de esta categoría."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ajusta los aspectos básicos de este canal."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dos columnas"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "No se puede instalar el paquete de emojis"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "No se puede instalar el paquete de pegatinas"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "No se pueden cargar los registros de actividad"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "No disponible para todos excepto el personal"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Desbloquea a este usuario antes de enviar una solicitud de amistad."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Desbloquear usuario"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Usar clave de seguridad"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Usar la configuración regional del sistema para el formato de hora"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Usa estos botones para configurar rápidamente todos los permisos."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Usuario movido de canal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Perfil de usuario"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Perfil de usuario: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Vídeo"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videollamada"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Calidad de vídeo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Ajustes de vídeo"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Ver códigos"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Ver perfil de la comunidad"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Ver inventario de regalos"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Ver perfil global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Ajustes de voz y vídeo"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Llamada de voz"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Llamada de voz"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Región de voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Ajustes de voz"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Cuando está activado, puedes marcar canales como favoritos y aparecerá
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Cuando los moderadores empiecen a moderar, podrás moderar la moderación aquí."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "No puedes hacerte amigo de ti mismo"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "No puedes enviarte mensajes a ti mismo"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(näytetään enintään 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Ei sisältöä)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(näkyy vain sinulle)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Näppäinten rämpytystä on ilmassa..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Tietoja minusta"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Hyväksy"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Hyväksy ystäväpyyntö"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Käytä kehittäjätyökaluja"
|
||||
msgid "Access granted"
|
||||
msgstr "Pääsy myönnetty"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Käyttöoikeusylitykset"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktiivinen vuositilaus (peruutus ajastettu)"
|
||||
msgid "Activities"
|
||||
msgstr "Toiminnot"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Toimintaloki"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Lisää muistiinpano"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Lisää tai vaihda puhelinnumerosi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Lisää ylikirjoitus"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Kaikki @maininnat sinusta näkyvät täällä 7 päivän ajan."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Kaikki toimet"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Kaikki käännökset ovat tällä hetkellä LLM-generaattorin tuottamia, joissa on vain minimaalista inhimillistä tarkistusta. Haluaisimme saada oikeita ihmisiä auttamaan meitä paikallistamaan Fluxeria kielellesi! Voit lähettää sähköpostia osoitteeseen <0>i18n@fluxer.app</0>, ja otamme mielellämme vastaan panoksesi."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Kaikki käyttäjät"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Haluatko varmasti tehdä {0}:sta ryhmän omistajan? Menetät omistajan o
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Haluatko varmasti poistaa {0}:n kaverilistaltasi?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Haluatko varmasti siirtää ryhmän omistajuuden käyttäjälle {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Haluatko varmasti poistaa eston käyttäjältä {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automaattinen"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automaattinen vahvistuksen säätö"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Takaisin luetteloon"
|
||||
msgid "Back to login"
|
||||
msgstr "Takaisin kirjautumiseen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Puhelut"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Peruuta"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Peruuta ystäväpyyntö"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanavan käyttö"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanavan käyttö evätty"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanavan käyttö päivitetty"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanava poistettu suosikeista"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanavan asetukset"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanava synkronoitu pääluokan kanssa"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Vahvista tili lähettääksesi kaveripyyntöjä."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Mukava (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Mukava"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Mukava asettelu"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Määritä AFK-kanava ja aikakatkaisu"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Määritä automaattinen täydennys"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Määritä peruskäyttöoikeus tälle kanavalle"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Määritä viestien äänet"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Määritä ilmoitusäänet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Määritä tämän jäsenen poikkeukset"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Määritä tämän roolin poikkeukset"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopioi tiedostolinkki"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopioi FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Päivät"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Mykistä"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Pienennä sovelluksen zoomausta"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Oletus"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Tanska"
|
||||
msgid "Dense"
|
||||
msgstr "Tiivis"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Tiivis asettelu"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Varhainen pääsy uusiin ominaisuuksiin"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Kaiunvaimennus"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Muokkaa \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Muokkaa käyttöoikeutta kohteelle {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Muokkaa muistiota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Muokkaa profiilia"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "tiedostonimi:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Tiedostot lähetetään heti ilman esikatselua."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Suodata toiminnon mukaan"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Suodata toiminnon mukaan"
|
||||
msgid "Filter by content"
|
||||
msgstr "Suodata sisällön mukaan"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Suodata käyttäjän mukaan"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Ruudukko"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Ruudukkonäkymä"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Syöte"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Syöttölaite"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Syötön tilat"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Syöttövolyymi"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Reaaliaikainen esikatselu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Lataa lisää"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "maininnat:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Viestittely on tilapäisesti estetty tässä yhteisössä alustan ylläp
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofonin testi"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofoni {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofoni {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Pikanäppäintä ei ole asetettu"
|
||||
msgid "No limit"
|
||||
msgstr "Ei rajaa"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Lokitietoja ei ole vielä"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Ei odottavia pyyntöjä"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Hakuehtoasi vastaavia odottavia pyyntöjä ei ole"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Oikeuksia ei löytynyt"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Ei reaktioita"
|
||||
msgid "No reason provided"
|
||||
msgstr "Syy puuttuu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Syy puuttui."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ei kukaan"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Melunvaimennus"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ei nyt"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Lähettämäsi ystäväpyynnöt"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Lähtölaite"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Lähtöäänenvoimakkuus"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Esikatselupainike"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Esikatselukamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Valmis päivittämään?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Syy"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Poista suodin"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Poista maininta"
|
||||
msgid "Remove override"
|
||||
msgstr "Poista ylitys"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Poista ylitys"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Ilmoita käyttäjä"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Tilaa uudelleen"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Hae vain nykyisestä yksityisviestistä"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Hae odottavia pyyntöjä"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Hae käyttöoikeuksia..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Lähetä koodi"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Lähetä ystäväpyyntö"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Näytä merkityksellisimmät viestit ensin"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Näytä oma kamerani"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Näytä uusi laite -modaali"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Näytä ei-videot osallistujat"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Hiljaiset puhelut kaikilta"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simuloi Stripe-asiakastunnusta (testatakseen ostohistorian käyttöä)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Yksi sarake"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Jotain meni pieleen ja sovellus kaatui. Kokeile päivittää tai nollata sovellus."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Jotain meni pieleen tarkastuspöytäkirjaa ladattaessa."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Puhu viesti"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Puhu normaalisti mikrofoniisi. Kuulostat itsesi kaiuttimista. Taso pysyy vihreällä \"Hyvä\" tai keltaisella \"Optimaalinen\" alueella."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Kaiutin {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Kaiutin {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Aloita jakaminen"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Aloita äänipuhelu"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Vaihda viimeisimmän yhteisön ja yksityisviestien välillä"
|
||||
msgid "Switch Device"
|
||||
msgstr "Vaihda laitetta"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Vaihda mukavaan näkymään"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Vaihda tiiviiseen näkymään"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Vaihda yhteen sarakkeeseen"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Vaihda tähän tiliin"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Vaihda tähän laitteeseen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Vaihda kahteen sarakkeeseen"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synkronoi teema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synkronoi teema laitteiden välillä"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synkronoi kategorian kanssa"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Tätä kanavaa ei ole merkitty NSFW:ksi. Ronskia sisältöä voi lähettää vain NSFW-kanavilla. Pyydä moderaattoria merkitsemään kanava NSFW:ksi, jos se on sopivaa."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Tämä kanava ei ole synkronoitu ylätason kategorian <0>{0}</0> kanssa."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Tämä kanava on synkronoitu ylätason kategorian <0>{0}</0> kanssa."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Aihe"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Kokonaisjäsennysaika:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Seuraa moderaattorin toimia koko yhteisössä."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Muokkaa tämän kategorian perusteita."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Muokkaa tämän kanavan perusteita."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Kaksi saraketta"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Emoji-pakettia ei voi asentaa"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Tarrapakettia ei voi asentaa"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Toimintalokeja ei voi ladata"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Henkilöstöä lukuun ottamatta pois käytöstä"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Poista tämän käyttäjän esto ennen kaveripyynnön lähettämistä."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Poista käyttäjän esto"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Käytä turva-avainta"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Käytä järjestelmän kieliasetusta ajan muodossa"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Käytä näitä painikkeita kaikkien oikeuksien säätämiseen nopeasti."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Käyttäjä siirrettiin kanavalle"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Käyttäjäprofiili"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Käyttäjäprofiili: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videopuhelu"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videon laatu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videoasetukset"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Näytä koodit"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Näytä yhteisöprofiili"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Näytä lahjavarasto"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Näytä globaali profiili"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Puhe"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Puhe- ja videon asetukset"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Puhelu"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Puhelu"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Puhealue"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Puheasetukset"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Kun ominaisuus on päällä, voit merkitä kanavia suosikeiksi ja ne nä
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Kun moderaattorit aloittavat moderoinnin, voit hallinnoida sitä täällä."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Et voi lisätä itseäsi kaveriksi"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Et voi lähettää viestiä itsellesi"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(15 maximum affichés)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Aucun contenu)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(visible seulement par toi)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Une symphonie de touches qui claquent est en cours..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "À propos de moi"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accepter"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Accepter la demande d'ami"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Accéder aux outils de développement"
|
||||
msgid "Access granted"
|
||||
msgstr "Accès accordé"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Remplacements d'accès"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Abonné annuel actif (annulation programmée)"
|
||||
msgid "Activities"
|
||||
msgstr "Activités"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Journal d'activité"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Ajouter une note"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Ajouter ou changer ton numéro de téléphone"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Ajouter une exception"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Toutes les @mentions te concernant apparaîtront ici pendant 7 jours."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Toutes les actions"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Toutes les traductions sont actuellement générées par LLM avec une révision humaine minimale. Nous aimerions que de vraies personnes nous aident à localiser Fluxer dans votre langue ! Pour cela, envoyez un e-mail à <0>i18n@fluxer.app</0> et nous serons ravis d'accepter vos contributions."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Tous les utilisateurs"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Es-tu sûr de vouloir faire de {0} le propriétaire du groupe ? Tu perdr
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Es-tu sûr de vouloir supprimer {0} de ta liste d'amis ?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Es-tu sûr de vouloir transférer la propriété du groupe à {0} ?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Es-tu sûr de vouloir débloquer {0} ?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Contrôle automatique du gain"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Retour à la liste"
|
||||
msgid "Back to login"
|
||||
msgstr "Retour à la connexion"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Appels"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Caméra"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Caméra {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Annuler"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Annuler la demande d’ami"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Accès au salon"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Accès au salon refusé"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Accès au salon mis à jour"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Salon retiré des favoris"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Paramètres du salon"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Salon synchronisé avec la catégorie parente"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Confortable (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Confortable"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Disposition confortable"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configure le canal AFK et le délai d'inactivité"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configurer la saisie automatique"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configure l'accès de base pour ce salon"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configurer les sons des messages"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configurer les sons de notification"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configure les surcharges pour ce membre"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configure les surcharges pour ce rôle"
|
||||
|
||||
@@ -5147,7 +5149,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:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copier le FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Jours"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Couper le son"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Réduire le niveau de zoom de l'application"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Par défaut"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danemark"
|
||||
msgid "Dense"
|
||||
msgstr "Dense"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Disposition dense"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Accès anticipé aux nouvelles fonctionnalités"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Annulation d'écho"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Modifier « {0} »"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Modifier l'accès pour {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Modifier la note"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Modifier le profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nom de fichier :"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Les fichiers seront envoyés immédiatement sans aperçu."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrer par action"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrer par action"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrer par contenu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrer par utilisateur"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Grille"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Vue en grille"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Entrée"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Périphérique d'entrée"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "États d'entrée"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volume d'entrée"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "En direct"
|
||||
msgid "Live Preview"
|
||||
msgstr "Aperçu en direct"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Charger plus"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "mentions :"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "La messagerie a été temporairement désactivée dans cette communauté
|
||||
msgid "Mic Test"
|
||||
msgstr "Test micro"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microphone {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microphone {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Aucun raccourci défini"
|
||||
msgid "No limit"
|
||||
msgstr "Sans limite"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Aucun journal pour l’instant"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Aucune demande en attente"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Aucune demande en attente ne correspond à ta recherche"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Aucune autorisation trouvée"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Aucune réaction"
|
||||
msgid "No reason provided"
|
||||
msgstr "Aucune raison fournie"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Aucune raison n’a été fournie."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Personne"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Suppression du bruit"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Pas maintenant"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Demandes d'ami sortantes"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Périphérique de sortie"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volume de sortie"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Bouton d'aperçu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Caméra d'aperçu"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Prêt à passer à la version supérieure\\u202f?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Raison"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Supprimer le filtre"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Supprimer la mention"
|
||||
msgid "Remove override"
|
||||
msgstr "Supprimer l’override"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Supprimer l’override"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Signaler l’utilisateur"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Se réabonner"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Rechercher uniquement dans le MP en cours"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Rechercher les demandes en attente"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Rechercher des permissions..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Envoyer le code"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Envoyer une demande d’ami"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Afficher d'abord les messages les plus pertinents"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Afficher ma propre caméra"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Afficher la fenêtre du nouvel appareil"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Afficher les participants sans vidéo"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Appels silencieux de tous"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simule un identifiant client Stripe (pour tester l'accès à l'historique des achats)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Colonne unique"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Quelque chose a mal tourné et l’application a planté. Essaie de recharger ou de réinitialiser l’application."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Une erreur est survenue lors du chargement du journal d’audit."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Parler le message"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Parle normalement dans ton micro. Tu devrais t’entendre dans tes haut-parleurs. Le niveau doit rester dans la zone verte « Bon » ou jaune « Optimal »."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Haut-parleur {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Haut-parleur {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Commencer le partage"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Démarrer l’appel vocal"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Basculer entre la dernière communauté et les messages directs"
|
||||
msgid "Switch Device"
|
||||
msgstr "Changer d'appareil"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Passer à la disposition confortable"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Passer à la disposition compacte"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Passer à une seule colonne"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Passer à ce compte"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Passer à cet appareil"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Passer à deux colonnes"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synchroniser le thème"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synchroniser le thème entre les appareils"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synchroniser avec la catégorie"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Ce salon n'est pas marqué NSFW. Le contenu explicite ne peut être envoyé que dans des salons NSFW. Demande à un modérateur de marquer ce salon comme NSFW si nécessaire."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ce salon n'est pas synchronisé avec la catégorie parente <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ce salon est synchronisé avec la catégorie parente <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Sujet"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Temps total d'analyse :"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Suivre les actions des modérateurs dans la communauté."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ajuste les bases de cette catégorie."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ajuste les bases de ce canal."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Deux colonnes"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Impossible d’installer le pack d’émojis"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Impossible d’installer le pack d’autocollants"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Impossible de charger les journaux d’activité"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Indisponible pour tous sauf le staff"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Débloque cet utilisateur avant d’envoyer une demande d’ami."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Débloquer l’utilisateur"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Utiliser une clé de sécurité"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Utiliser les paramètres régionaux du système pour le format de l’heure"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Utilise ces boutons pour définir rapidement toutes les permissions."
|
||||
|
||||
@@ -19840,11 +19868,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:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil utilisateur"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil utilisateur : {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Vidéo"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Appel vidéo"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Qualité vidéo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Paramètres vidéo"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Afficher les codes"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Afficher le profil de la communauté"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Afficher l'inventaire de cadeaux"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Afficher le profil global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voix"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Paramètres Voix et Vidéo"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Appel vocal"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Appel vocal"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Région vocale"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Paramètres vocaux"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Quand activé, tu peux ajouter des salons aux favoris et ils apparaîtro
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Quand les modérateurs commencent à modérer, tu peux modérer la modération ici."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Tu ne peux pas être ami avec toi-même"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Tu ne peux pas t’envoyer de message"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(מוצגים מקסימום 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(אין תוכן)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(נראה רק לך)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "סימפוניה של מקלדות קלוקלות בשיאה... "
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "אודותיי"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "קבל"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "קבל בקשת חברות"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "גישה לכלי פיתוח"
|
||||
msgid "Access granted"
|
||||
msgstr "הגישה אושרה"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "התאמות גישה"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "מנוי שנתי פעיל (ביטול מתוזמן)"
|
||||
msgid "Activities"
|
||||
msgstr "פעילויות"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "הוסף הערה"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "הוסף או שנה את מספר הטלפון שלך"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "הוסף התאמה"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "כל ההזכרות ב-@ שלך יופיעו כאן למשך 7 ימים."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "כל הפעולות"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "כל התרגומים נוצרו כרגע על ידי LLM עם מינימום תיקון אנושי. נשמח לקבל אנשים אמיתיים שיביעו עזרה בתרגום Fluxer לשפה שלך! לשם כך, שלח אימייל ל-<0>i18n@fluxer.app</0> ונשמח לקבל את התרומות שלך."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "כל המשתמשים"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "האם אתה בטוח שברצונך להעניק ל-{0} בעלות ע
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "האם אתה בטוח שברצונך להסיר את {0} כחבר?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "האם אתה בטוח שברצונך להעביר את הבעלות ע
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "האם אתה בטוח שברצונך לבטל את החסימה של {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "אוטומטי"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "בקרת רווח אוטומטית"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "חזור לרשימה"
|
||||
msgid "Back to login"
|
||||
msgstr "חזור למסך ההתחברות"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "שיחות"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "מצלמה"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "מצלמה {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "ביטול"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "בטל בקשת חברות"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "גישה לערוץ"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "הגישה לערוץ נדחתה"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "הגישה לערוץ עודכנה"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "הערוץ הוסר מהמועדפים"
|
||||
msgid "Channel Settings"
|
||||
msgstr "הגדרות ערוץ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "הערוץ מסונכרן עם הקטגוריה הראשית"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "דרוש חשבון שלך כדי להחיל מתנה זו."
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "דרוש חשבון שלך כדי לשלוח בקשות חבר."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "נוח (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "נוח"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "פריסת נוחות"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "הגדר ערוץ AFK וזמן ניתוק"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "הגדר השלמה אוטומטית"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "הגדר גישה בסיסית לערוץ זה"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "הגדר צלילי הודעות"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "הגדר צלילי התראות"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "הגדר ערכים מעוקפים לחבר זה"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "הגדר ערכים מעוקפים לתפקיד זה"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "העתק קישור לקובץ"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "העתק FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "ימים"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "השתק"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "הפחת את רמת הזום של האפליקציה"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "ברירת מחדל"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "דנמרק"
|
||||
msgid "Dense"
|
||||
msgstr "צפוף"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "פריסה צפופה"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "גישה מוקדמת לתכונות חדשות"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "ביטול הדים"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "ערוך את \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "ערוך גישה עבור {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "ערוך הערה"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "ערוך הרשאות נפרדות לתפקידים וחברים בערוץ הזה."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "ערוך פרופיל"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "שם הקובץ:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "הקבצים יישלחו מיד ללא תצוגה מקדימה."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "סינון לפי פעולה"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "סינון לפי פעולה"
|
||||
msgid "Filter by content"
|
||||
msgstr "סינון לפי תוכן"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "סינון לפי משתמש"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "רשת"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "תצוגת רשת"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "קלט"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "התקן קלט"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "מצבי קלט"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "עוצמת קלט"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "חי"
|
||||
msgid "Live Preview"
|
||||
msgstr "תצוגה מקדימה חיה"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "טען עוד"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "הזכרות:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "הודעות הושבתו זמנית בקהילה זו על ידי צו
|
||||
msgid "Mic Test"
|
||||
msgstr "בדיקת מיקרופון"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "מיקרופון {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "מיקרופון {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "לא הוגדר קיצור מקשים"
|
||||
msgid "No limit"
|
||||
msgstr "אין הגבלה"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "עדיין אין יומנים"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "אין בקשות בהמתנה"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "אין בקשות בהמתנה התואמות את החיפוש שלך"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "לא נמצאו הרשאות"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "אין תגובות"
|
||||
msgid "No reason provided"
|
||||
msgstr "לא סופקה סיבה"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "לא ניתנה סיבה."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "אף אחד"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "הדחקת רעש"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "לא עכשיו"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "לא לטעמך? תוכל לבטל את התכונה הזו בכל עת."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "בקשות חברות יוצאות"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "המכשיר לצפייה"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "עוצמת יציאה"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "כפתור תצוגה מקדימה"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "תצוגת מצלמה"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "מוכן לשדרוג?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "סיבה"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "הסר מסנן"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "הסר אזכור"
|
||||
msgid "Remove override"
|
||||
msgstr "הסר דריסה"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "הסר דריסה"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "הדיווח הוגש בהצלחה. צוות הבטיחות שלנו י
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "דווח על משתמש"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "הירשם מחדש"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "חפש רק בהודעה פרטית נוכחית"
|
||||
msgid "Search pending requests"
|
||||
msgstr "חפש בקשות ממתינות"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "חפש הרשאות..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "שלח קוד"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "שלח בקשת חברות"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "הצג את ההודעות הרלוונטיות ביותר קודם"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "הצג את המצלמה שלי"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "הצג חלון מכשיר חדש"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "הצג משתתפים ללא וידאו"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "שיחות שקטות מכולם"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "מדמה מזהה לקוח Stripe (לבדיקת גישה להיסטוריית רכישות)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "עמודה אחת"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "משהו השתבש והאפליקציה קרסה. נסה לרענן או לאפס את האפליקציה."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "משהו השתבש בטעינת יומן הביקורת."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "הקראת הודעה"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "דבר כרגיל למיקרופון. אתה אמור לשמוע את עצמך דרך הרמקולים. הרמה צריכה להישאר בטווח הירוק \"טוב\" או הצהוב \"אופטימלי\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "רמקול {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "רמקול {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "התחל שיתוף"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "התחל שיחת קול"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "החלף בין הקהילה האחרונה להודעות ישירות"
|
||||
msgid "Switch Device"
|
||||
msgstr "החלפת מכשיר"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "עבור לממשק נוח"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "עבור לממשק צפוף"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "עבור לעמודה אחת"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "עבור לחשבון זה"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "החלף למכשיר זה"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "עבור לשתי עמודות"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "סנכרן ערכת נושא"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "סנכרן נושא בין המכשירים"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "סנכרן עם קטגוריה"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "ערוץ זה אינו מסומן כ-NSFW. תוכן מיני מותר להעלות רק בערוצי NSFW. בקש ממנחה לסמן ערוץ זה כ-NSFW אם זה מתאים."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "ערוץ זה לא מסונכרן עם הקטגוריה הראשית <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "ערוץ זה מסונכרן עם הקטגוריה הראשית <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "נושא"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "זמן ניתוח כולל:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "עקוב אחר פעולות המנהלים בכל הקהילה."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "שנה את הבסיס של הקטגוריה הזו."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "שנה את הבסיס של הערוץ הזה."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "שתי עמודות"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "לא ניתן להתקין חבילת אימוג'ים"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "לא ניתן להתקין חבילת מדבקות"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "לא ניתן לטעון את יומני הפעילות"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "לא זמין לכולם חוץ מאנשי צוות"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "בטל חסימה של המשתמש הזה לפני שליחת בקשת
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "בטל חסימת משתמש"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "השתמש במפתח אבטחה"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "השתמש בהגדרות האזור של המערכת לתבנית זמן"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "השתמש בכפתורים אלה כדי להגדיר במהירות את כל ההרשאות."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "המשתמש הועבר לערוץ"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "פרופיל משתמש"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "פרופיל משתמש: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "וידאו"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "שיחת וידאו"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "איכות וידאו"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "הגדרות וידאו"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "הצג קודים"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "הצג פרופיל קהילה"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "הצג מלאי מתנות"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "הצג פרופיל גלובלי"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "קול"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "הגדרות קול ווידאו"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "שיחת קול"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "שיחת קול"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "אזור שרת קולי"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "הגדרות קול"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "כאשר מופעל, תוכל לסמן ערוצים כמועדפים ו
|
||||
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 "כאשר מופעל, תצטרך ללחוץ פעמיים על ערוצי קול כדי להצטרף אליהם. כאשר מבוטל (ברירת מחדל), לחיצה יחידה תצטרף לערוץ מיד."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "כאשר המנהלים מתחילים לנהל תכנים, אתה יכול לנהל את הניהול כאן."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "אתה יכול להשתמש בקישורים וב-Markdown כדי לע
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "אין לך אפשרות להוסיף תגובות חדשות בזמן שאתה בהשהיה."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "אתה לא יכול להיות חבר עם עצמך"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "אין באפשרותך לקיים אינטראקציה עם תגובו
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "אתה לא יכול להצטרף בזמן שאתה בהשהיה."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "אתה לא יכול לשלוח הודעה לעצמך"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(अधिकतम 15 दिखाए गए)"
|
||||
msgid "(No content)"
|
||||
msgstr "(कोई सामग्री नहीं)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(केवल आपको दिखता है)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "चाबियों की टंकण की एक सिम्फनी चल रही है..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "मेरे बारे में"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "स्वीकार करें"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "फ्रेंड रिक्वेस्ट स्वीकार करें"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "डेवलपर टूल्स तक पहुंचें"
|
||||
msgid "Access granted"
|
||||
msgstr "पहुँच दी गई"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "एक्सेस ओवरराइड्स"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "सक्रिय वार्षिक सदस्य (रद्द
|
||||
msgid "Activities"
|
||||
msgstr "गतिविधियाँ"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "नोट जोड़ें"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "अपना फ़ोन नंबर जोड़ें या बदलें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "ओवरराइड जोड़ें"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "आपके सभी @mentions यहाँ 7 दिनों तक दिखाई देंगे।"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "सभी क्रियाएँ"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "सभी अनुवाद वर्तमान में LLM द्वारा उत्पन्न किए गए हैं, जिनमें न्यूनतम मानव संशोधन है। हम वास्तविक लोगों की मदद चाहते हैं ताकि हम Fluxer को आपकी भाषा में स्थानीयकरण कर सकें! ऐसा करने के लिए, <0>i18n@fluxer.app</0> पर एक ईमेल भेजें और हम आपकी योगदानों को स्वीकार करने में खुश होंगे।"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "सभी उपयोगकर्ता"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "क्या तुम वाकई {0} को समूह मालि
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "क्या तुम वाकई {0} को मित्र से हटाना चाहते हो?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "क्या तुम वाकई समूह की स्वाम
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "क्या तुम वाकई {0} को अनब्लॉक करना चाहते हो?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "स्वचालित"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "ऑटो गेन कंट्रोल"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "सूची पर वापस"
|
||||
msgid "Back to login"
|
||||
msgstr "लॉगिन पर वापस"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "कॉल"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "कैमरा"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "कैमरा {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "रद्द करें"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "मित्र अनुरोध रद्द करें"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "चैनल पहुंच"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "चैनल पहुंच से इनकार"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "चैनल पहुँच अपडेट की गई"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "चैनल पसंदीदा से हटाया गया"
|
||||
msgid "Channel Settings"
|
||||
msgstr "चैनल सेटिंग्स"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "चैनल को पैरेंट श्रेणी के साथ सिंक किया गया"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "इस उपहार को भुनाने के लिए अप
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "दोस्तों को अनुरोध भेजने के लिए अपना खाता दाव करें।"
|
||||
@@ -4507,7 +4509,7 @@ msgstr "आरामदायक (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "आरामदायक"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "आरामदायक लेआउट"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "AFK चैनल और टाइमआउट कॉन्फ़िग
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "ऑटोकंप्लीट कॉन्फ़िगर करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "इस चैनल के लिए मूल पहुँच कॉन्फ़िगर करें"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "संदेश साउंड कॉन्फ़िगर करें
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "नोटिफिकेशन साउंड कॉन्फ़िगर करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "इस सदस्य के लिए ओवरराइड कॉन्फ़िगर करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "इस भूमिका के लिए ओवरराइड कॉन्फ़िगर करें"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "फ़ाइल लिंक कॉपी करें"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTag कॉपी करें"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "दिन"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "डैफ़न करें"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "ऐप ज़ूम लेवल घटाएं"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "डिफ़ॉल्ट"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "डेनमार्क"
|
||||
msgid "Dense"
|
||||
msgstr "घना"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "घना लेआउट"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "नई सुविधाओं के लिए शीघ्र पह
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "इको रद्द करना"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" संपादित करें"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "{0} के लिए पहुँच संपादित करें"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "नोट संपादित करें"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "इस चैनल में भूमिकाओं और सदस्यों के लिए ओवरराइट संपादित करें।"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "प्रोफ़ाइल संपादित करें"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "फ़ाइल नाम:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "फ़ाइलें बिना पूर्वावलोकन तुरंत भेज दी जाएँगी।"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "क्रिया द्वारा फ़िल्टर करें"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "क्रिया द्वारा फ़िल्टर करें
|
||||
msgid "Filter by content"
|
||||
msgstr "सामग्री द्वारा फ़िल्टर करें"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "उपयोगकर्ता द्वारा फ़िल्टर करें"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "ग्रिड"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "ग्रिड दृश्य"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "इनपुट"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "इनपुट डिवाइस"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "इनपुट स्थितियाँ"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "इनपुट वॉल्यूम"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "लाइव"
|
||||
msgid "Live Preview"
|
||||
msgstr "लाइव पूर्वावलोकन"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "और लोड करें"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "उल्लेख:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "इस समुदाय में प्लेटफॉर्म स
|
||||
msgid "Mic Test"
|
||||
msgstr "माइक टेस्ट"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "माइक्रोफोन {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "माइक्रोफोन {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "कोई कीबाइंड सेट नहीं"
|
||||
msgid "No limit"
|
||||
msgstr "कोई सीमा नहीं"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "अभी तक कोई लॉग नहीं"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "कोई लंबित अनुरोध नहीं"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "आपकी खोज से मेल खाते कोई लंबित अनुरोध नहीं"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "कोई अनुमति नहीं मिली"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "कोई प्रतिक्रिया नहीं"
|
||||
msgid "No reason provided"
|
||||
msgstr "कोई कारण नहीं दिया गया"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "कोई कारण प्रदान नहीं किया गया था।"
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "कोई नहीं"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "शोर दमन"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "अभी नहीं"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "यह आपकी पसंद नहीं है? आप कभी भी इस फीचर को बंद कर सकते हैं।"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "भेजे गए दोस्ती अनुरोध"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "आउटपुट डिवाइस"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "आउटपुट मात्रा"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "पूर्वावलोकन बटन"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "कैमरा पूर्वावलोकन"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "अपग्रेड करने के लिए तैयार?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "कारण"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "फ़िल्टर हटाएँ"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "उल्लेख हटाएँ"
|
||||
msgid "Remove override"
|
||||
msgstr "ओवरराइड हटाएँ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "ओवरराइड हटाएँ"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "रिपोर्ट सफलतापूर्वक सबमिट
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "उपयोगकर्ता रिपोर्ट करें"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "फिर से सदस्यता लें"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "केवल वर्तमान डीएम में खोजे
|
||||
msgid "Search pending requests"
|
||||
msgstr "लंबित अनुरोध खोजें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "अनुमतियाँ खोजें..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "कोड भेजें"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "दोस्ती का अनुरोध भेजें"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "सबसे प्रासंगिक संदेश पहले
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "अपना कैमरा दिखाएँ"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "नया डिवाइस मॉडल दिखाएँ"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "गैर-वीडियो प्रतिभागियों को दिखाएँ"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "सभी से मूक कॉल"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "स्ट्राइप ग्राहक आईडी का अनुकरण करता है (खरीद इतिहास एक्सेस का परीक्षण करने के लिए)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "एकल कॉलम"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "कुछ गलत हुआ और ऐप क्रैश हो गया। ऐप को रीलोड या रीसेट करने की कोशिश करें।"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "ऑडिट लॉग लोड करते समय कुछ गलत हुआ।"
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "मैसेज बोलें"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "अपने माइक्रोफोन में सामान्य तरीके से बोलें। आपको अपने स्पीकर से खुद की आवाज़ सुनाई देनी चाहिए। स्तर हरे \"अच्छा\" या पीले \"उत्तम\" सीमा में रहना चाहिए।"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "स्पीकर {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "स्पीकर {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "शेयरिंग शुरू करें"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "वॉयस कॉल शुरू करें"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "पिछले समुदाय और प्रत्यक्ष
|
||||
msgid "Switch Device"
|
||||
msgstr "डिवाइस बदलें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "आरामदायक लेआउट पर स्विच करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "घने लेआउट पर स्विच करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "एकल कॉलम पर स्विच करें"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "इस खाते पर स्विच करें"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "इस डिवाइस पर स्विच करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "दो कॉलम पर स्विच करें"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "थीम सिंक करें"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "थीम को डिवाइसों के बीच सिंक करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "श्रेणी के साथ सिंक करें"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "इस चैनल को NSFW के रूप में नहीं चिह्नित किया गया है। स्पष्ट सामग्री केवल NSFW चैनलों में भेजी जा सकती है। यदि उपयुक्त हो तो किसी मॉडरेटर से यह चैनल NSFW के रूप में चिह्नित करने को कहें।"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "यह चैनल पैरेंट श्रेणी <0>{0}</0> के साथ सिंक नहीं है।"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "यह चैनल पैरेंट श्रेणी <0>{0}</0> के साथ सिंक है।"
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "विषय"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "कुल पार्सिंग समय:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "पूरी कम्युनिटी में मॉडरेटर क्रियाओं पर नज़र रखें।"
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "इस श्रेणी की मूल बातें बदले
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "इस चैनल की मूल बातें बदलें।"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "दो स्तंभ"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "इमोजी पैक इंस्टॉल करने में
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "स्टीकर पैक इंस्टॉल करने में असमर्थ"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "गतिविधि लॉग लोड करने में असमर्थ"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "स्टाफ को छोड़कर सभी के लिए अ
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "फ्रेंड रिक्वेस्ट भेजने से
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "उपयोगकर्ता अनब्लॉक करें"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "सुरक्षा कुंजी का उपयोग करे
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "समय प्रारूप के लिए सिस्टम लोकेल का उपयोग करें"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "सभी अनुमतियाँ जल्दी से सेट करने के लिए इन बटनों का उपयोग करें।"
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "उपयोगकर्ता ने चैनल बदल दिया"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "उपयोगकर्ता प्रोफाइल"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "उपयोगकर्ता प्रोफाइल: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "वीडियो"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "वीडियो कॉल"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "वीडियो गुणवत्ता"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "वीडियो सेटिंग्स"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "कोड देखें"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "समुदाय प्रोफ़ाइल देखें"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "गिफ्ट इन्वेंटरी देखें"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "वैश्विक प्रोफ़ाइल देखें"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "वॉइस"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "वॉइस और वीडियो सेटिंग्स"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "वॉइस कॉल"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "वॉइस कॉल"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "वॉइस क्षेत्र"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "वॉइस सेटिंग्स"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "जब सक्षम हो, आप चैनलों को फे
|
||||
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 "जब सक्षम हो, तो वॉइस चैनलों में शामिल होने के लिए डबल-क्लिक करना होगा। जब अक्षम हो (डिफ़ॉल्ट), तो सिंगल-क्लिक करने पर तुरंत जुड़ जाएंगे।"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "जब मॉडरेटर्स मॉडरेट करना शुरू करते हैं, तो आप यहां मॉडरेशन को मॉडरेट कर सकते हैं।"
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "आप अपने टेक्स्ट को फॉर्मेट
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "जब आप टाइमआउट में हैं तो नए रिएक्शन नहीं जोड़ सकते।"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "आप खुद को दोस्त नहीं बना सकते"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "खोज परिणामों में रिएक्शनों
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "जब आप टाइमआउट में हैं तो शामिल नहीं हो सकते।"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "आप खुद को मैसेज नहीं भेज सकते"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(prikazano najviše 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Bez sadržaja)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(vidljivo samo tebi)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Simfonija kucanja tipkovnica je u punom jeku..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "O meni"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Prihvati"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Prihvati zahtjev za prijateljstvo"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Pristup razvojnim alatima"
|
||||
msgid "Access granted"
|
||||
msgstr "Pristup odobren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Nadjačavanja pristupa"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktivni godišnji pretplatnik (otkazivanje zakazano)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktivnosti"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Dnevnik aktivnosti"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Dodaj bilješku"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Dodaj ili promijeni svoj broj telefona"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Dodaj nadjačavanje"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Sva @spominjanja tebe pojavit će se ovdje tijekom 7 dana."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Sve radnje"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Sve prijevode trenutno generira LLM s minimalnim ljudskim pregledom. Voljeli bismo da pravi ljudi pomognu lokalizirati Fluxer na vaš jezik! Da biste to učinili, pošaljite e-poštu na <0>i18n@fluxer.app</0> i rado ćemo prihvatiti vaš doprinos."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Svi korisnici"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Jesi li siguran da želiš postaviti {0} za vlasnika grupe? Izgubit će
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Jesi li siguran da želiš ukloniti {0} kao prijatelja?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Jesi li siguran da želiš prenijeti vlasništvo grupe na {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Jesi li siguran da želiš odblokirati {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatska kontrola pojačanja"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Natrag na popis"
|
||||
msgid "Back to login"
|
||||
msgstr "Natrag na prijavu"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Pozivi"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Odustani"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Otkazivanje zahtjeva za prijateljstvo"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Pristup kanalu"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Pristup kanalu odbijen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Pristup kanalu ažuriran"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal uklonjen iz favorita"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Postavke kanala"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal sinkroniziran s nadređenom kategorijom"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Udobno (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Ugodno"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Ugodan raspored"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfiguriraj AFK kanal i vremensko ograničenje"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfiguriraj automatsko dovršavanje"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfiguriraj osnovni pristup za ovaj kanal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfiguriraj zvukove poruka"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfiguriraj zvukove obavijesti"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfiguriraj nadjačavanja za ovog člana"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfiguriraj nadjačavanja za ovu ulogu"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopiraj vezu datoteke"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopiraj FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dani"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Zagluši"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Smanji razinu zumiranja aplikacije"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Zadano"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danska"
|
||||
msgid "Dense"
|
||||
msgstr "Gusto"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Gusti raspored"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Rani pristup novim značajkama"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Otklanjanje jeke"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Uredi \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Uredi pristup za {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Uredi bilješku"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Uredi profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "naziv datoteke:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Datoteke će se odmah poslati bez pregleda."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtriraj po radnji"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtriraj po radnji"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtriraj po sadržaju"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtriraj po korisniku"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Mreža"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Prikaz mreže"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Unos"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Uređaj za unos"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Stanja unosa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Glasnoća unosa"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Uživo"
|
||||
msgid "Live Preview"
|
||||
msgstr "Pregled uživo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Učitaj više"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "spominjanja:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Razmjena poruka je privremeno onemogućena u ovoj zajednici od strane os
|
||||
msgid "Mic Test"
|
||||
msgstr "Test mikrofona"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nije postavljena tipkovna prečica"
|
||||
msgid "No limit"
|
||||
msgstr "Bez ograničenja"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Još nema zapisnika"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nema zahtjeva na čekanju"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Nijedan zahtjev na čekanju ne odgovara vašoj pretrazi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nisu pronađene dozvole"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Nema reakcija"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nije naveden razlog"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nije naveden razlog."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nitko"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Suzbijanje buke"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ne sada"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Odlazni zahtjevi za prijateljstvo"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Izlazni uređaj"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Izlazna glasnoća"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Gumb za pregled"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Kamera za pregled"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Spremni za nadogradnju?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Razlog"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Ukloni filtar"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Ukloni spominjanje"
|
||||
msgid "Remove override"
|
||||
msgstr "Ukloni nadjačavanje"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Ukloni nadjačavanje"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Prijavi korisnika"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Ponovno se pretplati"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Traži samo u trenutnoj privatnoj poruci"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Traži zahtjeve na čekanju"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Traži dozvole..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Pošalji kod"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Pošalji zahtjev za prijateljstvo"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Prikaži najrelevantnije poruke prve"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Prikaži moju vlastitu kameru"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Prikaži modal novog uređaja"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Prikaži sudionike bez videa"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Tihi pozivi od svih"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulira postojanje Stripe ID-a kupca (za testiranje pristupa povijesti kupnje)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Jedan stupac"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Nešto je pošlo po zlu i aplikacija se srušila. Pokušaj ponovno učitati ili resetirati aplikaciju."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Nešto je pošlo po zlu prilikom učitavanja revizijskog zapisa."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Govori poruku"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Govori normalno u mikrofon. Trebao bi čuti sebe preko zvučnika. Razina bi trebala ostati u zelenom \"Dobrom\" ili žutom \"Optimalnom\" rasponu."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Zvučnik {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Zvučnik {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Počni dijeliti"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Pokreni glasovni poziv"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Prebacuj se između zadnje zajednice i izravnih poruka"
|
||||
msgid "Switch Device"
|
||||
msgstr "Promijeni uređaj"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Prebaci se na udoban raspored"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Prebaci se na gusti raspored"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Prebaci se na jedan stupac"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Prebaci se na ovaj račun"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Prebaci se na ovaj uređaj"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Prebaci se na dva stupca"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sinkroniziraj temu"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sinkroniziraj temu na svim uređajima"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sinkroniziraj s kategorijom"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Ovaj kanal nije označen kao NSFW. Eksplicitni sadržaj se smije slati samo u NSFW kanalima. Pitaj moderatora da označi ovaj kanal kao NSFW ako je prikladno."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ovaj kanal nije sinkroniziran s nadređenom kategorijom <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ovaj kanal je sinkroniziran s nadređenom kategorijom <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Tema"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Ukupno vrijeme raščlanjivanja:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Prati radnje moderatora u zajednici."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Prilagodi osnovne postavke ove kategorije."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Prilagodi osnovne postavke ovog kanala."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dva stupca"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Nije moguće instalirati paket emojija"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Nije moguće instalirati paket naljepnica"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Nije moguće učitati zapise aktivnosti"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Nedostupno svima osim osoblju"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Deblokiraj ovog korisnika prije slanja zahtjeva za prijateljstvo."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Deblokiraj korisnika"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Koristi sigurnosni ključ"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Koristi jezik sustava za format vremena"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Koristi ove gumbe za brzo postavljanje svih dopuštenja."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Korisnik premješta kanal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil korisnika"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil korisnika: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Video poziv"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Kvaliteta videa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Postavke videa"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Pogledaj kodove"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Pogledaj profil zajednice"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Pogledaj inventar darova"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Pogledaj globalni profil"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Glas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Postavke glasa i videa"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Glasovni poziv"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Glasovni poziv"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Regija glasa"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Postavke glasa"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Kada je omogućeno, možete dodati kanale u favorite i oni će se pojavi
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Kada moderator započne moderiranje, možete moderirati moderiranje ovdje."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Ne možeš se sprijateljiti sam sa sobom"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Ne možeš slati poruke sam sebi"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 látható)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Nincs tartalom)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(csak neked látható)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "A billentyűk csattogásának szimfóniája zajlik..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Rólam"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Elfogad"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Barátkérelem elfogadása"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Fejlesztői eszközök elérése"
|
||||
msgid "Access granted"
|
||||
msgstr "Hozzáférés megadva"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Hozzáférés felülbírálások"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktív éves előfizető (lemondás ütemezve)"
|
||||
msgid "Activities"
|
||||
msgstr "Tevékenységek"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Tevékenységnapló"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Jegyzet hozzáadása"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Telefonszám hozzáadása vagy módosítása"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Felülbírálás hozzáadása"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Minden @említésed itt jelenik meg 7 napig."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Összes művelet"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Jelenleg az összes fordítást LLM generálta minimális emberi ellenőrzéssel. Szeretnénk, ha valós emberek segítenének a Fluxer lokalizálásában a te nyelvedre! Ehhez küldj egy e-mailt a <0>i18n@fluxer.app</0> címre, és örömmel fogadjuk a hozzájárulásaidat."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Összes felhasználó"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Biztosan {0}-t szeretnéd a csoport tulajdonosává tenni? Elveszíted a
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Biztosan el szeretnéd távolítani {0}-t barátként?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Biztosan át szeretnéd adni a csoport tulajdonjogát {0}-nak?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Biztosan fel szeretnéd oldani {0} blokkolását?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automatikus"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatikus erősítésszabályozás"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Vissza a listához"
|
||||
msgid "Back to login"
|
||||
msgstr "Vissza a bejelentkezéshez"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Hívások"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Mégse"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Barátkérelem visszavonása"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Csatorna-hozzáférés"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Csatorna-hozzáférés megtagadva"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Csatorna-hozzáférés frissítve"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Csatorna eltávolítva a kedvencekből"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Csatorna-beállítások"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Csatorna szinkronizálva a szülő kategóriával"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Kényelmes (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Kényelmes"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Kényelmes elrendezés"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Állítsd be az AFK csatornát és az időtúllépést"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Automatikus kiegészítés beállítása"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Állítsd be az alap hozzáférést ehhez a csatornához"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Üzenet hangok beállítása"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Értesítés hangok beállítása"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Állítsd be a felülbírálásokat ehhez a taghoz"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Állítsd be a felülbírálásokat ehhez a szerephez"
|
||||
|
||||
@@ -5147,7 +5149,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:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTag másolása"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Napok"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Siketítés"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Alkalmazás nagyítási szintjének csökkentése"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Alapértelmezett"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dánia"
|
||||
msgid "Dense"
|
||||
msgstr "Sűrű"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Sűrű elrendezés"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Korai hozzáférés az új funkciókhoz"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Visszhangszűrés"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" szerkesztése"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Hozzáférés szerkesztése {0} számára"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Jegyzet szerkesztése"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profil szerkesztése"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "fájlnév:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "A fájlok azonnal elküldésre kerülnek előnézet nélkül."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Szűrés művelet szerint"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Szűrés művelet szerint"
|
||||
msgid "Filter by content"
|
||||
msgstr "Szűrés tartalom szerint"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Szűrés felhasználó szerint"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Rács"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rácsnézet"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Bemenet"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Bemeneti eszköz"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Bemeneti állapotok"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Bemeneti hangerő"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Élő"
|
||||
msgid "Live Preview"
|
||||
msgstr "Élő előnézet"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Továbbiak betöltése"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "megemlítések:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Az üzenetküldést a platform személyzete átmenetileg letiltotta ebbe
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofon teszt"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nincs billentyűparancs beállítva"
|
||||
msgid "No limit"
|
||||
msgstr "Nincs korlát"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Még nincs napló"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nincs függőben lévő kérés"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Nincs a keresésnek megfelelő függőben lévő kérés"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nem található engedély"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Nincs reakció"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nincs ok megadva"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nem lett ok megadva."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Senki"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Zajszűrés"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Most nem"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Kimenő barátkérelmek"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Kimeneti eszköz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Kimeneti hangerő"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Előnézet gomb"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Előnézet kamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Készen állsz a frissítésre?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Ok"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Szűrő eltávolítása"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Említés eltávolítása"
|
||||
msgid "Remove override"
|
||||
msgstr "Felülbírálás eltávolítása"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Felülbírálás eltávolítása"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Felhasználó jelentése"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Újra feliratkozás"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Keresés csak az aktuális privát üzenetben"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Függőben lévő kérések keresése"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Jogosultságok keresése..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Kód küldése"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Barátkérelem küldése"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Legrelevánsabb üzenetek először megjelenítése"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Saját kamerám megjelenítése"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Új eszköz modális ablak megjelenítése"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Nem videós résztvevők megjelenítése"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Néma hívások mindenkitől"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Szimulálja, hogy van Stripe ügyfélazonosító (a vásárlási előzmények elérésének teszteléséhez)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Egyetlen oszlop"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Valami hiba történt, és az alkalmazás összeomlott. Próbáld újratölteni vagy alaphelyzetbe állítani az alkalmazást."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Valami hiba történt a napló betöltése közben."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Üzenet felolvasása"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Beszélj normálisan a mikrofonodba. Hallanod kell magad a hangszórókon keresztül. A szintnek a zöld \"Jó\" vagy sárga \"Optimális\" tartományban kell maradnia."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Hangszóró {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Hangszóró {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Megosztás indítása"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Hanghívás indítása"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Váltás a legutóbbi közösség és a közvetlen üzenetek között"
|
||||
msgid "Switch Device"
|
||||
msgstr "Eszköz váltása"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Váltás kényelmes elrendezésre"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Váltás sűrű elrendezésre"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Váltás egyetlen oszlopra"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Váltás erre a fiókra"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Váltás erre az eszközre"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Váltás két oszlopra"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Téma szinkronizálás"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Téma szinkronizálása eszközök között"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Szinkronizálás kategóriával"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Ez a csatorna nincs NSFW-ként megjelölve. Kifejezetten felnőtt tartalom csak NSFW csatornákban küldhető. Kérj meg egy moderátort, hogy jelölje meg ezt a csatornát NSFW-ként, ha megfelelő."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ez a csatorna nincs szinkronizálva a szülő kategóriával <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ez a csatorna szinkronizálva van a szülő kategóriával <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Téma"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Teljes feldolgozási idő:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Kövess moderátori műveleteket a közösségben."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Finomhangold a kategória alapbeállításait."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Finomhangold a csatorna alapbeállításait."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Két oszlop"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Az emojicsomag telepítése sikertelen"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "A matrica csomag telepítése sikertelen"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "A tevékenységnaplók betöltése sikertelen"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Mindenki számára elérhetetlen, kivéve a személyzetet"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Távolítsd el a felhasználó tiltását, mielőtt barátkérelmet kül
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Felhasználó tiltásának feloldása"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Biztonsági kulcs használata"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Rendszer területi beállításának használata időformátumhoz"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Használd ezeket a gombokat az összes jogosultság gyors beállításához."
|
||||
|
||||
@@ -19840,11 +19868,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:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Felhasználói profil"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Felhasználói profil: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Videó"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videóhívás"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videó minőség"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videó beállítások"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Kódok megtekintése"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Közösségi profil megtekintése"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Ajándékinventár megtekintése"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Globális profil megtekintése"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Hang"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Hang- és videóbeállítások"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Hanghívás"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Hanghívás"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Hangrégió"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Hangbeállítások"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Ha be van kapcsolva, kedvencnek jelölhetsz csatornákat, és azok megje
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Amikor a moderátorok moderálni kezdenek, itt moderálhatod a moderálást."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Nem barátkozhatsz magaddal"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Nem küldhetsz üzenetet magadnak"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maks 15 ditampilkan)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Tidak ada konten)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(hanya terlihat oleh Anda)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Sebuah simfoni suara ketukan kunci sedang berlangsung..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Tentang Saya"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Terima"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Terima Permintaan Pertemanan"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Akses alat pengembang"
|
||||
msgid "Access granted"
|
||||
msgstr "Akses diberikan"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Penggantian Akses"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Pelanggan Tahunan Aktif (Pembatalan Dijadwalkan)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktivitas"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Log Aktivitas"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Tambahkan Catatan"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Tambahkan atau ubah nomor telepon Anda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Tambahkan Penggantian"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Semua @sebutan untuk Anda akan muncul di sini selama 7 hari."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Semua Tindakan"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Semua terjemahan saat ini dihasilkan oleh LLM dengan sedikit revisi manusia. Kami sangat ingin mendapatkan bantuan dari orang-orang nyata untuk melokalisasi Fluxer ke dalam bahasa Anda! Untuk melakukannya, kirim email ke <0>i18n@fluxer.app</0> dan kami akan senang menerima kontribusi Anda."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Semua Pengguna"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Apakah Anda yakin ingin menjadikan {0} sebagai pemilik grup? Anda akan k
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Apakah Anda yakin ingin menghapus {0} sebagai teman?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Apakah Anda yakin ingin mentransfer kepemilikan grup ke {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Apakah Anda yakin ingin membuka blokir {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Otomatis"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Kontrol Gain Otomatis"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Kembali ke daftar"
|
||||
msgid "Back to login"
|
||||
msgstr "Kembali ke login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Panggilan"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Batal"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Batalkan Permintaan Pertemanan"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Akses Kanal"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Akses Kanal Ditolak"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Akses kanal diperbarui"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal dihapus dari favorit"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Pengaturan Kanal"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal disinkronkan dengan kategori induk"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Klaim akun Anda untuk mengirim permintaan pertemanan."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Nyaman (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Nyaman"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Tata letak nyaman"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfigurasikan kanal AFK dan waktu habis"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfigurasi pelengkapan otomatis"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfigurasikan akses dasar untuk kanal ini"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfigurasi suara pesan"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfigurasi suara notifikasi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfigurasikan penggantian untuk anggota ini"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfigurasikan penggantian untuk peran ini"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Salin Tautan File"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Salin FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Hari"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Tuli"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Kurangi tingkat zoom aplikasi"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Default"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Denmark"
|
||||
msgid "Dense"
|
||||
msgstr "Padat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Tata letak padat"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Akses awal ke fitur baru"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Pembatalan Gema"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Edit \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Edit Akses untuk {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Edit Catatan"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Edit Profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nama file:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "File akan dikirim segera tanpa pratinjau."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filter berdasarkan aksi"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filter berdasarkan aksi"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filter berdasarkan konten"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filter berdasarkan pengguna"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Kisi"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Tampilan Kisi"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Input"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Perangkat Input"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Status Input"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volume Input"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Pratinjau Live"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Muat lebih banyak"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "sebutan:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Pesan telah dinonaktifkan sementara di komunitas ini oleh staf platform.
|
||||
msgid "Mic Test"
|
||||
msgstr "Uji Mikrofon"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Tidak ada keybind diatur"
|
||||
msgid "No limit"
|
||||
msgstr "Tidak ada batas"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Belum ada log"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Tidak ada permintaan tertunda"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Tidak ada permintaan tertunda yang cocok dengan pencarian Anda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Tidak ada izin ditemukan"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Tidak ada reaksi"
|
||||
msgid "No reason provided"
|
||||
msgstr "Tidak ada alasan diberikan"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Tidak ada alasan yang diberikan."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Tidak Ada"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Penekanan Kebisingan"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Jangan Sekarang"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Permintaan pertemanan yang dikirim"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Perangkat Keluaran"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volume Keluaran"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Tombol Pratinjau"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Kamera Pratinjau"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Siap Meningkatkan?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Alasan"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Hapus filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Hapus sebutan"
|
||||
msgid "Remove override"
|
||||
msgstr "Hapus penggantian"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Hapus Penggantian"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Laporkan Pengguna"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Berlangganan Ulang"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Cari hanya di DM saat ini"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Cari permintaan tertunda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Cari Izin..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Kirim Kode"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Kirim Permintaan Teman"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Tampilkan pesan paling relevan dulu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Tampilkan Kamera Saya Sendiri"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Tampilkan Modal Perangkat Baru"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Tampilkan Peserta Non-Video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Panggilan diam dari semua orang"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Menyimulasikan memiliki ID pelanggan Stripe (untuk menguji akses riwayat pembelian)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Kolom tunggal"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Ada yang salah dan aplikasi mogok. Coba muat ulang atau atur ulang aplikasi."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Ada yang salah saat memuat log audit."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Pesan Bicara"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Bicaralah normal ke mikrofon Anda. Anda harus mendengar diri sendiri melalui speaker. Levelnya harus tetap dalam rentang hijau \"Baik\" atau kuning \"Optimal\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Pembicara {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Pembicara {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Mulai Berbagi"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Mulai Panggilan Suara"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Beralih antara komunitas terakhir dan pesan langsung"
|
||||
msgid "Switch Device"
|
||||
msgstr "Ganti Perangkat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Beralih ke tata letak nyaman"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Beralih ke tata letak padat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Beralih ke kolom tunggal"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Beralih ke akun ini"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Beralih ke Perangkat Ini"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Beralih ke dua kolom"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sinkronkan Tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sinkronkan tema di seluruh perangkat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sinkronkan dengan Kategori"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Kanal ini tidak ditandai sebagai NSFW. Konten eksplisit hanya dapat dikirim di kanal NSFW. Minta moderator untuk menandai kanal ini sebagai NSFW jika sesuai."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Kanal ini tidak disinkronkan dengan kategori induk <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Kanal ini disinkronkan dengan kategori induk <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Topik"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Total Waktu Parsing:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Lacak tindakan moderator di seluruh komunitas."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Sesuaikan dasar-dasar kategori ini."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Sesuaikan dasar-dasar kanal ini."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dua kolom"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Tidak dapat menginstal paket emoji"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Tidak dapat menginstal paket stiker"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Tidak dapat memuat log aktivitas"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Tidak tersedia untuk semua orang kecuali staf"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Buka blokir pengguna ini sebelum mengirim permintaan pertemanan."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Buka Blokir Pengguna"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Gunakan kunci keamanan"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Gunakan lokalitas sistem untuk format waktu"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Gunakan tombol ini untuk mengatur semua izin dengan cepat."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Pengguna Memindahkan Kanal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil Pengguna"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil Pengguna: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Panggilan Video"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Kualitas Video"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Pengaturan Video"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Lihat Kode"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Lihat Profil Komunitas"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Lihat Inventaris Hadiah"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Lihat Profil Global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Suara"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Pengaturan Suara & Video"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Panggilan suara"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Panggilan Suara"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Wilayah Suara"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Pengaturan Suara"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Saat diaktifkan, Anda dapat memfavoritkan kanal dan mereka akan muncul d
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Saat moderator mulai memoderasi, Anda dapat memoderasi moderasi di sini."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Anda tidak dapat berteman dengan diri sendiri"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Anda tidak dapat mengirim pesan ke diri sendiri"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(massimo 15 mostrati)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Nessun contenuto)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(visibile solo a te)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Una sinfonia di tasti che battano è in corso..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Su di me"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accetta"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Accetta richiesta di amicizia"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Accedi agli strumenti di sviluppo"
|
||||
msgid "Access granted"
|
||||
msgstr "Accesso consentito"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Sovrascritture accesso"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Abbonato annuale attivo (cancellazione programmata)"
|
||||
msgid "Activities"
|
||||
msgstr "Attività"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Registro attività"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Aggiungi nota"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Aggiungi o modifica il tuo numero di telefono"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Aggiungi sovrascrittura"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Tutte le @menzioni nei tuoi confronti appariranno qui per 7 giorni."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Tutte le azioni"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Tutte le traduzioni sono attualmente generate da LLM con minima revisione umana. Ci piacerebbe avere persone reali che ci aiutino a localizzare Fluxer nella tua lingua! Per farlo, invia un'email a <0>i18n@fluxer.app</0> e saremo felici di accettare i tuoi contributi."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Tutti gli utenti"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Sei sicuro di voler rendere {0} il proprietario del gruppo? Perderai i p
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Sei sicuro di voler rimuovere {0} come amico?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Sei sicuro di voler trasferire la proprietà del gruppo a {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Sei sicuro di voler sbloccare {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automatico"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Controllo automatico del guadagno"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Torna alla lista"
|
||||
msgid "Back to login"
|
||||
msgstr "Torna al login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Chiamate"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Fotocamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Fotocamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Annulla"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Annulla richiesta di amicizia"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Accesso al canale"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Accesso al canale negato"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Accesso al canale aggiornato"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Canale rimosso dai preferiti"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Impostazioni canale"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Canale sincronizzato con la categoria principale"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Comodo (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Comodo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Layout comodo"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configura il canale AFK e il timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configura il completamento automatico"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configura l’accesso base per questo canale"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configura i suoni dei messaggi"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configura i suoni delle notifiche"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configura le eccezioni per questo membro"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configura le eccezioni per questo ruolo"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copia link file"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copia FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Giorni"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Disattiva audio"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Riduci livello zoom app"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Predefinito"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danimarca"
|
||||
msgid "Dense"
|
||||
msgstr "Denso"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Layout denso"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Accesso anticipato alle nuove funzioni"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Cancellazione dell’eco"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Modifica \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Modifica accesso per {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Modifica nota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Modifica profilo"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nome file:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "I file verranno inviati immediatamente senza anteprima."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtra per azione"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtra per azione"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtra per contenuto"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtra per utente"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Griglia"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Vista griglia"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Input"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Dispositivo di input"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Stati di input"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volume di input"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Anteprima live"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Carica altro"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "menzioni:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "La messaggistica è stata temporaneamente disattivata in questa communit
|
||||
msgid "Mic Test"
|
||||
msgstr "Test microfono"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microfono {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microfono {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nessun tasto assegnato"
|
||||
msgid "No limit"
|
||||
msgstr "Nessun limite"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Ancora nessun log"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nessuna richiesta in sospeso"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Nessuna richiesta in sospeso corrisponde alla ricerca"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nessuna autorizzazione trovata"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Nessuna reazione"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nessuna motivazione fornita"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nessuna motivazione è stata fornita."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nessuno"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Soppressione rumore"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Non ora"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Richieste di amicizia in uscita"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Dispositivo di output"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volume di uscita"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Pulsante anteprima"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Anteprima fotocamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Pronto per l'upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Rimuovi filtro"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Rimuovi menzione"
|
||||
msgid "Remove override"
|
||||
msgstr "Rimuovi sovrascrittura"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Rimuovi sovrascrittura"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Segnala utente"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Riattiva l'abbonamento"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Cerca solo nel DM corrente"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Cerca richieste in sospeso"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Cerca autorizzazioni..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Invia codice"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Invia richiesta di amicizia"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Mostra prima i messaggi più rilevanti"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Mostra la mia videocamera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Mostra la finestra modale nuovo dispositivo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Mostra partecipanti non video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Chiamate silenziose da tutti"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simula di avere un ID cliente Stripe (per testare l'accesso alla cronologia acquisti)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Colonna singola"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Qualcosa è andato storto e l'app si è bloccata. Prova a ricaricare o a resettare l'app."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Qualcosa è andato storto durante il caricamento del registro di controllo."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Leggi messaggio"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Parla normalmente nel microfono. Dovresti sentirti dai tuoi altoparlanti. Il livello dovrebbe rimanere nella zona verde \"Buono\" o gialla \"Ottimale\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Altoparlante {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Altoparlante {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Inizia condivisione"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Avvia chiamata vocale"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Passa tra l’ultima community e i messaggi diretti"
|
||||
msgid "Switch Device"
|
||||
msgstr "Cambia dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Passa alla visuale comoda"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Passa alla visuale compatta"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Passa alla colonna singola"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Usa questo account"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Usa questo dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Passa a due colonne"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sincronizza tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sincronizza il tema su tutti i dispositivi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sincronizza con la categoria"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Questo canale non è contrassegnato come NSFW. I contenuti espliciti possono essere inviati solo nei canali NSFW. Chiedi a un moderatore di segnalarlo come tale se necessario."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Questo canale non è sincronizzato con la categoria principale <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Questo canale è sincronizzato con la categoria principale <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Argomento"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Tempo totale di analisi:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Monitora le azioni dei moderatori in tutta la community."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Personalizza le basi di questa categoria."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Personalizza le basi di questo canale."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Due colonne"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Impossibile installare il pacchetto emoji"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Impossibile installare il pacchetto sticker"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Impossibile caricare i registri attività"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Non disponibile per tutti tranne lo staff"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Sblocca questo utente prima di inviare la richiesta di amicizia."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Sblocca utente"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Usa chiave di sicurezza"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Usa la lingua del sistema per il formato orario"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Usa questi pulsanti per impostare rapidamente tutte le autorizzazioni."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "L'utente ha cambiato canale"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profilo utente"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profilo Utente: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Chiamata video"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Qualità video"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Impostazioni video"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Visualizza codici"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Visualizza profilo della community"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Visualizza inventario regali"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Visualizza profilo globale"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voce"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Impostazioni voce e video"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Chiamata vocale"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Chiamata vocale"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Regione vocale"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Impostazioni vocali"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Quando attivato, puoi aggiungere canali ai preferiti e li vedrai nella s
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Quando i moderatori iniziano a moderare, qui puoi moderare la moderazione."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Non puoi aggiungerti agli amici da solo"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Non puoi mandarti messaggi"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(最大15件表示)"
|
||||
msgid "(No content)"
|
||||
msgstr "(コンテンツなし)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(あなたのみに表示)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "カタカタとしたキーの交響曲が始まっています..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "私について"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "承認"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "フレンドリクエストを承認"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "開発者ツールにアクセス"
|
||||
msgid "Access granted"
|
||||
msgstr "アクセス許可済み"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "アクセスオーバーライド"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "アクティブな年額購読者(キャンセル予定)"
|
||||
msgid "Activities"
|
||||
msgstr "アクティビティ"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "ノートを追加"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "電話番号を追加または変更"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "オーバーライドを追加"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "あなたへのすべての@メンションが7日間ここに表示されます。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "すべてのアクション"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "現在、すべての翻訳は最小限の人間による修正でLLM生成されています。私たちは、Fluxerをあなたの言語にローカライズする手伝いをしてくれる実際の人々を募集中です!そのためには、<0>i18n@fluxer.app</0>にメールを送信してください。喜んであなたの貢献を受け入れます。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "すべてのユーザー"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "{0}をグループオーナーにしてもよろしいですか?あな
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "{0}をフレンドから削除してもよろしいですか?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "グループの所有権を{0}に譲渡してもよろしいですか?
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "{0}のブロックを解除してもよろしいですか?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "自動"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "自動ゲイン制御"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "リストに戻る"
|
||||
msgid "Back to login"
|
||||
msgstr "ログインに戻る"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "通話"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "カメラ"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "カメラ {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "キャンセル"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "フレンドリクエストをキャンセル"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "チャンネルアクセス"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "チャンネルへのアクセスが拒否されました"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "チャンネルアクセスが更新されました"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "チャンネルをお気に入りから削除しました"
|
||||
msgid "Channel Settings"
|
||||
msgstr "チャンネル設定"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "チャンネルが親カテゴリと同期されました"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "アカウントを請求してこのギフトを引き換えてくださ
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "アカウントを請求して友達リクエストを送信してください。"
|
||||
@@ -4507,7 +4509,7 @@ msgstr "快適 (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "快適"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "快適レイアウト"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "AFKチャンネルとタイムアウトを設定"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "オートコンプリートを設定"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "このチャンネルの基本アクセスを設定"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "メッセージサウンドを設定"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "通知サウンドを設定"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "このメンバーのオーバーライドを設定"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "このロールのオーバーライドを設定"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "ファイルリンクをコピー"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTagをコピー"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "日"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "スピーカーをミュート"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "アプリのズームレベルを下げる"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "デンマーク"
|
||||
msgid "Dense"
|
||||
msgstr "高密度"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "高密度レイアウト"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "新機能への早期アクセス"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "エコーキャンセレーション"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\"を編集"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "{0}のアクセスを編集"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "ノートを編集"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "このチャンネル内のロールとメンバーの上書きを編集します。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "プロフィールを編集"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "ファイル名:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "ファイルはプレビューなしで即座に送信されます。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "アクションでフィルター"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "アクションでフィルター"
|
||||
msgid "Filter by content"
|
||||
msgstr "コンテンツでフィルター"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "ユーザーでフィルター"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "グリッド"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "グリッドビュー"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "入力"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "入力デバイス"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "入力状態"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "入力ボリューム"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "ライブ"
|
||||
msgid "Live Preview"
|
||||
msgstr "ライブプレビュー"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "さらに読み込む"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "メンション:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "プラットフォームスタッフにより、このコミュニティ
|
||||
msgid "Mic Test"
|
||||
msgstr "マイクテスト"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "マイク {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "マイク {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "キーバインドが設定されていません"
|
||||
msgid "No limit"
|
||||
msgstr "制限なし"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "まだログはありません"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "保留中のリクエストはありません"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "検索に一致する保留中のリクエストはありません"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "権限が見つかりません"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "リアクションはありません"
|
||||
msgid "No reason provided"
|
||||
msgstr "理由は提供されていません"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "理由は提供されていません。"
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "誰もいません"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "ノイズ抑制"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "後で"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "気に入りませんか?この機能はいつでも無効にできます。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "送信したフレンドリクエスト"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "出力デバイス"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "出力音量"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "プレビューボタン"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "プレビューカメラ"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "アップグレードしますか?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "理由"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "フィルターを削除"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "メンションを削除"
|
||||
msgid "Remove override"
|
||||
msgstr "上書きを削除"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "上書きを削除"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "報告が正常に送信されました。セーフティチームがす
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "ユーザーを報告"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "再購読"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "現在のDM内のみを検索"
|
||||
msgid "Search pending requests"
|
||||
msgstr "保留中のリクエストを検索"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "権限を検索..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "コードを送信"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "フレンドリクエストを送信"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "最も関連性の高いメッセージを最初に表示"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "自分のカメラを表示"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "新しいデバイスのモーダルを表示"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "ビデオなしの参加者を表示"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "全員からのサイレント通話"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Stripeの顧客IDを持っていることをシミュレートします(購入履歴へのアクセスをテストするため)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "単一列"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "何か問題が発生し、アプリがクラッシュしました。アプリを再読み込みまたはリセットしてみてください。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "監査ログの読み込み中に問題が発生しました。"
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "メッセージを読み上げる"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "マイクに普通に話してください。スピーカーから自分の声が聞こえるはずです。レベルは緑の「良好」または黄色の「最適」の範囲内に留まるようにしてください。"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "スピーカー {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "スピーカー {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "共有を開始"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "音声通話を開始"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "最後のコミュニティとダイレクトメッセージを切り替
|
||||
msgid "Switch Device"
|
||||
msgstr "デバイスを切り替え"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "快適なレイアウトに切り替え"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "密集したレイアウトに切り替え"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "シングルカラムに切り替え"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "このアカウントに切り替え"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "このデバイスに切り替え"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "2カラムに切り替え"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "テーマを同期"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "デバイス間でテーマを同期"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "カテゴリと同期"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "このチャンネルはNSFWとしてマークされていません。露骨なコンテンツはNSFWチャンネルでのみ送信できます。適切な場合はモデレーターにこのチャンネルをNSFWとしてマークするよう依頼してください。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "このチャンネルは親カテゴリ <0>{0}</0> と同期していません。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "このチャンネルは親カテゴリ <0>{0}</0> と同期しています。"
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "トピック"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "合計解析時間:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "コミュニティ全体のモデレーターのアクションを追跡します。"
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "このカテゴリーの基本設定を調整します。"
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "このチャンネルの基本設定を調整します。"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "2列"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "絵文字パックをインストールできません"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "ステッカーパックをインストールできません"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "アクティビティログを読み込めません"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "スタッフ以外は利用不可"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "フレンドリクエストを送る前に、このユーザーのブロ
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "ユーザーのブロックを解除"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "セキュリティキーを使用"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "時間形式にシステムのロケールを使用"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "これらのボタンを使用してすべての権限をすばやく設定。"
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "ユーザーがチャンネルを移動"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "ユーザープロフィール"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "ユーザープロフィール: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "ビデオ"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "ビデオ通話"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "動画品質"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "動画設定"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "コードを表示"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "コミュニティプロフィールを表示"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "ギフト在庫を表示"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "グローバルプロフィールを表示"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "ボイス"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "ボイスとビデオの設定"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "ボイス通話"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "ボイス通話"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "ボイスリージョン"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "ボイス設定"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "有効時、チャンネルをお気に入り登録でき、お気に入
|
||||
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 "有効時、ボイスチャンネルに参加するにはダブルクリックが必要です。無効時(デフォルト)、シングルクリックで即座にチャンネルに参加します。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "モデレーターがモデレートを開始したら、ここでモデレートを調整できます。"
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "リンクとMarkdownを使用してテキストをフォーマットで
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "タイムアウト中は新しいリアクションを追加できません。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "自分自身を友達にすることはできません"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "検索結果のリアクションを操作すると時空連続体が乱
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "タイムアウト中は参加できません。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "自分自身にメッセージを送ることはできません"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(최대 15개 표시)"
|
||||
msgid "(No content)"
|
||||
msgstr "(내용 없음)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(본인만 볼 수 있음)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "키보드가 쿵쿵거리는 교향곡이 진행 중입니다..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "내 소개"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "수락"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "친구 요청 수락"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "개발자 도구 접근"
|
||||
msgid "Access granted"
|
||||
msgstr "접근 허용됨"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "접근 재정의"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "활성 연간 구독자(취소 예정)"
|
||||
msgid "Activities"
|
||||
msgstr "활동"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "노트 추가"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "전화번호 추가 또는 변경"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "재정의 추가"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "당신에 대한 모든 @멘션이 7일 동안 여기 표시됩니다."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "모든 동작"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "현재 모든 번역은 최소한의 인간 수정으로 LLM에 의해 생성되었습니다. Fluxer를 귀하의 언어로 현지화하는 데 도움을 줄 실제 사람을 찾고 싶습니다! 그렇게 하려면 <0>i18n@fluxer.app</0>로 이메일을 보내주시면 기꺼이 기여를 받아들입니다."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "전체 사용자"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "{0}님을 그룹 소유자로 지정하시겠어요? 소유자 권한을
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "{0}님을 친구에서 제거하시겠어요?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "그룹 소유권을 {0}님에게 이전하시겠어요?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "{0}님을 차단 해제하시겠어요?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "자동"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "자동 게인 제어"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "목록으로 돌아가기"
|
||||
msgid "Back to login"
|
||||
msgstr "로그인으로 돌아가기"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "통화"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "카메라"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "카메라 {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "취소"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "친구 요청 취소"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "채널 접근"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "채널 접근 거부됨"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "채널 접근 업데이트됨"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "채널이 즐겨찾기에서 제거됨"
|
||||
msgid "Channel Settings"
|
||||
msgstr "채널 설정"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "채널이 상위 카테고리와 동기화됨"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "이 선물을 사용하기 위해 계정을 요청하세요."
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "친구 요청을 보내기 위해 계정을 요청하세요."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "편안함 (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "편안함"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "편안한 레이아웃"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "AFK 채널 및 타임아웃 구성"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "자동 완성 구성"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "이 채널의 기본 접근 권한 구성"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "메시지 소리 구성"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "알림 소리 구성"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "이 구성원을 위한 오버라이드 구성"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "이 역할을 위한 오버라이드 구성"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "파일 링크 복사"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTag 복사"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "일"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "음소거"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "앱 확대/축소 축소"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "기본값"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "덴마크"
|
||||
msgid "Dense"
|
||||
msgstr "조밀"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "조밀한 레이아웃"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "새 기능을 먼저 이용할 수 있는 액세스"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "에코 캔슬링"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" 편집"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "{0}에 대한 액세스 편집"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "노트 편집"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "이 채널의 역할과 멤버에 대한 덮어쓰기를 편집하세요."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "프로필 편집"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "파일 이름:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "파일은 미리 보기 없이 바로 전송됩니다."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "작업별 필터"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "작업별 필터"
|
||||
msgid "Filter by content"
|
||||
msgstr "내용별 필터"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "사용자별 필터"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "그리드"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "그리드 보기"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "입력"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "입력 장치"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "입력 상태"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "입력 볼륨"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "라이브"
|
||||
msgid "Live Preview"
|
||||
msgstr "라이브 미리보기"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "더 불러오기"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "멘션:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "플랫폼 직원이 이 커뮤니티에서 메시징을 일시적으로
|
||||
msgid "Mic Test"
|
||||
msgstr "마이크 테스트"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "마이크 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "마이크 {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "키 바인딩이 설정되지 않았습니다"
|
||||
msgid "No limit"
|
||||
msgstr "제한 없음"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "아직 로그가 없습니다"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "대기 중인 요청이 없습니다"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "검색과 일치하는 대기 요청이 없습니다"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "권한을 찾을 수 없습니다"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "반응 없음"
|
||||
msgid "No reason provided"
|
||||
msgstr "이유가 제공되지 않았습니다"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "이유가 제공되지 않았습니다."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "아무도"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "소음 억제"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "나중에"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "마음에 안 드시나요? 언제든지 이 기능을 끌 수 있어요."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "보낸 친구 요청"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "출력 장치"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "출력 볼륨"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "미리 보기 버튼"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "카메라 미리 보기"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "업그레이드할 준비가 되셨나요?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "사유"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "필터 제거"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "언급 제거"
|
||||
msgid "Remove override"
|
||||
msgstr "재정의 제거"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "재정의 제거"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "신고가 성공적으로 제출되었습니다. 안전 팀에서 곧
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "사용자 신고"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "다시 가입"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "현재 DM에서만 검색"
|
||||
msgid "Search pending requests"
|
||||
msgstr "보류 중인 요청 검색"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "권한 검색..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "코드 보내기"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "친구 요청 보내기"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "가장 관련 높은 메시지를 먼저 표시"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "내 카메라 보기"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "새 기기 모달 표시"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "비디오 없는 참가자 보기"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "모든 사람의 무음 통화"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Stripe 고객 ID가 있는 것처럼 시뮬레이션합니다 (구매 내역 접근 테스트용)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "단일 열"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "문제가 발생하여 앱이 종료되었습니다. 앱을 다시 로드하거나 재설정해 보세요."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "감사 로그를 불러오는 동안 문제가 발생했습니다."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "메시지 읽기"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "마이크에 평소처럼 말하세요. 스피커로 내 목소리가 들려야 하며, 레벨은 녹색 \"좋음\" 또는 노란색 \"최적\" 범위에 있어야 합니다."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "스피커 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "스피커 {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "공유 시작"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "음성 통화 시작"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "최근 커뮤니티와 DM 전환"
|
||||
msgid "Switch Device"
|
||||
msgstr "기기 전환"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "편안한 레이아웃으로 전환"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "빽빽한 레이아웃으로 전환"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "단일 열로 전환"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "이 계정으로 전환"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "이 기기로 전환"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "두 열로 전환"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "테마 동기화"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "기기 간 테마 동기화"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "카테고리와 동기화"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "이 채널은 NSFW로 표시되어 있지 않습니다. 선정적인 콘텐츠는 NSFW 채널에서만 보낼 수 있습니다. 적절하다면 운영자에게 이 채널을 NSFW로 표시해 달라고 요청하세요."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "이 채널은 상위 카테고리 <0>{0}</0>와 동기화되어 있지 않습니다."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "이 채널은 상위 카테고리 <0>{0}</0>와 동기화되어 있습니다."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "주제"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "전체 파싱 시간:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "커뮤니티 전체에서 모더레이션 활동을 추적하세요."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "이 카테고리의 기본을 조정하세요."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "이 채널의 기본을 조정하세요."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "두 열"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "이모지 팩을 설치할 수 없습니다"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "스티커 팩을 설치할 수 없습니다"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "활동 로그를 불러올 수 없습니다"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "직원만 사용 가능"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "친구 요청을 보내기 전에 이 사용자의 차단을 해제하
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "사용자 차단 해제"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "보안 키 사용"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "시간 형식에 시스템 로케일 사용"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "이 버튼을 사용해 모든 권한을 빠르게 설정하세요."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "사용자가 채널을 이동했어요."
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "사용자 프로필"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "사용자 프로필: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "비디오"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "영상 통화"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "비디오 품질"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "비디오 설정"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "코드 보기"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "커뮤니티 프로필 보기"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "선물 인벤토리 보기"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "글로벌 프로필 보기"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "음성"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "음성 및 영상 설정"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "음성 통화"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "음성 통화"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "음성 리전"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "음성 설정"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "활성화하면 채널을 즐겨찾기할 수 있으며 즐겨찾기 섹
|
||||
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 "활성화하면 음성 채널을 더블 클릭해야 참여할 수 있습니다. 비활성화(기본)하면 단일 클릭으로 채널에 즉시 참여합니다."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "모더레이터가 중재를 시작하면 여기에서 중재를 감시할 수 있습니다."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "링크와 마크다운을 사용해 텍스트를 꾸밀 수 있습니다
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "타임아웃 중에는 새로운 반응을 추가할 수 없습니다."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "자기 자신과 친구가 될 수 없습니다"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "검색 결과에서 반응과 상호작용할 수 없습니다. 시공
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "타임아웃 중에는 참여할 수 없습니다."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "자기 자신에게 메시지를 보낼 수 없습니다"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 rodoma)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Nėra turinio)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(matoma tik tau)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Klaviatūrų beldimo simfonija prasideda..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Apie mane"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Priimti"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Priimti draugų užklausą"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Pasiekti kūrėjo įrankius"
|
||||
msgid "Access granted"
|
||||
msgstr "Prieiga suteikta"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Prieigos perrašymai"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktyvus metinis prenumeratorius (atšaukimas suplanuotas)"
|
||||
msgid "Activities"
|
||||
msgstr "Veiklos"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Veiklos žurnalas"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Pridėti pastabą"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Pridėti arba pakeisti savo telefono numerį"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Pridėti perrašymą"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Visos jūsų @minėjimai čia bus rodomi 7 dienas."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Visi veiksmai"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Visos vertimai šiuo metu yra sugeneruoti LLM su minimaliu žmogaus redagavimu. Mes norėtume, kad tikri žmonės padėtų lokalizuoti Fluxer į jūsų kalbą! Tam siųskite el. laišką adresu <0>i18n@fluxer.app</0> ir mes džiaugiamės galėdami priimti jūsų indėlį."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Visi naudotojai"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Ar tikrai norite padaryti {0} grupės savininku? Jūs prarasite savinink
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Ar tikrai norite pašalinti {0} iš draugų?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Ar tikrai norite perduoti grupės savininkystę {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Ar tikrai norite atblokuoti {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automatinis"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatinis stiprinimo valdymas"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Atgal į sąrašą"
|
||||
msgid "Back to login"
|
||||
msgstr "Atgal į prisijungimą"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Skambučiai"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Atšaukti"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Atšaukti draugų užklausą"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanalo prieiga"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanalo prieiga uždrausta"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanalo prieiga atnaujinta"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanalas pašalintas iš mėgstamų"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanalo nustatymai"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanalas sinchronizuotas su pagrindine kategorija"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Patogus (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Jaukus"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Jaukus išdėstymas"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfigūruokite AFK kanalą ir laiko limitą"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfigūruoti automatinį užbaigimą"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfigūruokite pagrindinę prieigą prie šio kanalo"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfigūruoti žinučių garsus"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfigūruoti pranešimų garsus"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfigūruokite šio nario perrašymus"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfigūruokite šios rolės perrašymus"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopijuoti failo nuorodą"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopijuoti FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dienos"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Apkurčinti"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Sumažinti programos mastelį"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Numatytasis"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danija"
|
||||
msgid "Dense"
|
||||
msgstr "Tankus"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Tankus išdėstymas"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Ankstyva prieiga prie naujų funkcijų"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Aidų slopinimas"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Redaguoti \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Redaguoti prieigą {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Redaguoti pastabą"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "Redaguoti rolių ir narių perrašymus šiame kanale."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Redaguoti profilį"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "failo pavadinimas:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Failai bus išsiųsti iškart be peržiūros."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtruoti pagal veiksmą"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtruoti pagal veiksmą"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtruoti pagal turinį"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtruoti pagal vartotoją"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Tinklelis"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Tinklelio rodinys"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Įvestis"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Įvesties įrenginys"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Įvesties būsenos"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Įvesties garsumas"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Tiesiogiai"
|
||||
msgid "Live Preview"
|
||||
msgstr "Tiesioginė peržiūra"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Įkelti daugiau"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "paminėjimai:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Platformos darbuotojai laikinai išjungė susirašinėjimą šioje bendr
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofono testas"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofonas {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofonas {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nenustatytas klavišų derinys"
|
||||
msgid "No limit"
|
||||
msgstr "Nėra ribos"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Žurnalų dar nėra"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nėra laukiančių užklausų"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Jūsų paieškai neatitinka jokios laukiančios užklausos"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Leidimų nerasta"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Nėra reakcijų"
|
||||
msgid "No reason provided"
|
||||
msgstr "Priežastis nepateikta"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Priežastis nebuvo pateikta."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Niekas"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Triukšmo slopinimas"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ne dabar"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Išsiųsti draugų užklausimai"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Išvesties įrenginys"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Išvesties garsumas"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Peržiūros mygtukas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Peržiūros kamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Pasiruošę atnaujinti?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Priežastis"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Pašalinti filtrą"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Pašalinti paminėjimą"
|
||||
msgid "Remove override"
|
||||
msgstr "Pašalinti perrašymą"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Pašalinti perrašymą"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Pranešti apie naudotoją"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Prenumeruoti dar kartą"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Ieškoti tik dabartinėje tiesioginėje žinutėje"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Ieškoti laukiančių užklausų"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Ieškoti leidimų..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Siųsti kodą"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Siųsti draugų užklausą"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Rodyti svarbiausias žinutes pirmas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Rodyti mano pačios kamerą"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Rodyti naujo įrenginio modalinį langą"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Rodyti dalyvius be vaizdo"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Tylūs skambučiai iš visų"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Imituoja Stripe kliento ID (pirkimų istorijos prieigai testuoti)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Vienas stulpelis"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Kažkas nutiko negerai ir programa užstrigo. Pabandykite perkrauti arba iš naujo nustatyti programą."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Kažkas nutiko negerai įkeliant audito žurnalą."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Pasisakyti žinutę"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Kalbėkite į mikrofoną kaip įprasta. Turėtumėte girdėti save per garsiakalbius. Lygis turėtų likti žaliame \"Gerai\" arba geltoname \"Optimaliai\" diapazone."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Garsiakalbis {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Garsiai {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Pradėti bendrinti"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Pradėti balso skambutį"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Perjungti tarp paskutinės bendruomenės ir tiesioginių žinučių"
|
||||
msgid "Switch Device"
|
||||
msgstr "Perjungti įrenginį"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Perjungti į patogų išdėstymą"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Perjungti į tankų išdėstymą"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Perjungti į vieną stulpelį"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Perjungti į šią paskyrą"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Perjungti į šį įrenginį"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Perjungti į du stulpelius"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sinchronizuoti temą"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sinchronizuoti temą tarp įrenginių"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sinchronizuoti su kategorija"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Šis kanalas nepažymėtas kaip NSFW. Aiškų turinį galima siųsti tik NSFW kanaluose. Paprašykite moderatoriaus pažymėti šį kanalą kaip NSFW, jei tai tinkama."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Šis kanalas nėra sinchronizuotas su pirminė kategorija <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Šis kanalas yra sinchronizuotas su pirminė kategorija <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Tema"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Bendras analizavimo laikas:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Stebėkite moderatoriaus veiksmus visoje bendruomenėje."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Keiskite šios kategorijos pagrindus."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Keiskite šio kanalo pagrindus."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Du stulpeliai"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Nepavyko įdiegti emodžių paketo"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Nepavyko įdiegti lipdukų paketo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Nepavyko įkelti veiklos žurnalų"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Neprieinama niekam, išskyrus darbuotojus"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Prieš siunčiant draugų užklausą atblokuokite šį naudotoją."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Atblokuoti naudotoją"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Naudoti saugos raktą"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Naudoti sistemos lokalę laiko formatui"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Naudokite šiuos mygtukus, kad greitai nustatytumėte visus leidimus."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Vartotojas perkeltas į kitą kanalą"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Vartotojo profilis"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Vartotojo profilis: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Vaizdo įrašas"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Vaizdo skambutis"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Vaizdo kokybė"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Vaizdo nustatymai"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Peržiūrėti kodus"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Peržiūrėti bendruomenės profilį"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Peržiūrėti dovanų inventorių"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Peržiūrėti globalų profilį"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Balsas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Balso ir vaizdo nustatymai"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "balsinis skambutis"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Balsinis skambutis"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Balsinio ryšio regionas"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Balsinio ryšio nustatymai"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Kai įjungta, galite pažymėti kanalus kaip mėgstamus ir jie atsiras s
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Kai moderatoriai pradeda moderuoti, galite moderuoti moderavimą čia."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Negalite susidraugauti su savimi"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Negalite siųsti žinutės sau"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 getoond)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Geen inhoud)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(alleen zichtbaar voor jou)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Een symfonie van tikkende toetsen is aan de gang..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Over mij"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Accepteren"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Vriendschapsverzoek accepteren"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Toegang tot ontwikkelaarstools"
|
||||
msgid "Access granted"
|
||||
msgstr "Toegang verleend"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Toegangsoverrides"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Actieve jaarlijkse abonnee (opzegging gepland)"
|
||||
msgid "Activities"
|
||||
msgstr "Activiteiten"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Activiteitenlog"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Notitie toevoegen"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Je telefoonnummer toevoegen of wijzigen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Override toevoegen"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Alle @vermeldingen van jou verschijnen hier 7 dagen."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Alle acties"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Alle vertalingen zijn momenteel door een LLM gegenereerd met minimale menselijke revisie. We zouden het geweldig vinden als echte mensen ons helpen Fluxer naar jouw taal te lokaliseren! Stuur daarvoor een e-mail naar <0>i18n@fluxer.app</0> en we zijn blij je bijdragen te accepteren."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Alle gebruikers"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Weet je zeker dat je {0} de groepeigenaar wilt maken? Je verliest eigena
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Weet je zeker dat je {0} als vriend wilt verwijderen?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Weet je zeker dat je het eigendom van de groep aan {0} wilt overdragen?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Weet je zeker dat je {0} wilt deblokkeren?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatische versterkingsregeling"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Terug naar lijst"
|
||||
msgid "Back to login"
|
||||
msgstr "Terug naar inloggen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Oproepen"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Camera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Camera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Annuleren"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Vriendschapsverzoek annuleren"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanaaltoegang"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanaaltoegang geweigerd"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanaaltoegang bijgewerkt"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanaal verwijderd uit favorieten"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanaalinstellingen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanaal gesynchroniseerd met hoofdcategorie"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Claim je account om vriendschapsverzoeken te sturen."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Comfortabel (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Comfy"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Comfy lay-out"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configureer AFK-kanaal en timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Automatisch aanvullen configureren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configureer basistoegang voor dit kanaal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Berichtgeluiden configureren"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Meldingsgeluiden configureren"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configureer overschrijvingen voor dit lid"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configureer overschrijvingen voor deze rol"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopieer bestandslink"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopieer FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dagen"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Dempen"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "App-zoomniveau verlagen"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Standaard"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Denemarken"
|
||||
msgid "Dense"
|
||||
msgstr "Compact"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Compacte lay-out"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Vroege toegang tot nieuwe functies"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Echo-onderdrukking"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" bewerken"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Toegang voor {0} bewerken"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Notitie bewerken"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profiel bewerken"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "bestandsnaam:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Bestanden worden direct verzonden zonder voorbeeld."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filteren op actie"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filteren op actie"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filteren op inhoud"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filteren op gebruiker"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Raster"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rasterweergave"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Invoer"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Invoerapparaat"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Invoertoestanden"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Invoervolume"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Livevoorbeeld"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Meer laden"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "vermeldt:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Berichten is tijdelijk uitgeschakeld in deze community door platformpers
|
||||
msgid "Mic Test"
|
||||
msgstr "Microfoontest"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microfoon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microfoon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Geen toetsenbordcombinatie ingesteld"
|
||||
msgid "No limit"
|
||||
msgstr "Geen limiet"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Nog geen logs"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Geen openstaande verzoeken"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Geen openstaande verzoeken komen overeen met je zoekopdracht"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Geen rechten gevonden"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Geen reacties"
|
||||
msgid "No reason provided"
|
||||
msgstr "Geen reden opgegeven"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Er is geen reden opgegeven."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Niemand"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Ruisonderdrukking"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Niet nu"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Uitgaande vriendschapsverzoeken"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Uitvoerapparaat"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Uitvoervolume"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Voorbeeldknop"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Voorbeeldcamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Klaar om te upgraden?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Reden"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Filter verwijderen"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Vermelding verwijderen"
|
||||
msgid "Remove override"
|
||||
msgstr "Overschrijving verwijderen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Overschrijving verwijderen"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Gebruiker rapporteren"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Opnieuw abonneren"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Alleen zoeken in het huidige privébericht"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Openstaande verzoeken zoeken"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Machtigingen zoeken..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Code verzenden"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Vriendschapsverzoek verzenden"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Meest relevante berichten eerst tonen"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Mijn eigen camera tonen"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Nieuw apparaatvenster tonen"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Niet-videodeelnemers tonen"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Stille oproepen van iedereen"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simuleert het hebben van een Stripe-klant-ID (voor het testen van toegang tot aankoopgeschiedenis)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Enkele kolom"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Er is iets misgegaan en de app is gecrasht. Probeer de app opnieuw te laden of te resetten."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Er is iets misgegaan tijdens het laden van het auditlog."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Bericht uitspreken"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Spreek normaal in je microfoon. Je zou jezelf door je luidsprekers moeten horen. Het niveau moet in het groene \"Goed\" of gele \"Optimaal\" bereik blijven."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Luidspreker {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Luidspreker {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Delen starten"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Spraakgesprek starten"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Schakel tussen de laatste community en directe berichten"
|
||||
msgid "Switch Device"
|
||||
msgstr "Apparaat wisselen"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Schakel naar comfortabele indeling"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Schakel naar compacte indeling"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Schakel naar enkele kolom"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Schakel naar dit account"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Schakel naar dit apparaat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Schakel naar twee kolommen"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Thema synchroniseren"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synchroniseer thema over apparaten"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synchroniseren met categorie"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Dit kanaal is niet gemarkeerd als NSFW. Expliciete inhoud kan alleen worden verzonden in NSFW-kanalen. Vraag een moderator om dit kanaal als NSFW te markeren indien passend."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Dit kanaal is niet gesynchroniseerd met de bovenliggende categorie <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Dit kanaal is gesynchroniseerd met de bovenliggende categorie <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Onderwerp"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Totale parsertijd:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Volg moderatoracties in de community."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Pas de basisinstellingen van deze categorie aan."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Pas de basisinstellingen van dit kanaal aan."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Twee kolommen"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Kan emojipakket niet installeren"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Kan stickerpakket niet installeren"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Kan activiteitenlogboeken niet laden"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Onbeschikbaar voor iedereen behalve personeel"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Deblokkeer deze gebruiker voordat je een vriendschapsverzoek stuurt."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Gebruiker deblokkeren"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Gebruik beveiligingssleutel"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Gebruik systeemlocatie voor tijdnotatie"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Gebruik deze knoppen om snel alle rechten in te stellen."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Gebruiker verplaatst kanaal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Gebruikersprofiel"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Gebruikersprofiel: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videogesprek"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videokwaliteit"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Video-instellingen"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Codes bekijken"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Communityprofiel bekijken"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Cadeau-inventaris bekijken"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Globaal profiel bekijken"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Spraak"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Spraak- en video-instellingen"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Spraakoproep"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Spraakoproep"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Spraakregio"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Spraakinstellingen"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Wanneer ingeschakeld, kun je kanalen favoriet maken en ze verschijnen in
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Wanneer moderatoren beginnen te modereren, kun je de moderatie hier modereren."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Je kunt jezelf niet bevrienden"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Je kunt jezelf geen berichten sturen"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maks 15 vist)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Ingen innhold)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(kun synlig for deg)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "En symfoni av klikkende taster er i gang..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Om meg"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Godta"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Godta venneforespørsel"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Tilgang til utviklerverktøy"
|
||||
msgid "Access granted"
|
||||
msgstr "Tilgang gitt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Tilgangsoverstyringer"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktiv årlig abonnent (avbestilling planlagt)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktiviteter"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Aktivitetslogg"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Legg til notat"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Legg til eller endre telefonnummeret ditt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Legg til overstyring"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Alle @omtaler av deg vises her i 7 dager."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Alle handlinger"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Alle oversettelser er for øyeblikket generert av LLM med minimal menneskelig revisjon. Vi ønsker gjerne å få ekte mennesker til å hjelpe oss med å lokaliserer Fluxer til ditt språk! For å gjøre det, send en e-post til <0>i18n@fluxer.app</0> så vil vi gjerne ta imot bidragene dine."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Alle brukere"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Er du sikker på at du vil gjøre {0} til gruppeeier? Du mister eierrett
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Er du sikker på at du vil fjerne {0} som venn?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Er du sikker på at du vil overføre gruppeeierskapet til {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Er du sikker på at du vil oppheve blokkeringen av {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatisk gain-kontroll"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Tilbake til listen"
|
||||
msgid "Back to login"
|
||||
msgstr "Tilbake til innlogging"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Samtaler"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Avbryt"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Avbryt venneforespørsel"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanaltilgang"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanaltilgang nektet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanaltilgang oppdatert"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal fjernet fra favoritter"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanalinnstillinger"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal synkronisert med overordnet kategori"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Krev kontoen din for å sende vennforespørsel."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Komfortabel (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Komfortabel"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Komfortabelt oppsett"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfigurer AFK-kanal og tidsavbrudd"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfigurer autofullføring"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfigurer grunnleggende tilgang for denne kanalen"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfigurer meldingslyder"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfigurer varsellyder"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfigurer overstyringer for dette medlemmet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfigurer overstyringer for denne rollen"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopier filkobling"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopier FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dager"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Døv"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Reduser appens zoomnivå"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danmark"
|
||||
msgid "Dense"
|
||||
msgstr "Kompakt"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Kompakt oppsett"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Tidlig tilgang til nye funksjoner"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Ekkoannullering"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Rediger \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Rediger tilgang for {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Rediger notat"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Rediger profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "filnavn:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Filer sendes umiddelbart uten forhåndsvisning."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrer etter handling"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrer etter handling"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrer etter innhold"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrer etter bruker"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Rutenett"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rutenettvisning"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Inndata"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Inndataenhet"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Inndatatilstander"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Inndatavolum"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Direkte"
|
||||
msgid "Live Preview"
|
||||
msgstr "Direkte forhåndsvisning"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Last inn mer"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "nevnelser:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Meldinger har midlertidig blitt deaktivert i dette fellesskapet av platt
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofontest"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Ingen hurtigtast satt"
|
||||
msgid "No limit"
|
||||
msgstr "Ingen grense"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Ingen logger ennå"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Ingen ventende forespørsler"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Ingen ventende forespørsler samsvarer med søket"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Ingen tillatelser funnet"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Ingen reaksjoner"
|
||||
msgid "No reason provided"
|
||||
msgstr "Ingen grunn oppgitt"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Ingen grunn ble oppgitt."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ingen"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Støydemping"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Ikke nå"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Utgående venneforespørsler"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Utgangsenhet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Utgangsvolum"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Forhåndsvisningsknapp"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Forhåndsvis kamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Klar for oppgradering?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Årsak"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Fjern filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Fjern omtale"
|
||||
msgid "Remove override"
|
||||
msgstr "Fjern overstyring"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Fjern overstyring"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Rapporter bruker"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Abonner igjen"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Søk bare i den nåværende direktemeldingen"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Søk i ventende forespørsler"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Søk i tillatelser..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Send kode"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Send venneforespørsel"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Vis de mest relevante meldingene først"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Vis eget kamera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Vis modal for ny enhet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Vis deltakere uten video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Stille samtaler fra alle"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulerer å ha en Stripe-kunde-ID (for testing av kjøpshistorikk)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Enkel kolonne"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Noe gikk galt og appen krasjet. Prøv å laste inn på nytt eller tilbakestille appen."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Noe gikk galt under lasting av revisjonsloggen."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Les melding"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Snakk normalt i mikrofonen. Du bør høre deg selv gjennom høyttalerne. Nivået bør holde seg i det grønne \"Godt\"- eller gule \"Optimalt\"-området."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Høyttaler {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Høyttaler {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Begynn å dele"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Start taleoppringning"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Bytt mellom siste fellesskap og direktemeldinger"
|
||||
msgid "Switch Device"
|
||||
msgstr "Bytt enhet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Bytt til behagelig oppsett"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Bytt til tett oppsett"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Bytt til én kolonne"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Bytt til denne kontoen"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Bytt til denne enheten"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Bytt til to kolonner"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synkroniser tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synkroniser tema på tvers av enheter"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synkroniser med kategori"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Denne kanalen er ikke merket som NSFW. Eksplisitt innhold kan bare sendes i NSFW-kanaler. Be en moderator merke kanalen som NSFW hvis det er passende."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Denne kanalen er ikke synkronisert med overordnet kategori <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Denne kanalen er synkronisert med overordnet kategori <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Emne"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Total analysetid:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Spor moderatorhandlinger i hele fellesskapet."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Juster det grunnleggende for denne kategorien."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Juster det grunnleggende for denne kanalen."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "To kolonner"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Kan ikke installere emojipakke"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Kan ikke installere klistremerke-pakke"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Kan ikke laste aktivitetslogger"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Utilgjengelig for alle bortsett fra ansatte"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Opphev blokkering av brukeren før du sender venneforespørsel."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Opphev blokkering av bruker"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Bruk sikkerhetsnøkkel"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Bruk systemets lokalinnstillinger for tidsformat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Bruk disse knappene for raskt å sette alle tillatelser."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Bruker flyttet kanal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Brukerprofil"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Brukerprofil: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videosamtale"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videokvalitet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videoinnstillinger"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Vis koder"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Vis fellesskapsprofil"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Vis gavebeholdning"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Vis global profil"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Lyd"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Lyd- og videoinnstillinger"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Lydanrop"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Lydanrop"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Lydregion"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Lydinnstillinger"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Når aktivert, kan du favorisere kanaler og de vises i Favoritter-seksjo
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Når moderatorer begynner å moderere, kan du moderere modereringen her."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Du kan ikke legge deg til som venn"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Du kan ikke sende melding til deg selv"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maksymalnie 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Brak zawartości)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(widoczne tylko dla Ciebie)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Symfonia stukających klawiszy się rozpoczęła..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "O mnie"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Akceptuj"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Zaakceptuj prośbę o znajomość"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Dostęp do narzędzi deweloperskich"
|
||||
msgid "Access granted"
|
||||
msgstr "Dostęp przyznany"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Nadpisania dostępu"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktywny subskrybent roczny (planowane anulowanie)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktywności"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Dziennik aktywności"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Dodaj notatkę"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Dodaj lub zmień swój numer telefonu"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Dodaj nadpisanie"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Wszystkie wzmianki o tobie będą tu widoczne przez 7 dni."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Wszystkie działania"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Wszystkie tłumaczenia są obecnie generowane przez LLM z minimalną korektą ludzką. Chcielibyśmy, aby prawdziwi ludzie pomogli nam zlokalizować Fluxera na Twój język! Aby to zrobić, wyślij e-mail na <0>i18n@fluxer.app</0>, a chętnie przyjmiemy Twoje wkłady."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Wszyscy użytkownicy"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Czy na pewno chcesz uczynić {0} właścicielem grupy? Stracisz uprawnie
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Czy na pewno chcesz usunąć {0} ze znajomych?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Czy na pewno chcesz przekazać własność grupy {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Czy na pewno chcesz odblokować {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatyczna kontrola wzmocnienia"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Powrót do listy"
|
||||
msgid "Back to login"
|
||||
msgstr "Powrót do logowania"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Połączenia"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Anuluj"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Anuluj zaproszenie"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Dostęp do kanału"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Dostęp do kanału zabroniony"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Dostęp do kanału zaktualizowany"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanał usunięty z ulubionych"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Ustawienia kanału"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanał zsynchronizowany z nadrzędną kategorią"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Komfortowy (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Wygodny"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Wygodny układ"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Skonfiguruj kanał AFK i limit czasu"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Skonfiguruj autouzupełnianie"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Skonfiguruj podstawowy dostęp do tego kanału"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Skonfiguruj dźwięki wiadomości"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Skonfiguruj dźwięki powiadomień"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Skonfiguruj nadpisania dla tego członka"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Skonfiguruj nadpisania dla tej roli"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopiuj link do pliku"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopiuj FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dni"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Wycisz"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Zmniejsz poziom powiększenia aplikacji"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Domyślny"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dania"
|
||||
msgid "Dense"
|
||||
msgstr "Zwarty"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Zwarty układ"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Wczesny dostęp do nowych funkcji"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Redukcja echa"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Edytuj \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Edytuj dostęp dla {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Edytuj notatkę"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Edytuj profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nazwa pliku:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Pliki zostaną wysłane od razu bez podglądu."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtruj według akcji"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtruj według akcji"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtruj według zawartości"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtruj według użytkownika"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Siatka"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Widok siatki"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Wejście"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Urządzenie wejściowe"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Stany wejścia"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Głośność wejścia"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Na żywo"
|
||||
msgid "Live Preview"
|
||||
msgstr "Podgląd na żywo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Załaduj więcej"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "wzmianki:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Wiadomości zostały tymczasowo wyłączone w tej społeczności przez z
|
||||
msgid "Mic Test"
|
||||
msgstr "Test mikrofonu"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nie ustawiono skrótu klawiszowego"
|
||||
msgid "No limit"
|
||||
msgstr "Brak limitu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Jeszcze brak logów"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Brak oczekujących próśb"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Brak oczekujących próśb pasujących do wyszukiwania"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nie znaleziono uprawnień"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Brak reakcji"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nie podano powodu"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nie podano powodu."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nikt"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Tłumienie szumów"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Nie teraz"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Wysłane zaproszenia do znajomych"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Urządzenie wyjściowe"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Głośność wyjścia"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Przycisk podglądu"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Podgląd kamery"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Gotowy na aktualizację?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Powód"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Usuń filtr"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Usuń wzmiankę"
|
||||
msgid "Remove override"
|
||||
msgstr "Usuń nadpisanie"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Usuń nadpisanie"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Zgłoś użytkownika"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Zasubskrybuj ponownie"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Szukaj tylko w tej rozmowie prywatnej"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Szukaj oczekujących zaproszeń"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Szukaj uprawnień..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Wyślij kod"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Wyślij zaproszenie do znajomych"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Pokaż najpierw najbardziej istotne wiadomości"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Pokaż moją kamerę"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Pokaż okno nowego urządzenia"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Pokaż uczestników bez wideo"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Ciche połączenia od wszystkich"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Symuluje posiadanie identyfikatora klienta Stripe (do testowania dostępu do historii zakupów)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Pojedyncza kolumna"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Coś poszło nie tak i aplikacja się zawiesiła. Spróbuj przeładować lub zresetować aplikację."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Coś poszło nie tak podczas ładowania dziennika audytu."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Odtwórz wiadomość"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Mów normalnie do mikrofonu. Powinieneś słyszeć siebie przez głośniki. Poziom powinien pozostać w zielonym obszarze „Dobry” lub żółtym „Optymalny”."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Głośnik {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Głośnik {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Rozpocznij udostępnianie"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Rozpocznij połączenie głosowe"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Przełączaj między ostatnią społecznością a wiadomościami prywatn
|
||||
msgid "Switch Device"
|
||||
msgstr "Zmień urządzenie"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Przełącz na wygodny układ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Przełącz na zwarty układ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Przełącz na pojedynczą kolumnę"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Przełącz na to konto"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Przełącz na to urządzenie"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Przełącz na dwie kolumny"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synchronizuj motyw"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synchronizuj motyw między urządzeniami"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synchronizuj z kategorią"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Ten kanał nie jest oznaczony jako NSFW. Treści dla dorosłych można wysyłać tylko na kanałach NSFW. Poproś moderatora o oznaczenie tego kanału jako NSFW, jeśli to konieczne."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ten kanał nie jest zsynchronizowany z kategorią nadrzędną <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Ten kanał jest zsynchronizowany z kategorią nadrzędną <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Temat"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Łączny czas parsowania:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Śledź działania moderatorów w całej społeczności."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Dostosuj podstawy tej kategorii."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Dostosuj podstawy tego kanału."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Dwie kolumny"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Nie można zainstalować zestawu emoji"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Nie można zainstalować zestawu naklejek"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Nie można załadować dzienników aktywności"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Niedostępny dla wszystkich oprócz personelu"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Odblokuj tego użytkownika przed wysłaniem zaproszenia."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Odblokuj użytkownika"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Użyj klucza bezpieczeństwa"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Użyj ustawień regionalnych systemu dla formatu czasu"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Użyj tych przycisków, aby szybko ustawić wszystkie uprawnienia."
|
||||
|
||||
@@ -19840,11 +19868,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:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil użytkownika"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil użytkownika: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Wideo"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Połączenie wideo"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Jakość wideo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Ustawienia wideo"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Wyświetl kody"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Wyświetl profil społeczności"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Wyświetl inwentarz prezentów"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Wyświetl profil globalny"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Głos"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Ustawienia głosu i wideo"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Rozmowa głosowa"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Połączenie głosowe"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Region głosowy"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Ustawienia głosu"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Po włączeniu możesz dodawać kanały do ulubionych i pojawią się w
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Kiedy moderatorzy zaczną moderować, możesz moderować tę moderację tutaj."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Nie możesz dodać siebie do znajomych"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Nie możesz wysłać wiadomości do siebie"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(máx. 15 mostrados)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Sem conteúdo)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(visível apenas para você)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Uma sinfonia de teclas batendo está em andamento..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Sobre Mim"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Aceitar"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Aceitar Solicitação de Amizade"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Acessar ferramentas de desenvolvedor"
|
||||
msgid "Access granted"
|
||||
msgstr "Acesso concedido"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Substituições de Acesso"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Assinante Anual Ativo (Cancelamento Agendado)"
|
||||
msgid "Activities"
|
||||
msgstr "Atividades"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Registro de Atividade"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Adicionar Nota"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Adicionar ou alterar seu número de telefone"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Adicionar Substituição"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Todas as @menções a você aparecerão aqui por 7 dias."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Todas as ações"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Todas as traduções são atualmente geradas por LLM com revisão humana mínima. Adoraríamos contar com pessoas reais para nos ajudar a localizar o Fluxer para o seu idioma! Para isso, envie um e-mail para <0>i18n@fluxer.app</0> e ficaremos felizes em aceitar suas contribuições."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Todos os usuários"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Tem certeza de que deseja tornar {0} o proprietário do grupo? Você per
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Tem certeza de que deseja remover {0} como amigo?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Tem certeza de que deseja transferir a propriedade do grupo para {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Tem certeza de que deseja desbloquear {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automático"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Controle Automático de Ganho"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Voltar para lista"
|
||||
msgid "Back to login"
|
||||
msgstr "Voltar para login"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Chamadas"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Câmera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Câmera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Cancelar"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Cancelar solicitação de amizade"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Acesso ao Canal"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Acesso ao Canal Negado"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Acesso ao canal atualizado"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Canal removido dos favoritos"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Configurações do Canal"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Canal sincronizado com a categoria pai"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Confortável (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Confortável"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Layout confortável"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configure o canal AFK e o tempo limite"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configurar autocompletar"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configure o acesso básico para este canal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configurar sons de mensagem"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configurar sons de notificação"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configure substituições para este membro"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configure substituições para este cargo"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copiar link do arquivo"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copiar FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dias"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Silenciar"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Diminuir o nível de zoom do aplicativo"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Dinamarca"
|
||||
msgid "Dense"
|
||||
msgstr "Compacto"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Layout compacto"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Acesso antecipado a novos recursos"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Cancelamento de Eco"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Editar \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Editar Acesso para {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Editar Nota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Editar Perfil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "nome do arquivo:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Os arquivos serão enviados imediatamente sem prévia."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrar por ação"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrar por ação"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrar por conteúdo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrar por usuário"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Grade"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Visualização em Grade"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Entrada"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Dispositivo de Entrada"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Estados de Entrada"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volume de Entrada"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Ao vivo"
|
||||
msgid "Live Preview"
|
||||
msgstr "Pré-visualização ao vivo"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Carregar mais"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "menções:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "A troca de mensagens foi temporariamente desativada nesta comunidade pel
|
||||
msgid "Mic Test"
|
||||
msgstr "Teste de Microfone"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microfone {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microfone {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nenhuma tecla de atalho definida"
|
||||
msgid "No limit"
|
||||
msgstr "Sem limite"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Nenhum registro ainda"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nenhuma solicitação pendente"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Nenhuma solicitação pendente corresponde à sua pesquisa"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nenhuma permissão encontrada"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Nenhuma reação"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nenhum motivo fornecido"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nenhum motivo foi fornecido."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ninguém"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Supressão de ruído"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Agora não"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Solicitações de amizade enviadas"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Dispositivo de saída"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volume de saída"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Botão de Prévia"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Câmera de Prévia"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Pronto para atualizar?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Remover filtro"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Remover menção"
|
||||
msgid "Remove override"
|
||||
msgstr "Remover substituição"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Remover Substituição"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Denunciar usuário"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Reassinar"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Pesquisar apenas no DM atual"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Pesquisar solicitações pendentes"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Pesquisar Permissões..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Enviar Código"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Enviar Solicitação de Amizade"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Mostrar mensagens mais relevantes primeiro"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Mostrar minha própria câmera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Mostrar modal de novo dispositivo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Mostrar participantes sem vídeo"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Chamadas silenciosas de todos"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simula ter um ID de cliente do Stripe (para testar o acesso ao histórico de compras)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Coluna única"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Algo deu errado e o aplicativo travou. Tente recarregar ou redefinir o aplicativo."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Algo deu errado ao carregar o log de auditoria."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Falar Mensagem"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Fale normalmente no seu microfone. Você deve se ouvir pelos alto-falantes. O nível deve permanecer na faixa verde \"Bom\" ou amarela \"Ótimo\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Alto-falante {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Falante {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Iniciar Compartilhamento"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Iniciar Chamada de Voz"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Alternar entre a última comunidade e mensagens diretas"
|
||||
msgid "Switch Device"
|
||||
msgstr "Trocar Dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Mudar para layout confortável"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Mudar para layout denso"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Mudar para coluna única"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Mudar para esta conta"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Mudar para Este Dispositivo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Mudar para duas colunas"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sincronizar Tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sincronizar tema entre dispositivos"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sincronizar com Categoria"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Este canal não está marcado como NSFW. Conteúdo explícito só pode ser enviado em canais NSFW. Peça a um moderador para marcar este canal como NSFW se for apropriado."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal não está sincronizado com a categoria pai <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Este canal está sincronizado com a categoria pai <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Tópico"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Tempo Total de Análise:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Acompanhe as ações dos moderadores na comunidade."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ajuste o básico desta categoria."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ajuste o básico deste canal."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Duas colunas"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Não foi possível instalar o pacote de emojis"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Não foi possível instalar o pacote de figurinhas"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Não foi possível carregar os registros de atividade"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Indisponível para todos, exceto equipe"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Desbloqueie este usuário antes de enviar um pedido de amizade."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Desbloquear Usuário"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Usar chave de segurança"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Usar localidade do sistema para formato de hora"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Use estes botões para definir rapidamente todas as permissões."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Usuário Moveu Canal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Perfil do Usuário"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Perfil do usuário: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Vídeo"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Chamada de Vídeo"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Qualidade do Vídeo"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Configurações de Vídeo"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Ver Códigos"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Ver Perfil da Comunidade"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Ver Inventário de Presentes"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Ver Perfil Global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Configurações de Voz e Vídeo"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Chamada de voz"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Chamada de Voz"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Região de Voz"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Configurações de Voz"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Quando habilitado, você pode favoritar canais e eles aparecerão na se
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Quando os moderadores começarem a moderar, você pode moderar a moderação aqui."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Você não pode se tornar amigo de si mesmo"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Você não pode enviar mensagens para si mesmo"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maxim 15 afișate)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Fără conținut)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(vizibil doar pentru tine)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "O simfonie de taste ciocnind este în desfășurare..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Despre mine"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Acceptă"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Acceptă cererea de prietenie"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Accesează instrumentele pentru dezvoltatori"
|
||||
msgid "Access granted"
|
||||
msgstr "Acces acordat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Suprascrieri de acces"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Abonat anual activ (anulare programată)"
|
||||
msgid "Activities"
|
||||
msgstr "Activități"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Jurnal activități"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Adaugă notă"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Adaugă sau schimbă numărul tău de telefon"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Adaugă suprascriere"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Toate @mențiunile la adresa ta vor apărea aici timp de 7 zile."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Toate acțiunile"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Toate traducerile sunt generate în prezent de LLM cu revizuire umană minimă. Ne-ar plăcea să avem oameni reali care să ne ajute să localizăm Fluxer în limba ta! Pentru a face acest lucru, trimite un email la <0>i18n@fluxer.app</0> și vom fi bucuroși să acceptăm contribuțiile tale."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Toți utilizatorii"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Ești sigur că vrei să îl faci pe {0} proprietarul grupului? Îți ve
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Ești sigur că vrei să îl elimini pe {0} din prieteni?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Ești sigur că vrei să transferi proprietatea grupului către {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Ești sigur că vrei să deblochezi pe {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Automat"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Control automat al câștigului"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Înapoi la listă"
|
||||
msgid "Back to login"
|
||||
msgstr "Înapoi la autentificare"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Apeluri"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Cameră"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Cameră {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Anulează"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Anulează cererea de prietenie"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Acces canal"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Acces canal refuzat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Accesul la canal a fost actualizat"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Canal eliminat din favorite"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Setări canal"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Canal sincronizat cu categoria părinte"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Confortabil (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Lejer"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Aspect confortabil"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Configurează canalul AFK și timpul de expirare"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Configurează completarea automată"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Configurează accesul de bază pentru acest canal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Configurează sunetele mesajelor"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Configurează sunetele de notificare"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Configurează suprascrierile pentru acest membru"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Configurează suprascrierile pentru acest rol"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Copiază linkul fișierului"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Copiază FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Zile"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Fă mut"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Micșorează nivelul de zoom al aplicației"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Implicit"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danemarca"
|
||||
msgid "Dense"
|
||||
msgstr "Compact"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Aspect compact"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Acces timpuriu la funcții noi"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Anulare ecou"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Editează „{0}”"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Modifică accesul pentru {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Editează nota"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Editează profilul"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "numele fișierului:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Fișierele vor fi trimise imediat fără previzualizare."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrează după acțiune"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrează după acțiune"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrează după conținut"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrează după utilizator"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Grilă"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Vizualizare grilă"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Intrare"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Dispozitiv de intrare"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Stări de intrare"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Volum intrare"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Previzualizare live"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Încarcă mai mult"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "mențiuni:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Mesageria a fost temporar dezactivată în această comunitate de către
|
||||
msgid "Mic Test"
|
||||
msgstr "Test microfon"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microfon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microfon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Nu a fost setată nicio combinație de taste"
|
||||
msgid "No limit"
|
||||
msgstr "Fără limită"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Încă nu există jurnale"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Nicio cerere în așteptare"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Nicio cerere în așteptare nu corespunde căutării tale"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Nu s-au găsit permisiuni"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Fără reacții"
|
||||
msgid "No reason provided"
|
||||
msgstr "Nu a fost oferit motiv"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Nu a fost oferit niciun motiv."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Nimeni"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Suprimarea zgomotului"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Nu acum"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Cereri de prietenie trimise"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Dispozitiv de ieșire"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Volum de ieșire"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Buton de previzualizare"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Previzualizare cameră"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Ești gata să faci upgrade?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Motiv"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Elimină filtrul"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Elimină mențiunea"
|
||||
msgid "Remove override"
|
||||
msgstr "Anulează setarea"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Anulează setarea"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Raportează utilizatorul"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Reabonează-te"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Caută doar în mesajele directe curente"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Caută cereri în așteptare"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Caută permisiuni..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Trimite cod"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Trimite cerere de prietenie"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Arată cele mai relevante mesaje primele"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Arată propria cameră"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Arată modulul pentru dispozitive noi"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Arată participanții fără video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Apeluri silențioase de la toți"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulează că ai un ID de client Stripe (pentru testarea accesului la istoricul achizițiilor)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Coloană unică"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Ceva nu a mers bine și aplicația s-a închis. Încearcă să reîncarci sau să resetezi aplicația."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Ceva nu a mers bine la încărcarea jurnalului de audit."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Pronunță mesajul"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Vorbește normal în microfon. Ar trebui să te auzi prin difuzoare. Nivelul ar trebui să rămână în intervalul verde „Bine” sau galben „Optim”. "
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Difuzor {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Difuzor {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Începe partajarea"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Pornește apel audio"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Comută între ultima comunitate și mesajele directe"
|
||||
msgid "Switch Device"
|
||||
msgstr "Schimbă dispozitivul"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Comută la aspect confortabil"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Comută la aspect compact"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Comută pe o singură coloană"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Comută la acest cont"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Comută la acest dispozitiv"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Comută pe două coloane"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Sincronizează tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Sincronizează tema între dispozitive"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Sincronizează cu categoria"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Acest canal nu este marcat ca NSFW. Conținutul explicit poate fi trimis doar în canale NSFW. Cere unui moderator să marcheze canalul ca NSFW dacă este cazul."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Acest canal nu este sincronizat cu categoria părinte <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Acest canal este sincronizat cu categoria părinte <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Subiect"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Timp total de parsare:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Urmărește acțiunile moderatorilor în toată comunitatea."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Ajustează elementele de bază ale acestei categorii."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Ajustează elementele de bază ale acestui canal."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Două coloane"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Nu s-a putut instala pachetul de emoji"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Nu s-a putut instala pachetul de stickere"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Nu s-au putut încărca jurnalele de activitate"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Indisponibil pentru toată lumea, în afară de staff"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Deblochează acest utilizator înainte de a trimite o cerere de prieteni
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Deblochează utilizatorul"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Folosește cheia de securitate"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Folosește localizarea sistemului pentru formatul orei"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Folosește aceste butoane pentru a seta rapid toate permisiunile."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Utilizatorul a mutat canalul"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Profil utilizator"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Profil utilizator: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Apel video"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Calitate video"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Setări video"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Vezi codurile"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Vezi profilul comunității"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Vezi inventarul de cadouri"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Vezi profilul global"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Voce"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Setări voce și video"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Apel vocal"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Apel vocal"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Regiune vocală"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Setări vocale"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Când este activat, poți marca canale ca favorite și vor apărea în s
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Când moderatorii încep moderarea, poți modera aici modul în care o fac."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Nu te poți adăuga ca prieten"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Nu te poți trimite mesaj ție"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(показано максимум 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Нет содержимого)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(видно только тебе)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Симфония щелкающих клавиш уже началась..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Обо мне"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Принять"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Принять запрос в друзья"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Доступ к инструментам разработчика"
|
||||
msgid "Access granted"
|
||||
msgstr "Доступ предоставлен"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Переопределения доступа"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Активный ежегодный подписчик (отмена з
|
||||
msgid "Activities"
|
||||
msgstr "Активности"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Добавить заметку"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Добавить или изменить номер телефона"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Добавить переопределение"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Все упоминания @тебя будут здесь в течение 7 дней."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Все действия"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Все переводы в настоящее время создаются с использованием ИИ с минимальным человеческим редактированием. Нам бы хотелось, чтобы реальные люди помогли нам локализовать Fluxer на ваш язык! Для этого отправьте электронное письмо на <0>i18n@fluxer.app</0>, и мы будем рады принять ваши предложения."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Все пользователи"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Ты уверен, что хочешь передать владение
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Ты уверен, что хочешь удалить {0} из друзей?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Ты уверен, что хочешь передать владение
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Ты уверен, что хочешь разблокировать {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Авто"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Автоматический контроль усиления"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Назад к списку"
|
||||
msgid "Back to login"
|
||||
msgstr "Назад к входу"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Звонки"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Камера"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Камера {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Отмена"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Отменить запрос в друзья"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Доступ к каналу"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Доступ к каналу запрещён"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Доступ к каналу обновлён"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Канал убран из избранного"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Настройки канала"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Канал синхронизирован с родительской категорией"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "Заявите о своем аккаунте, чтобы обменят
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Заявите о своем аккаунте, чтобы отправлять запросы в друзья."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Комфортный (550×400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Комфортный"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Комфортная верстка"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Настроить AFK-канал и таймаут"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Настроить автозаполнение"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Настроить базовый доступ к этому каналу"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Настроить звуки сообщений"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Настроить звуки уведомлений"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Настроить переопределения для этого участника"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Настроить переопределения для этой роли"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Скопировать ссылку на файл"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Скопировать FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Дни"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Отключить звук"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Уменьшить масштаб приложения"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "По умолчанию"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Дания"
|
||||
msgid "Dense"
|
||||
msgstr "Плотный"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Плотная раскладка"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Ранний доступ к новым функциям"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Подавление эха"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Редактировать \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Редактировать доступ для {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Редактировать заметку"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "Измени переопределения для ролей и участников в этом канале."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Редактировать профиль"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "имя файла:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Файлы будут отправлены сразу без предпросмотра."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Фильтровать по действию"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Фильтровать по действию"
|
||||
msgid "Filter by content"
|
||||
msgstr "Фильтровать по содержимому"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Фильтровать по пользователю"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Сетка"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Сетка"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Ввод"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Устройство ввода"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Состояния ввода"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Громкость входа"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Прямой эфир"
|
||||
msgid "Live Preview"
|
||||
msgstr "Предпросмотр"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Загрузить ещё"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "упоминания:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Обмен сообщениями временно отключён в
|
||||
msgid "Mic Test"
|
||||
msgstr "Тест микрофона"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Микрофон {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Микрофон {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Горячая клавиша не задана"
|
||||
msgid "No limit"
|
||||
msgstr "Без ограничений"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Журналы пока пусты"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Нет ожидающих запросов"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "По вашему запросу нет ожидающих запросов"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Разрешения не найдены"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Реакций нет"
|
||||
msgid "No reason provided"
|
||||
msgstr "Причина не указана"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Причина не была указана."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Никто"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Подавление шума"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Не сейчас"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "Не твоё? Ты всегда можешь отключить эту функцию."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Исходящие заявки в друзья"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Устройство вывода"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Громкость вывода"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Кнопка предпросмотра"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Предпросмотр камеры"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Готов обновиться?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Причина"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Удалить фильтр"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Удалить упоминание"
|
||||
msgid "Remove override"
|
||||
msgstr "Удалить переопределение"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Удалить переопределение"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "Жалоба успешно отправлена. Команда без
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Пожаловаться на пользователя"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Подписаться снова"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Поиск только в этом ЛС"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Поиск ожидающих запросов"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Поиск разрешений..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Отправить код"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Отправить запрос в друзья"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Показывать сначала наиболее релевантн
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Показать мою камеру"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Показать модальное окно нового устройс
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Показать участников без видео"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Тихие звонки от всех"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Имитация наличия ID клиента Stripe (для тестирования доступа к истории покупок)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Один столбец"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Что-то пошло не так и приложение вылетело. Попробуй перезагрузить или сбросить приложение."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Что-то пошло не так при загрузке журнала аудита."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Произнести сообщение"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Говори в микрофон обычным тоном. Ты должен слышать себя через колонки. Уровень должен оставаться в зелёной \"Хорошо\" или жёлтой \"Оптимально\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Динамик {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Динамик {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Начать обмен"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Начать голосовой звонок"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Переключение между последним сообщест
|
||||
msgid "Switch Device"
|
||||
msgstr "Сменить устройство"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Переключиться на комфортный макет"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Переключиться на плотный макет"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Переключиться на один столбец"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Перейти на этот аккаунт"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Переключиться на это устройство"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Переключиться на два столбца"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Синхронизация темы"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Синхронизировать тему на всех устройствах"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Синхронизировать с категорией"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Этот канал не помечен как NSFW. Откровенный контент можно отправлять только в NSFW-каналах. Попроси модератора пометить канал, если это уместно."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Этот канал не синхронизирован с родительской категорией <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Этот канал синхронизирован с родительской категорией <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Тема"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Общее время разбора:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Отслеживай действия модераторов по всему сообществу."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Настрой основные параметры этой катего
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Настрой основные параметры этого канала."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Две колонки"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Не удалось установить пакет эмодзи"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Не удалось установить пакет стикеров"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Не удалось загрузить журнал активности"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Недоступно для всех, кроме персонала"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Разблокируй этого пользователя, прежде
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Разблокировать пользователя"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Использовать ключ безопасности"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Использовать системные настройки языка для формата времени"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Используй эти кнопки, чтобы быстро задать все разрешения."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Пользователь перемещён в канал"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Профиль пользователя"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Профиль пользователя: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Видео"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Видеозвонок"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Качество видео"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Настройки видео"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Посмотреть коды"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Просмотреть профиль сообщества"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Посмотреть инвентарь подарков"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Посмотреть глобальный профиль"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Голос"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Настройки голоса и видео"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Голосовой вызов"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Голосовой вызов"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Регион голосового сервера"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Настройки голоса"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Когда включено, ты можешь добавлять кан
|
||||
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 "Когда включено, чтобы присоединиться к голосовым каналам, нужно двойное нажатие. Когда отключено (по умолчанию), достаточно одного клика."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Когда модераторы начинают модерировать, ты можешь контролировать модерацию здесь."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "Ты можешь использовать ссылки и Markdown дл
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "Ты не можешь добавлять реакции, пока на тайм-ауте."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Ты не можешь добавить в друзья себя"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "Ты не можешь взаимодействовать с реакц
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "Ты не можешь присоединиться, пока на тайм-ауте."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Ты не можешь писать себе"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(max 15 visas)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Inget innehåll)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(endast synligt för dig)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "En symfoni av knackande tangenter är på gång..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Om mig"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Acceptera"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Acceptera vänförfrågan"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Öppna utvecklarverktyg"
|
||||
msgid "Access granted"
|
||||
msgstr "Åtkomst beviljad"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Åtkomstöverstyrningar"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktiv årsabonnent (uppsägning schemalagd)"
|
||||
msgid "Activities"
|
||||
msgstr "Aktiviteter"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Aktivitetslogg"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Lägg till anteckning"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Lägg till eller ändra ditt telefonnummer"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Lägg till överskridande"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Alla @omnämnanden av dig kommer att visas här i 7 dagar."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Alla åtgärder"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Alla översättningar är för närvarande genererade av LLM med minimal mänsklig granskning. Vi skulle gärna vilja ha riktiga människor som hjälper oss att lokalisera Fluxer till ditt språk! För att göra det, skicka ett e-postmeddelande till <0>i18n@fluxer.app</0> så accepterar vi gärna dina bidrag."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Alla användare"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Är du säker på att du vill göra {0} till gruppägare? Du kommer att
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Är du säker på att du vill ta bort {0} som vän?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Är du säker på att du vill överföra ägandet av gruppen till {0}?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Är du säker på att du vill avblockera {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Auto"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Automatisk förstärkningskontroll"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Tillbaka till listan"
|
||||
msgid "Back to login"
|
||||
msgstr "Tillbaka till inloggning"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Samtal"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Avbryt"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Avbryt vänförfrågan"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanalåtkomst"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanalåtkomst nekad"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanalåtkomst uppdaterad"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal borttagen från favoriter"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanalinställningar"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal synkroniserad med överordnad kategori"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Bekväm (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Bekväm"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Bekväm layout"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Konfigurera AFK-kanal och timeout"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Konfigurera autofyll"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Konfigurera basåtkomst för denna kanal"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Konfigurera meddelandeljud"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Konfigurera notisljud"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Konfigurera överskrivningar för denna medlem"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Konfigurera överskrivningar för denna roll"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Kopiera fillänk"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Kopiera FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Dagar"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Döva"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Minska appens zoomnivå"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danmark"
|
||||
msgid "Dense"
|
||||
msgstr "Tät"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Tät layout"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Förtursåtkomst till nya funktioner"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Ekokompensering"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Redigera \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Redigera åtkomst för {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Redigera anteckning"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Redigera profil"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "filnamn:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Filer skickas omedelbart utan förhandsvisning."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Filtrera efter åtgärd"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Filtrera efter åtgärd"
|
||||
msgid "Filter by content"
|
||||
msgstr "Filtrera efter innehåll"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Filtrera efter användare"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Rutnät"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Rutnätsvy"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Inmatning"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Inmatningsenhet"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Inmatningstillstånd"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Inmatningsvolym"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Live"
|
||||
msgid "Live Preview"
|
||||
msgstr "Live-förhandsvisning"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Ladda fler"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "nämningar:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Meddelandehantering har tillfälligt inaktiverats i denna community av p
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofontest"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Ingen tangentbindning inställd"
|
||||
msgid "No limit"
|
||||
msgstr "Ingen gräns"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Inga loggar ännu"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Inga väntande förfrågningar"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Inga väntande förfrågningar matchar din sökning"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Inga behörigheter hittades"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Inga reaktioner"
|
||||
msgid "No reason provided"
|
||||
msgstr "Ingen anledning angiven"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Ingen anledning angavs."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ingen"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Brusdämpning"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Inte nu"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Utgående vänförfrågningar"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Utenhet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Utgångsvolym"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Förhandsgranskningsknapp"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Förhandsgranska kamera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Redo att uppgradera?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Anledning"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Ta bort filter"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Ta bort omnämnande"
|
||||
msgid "Remove override"
|
||||
msgstr "Ta bort åsidosättning"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Ta bort åsidosättning"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Rapportera användare"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Prenumerera igen"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Sök endast i den aktuella DM"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Sök väntande förfrågningar"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Sök behörigheter..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Skicka kod"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Skicka vänförfrågan"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Visa mest relevanta meddelanden först"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Visa min egen kamera"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Visa modal för ny enhet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Visa deltagare utan video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Tysta samtal från alla"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Simulerar att ha ett Stripe-kund-ID (för att testa åtkomst till köphistorik)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "En kolumn"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Något gick fel och appen kraschade. Försök ladda om eller återställa appen."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Något gick fel vid inläsning av granskningsloggen."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Tala meddelande"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Tala normalt in i din mikrofon. Du bör höra dig själv genom dina högtalare. Nivån bör hålla sig inom det gröna \"Bra\" eller gula \"Optimal\" området."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Högtalare {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Högtalare {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Börja dela"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Starta röstsamtal"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Växla mellan senaste community och direkta meddelanden"
|
||||
msgid "Switch Device"
|
||||
msgstr "Byt enhet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Byt till bekväm layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Byt till tät layout"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Byt till enkel kolumn"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Byt till detta konto"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Byt till denna enhet"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Byt till två kolumner"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Synka tema"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Synka tema mellan enheter"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Synka med kategori"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Den här kanalen är inte markerad som NSFW. Explicit innehåll kan endast skickas i NSFW-kanaler. Be en moderator att markera den här kanalen som NSFW om det är lämpligt."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Den här kanalen är inte synkroniserad med den överordnade kategorin <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Den här kanalen är synkroniserad med den överordnade kategorin <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Ämne"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Total parsningstid:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Spåra moderatoråtgärder i communityt."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Justera denna kategoris grundinställningar."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Justera denna kanals grundinställningar."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Två kolumner"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Kan inte installera emojipaket"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Kan inte installera klistermärkespaket"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Kan inte ladda aktivitetsloggar"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Ej tillgänglig för alla utom personal"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Avblockera den här användaren innan du skickar en vänförfrågan."
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Avblockera användare"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Använd säkerhetsnyckel"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Använd systemets språk för tidsformat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Använd dessa knappar för att snabbt ställa in alla behörigheter."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Användare flyttade kanal"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Användarprofil"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Användarprofil: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Videosamtal"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Videokvalitet"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Videoinställningar"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Visa koder"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Visa community-profil"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Visa gåvoförråd"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Visa global profil"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Röst"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Röst- och videokonfiguration"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Röstsamtal"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Röstsamtal"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Röstregion"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Röstinställningar"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "När aktiverat kan du favoritmarkera kanaler och de visas i favoritsekti
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "När moderatorer börjar moderera kan du moderera moderationen här."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Du kan inte bli vän med dig själv"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Du kan inte skicka meddelanden till dig själv"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(แสดงได้สูงสุด 15 รายการ)"
|
||||
msgid "(No content)"
|
||||
msgstr "(ไม่มีเนื้อหา)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(เห็นได้เฉพาะคุณ)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "เสียงแป้นพิมพ์ดังระเบงกำลังเกิดขึ้น..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "เกี่ยวกับฉัน"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "ยอมรับ"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "ตอบรับคำขอเป็นเพื่อน"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "เข้าถึงเครื่องมือสำหรับน
|
||||
msgid "Access granted"
|
||||
msgstr "ได้รับสิทธิ์แล้ว"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "การยกเว้นการเข้าถึง"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "ผู้สมัครรายปีกำลังใช้งาน
|
||||
msgid "Activities"
|
||||
msgstr "กิจกรรม"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "เพิ่มบันทึก"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "เพิ่มหรือเปลี่ยนหมายเลขโทรศัพท์ของคุณ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "เพิ่มการยกเว้น"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "การกล่าวถึงคุณทั้งหมดจะแสดงที่นี่เป็นเวลา 7 วัน"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "การดำเนินการทั้งหมด"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "การแปลทั้งหมดตอนนี้ถูกสร้างขึ้นโดย LLM โดยมีการแก้ไขจากมนุษย์น้อยที่สุด เราต้องการให้ผู้คนจริงๆ มาช่วยเราแปล Fluxer เป็นภาษาของคุณ! หากต้องการทำเช่นนั้น กรุณาส่งอีเมลไปที่ <0>i18n@fluxer.app</0> และเรายินดีรับการมีส่วนร่วมของคุณ"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "ผู้ใช้ทั้งหมด"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "แน่ใจไหมว่าต้องการมอบควา
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "แน่ใจไหมว่าต้องการลบ {0} ออกจากเพื่อน?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "แน่ใจไหมว่าต้องการโอนควา
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "แน่ใจไหมว่าต้องการปลดบล็อก {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "อัตโนมัติ"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "ควบคุมความดังอัตโนมัติ"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "กลับไปยังรายการ"
|
||||
msgid "Back to login"
|
||||
msgstr "กลับไปยังหน้าลงชื่อเข้าใช้"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "การโทร"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "กล้อง"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "กล้อง {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "ยกเลิก"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "ยกเลิกคำขอเป็นเพื่อน"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "การเข้าถึงแชนแนล"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "ไม่อนุญาตให้เข้าถึงแชนแนล"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "ปรับปรุงการเข้าถึงแชนแนลแล้ว"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "นำแชนแนลออกจากรายการโปรด
|
||||
msgid "Channel Settings"
|
||||
msgstr "การตั้งค่าแชนแนล"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "แชนแนลซิงค์กับหมวดหมู่หลักแล้ว"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "ยืนยันบัญชีของคุณเพื่อแล
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "ยืนยันบัญชีของคุณเพื่อส่งคำขอเป็นเพื่อน"
|
||||
@@ -4507,7 +4509,7 @@ msgstr "สบายตา (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "สบาย"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "เลย์เอาต์สบายๆ"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "ตั้งค่าแชนแนลและเวลาหมดเ
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "ตั้งค่าการเติมข้อความอัตโนมัติ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "ตั้งค่าการเข้าถึงพื้นฐานของแชนแนลนี้"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "ตั้งค่าเสียงข้อความ"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "ตั้งค่าเสียงการแจ้งเตือน"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "ตั้งค่าการแทนที่สำหรับสมาชิกนี้"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "ตั้งค่าการแทนที่สำหรับบทบาทนี้"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "คัดลอกลิงก์ไฟล์"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "คัดลอก FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "วัน"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "ปิดเสียง"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "ลดระดับซูมของแอป"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "ค่าเริ่มต้น"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "เดนมาร์ก"
|
||||
msgid "Dense"
|
||||
msgstr "แน่น"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "เค้าโครงแน่น"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "เข้าถึงฟีเจอร์ใหม่ก่อนใค
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "ยกเลิกเสียงสะท้อน"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "แก้ไข \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "แก้ไขการเข้าถึงสำหรับ {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "แก้ไขโน้ต"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "แก้ไขการเขียนทับสำหรับบทบาทและสมาชิกในแชนแนลนี้"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "แก้ไขโปรไฟล์"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "ชื่อไฟล์:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "ไฟล์จะถูกส่งทันทีโดยไม่มีตัวอย่าง"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "กรองตามการกระทำ"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "กรองตามการกระทำ"
|
||||
msgid "Filter by content"
|
||||
msgstr "กรองตามเนื้อหา"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "กรองตามผู้ใช้"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "ตาราง"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "มุมมองตาราง"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "อินพุต"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "อุปกรณ์อินพุต"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "สถานะอินพุต"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "ระดับเสียงอินพุต"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "ถ่ายทอดสด"
|
||||
msgid "Live Preview"
|
||||
msgstr "แสดงตัวอย่างแบบสด"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "โหลดเพิ่ม"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "การกล่าวถึง:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "การส่งข้อความถูกปิดชั่วค
|
||||
msgid "Mic Test"
|
||||
msgstr "ทดสอบไมโครโฟน"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "ไมโครโฟน {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "ไมโครโฟน {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "ยังไม่ได้ตั้งค่าแป้นพิมพ
|
||||
msgid "No limit"
|
||||
msgstr "ไม่มีขีดจำกัด"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "ยังไม่มีบันทึก"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "ไม่มีคำขอที่รอดำเนินการ"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "ไม่มีคำขอที่รอดำเนินการตรงกับการค้นหาของคุณ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "ไม่พบสิทธิ์"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "ไม่มีปฏิกิริยา"
|
||||
msgid "No reason provided"
|
||||
msgstr "ไม่ได้ระบุเหตุผล"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "ไม่ได้ระบุเหตุผล"
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "ไม่มีใคร"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "ลดเสียงรบกวน"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "ตอนนี้ยังไม่"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "ไม่ใช่ความชอบของคุณหรือเปล่า? คุณปิดฟีเจอร์นี้ได้ทุกเมื่อ"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "คำขอเป็นเพื่อนที่ส่งออก"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "อุปกรณ์เอาต์พุต"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "ระดับเสียงเอาต์พุต"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "ปุ่มตัวอย่าง"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "ตัวอย่างกล้อง"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "พร้อมอัปเกรดหรือยัง?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "เหตุผล"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "ลบตัวกรอง"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "ลบการกล่าวถึง"
|
||||
msgid "Remove override"
|
||||
msgstr "ลบการแทนที่"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "ลบการแทนที่"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "ส่งรายงานเรียบร้อย ทีมคว
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "รายงานผู้ใช้"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "สมัครรับใหม่"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "ค้นหาเฉพาะในข้อความตรงปั
|
||||
msgid "Search pending requests"
|
||||
msgstr "ค้นหารายการร้องขอที่ค้างอยู่"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "ค้นหาการอนุญาต..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "ส่งรหัส"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "ส่งคำขอเป็นเพื่อน"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "แสดงข้อความที่เกี่ยวข้อง
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "แสดงกล้องของฉันเอง"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "แสดงหน้าต่างอุปกรณ์ใหม่"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "แสดงผู้เข้าร่วมที่ไม่มีวิดีโอ"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "ปิดเสียงการโทรจากทุกคน"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "จำลองการมีรหัสลูกค้า Stripe (เพื่อทดสอบการเข้าถึงประวัติการซื้อ)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "คอลัมน์เดียว"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "เกิดข้อผิดพลาดและแอปขัดข้อง ลองรีโหลดหรือตั้งค่าแอปใหม่"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "เกิดข้อผิดพลาดขณะโหลดบันทึกการตรวจสอบ"
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "พูดข้อความ"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "พูดปกติผ่านไมโครโฟน คุณควรได้ยินเสียงตัวเองผ่านลำโพง ระดับเสียงควรอยู่ในช่วงสีเขียว \"ดี\" หรือสีเหลือง \"เหมาะสม\""
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "ลำโพง {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "ลำโพง {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "เริ่มแชร์"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "เริ่มโทรด้วยเสียง"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "สลับระหว่างชุมชนล่าสุดกั
|
||||
msgid "Switch Device"
|
||||
msgstr "เปลี่ยนอุปกรณ์"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "เปลี่ยนเป็นเลย์เอาต์สบายตา"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "เปลี่ยนเป็นเลย์เอาต์แน่น"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "เปลี่ยนเป็นคอลัมน์เดียว"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "เปลี่ยนไปใช้บัญชีนี้"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "เปลี่ยนไปใช้อุปกรณ์นี้"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "เปลี่ยนเป็นสองคอลัมน์"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "ซิงก์ธีม"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "ซิงก์ธีมข้ามอุปกรณ์"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "ซิงก์กับหมวดหมู่"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "ช่องนี้ยังไม่ได้ตั้งค่าเป็น NSFW เนื้อหาที่ไม่เหมาะสมสามารถส่งได้ในช่อง NSFW เท่านั้น ขอให้ผู้ดูแลตั้งค่าช่องนี้เป็น NSFW หากเหมาะสม"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "ช่องนี้ไม่ได้ซิงก์กับหมวดหมู่หลัก <0>{0}</0>"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "ช่องนี้ซิงก์กับหมวดหมู่หลัก <0>{0}</0>"
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "หัวข้อ"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "เวลาการแยกวิเคราะห์รวม:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "ติดตามการทำงานของผู้ดูแลทั่วทั้งชุมชน"
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "ปรับแต่งพื้นฐานของหมวดนี
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "ปรับแต่งพื้นฐานของแชนแนลนี้"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "สองคอลัมน์"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "ไม่สามารถติดตั้งชุดอิโมจ
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "ไม่สามารถติดตั้งชุดสติกเกอร์ได้"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "ไม่สามารถโหลดบันทึกกิจกรรมได้"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "ไม่พร้อมใช้งานสำหรับทุกค
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "ปลดบล็อกผู้ใช้รายนี้ก่อน
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "ปลดบล็อกผู้ใช้"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "ใช้คีย์ความปลอดภัย"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "ใช้โลแคลของระบบสำหรับรูปแบบเวลา"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "ใช้ปุ่มเหล่านี้เพื่อตั้งค่าสิทธิ์ทั้งหมดอย่างรวดเร็ว"
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "ผู้ใช้ย้ายช่องแล้ว"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "โปรไฟล์ผู้ใช้"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "โปรไฟล์ผู้ใช้: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "วิดีโอ"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "วิดีโอคอล"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "คุณภาพวิดีโอ"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "การตั้งค่าวิดีโอ"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "ดูรหัส"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "ดูโปรไฟล์ชุมชน"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "ดูคลังของขวัญ"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "ดูโปรไฟล์ระดับโลก"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "เสียง"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "การตั้งค่าเสียงและวิดีโอ"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "โทรเสียง"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "โทรเสียง"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "ภูมิภาคเสียง"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "การตั้งค่าเสียง"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "เมื่อเปิดใช้งาน คุณสามาร
|
||||
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 "เมื่อเปิดใช้งาน คุณต้องดับเบิลคลิกแชนแนลเสียงเพื่อเข้าร่วม เมื่อปิดใช้งาน (ค่าเริ่มต้น) การคลิกครั้งเดียวจะเข้าร่วมทันที"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "เมื่อผู้ดูแลเริ่มจัดการ คุณสามารถควบคุมการจัดการนั้นได้ที่นี่"
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "คุณสามารถใช้ลิงก์และ Markdown
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "คุณไม่สามารถเพิ่มรีแอคชันใหม่ขณะที่อยู่ในช่วงพักเวลา"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "คุณไม่สามารถเพิ่มตัวเองเป็นเพื่อนได้"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "คุณไม่สามารถโต้ตอบกับรีแ
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "คุณไม่สามารถเข้าร่วมขณะที่อยู่ในช่วงพักเวลา"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "คุณไม่สามารถส่งข้อความถึงตัวเองได้"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(maksimum 15 gösteriliyor)"
|
||||
msgid "(No content)"
|
||||
msgstr "(İçerik yok)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(sadece sana görünür)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Tıkırtılı tuşların bir senfonisi başlıyor..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Hakkımda"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Kabul Et"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Arkadaşlık İsteğini Kabul Et"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Geliştirici araçlarına eriş"
|
||||
msgid "Access granted"
|
||||
msgstr "Erişim verildi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Erişim Geçersiz Kılmaları"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Aktif Yıllık Abone (İptal Planlandı)"
|
||||
msgid "Activities"
|
||||
msgstr "Etkinlikler"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Etkinlik Günlüğü"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Not Ekle"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Telefon numaranı ekle veya değiştir"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Geçersiz Kılma Ekle"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Seninle ilgili tüm @bahsedilmeler 7 gün boyunca burada görünecek."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Tüm Eylemler"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Tüm çeviriler şu anda minimum insan revizyonu ile LLM tarafından üretilmektedir. Fluxer'ı dilinize uyarlamamızda gerçek insanların yardımcı olmasını isteriz! Bunu yapmak için <0>i18n@fluxer.app</0> adresine bir e-posta gönderin ve katkılarınızı memnuniyetle kabul ederiz."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Tüm Kullanıcılar"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "{0} kullanıcısını grup sahibi yapmak istediğine emin misin? Sahip a
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "{0} kullanıcısını arkadaşlıktan çıkarmak istediğine emin misin?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Grubun sahipliğini {0} kullanıcısına devretmek istediğine emin misi
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "{0} kullanıcısının engelini kaldırmak istediğine emin misin?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Otomatik"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Otomatik Kazanç Kontrolü"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Listeye Geri Dön"
|
||||
msgid "Back to login"
|
||||
msgstr "Girişe Geri Dön"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Aramalar"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Kamera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Kamera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "İptal"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Arkadaşlık İsteğini İptal Et"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Kanal Erişimi"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Kanal Erişimi Reddedildi"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Kanal erişimi güncellendi"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Kanal favorilerden kaldırıldı"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Kanal Ayarları"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kanal üst kategori ile eşitlendi"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ 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:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Rahat (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Rahat"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Rahat düzen"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "AFK kanalını ve zaman aşımını yapılandırın"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Otomatik tamamlamayı yapılandır"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Bu kanal için temel erişimi yapılandırın"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Mesaj seslerini yapılandır"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Bildirim seslerini yapılandır"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Bu üye için geçersiz kılmaları yapılandırın"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Bu rol için geçersiz kılmaları yapılandırın"
|
||||
|
||||
@@ -5147,7 +5149,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:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "FluxerTag'ı Kopyala"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Günler"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Sağırlaştır"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Uygulama yakınlaştırma seviyesini azalt"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Varsayılan"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Danimarka"
|
||||
msgid "Dense"
|
||||
msgstr "Yoğun"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Yoğun düzen"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Yeni özelliklere erken erişim"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Yankı Bastırma"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "\"{0}\" düzenle"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "{0} için erişimi düzenle"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Notu Düzenle"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profili Düzenle"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "dosya adı:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Dosyalar önizleme yapılmadan hemen gönderilecek."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Eyleme göre filtrele"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Eyleme göre filtrele"
|
||||
msgid "Filter by content"
|
||||
msgstr "İçeriğe göre filtrele"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Kullanıcıya göre filtrele"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Izgara"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Izgara Görünümü"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Giriş"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Giriş Cihazı"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Giriş Durumları"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Giriş Sesi"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Canlı"
|
||||
msgid "Live Preview"
|
||||
msgstr "Canlı Önizleme"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Daha fazla yükle"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "anmalar:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Mesajlaşma, platform personeli tarafından bu toplulukta geçici olarak
|
||||
msgid "Mic Test"
|
||||
msgstr "Mikrofon Testi"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Mikrofon {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Mikrofon {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Tuş bağlantısı ayarlanmadı"
|
||||
msgid "No limit"
|
||||
msgstr "Sınır yok"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Henüz kayıt yok"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Bekleyen istek yok"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Aramanızla eşleşen bekleyen istek yok"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "İzin bulunamadı"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Tepki yok"
|
||||
msgid "No reason provided"
|
||||
msgstr "Sebep belirtilmedi"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Sebep belirtilmedi."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Kimse"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Gürültü Bastırma"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Şimdi Değil"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Giden arkadaşlık istekleri"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Çıkış Cihazı"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Çıkış Sesi"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Önizleme Düğmesi"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Kamera Önizlemesi"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Yükseltmeye Hazır mısınız?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Neden"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Filtreyi kaldır"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Bahsi kaldır"
|
||||
msgid "Remove override"
|
||||
msgstr "Geçersiz kılmayı kaldır"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Geçersiz Kılmayı Kaldır"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Kullanıcıyı Bildir"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Yeniden Abone Ol"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Yalnızca mevcut DM'de ara"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Bekleyen istekleri ara"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "İzinleri Ara..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Kodu Gönder"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Arkadaşlık İsteği Gönder"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "En ilgili mesajları önce göster"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Kendi Kameramı Göster"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Yeni Cihaz Modalını Göster"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Video Olmayan Katılımcıları Göster"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Herkesin sessiz aramaları"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Stripe müşteri kimliğine sahip olmayı simüle eder (satın alma geçmişi erişimi testi için)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Tek sütun"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Bir şeyler ters gitti ve uygulama çöktü. Uygulamayı yeniden yüklemeyi veya sıfırlamayı deneyin."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Denetim günlüğü yüklenirken bir şeyler ters gitti."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Mesajı Seslendir"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Mikrofonunuza normal şekilde konuşun. Kendinizi hoparlörlerinizden duymalısınız. Seviye yeşil \"İyi\" veya sarı \"Optimal\" aralığında kalmalıdır."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Hoparlör {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Hoparlör {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Paylaşmaya Başla"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Sesli Aramayı Başlat"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Son topluluk ve doğrudan mesajlar arasında geçiş yap"
|
||||
msgid "Switch Device"
|
||||
msgstr "Cihaz Değiştir"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Rahat düzene geç"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Yoğun düzene geç"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Tek sütuna geç"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Bu hesaba geç"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Bu Cihaza Geç"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "İki sütuna geç"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Temayı Senkronize Et"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Temayı cihazlar arasında senkronize et"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Kategoriyle Senkronize Et"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Bu kanal NSFW olarak işaretlenmemiş. Açık içerik yalnızca NSFW kanallarında gönderilebilir. Uygunsa, bir moderatörden bu kanalı NSFW olarak işaretlemesini isteyin."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Bu kanal üst kategori <0>{0}</0> ile senkronize değil."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Bu kanal üst kategori <0>{0}</0> ile senkronize."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Konu"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Toplam Ayrıştırma Süresi:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Topluluk genelinde moderatör eylemlerini izleyin."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Bu kategorinin temellerini ayarlayın."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Bu kanalın temellerini ayarlayın."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "İki sütun"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Emoji paketi yüklenemedi"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Sticker paketi yüklenemedi"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Etkinlik günlükleri yüklenemedi"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Personel dışındaki herkes için kullanılamıyor"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Arkadaşlık isteği göndermeden önce bu kullanıcının engelini kald
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Kullanıcı Engellemesini Kaldır"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Güvenlik anahtarı kullan"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Zaman formatı için sistem yerel ayarını kullan"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Tüm izinleri hızlıca ayarlamak için bu düğmeleri kullan."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Kullanıcı Kanalı Taşıdı"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Kullanıcı Profili"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Kullanıcı Profili: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Görüntülü Arama"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Video Kalitesi"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Video Ayarları"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Kodları Görüntüle"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Topluluk Profilini Görüntüle"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Hediye Envanterini Görüntüle"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Genel Profili Görüntüle"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Ses"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Ses ve Video Ayarları"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Sesli arama"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Sesli Arama"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Ses Bölgesi"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Ses Ayarları"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Etkinleştirildiğinde, kanalları favorilere ekleyebilirsin ve Favorile
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Moderatörler moderasyona başladığında, moderasyonu burada yönetebilirsin."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Kendinle arkadaş olamazsın"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Kendine mesaj gönderemezsin"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(відображено максимум 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Немає вмісту)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(видно лише тобі)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Симфонія клацання клавіш вже розпочалась..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Про мене"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Прийняти"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "Прийняти запит у друзі"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Доступ до інструментів розробника"
|
||||
msgid "Access granted"
|
||||
msgstr "Доступ надано"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Перевизначення доступу"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Активний щорічний підписник (скасуванн
|
||||
msgid "Activities"
|
||||
msgstr "Активності"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Додати нотатку"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Додати або змінити свій номер телефону"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Додати перевизначення"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Усі згадки @тебе з’являться тут протягом 7 днів."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Усі дії"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Усі переклади наразі створені за допомогою LLM з мінімальним редагуванням людини. Нам би хотілося залучити справжніх людей, щоб допомогти нам локалізувати Fluxer вашою мовою! Щоб це зробити, надішліть електронного листа на <0>i18n@fluxer.app</0>, і ми будемо раді прийняти ваші внески."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Усі користувачі"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Ти впевнений, що хочеш зробити {0} власни
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Ти впевнений, що хочеш видалити {0} із друзів?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Ти впевнений, що хочеш передати власніс
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Ти впевнений, що хочеш розблокувати {0}?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Авто"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Автоматичний контроль гучності"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Назад до списку"
|
||||
msgid "Back to login"
|
||||
msgstr "Назад до входу"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Дзвінки"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Камера"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Камера {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Скасувати"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Скасувати запит у друзі"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Доступ до каналу"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Доступ до каналу заборонено"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Доступ до каналу оновлено"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Канал видалено з обраних"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Налаштування каналу"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Канал синхронізовано з батьківською категорією"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "Претендуйте на свій обліковий запис, що
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "Претендуйте на свій обліковий запис, щоб надсилати запити на дружбу."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Комфортний (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Зручно"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Зручне компонування"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Налаштуйте канал AFK і час очікування"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Налаштувати автодоповнення"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Налаштуйте базовий доступ для цього каналу"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Налаштувати звуки повідомлень"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Налаштувати звуки сповіщень"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Налаштуйте перевизначення для цього учасника"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Налаштуйте перевизначення для цієї ролі"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "Скопіювати посилання на файл"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Скопіювати FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Дні"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Приглушити"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Зменшити масштаб застосунку"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "За замовчуванням"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Данія"
|
||||
msgid "Dense"
|
||||
msgstr "Щільний"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Щільне розташування"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Ранній доступ до нових функцій"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Придушення луни"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Редагувати «{0}»"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Редагування доступу для {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Редагувати нотатку"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "Редагуй перезаписи прав доступу для ролей і учасників у цьому каналі."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Редагувати профіль"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "ім’я файлу:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Файли будуть надіслані одразу без попереднього перегляду."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Фільтрувати за дією"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Фільтрувати за дією"
|
||||
msgid "Filter by content"
|
||||
msgstr "Фільтрувати за вмістом"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Фільтрувати за користувачем"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Сітка"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Перегляд сіткою"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Введення"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Пристрій введення"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Стани вводу"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Гучність вводу"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "У прямому ефірі"
|
||||
msgid "Live Preview"
|
||||
msgstr "Живий попередній перегляд"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Завантажити ще"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "згадки:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Надсилання повідомлень тимчасово вимк
|
||||
msgid "Mic Test"
|
||||
msgstr "Тест мікрофона"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Мікрофон {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Мікрофон {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Гаряча клавіша не налаштована"
|
||||
msgid "No limit"
|
||||
msgstr "Без обмежень"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Журналів ще немає"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Очікуваних запитів немає"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "За пошуком не знайдено очікуваних запитів"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Дозволів не знайдено"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Реакцій немає"
|
||||
msgid "No reason provided"
|
||||
msgstr "Причина не вказана"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Причину не вказано."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Ніхто"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Пригнічення шуму"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Не зараз"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "Не твоє? Можеш вимкнути цю функцію будь-коли."
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Надіслані запити в друзі"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Пристрій виведення"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Гучність виведення"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Кнопка перегляду"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Камера попереднього перегляду"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Готовий оновитись?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Причина"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Видалити фільтр"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Видалити згадку"
|
||||
msgid "Remove override"
|
||||
msgstr "Видалити перевизначення"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Видалити перевизначення"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "Скаргу успішно надіслано. Наша команда
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Поскаржитися на користувача"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Підписатися знову"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Шукати лише в поточному особистому чат
|
||||
msgid "Search pending requests"
|
||||
msgstr "Шукати очікувані запити"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Шукати дозволи..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Надіслати код"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Надіслати запит у друзі"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Спочатку показати найрелевантніші пов
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Показати мою камеру"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Показати модальне вікно нового пристро
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Показати учасників без відео"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Тихі дзвінки від усіх"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Імітує наявність ідентифікатора клієнта Stripe (для тестування доступу до історії покупок)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Один стовпець"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Щось пішло не так і додаток аварійно завершив роботу. Спробуй перезавантажити або скинути додаток."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Під час завантаження журналу аудиту сталася помилка."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Проголосити повідомлення"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Говори в мікрофон у звичайному режимі. Ти маєш чути себе через колонки. Рівень повинен залишатися в зеленій зоні \"Добре\" або жовтій \"Оптимально\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Динамік {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Динамік {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Почати трансляцію"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Розпочати голосовий дзвінок"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Перемикатися між останньою спільнотою
|
||||
msgid "Switch Device"
|
||||
msgstr "Змінити пристрій"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Перейти до комфортного макета"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Перейти до компактного макета"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Перейти на одну колонку"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Увійти під цим обліковим записом"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Переключитися на цей пристрій"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Перейти на дві колонки"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Синхронізувати тему"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Синхронізувати тему між пристроями"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Синхронізувати з категорією"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Цей канал не позначено як 18+. Явний контент можна надсилати лише в таких каналах. Попросіть модератора позначити канал, якщо це доречно."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Цей канал не синхронізовано з батьківською категорією <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Цей канал синхронізовано з батьківською категорією <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Тема"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Загальний час аналізу:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Відстежуй дії модераторів у спільноті."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Налаштуй базові параметри цієї категор
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Налаштуй базові параметри цього каналу."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Дві колонки"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Не вдалося встановити пакет емодзі"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Не вдалося встановити пакет стікерів"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Не вдалося завантажити журнали активності"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Недоступно для всіх, окрім персоналу"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "Розблокуй цього користувача перед тим,
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Розблокувати користувача"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Використовувати ключ безпеки"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Використовувати системні регіональні налаштування для формату часу"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Використовуйте ці кнопки, щоб швидко встановити всі дозволи."
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "Користувача перемістили до каналу"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Профіль користувача"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Профіль користувача: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Відео"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Відеодзвінок"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Якість відео"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Налаштування відео"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Переглянути коди"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Переглянути профіль спільноти"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Переглянути інвентар подарунків"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Переглянути глобальний профіль"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Голос"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Налаштування голосу й відео"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Голосовий дзвінок"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Голосовий дзвінок"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Регіон голосу"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Голосові налаштування"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Якщо увімкнено, ти можеш додавати канал
|
||||
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 "Якщо увімкнено, потрібно двічі клацнути голосовий канал, щоб приєднатися. Якщо вимкнено (за замовчуванням), один клік приєднає одразу."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Коли модератори починають модерацію, тут ти можеш модерувати саму модерацію."
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "Ти можеш використовувати посилання та M
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "Ти не можеш додавати нові реакції, коли на тайм-ауті."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Ти не можеш додати себе в друзі"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "Ти не можеш взаємодіяти з реакціями в р
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "Ти не можеш приєднатися, коли на тайм-ауті."
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Ти не можеш написати собі"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(tối đa hiển thị 15)"
|
||||
msgid "(No content)"
|
||||
msgstr "(Không có nội dung)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(chỉ bạn thấy)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "Một bản giao hưởng của tiếng gõ phím đang diễn ra..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "Về tôi"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "Chấp nhận"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: 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"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "Truy cập công cụ dành cho nhà phát triển"
|
||||
msgid "Access granted"
|
||||
msgstr "Đã cấp quyền"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "Ghi đè truy cập"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "Người đăng ký hàng năm đang hoạt động (Đã lên lịch hu
|
||||
msgid "Activities"
|
||||
msgstr "Hoạt động"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
msgstr "Nhật ký hoạt động"
|
||||
@@ -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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "Thêm ghi chú"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "Thêm hoặc thay đổi số điện thoại của bạn"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "Thêm ghi đè"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "Tất cả @nhắc đến bạn sẽ hiển thị ở đây trong 7 ngày."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "Tất cả hành động"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "Tất cả các bản dịch hiện tại đều được tạo ra bởi LLM với ít chỉnh sửa của con người. Chúng tôi rất muốn có những người thực sự giúp chúng tôi địa phương hóa Fluxer vào ngôn ngữ của bạn! Để làm điều đó, hãy gửi email đến <0>i18n@fluxer.app</0> và chúng tôi sẽ rất vui mừng nhận sự đóng góp của bạn."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "Tất cả người dùng"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "Bạn có chắc muốn chuyển quyền sở hữu nhóm cho {0}? Bạn
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "Bạn có chắc muốn hủy kết bạn với {0} không?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "Bạn có chắc muốn chuyển quyền sở hữu nhóm cho {0} không
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "Bạn có chắc muốn bỏ chặn {0} không?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "Tự động"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "Điều khiển độ lợi tự động"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "Quay lại danh sách"
|
||||
msgid "Back to login"
|
||||
msgstr "Quay lại đăng nhập"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "Các cuộc gọi"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "Camera"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "Camera {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "Hủy"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "Hủy lời mời kết bạn"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "Quyền truy cập kênh"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "Không có quyền truy cập kênh"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "Đã cập nhật quyền truy cập kênh"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "Đã bỏ kênh khỏi yêu thích"
|
||||
msgid "Channel Settings"
|
||||
msgstr "Cài đặt kênh"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "Kênh đồng bộ với danh mục cha"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "Đăng ký tài khoản của bạn để đổi thưởng món quà nà
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: 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."
|
||||
@@ -4507,7 +4509,7 @@ msgstr "Thoải mái (550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "Thoải mái"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "Bố cục thoải mái"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "Cấu hình kênh AFK và thời gian chờ"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "Cấu hình tự động hoàn thành"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "Cấu hình quyền truy cập cơ bản cho kênh này"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "Cấu hình âm thanh tin nhắn"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "Cấu hình âm thanh thông báo"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "Cấu hình ghi đè cho thành viên này"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "Cấu hình ghi đè cho vai trò này"
|
||||
|
||||
@@ -5147,7 +5149,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:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "Sao chép FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "Ngày"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "Tắt tiếng"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "Giảm mức thu phóng ứng dụng"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "Đan Mạch"
|
||||
msgid "Dense"
|
||||
msgstr "Mật"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "Giao diện mật"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "Truy cập sớm các tính năng mới"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "Hủy tiếng vọng"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "Chỉnh sửa \"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "Chỉnh sửa quyền truy cập cho {0}"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "Chỉnh sửa ghi chú"
|
||||
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:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "Chỉnh sửa hồ sơ"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "tên tệp:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "Các tệp sẽ được gửi ngay lập tức mà không xem trước."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "Lọc theo hành động"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "Lọc theo hành động"
|
||||
msgid "Filter by content"
|
||||
msgstr "Lọc theo nội dung"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "Lọc theo người dùng"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "Lưới"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "Chế độ xem lưới"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "Đầu vào"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "Thiết bị đầu vào"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "Trạng thái đầu vào"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "Âm lượng đầu vào"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "Trực tiếp"
|
||||
msgid "Live Preview"
|
||||
msgstr "Xem trước trực tiếp"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "Tải thêm"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "đề cập:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "Việc nhắn tin tạm thời bị vô hiệu hóa trong cộng đồng
|
||||
msgid "Mic Test"
|
||||
msgstr "Kiểm tra mic"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "Microphone {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "Microphone {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "Chưa đặt phím tắt"
|
||||
msgid "No limit"
|
||||
msgstr "Không giới hạn"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "Chưa có nhật ký"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "Không có yêu cầu đang chờ"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "Không có yêu cầu đang chờ nào phù hợp với tìm kiếm của bạn"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "Không tìm thấy quyền nào"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "Không có phản ứng"
|
||||
msgid "No reason provided"
|
||||
msgstr "Không có lý do nào"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "Không có lý do nào được đưa ra."
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "Không ai"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "Loại bỏ tiếng ồn"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "Không phải bây giờ"
|
||||
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:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "Lời mời kết bạn đã gửi"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "Thiết bị đầu ra"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "Âm lượng đầu ra"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "Nút xem trước"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "Xem trước camera"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "Sẵn sàng nâng cấp chưa?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "Lý do"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "Xóa bộ lọc"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "Xóa đề cập"
|
||||
msgid "Remove override"
|
||||
msgstr "Xóa ghi đè"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "Xóa ghi đè"
|
||||
|
||||
@@ -15059,7 +15080,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:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "Báo cáo người dùng"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "Đăng ký lại"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "Chỉ tìm trong hộp thoại trực tiếp hiện tại"
|
||||
msgid "Search pending requests"
|
||||
msgstr "Tìm yêu cầu đang chờ"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "Tìm quyền..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "Gửi mã"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "Gửi lời mời kết bạn"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "Hiển thị tin nhắn phù hợp nhất trước"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "Hiển thị camera của tôi"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "Hiển thị hộp thoại thiết bị mới"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "Hiển thị người tham gia không có video"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "Tắt tiếng cuộc gọi từ mọi người"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "Mô phỏng có ID khách hàng Stripe (dùng để thử truy cập lịch sử mua hàng)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "Một cột"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "Đã xảy ra sự cố và ứng dụng bị lỗi. Hãy thử tải lại hoặc đặt lại ứng dụng."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "Đã xảy ra sự cố khi tải nhật ký kiểm toán."
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "Đọc tin nhắn"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "Nói bình thường vào micro. Bạn nên nghe thấy tiếng mình qua loa. Mức độ nên ở trong vùng màu xanh \"Tốt\" hoặc vàng \"Tối ưu\"."
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "Loa {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "Loa {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "Bắt đầu chia sẻ"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "Bắt đầu cuộc gọi thoại"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "Chuyển giữa cộng đồng gần nhất và tin nhắn trực tiếp
|
||||
msgid "Switch Device"
|
||||
msgstr "Chuyển thiết bị"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "Chuyển sang bố cục thoải mái"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "Chuyển sang bố cục dày đặc"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "Chuyển sang một cột"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "Chuyển sang tài khoản này"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "Chuyển sang thiết bị này"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "Chuyển sang hai cột"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "Đồng bộ chủ đề"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "Đồng bộ giao diện trên các thiết bị"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "Đồng bộ với chuyên mục"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "Kênh này chưa được đánh dấu NSFW. Nội dung nhạy cảm chỉ gửi được trong kênh NSFW. Hỏi người điều hành để đánh dấu nếu phù hợp."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "Kênh này không đồng bộ với chuyên mục cha <0>{0}</0>."
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "Kênh này được đồng bộ với chuyên mục cha <0>{0}</0>."
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "Chủ đề"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "Tổng thời gian phân tích:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "Theo dõi hành động của người điều hành trong cộng đồng."
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "Điều chỉnh các cài đặt cơ bản của hạng mục này."
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "Điều chỉnh các cài đặt cơ bản của kênh này."
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "Hai cột"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "Không thể cài gói biểu tượng cảm xúc"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "Không thể cài gói nhãn dán"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "Không thể tải nhật ký hoạt động"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "Chỉ nhân viên mới thấy"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ 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/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "Bỏ chặn người dùng"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "Dùng khóa bảo mật"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "Dùng ngôn ngữ hệ thống cho định dạng thời gian"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "Dùng các nút này để nhanh chóng thiết lập tất cả quyền."
|
||||
|
||||
@@ -19840,11 +19868,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:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "Hồ sơ người dùng"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "Hồ sơ người dùng: {tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "Cuộc gọi video"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "Chất lượng video"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "Cài đặt video"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "Xem mã"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "Xem hồ sơ cộng đồng"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "Xem kho quà"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "Xem hồ sơ toàn cầu"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "Âm thanh"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "Cài đặt Âm thanh & Video"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "Cuộc gọi thoại"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "Cuộc gọi thoại"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "Khu vực thoại"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "Cài đặt thoại"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "Khi bật, bạn có thể đánh dấu kênh yêu thích và chúng s
|
||||
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."
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "Khi người điều hành bắt đầu điều hành, bạn có thể quản lý việc điều hành ở đây."
|
||||
|
||||
@@ -21085,7 +21113,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:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "Bạn không thể kết bạn với chính mình"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ 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:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "Bạn không thể nhắn tin cho chính mình"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(最多显示15个)"
|
||||
msgid "(No content)"
|
||||
msgstr "(无内容)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(仅你可见)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "键盘敲击的交响乐正在进行中..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "关于我"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "接受"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "接受好友请求"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "访问开发者工具"
|
||||
msgid "Access granted"
|
||||
msgstr "访问已授予"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "访问覆盖"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "活跃年度订阅者(已计划取消)"
|
||||
msgid "Activities"
|
||||
msgstr "活动"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "添加备注"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "添加或更改您的电话号码"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "添加覆盖"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "所有@提及您的内容将在此处显示7天。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "所有操作"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "所有翻译目前均为 LLM 生成,经过最小人类修订。我们希望能有真实的人来帮助我们将 Fluxer 本地化到您的语言!如需帮助,请发送电子邮件至 <0>i18n@fluxer.app</0>,我们将乐于接受您的贡献。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "所有用户"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "确定要将群主权限移交给 {0} 吗?您将失去群主权限。"
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "确定要将 {0} 从好友中移除吗?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "确定要将群组所有权转移给 {0} 吗?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "确定要解除对 {0} 的屏蔽吗?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "自动"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "自动增益控制"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "返回列表"
|
||||
msgid "Back to login"
|
||||
msgstr "返回登录"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "通话"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "摄像头"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "摄像头 {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "取消"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "取消好友请求"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "频道访问"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "频道访问被拒绝"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "频道访问权限已更新"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "频道已从收藏中移除"
|
||||
msgid "Channel Settings"
|
||||
msgstr "频道设置"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "频道已与父类别同步"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "索取您的账户以兑换此礼物。"
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "索取您的账户以发送好友请求。"
|
||||
@@ -4507,7 +4509,7 @@ msgstr "舒适(550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "舒适"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "舒适布局"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "配置AFK频道和超时"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "配置自动补全"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "配置此频道的基本访问权限"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "配置消息声音"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "配置通知声音"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "配置此成员的覆盖设置"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "配置此角色的覆盖设置"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "复制文件链接"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "复制FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "天"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "静音"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "减小应用缩放级别"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "默认"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "丹麦"
|
||||
msgid "Dense"
|
||||
msgstr "紧凑"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "紧凑布局"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "抢先体验新功能"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "回声消除"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "编辑\"{0}\""
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "为{0}编辑访问权限"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "编辑备注"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "编辑此频道中角色和成员的覆盖权限。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "编辑个人资料"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "文件名:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "文件将立即发送,无预览。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "按操作筛选"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "按操作筛选"
|
||||
msgid "Filter by content"
|
||||
msgstr "按内容筛选"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "按用户筛选"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "网格"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "网格视图"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "输入"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "输入设备"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "输入状态"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "输入音量"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "直播"
|
||||
msgid "Live Preview"
|
||||
msgstr "实时预览"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "加载更多"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "提及:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "平台工作人员已临时禁用此社区的聊天功能。这通常是
|
||||
msgid "Mic Test"
|
||||
msgstr "麦克风测试"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "麦克风 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "麦克风{shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "未设置按键绑定"
|
||||
msgid "No limit"
|
||||
msgstr "无限制"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "暂无日志"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "没有待处理请求"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "没有待处理请求匹配您的搜索"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "未找到权限"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "没有反应"
|
||||
msgid "No reason provided"
|
||||
msgstr "未提供原因"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "未提供原因。"
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "无"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "噪声抑制"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "暂不"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "不合你口味?你可以随时禁用此功能。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "发出的好友请求"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "输出设备"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "输出音量"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "预览按钮"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "预览摄像头"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "准备好升级了吗?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "原因"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "移除过滤器"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "移除提及"
|
||||
msgid "Remove override"
|
||||
msgstr "移除覆盖"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "移除覆盖"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "举报提交成功。我们的安全团队将尽快审核。"
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "举报用户"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "重新订阅"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "仅在当前私信中搜索"
|
||||
msgid "Search pending requests"
|
||||
msgstr "搜索待处理请求"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "搜索权限..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "发送代码"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "发送好友请求"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "优先显示最相关的消息"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "显示我的摄像头"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "显示新设备弹窗"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "显示非视频参与者"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "所有人的静音通话"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "模拟拥有Stripe客户ID(用于测试购买历史访问)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "单列"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "出错了,应用崩溃了。尝试重新加载或重置应用。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "加载审核日志时出错。"
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "朗读消息"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "正常对着麦克风说话。你应该能从扬声器中听到自己的声音。音量应保持在绿色“良好”或黄色“最佳”范围内。"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "扬声器 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "扬声器 {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "开始分享"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "开始语音通话"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "在最近社区和私信之间切换"
|
||||
msgid "Switch Device"
|
||||
msgstr "切换设备"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "切换到舒适布局"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "切换到紧凑布局"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "切换到单列"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "切换到此账户"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "切换到此设备"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "切换到双列"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "同步主题"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "跨设备同步主题"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "与分类同步"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "此频道未标记为 NSFW。露骨内容只能在 NSFW 频道中发送。如果合适,请请求版主将此频道标记为 NSFW。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "此频道未与父分类 <0>{0}</0> 同步。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "此频道已与父分类 <0>{0}</0> 同步。"
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "主题"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "总解析时间:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "跟踪社区内的版主操作。"
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "调整此类别的基础设置。"
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "调整此频道的基础设置。"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "两列"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "无法安装表情包"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "无法安装贴纸包"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "无法加载活动日志"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "仅对员工可用"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "发送好友请求前请先解除屏蔽此用户。"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "解除屏蔽用户"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "使用安全密钥"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "使用系统区域设置作为时间格式"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "使用这些按钮快速设置所有权限。"
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "用户移动频道"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "用户个人资料"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "用户资料:{tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "视频"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "视频通话"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "视频质量"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "视频设置"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "查看代码"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "查看社区资料"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "查看礼物库存"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "查看全局资料"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "语音"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "语音和视频设置"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "语音通话"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "语音通话"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "语音区域"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "语音设置"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "启用时,您可以收藏频道,它们将出现在收藏夹区域。
|
||||
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 "启用时,您需要双击语音频道才能加入。禁用时(默认),单击将立即加入频道。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "当版主开始管理时,您可以在此处管理版主。"
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "你可以使用链接和Markdown来格式化你的文本。使用<0/>,
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "你在禁言期间无法添加新的反应。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "你不能和自己成为好友"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "你不能与搜索结果中的反应互动,因为这可能会扰乱时
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "你在禁言期间无法加入。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "你不能给自己发消息"
|
||||
|
||||
@@ -74,7 +74,7 @@ msgstr "(最多顯示 15 個)"
|
||||
msgid "(No content)"
|
||||
msgstr "(無內容)"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:556
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:558
|
||||
#: src/components/pages/YouPage.tsx:147
|
||||
msgid "(only visible to you)"
|
||||
msgstr "(僅你可見)"
|
||||
@@ -1322,7 +1322,7 @@ msgid "A symphony of clacking keys is underway..."
|
||||
msgstr "鍵盤敲擊的交響樂正在進行中..."
|
||||
|
||||
#: src/components/modals/tabs/MyProfileTab/BioEditor.tsx:127
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:532
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:534
|
||||
#: src/components/pages/YouPage.tsx:132
|
||||
msgid "About Me"
|
||||
msgstr "關於我"
|
||||
@@ -1346,7 +1346,7 @@ msgstr "接受"
|
||||
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:517
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:262
|
||||
#: src/components/modals/UserProfileModal.tsx:1259
|
||||
#: src/components/modals/UserProfileModal.tsx:1261
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:109
|
||||
msgid "Accept Friend Request"
|
||||
msgstr "接受好友邀請"
|
||||
@@ -1382,8 +1382,8 @@ msgstr "存取開發者工具"
|
||||
msgid "Access granted"
|
||||
msgstr "已授予存取權限"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:721
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:862
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:723
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:864
|
||||
msgid "Access Overrides"
|
||||
msgstr "存取覆寫"
|
||||
|
||||
@@ -1498,7 +1498,7 @@ msgstr "活躍的年度訂閱者(已排程取消)"
|
||||
msgid "Activities"
|
||||
msgstr "活動"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:354
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:356
|
||||
#: src/components/modals/utils/guildSettingsConstants.tsx:131
|
||||
msgid "Activity Log"
|
||||
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:1179
|
||||
#: src/components/modals/UserProfileModal.tsx:1181
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:75
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:89
|
||||
msgid "Add Friend"
|
||||
@@ -1629,8 +1629,8 @@ msgstr "新增備註"
|
||||
msgid "Add or change your phone number"
|
||||
msgstr "新增或變更您的電話號碼"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:731
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:871
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:733
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:873
|
||||
msgid "Add Override"
|
||||
msgstr "新增覆寫"
|
||||
|
||||
@@ -1868,7 +1868,7 @@ msgid "All @mentions of you will appear here for 7 days."
|
||||
msgstr "所有提到你的 @ 提醒將於此顯示 7 天。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:207
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:371
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:373
|
||||
msgid "All Actions"
|
||||
msgstr "所有操作"
|
||||
|
||||
@@ -1943,7 +1943,7 @@ msgid "All translations are currently LLM-generated with minimal human revision.
|
||||
msgstr "所有翻譯目前皆為 LLM 生成,並經過最少的人工修訂。我們希望能得到真正的人幫助我們將 Fluxer 本地化成您的語言!如有興趣,請發送電子郵件至 <0>i18n@fluxer.app</0>,我們將樂意接受您的貢獻。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:201
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:363
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
msgid "All Users"
|
||||
msgstr "所有使用者"
|
||||
|
||||
@@ -2524,7 +2524,7 @@ msgstr "確定要將 {0} 設為群組擁有者嗎?你將失去擁有者權限
|
||||
#. placeholder {0}: user.username
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:147
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:116
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:304
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:306
|
||||
#: src/utils/RelationshipActionUtils.tsx:114
|
||||
msgid "Are you sure you want to remove {0} as a friend?"
|
||||
msgstr "確定要移除 {0} 為好友嗎?"
|
||||
@@ -2567,7 +2567,7 @@ msgstr "確定要將群組所有權轉移給 {0} 嗎?"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:181
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:57
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:150
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:320
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:322
|
||||
#: src/utils/RelationshipActionUtils.tsx:168
|
||||
msgid "Are you sure you want to unblock {0}?"
|
||||
msgstr "確定要解除封鎖 {0} 嗎?"
|
||||
@@ -2770,7 +2770,7 @@ msgstr "自動"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:140
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:177
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:175
|
||||
msgid "Auto Gain Control"
|
||||
msgstr "自動增益控制"
|
||||
|
||||
@@ -2871,7 +2871,7 @@ msgstr "返回列表"
|
||||
msgid "Back to login"
|
||||
msgstr "返回登入"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:963
|
||||
#: 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/DesktopSettingsView.tsx:295
|
||||
@@ -3096,7 +3096,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:1062
|
||||
#: src/components/modals/UserProfileModal.tsx:1064
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:211
|
||||
#: src/utils/RelationshipActionUtils.tsx:143
|
||||
msgid "Block"
|
||||
@@ -3374,11 +3374,13 @@ msgstr "通話"
|
||||
#: src/components/modals/CameraPreviewModal.tsx:477
|
||||
#: src/components/modals/tabs/VideoTab.tsx:145
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:458
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:326
|
||||
msgid "Camera"
|
||||
msgstr "相機"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#: src/components/modals/CameraPreviewModal.tsx:455
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:339
|
||||
msgid "Camera {0}"
|
||||
msgstr "相機 {0}"
|
||||
|
||||
@@ -3509,7 +3511,7 @@ msgstr "取消"
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:138
|
||||
#: src/components/channel/friends/FriendListItem.tsx:164
|
||||
#: src/components/channel/friends/FriendListItem.tsx:166
|
||||
#: src/components/modals/UserProfileModal.tsx:1274
|
||||
#: src/components/modals/UserProfileModal.tsx:1276
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:192
|
||||
msgid "Cancel Friend Request"
|
||||
msgstr "取消好友邀請"
|
||||
@@ -3785,7 +3787,7 @@ msgstr "頻道存取"
|
||||
msgid "Channel Access Denied"
|
||||
msgstr "頻道存取被拒"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:396
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:398
|
||||
msgid "Channel access updated"
|
||||
msgstr "頻道存取已更新"
|
||||
|
||||
@@ -3893,7 +3895,7 @@ msgstr "頻道已從最愛移除"
|
||||
msgid "Channel Settings"
|
||||
msgstr "頻道設定"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:622
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:624
|
||||
msgid "Channel synced with parent category"
|
||||
msgstr "頻道已與上層分類同步"
|
||||
|
||||
@@ -4179,7 +4181,7 @@ msgstr "認領你的帳戶以兌換此禮物。"
|
||||
|
||||
#: src/components/channel/dm/AddFriendForm.tsx:54
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:109
|
||||
#: src/components/modals/UserProfileModal.tsx:1289
|
||||
#: src/components/modals/UserProfileModal.tsx:1291
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:65
|
||||
msgid "Claim your account to send friend requests."
|
||||
msgstr "認領你的帳戶以發送好友請求。"
|
||||
@@ -4507,7 +4509,7 @@ msgstr "舒適(550x400)"
|
||||
msgid "Comfy"
|
||||
msgstr "舒適"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Comfy layout"
|
||||
msgstr "舒適佈局"
|
||||
@@ -4708,7 +4710,7 @@ msgstr "設定離開頻道與逾時"
|
||||
msgid "Configure autocomplete"
|
||||
msgstr "設定自動完成"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:974
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
msgid "Configure base access for this channel"
|
||||
msgstr "設定此頻道的基本存取權限"
|
||||
|
||||
@@ -4780,11 +4782,11 @@ msgstr "設定訊息音效"
|
||||
msgid "Configure notification sounds"
|
||||
msgstr "設定通知音效"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:980
|
||||
msgid "Configure overrides for this member"
|
||||
msgstr "設定此成員的覆寫"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:976
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:978
|
||||
msgid "Configure overrides for this role"
|
||||
msgstr "設定此身分組的覆寫"
|
||||
|
||||
@@ -5147,7 +5149,7 @@ msgstr "複製檔案連結"
|
||||
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:98
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:208
|
||||
#: src/components/modals/UserProfileModal.tsx:1121
|
||||
#: src/components/modals/UserProfileModal.tsx:1123
|
||||
msgid "Copy FluxerTag"
|
||||
msgstr "複製 FluxerTag"
|
||||
|
||||
@@ -5220,7 +5222,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:1130
|
||||
#: src/components/modals/UserProfileModal.tsx:1132
|
||||
#: src/components/popouts/UserAreaPopout.tsx:509
|
||||
#: src/components/profile/ProfileCard/ProfileCardActions.tsx:60
|
||||
#: src/components/uikit/ContextMenu/items/CopyMenuItems.tsx:42
|
||||
@@ -5856,7 +5858,7 @@ msgstr "天數"
|
||||
#: src/components/layout/UserArea.tsx:254
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:117
|
||||
#: src/components/voice/VoiceControlBar.tsx:291
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:187
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:185
|
||||
msgid "Deafen"
|
||||
msgstr "靜音"
|
||||
|
||||
@@ -5952,6 +5954,10 @@ msgstr "降低應用程式縮放層級"
|
||||
#: src/components/modals/tabs/VideoTab.tsx:72
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:106
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:117
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:100
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:126
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:257
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:344
|
||||
msgid "Default"
|
||||
msgstr "預設"
|
||||
|
||||
@@ -6204,7 +6210,7 @@ msgstr "丹麥"
|
||||
msgid "Dense"
|
||||
msgstr "緊密"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1018
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1020
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1088
|
||||
msgid "Dense layout"
|
||||
msgstr "緊密佈局"
|
||||
@@ -6903,7 +6909,7 @@ msgstr "搶先使用新功能"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:126
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:410
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:450
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:161
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:159
|
||||
msgid "Echo Cancellation"
|
||||
msgstr "回聲消除"
|
||||
|
||||
@@ -6918,7 +6924,7 @@ msgid "Edit \"{0}\""
|
||||
msgstr "編輯「{0}」"
|
||||
|
||||
#. placeholder {0}: getOverwriteName(selectedOverwrite)
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:970
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:972
|
||||
msgid "Edit Access for {0}"
|
||||
msgstr "編輯 {0} 的存取權限"
|
||||
|
||||
@@ -6997,11 +7003,11 @@ msgstr "編輯筆記"
|
||||
msgid "Edit overwrites for roles and members in this channel."
|
||||
msgstr "編輯此頻道中角色與成員的覆寫權限。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:490
|
||||
#: src/components/modals/UserProfileModal.tsx:1206
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:492
|
||||
#: src/components/modals/UserProfileModal.tsx:1208
|
||||
#: src/components/pages/YouPage.tsx:123
|
||||
#: src/components/popouts/UserAreaPopout.tsx:521
|
||||
#: src/components/popouts/UserProfilePopout.tsx:299
|
||||
#: src/components/popouts/UserProfilePopout.tsx:301
|
||||
msgid "Edit Profile"
|
||||
msgstr "編輯個人檔案"
|
||||
|
||||
@@ -8325,7 +8331,7 @@ msgstr "檔案名稱:"
|
||||
msgid "Files will be sent immediately without preview."
|
||||
msgstr "檔案會直接傳送,無預覽畫面。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:372
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:374
|
||||
msgid "Filter by action"
|
||||
msgstr "依操作篩選"
|
||||
|
||||
@@ -8333,7 +8339,7 @@ msgstr "依操作篩選"
|
||||
msgid "Filter by content"
|
||||
msgstr "依內容篩選"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:365
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:367
|
||||
#: src/components/search/UserFilterSheet.tsx:90
|
||||
msgid "Filter by user"
|
||||
msgstr "依使用者篩選"
|
||||
@@ -9338,7 +9344,7 @@ msgid "Grid"
|
||||
msgstr "網格"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:258
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:404
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:400
|
||||
msgid "Grid View"
|
||||
msgstr "網格檢視"
|
||||
|
||||
@@ -10074,6 +10080,8 @@ msgstr "輸入"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:74
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:338
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:410
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:82
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Input Device"
|
||||
msgstr "輸入裝置"
|
||||
|
||||
@@ -10100,6 +10108,8 @@ msgstr "輸入狀態"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:96
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:363
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:136
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Input Volume"
|
||||
msgstr "輸入音量"
|
||||
|
||||
@@ -11001,7 +11011,7 @@ msgstr "直播"
|
||||
msgid "Live Preview"
|
||||
msgstr "直播預覽"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:633
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:635
|
||||
msgid "Load more"
|
||||
msgstr "載入更多"
|
||||
|
||||
@@ -11694,11 +11704,11 @@ msgstr "提及:"
|
||||
#: src/components/bottomsheets/VoiceParticipantBottomSheet.tsx:234
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:220
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:164
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:501
|
||||
#: src/components/modals/UserProfileModal.tsx:1190
|
||||
#: src/components/modals/UserProfileModal.tsx:1316
|
||||
#: src/components/popouts/UserProfilePopout.tsx:289
|
||||
#: src/components/popouts/UserProfilePopout.tsx:308
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:503
|
||||
#: src/components/modals/UserProfileModal.tsx:1192
|
||||
#: src/components/modals/UserProfileModal.tsx:1318
|
||||
#: src/components/popouts/UserProfilePopout.tsx:291
|
||||
#: src/components/popouts/UserProfilePopout.tsx:310
|
||||
#: src/components/profile/ProfilePreview.tsx:292
|
||||
#: src/components/uikit/ContextMenu/items/MessageUserMenuItem.tsx:47
|
||||
msgid "Message"
|
||||
@@ -11844,6 +11854,13 @@ msgstr "此社群的傳訊功能已被平台人員暫時停用,通常是因為
|
||||
msgid "Mic Test"
|
||||
msgstr "麥克風測試"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:95
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:232
|
||||
msgid "Microphone {0}"
|
||||
msgstr "麥克風 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:103
|
||||
msgid "Microphone {shortDeviceId}"
|
||||
msgstr "麥克風 {shortDeviceId}"
|
||||
@@ -12642,7 +12659,7 @@ msgstr "未設定鍵位"
|
||||
msgid "No limit"
|
||||
msgstr "無上限"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:609
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:611
|
||||
msgid "No logs yet"
|
||||
msgstr "尚無紀錄"
|
||||
|
||||
@@ -12695,7 +12712,7 @@ msgstr "沒有待處理請求"
|
||||
msgid "No pending requests match your search"
|
||||
msgstr "沒有待處理請求符合你的搜尋"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1065
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1067
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1130
|
||||
msgid "No permissions found"
|
||||
msgstr "找不到權限"
|
||||
@@ -12724,7 +12741,7 @@ msgstr "沒有回應"
|
||||
msgid "No reason provided"
|
||||
msgstr "未提供原因"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:462
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:464
|
||||
msgid "No reason was provided."
|
||||
msgstr "未提供原因。"
|
||||
|
||||
@@ -12840,7 +12857,7 @@ msgstr "沒有人"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:133
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:416
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:169
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:167
|
||||
msgid "Noise Suppression"
|
||||
msgstr "噪音抑制"
|
||||
|
||||
@@ -12887,7 +12904,7 @@ msgstr "稍後再說"
|
||||
msgid "Not your cup of tea? You can disable this feature anytime."
|
||||
msgstr "不合你的胃口嗎?你可以隨時關閉此功能。"
|
||||
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:553
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:555
|
||||
#: src/components/modals/UserProfileModal.tsx:244
|
||||
#: src/components/modals/UserProfileModal.tsx:248
|
||||
#: src/components/pages/YouPage.tsx:144
|
||||
@@ -13445,11 +13462,15 @@ msgstr "已發送的好友邀請"
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:82
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:347
|
||||
#: src/components/modals/utils/settingsSearchIndex.ts:418
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:108
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:227
|
||||
msgid "Output Device"
|
||||
msgstr "輸出裝置"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:107
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:381
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:144
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:228
|
||||
msgid "Output Volume"
|
||||
msgstr "輸出音量"
|
||||
|
||||
@@ -14069,7 +14090,7 @@ msgid "Preview Button"
|
||||
msgstr "預覽按鈕"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:214
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:364
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:360
|
||||
msgid "Preview Camera"
|
||||
msgstr "預覽攝影機"
|
||||
|
||||
@@ -14422,7 +14443,7 @@ msgid "Ready to Upgrade?"
|
||||
msgstr "準備好升級了嗎?"
|
||||
|
||||
#: src/components/modals/BanDetailsModal.tsx:76
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:563
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:565
|
||||
msgid "Reason"
|
||||
msgstr "原因"
|
||||
|
||||
@@ -14718,10 +14739,10 @@ msgstr "移除篩選器"
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:115
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:117
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:278
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:303
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:305
|
||||
#: src/components/modals/UserProfileModal.tsx:1143
|
||||
#: src/components/modals/UserProfileModal.tsx:1229
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:307
|
||||
#: src/components/modals/UserProfileModal.tsx:1145
|
||||
#: src/components/modals/UserProfileModal.tsx:1231
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:129
|
||||
#: src/utils/RelationshipActionUtils.tsx:113
|
||||
#: src/utils/RelationshipActionUtils.tsx:115
|
||||
@@ -14773,7 +14794,7 @@ msgstr "移除提及"
|
||||
msgid "Remove override"
|
||||
msgstr "移除覆寫"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:990
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:992
|
||||
msgid "Remove Override"
|
||||
msgstr "移除覆寫"
|
||||
|
||||
@@ -15059,7 +15080,7 @@ msgstr "檢舉提交成功,我們的安全團隊將儘快審核。"
|
||||
|
||||
#: src/components/modals/IARModal.tsx:84
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:289
|
||||
#: src/components/modals/UserProfileModal.tsx:1157
|
||||
#: src/components/modals/UserProfileModal.tsx:1159
|
||||
msgid "Report User"
|
||||
msgstr "檢舉使用者"
|
||||
|
||||
@@ -15264,7 +15285,7 @@ msgstr "重新訂閱"
|
||||
#: src/components/channel/MessageActionBar.tsx:798
|
||||
#: src/components/channel/messageActionMenu.tsx:189
|
||||
#: src/components/modals/BackgroundImageGalleryModal.tsx:232
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:624
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:626
|
||||
#: src/components/modals/guildTabs/GuildEmojiTab.tsx:539
|
||||
#: src/components/modals/guildTabs/GuildInvitesTab.tsx:124
|
||||
#: src/components/modals/guildTabs/GuildStickersTab.tsx:211
|
||||
@@ -15794,7 +15815,7 @@ msgstr "僅在目前私訊中搜尋"
|
||||
msgid "Search pending requests"
|
||||
msgstr "搜尋待處理請求"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1011
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1013
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1081
|
||||
msgid "Search Permissions..."
|
||||
msgstr "搜尋權限..."
|
||||
@@ -16132,7 +16153,7 @@ msgstr "傳送代碼"
|
||||
|
||||
#: src/components/channel/dm/DMWelcomeSection.tsx:112
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:272
|
||||
#: src/components/modals/UserProfileModal.tsx:1290
|
||||
#: src/components/modals/UserProfileModal.tsx:1292
|
||||
msgid "Send Friend Request"
|
||||
msgstr "傳送好友邀請"
|
||||
|
||||
@@ -16666,7 +16687,7 @@ msgstr "先顯示最相關的訊息"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:266
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:181
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:422
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:418
|
||||
msgid "Show My Own Camera"
|
||||
msgstr "顯示自己的鏡頭"
|
||||
|
||||
@@ -16684,7 +16705,7 @@ msgstr "顯示新裝置提示視窗"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:273
|
||||
#: src/components/uikit/ContextMenu/VoiceParticipantContextMenu.tsx:188
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:430
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:426
|
||||
msgid "Show Non-Video Participants"
|
||||
msgstr "顯示非視訊參與者"
|
||||
|
||||
@@ -16845,7 +16866,7 @@ msgstr "所有人的靜音通話"
|
||||
msgid "Simulates having a Stripe customer ID (for testing purchase history access)"
|
||||
msgstr "模擬具有 Stripe 客戶 ID(供測試購買紀錄存取)"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Single column"
|
||||
msgstr "單欄"
|
||||
@@ -17037,7 +17058,7 @@ msgid "Something went wrong and the app crashed. Try reloading or resetting the
|
||||
msgstr "發生錯誤導致應用程式當機。請嘗試重新載入或重設應用程式。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:308
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:340
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:342
|
||||
msgid "Something went wrong while loading the audit log."
|
||||
msgstr "載入稽核記錄時發生錯誤。"
|
||||
|
||||
@@ -17138,6 +17159,13 @@ msgstr "說話訊息"
|
||||
msgid "Speak normally into your microphone. You should hear yourself through your speakers. The level should stay in the green \"Good\" or yellow \"Optimal\" range."
|
||||
msgstr "請正常對著麥克風說話。您應該能從喇叭聽到自己的聲音,音量應保持在綠色「良好」或黃色「最佳」範圍。"
|
||||
|
||||
#. placeholder {0}: device.deviceId.slice(0, 8)
|
||||
#. placeholder {0}: deviceId.slice(0, 8)
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:121
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:233
|
||||
msgid "Speaker {0}"
|
||||
msgstr "喇叭 {0}"
|
||||
|
||||
#: src/components/modals/tabs/VoiceTab.tsx:114
|
||||
msgid "Speaker {shortDeviceId}"
|
||||
msgstr "揚聲器 {shortDeviceId}"
|
||||
@@ -17242,13 +17270,13 @@ msgid "Start Sharing"
|
||||
msgstr "開始分享"
|
||||
|
||||
#: src/components/channel/ChannelHeader/CallButtons.tsx:160
|
||||
#: src/components/modals/UserProfileModal.tsx:1109
|
||||
#: src/components/modals/UserProfileModal.tsx:1111
|
||||
#: 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:1100
|
||||
#: src/components/modals/UserProfileModal.tsx:1102
|
||||
#: src/components/uikit/ContextMenu/items/CallMenuItems.tsx:60
|
||||
msgid "Start Voice Call"
|
||||
msgstr "開始語音通話"
|
||||
@@ -17594,17 +17622,17 @@ msgstr "在上一個社群與私人訊息之間切換"
|
||||
msgid "Switch Device"
|
||||
msgstr "切換裝置"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to comfy layout"
|
||||
msgstr "切換到舒適佈局"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1024
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1026
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1093
|
||||
msgid "Switch to dense layout"
|
||||
msgstr "切換到緊湊佈局"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to single column"
|
||||
msgstr "切換到單欄"
|
||||
@@ -17617,7 +17645,7 @@ msgstr "切換到這個帳號"
|
||||
msgid "Switch to This Device"
|
||||
msgstr "切換到此裝置"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1040
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1042
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1107
|
||||
msgid "Switch to two columns"
|
||||
msgstr "切換到雙欄"
|
||||
@@ -17643,8 +17671,8 @@ msgstr "同步主題"
|
||||
msgid "Sync theme across devices"
|
||||
msgstr "在裝置間同步主題"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:854
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:950
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:856
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:952
|
||||
msgid "Sync with Category"
|
||||
msgstr "與類別同步"
|
||||
|
||||
@@ -18037,14 +18065,14 @@ msgid "This channel is not marked as NSFW. Explicit content can only be sent in
|
||||
msgstr "此頻道未標示為不宜在工作場所。只有標示為 NSFW 的頻道才能傳送露骨內容。若適合請聯絡管理員將本頻道標記為 NSFW。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:847
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:943
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:849
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:945
|
||||
msgid "This channel is not synced with the parent category <0>{0}</0>."
|
||||
msgstr "此頻道尚未與母類別 <0>{0}</0> 同步。"
|
||||
|
||||
#. placeholder {0}: parentChannel?.name
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:843
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:939
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:845
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:941
|
||||
msgid "This channel is synced with the parent category <0>{0}</0>."
|
||||
msgstr "此頻道已與母類別 <0>{0}</0> 同步。"
|
||||
|
||||
@@ -18612,7 +18640,7 @@ msgstr "主題"
|
||||
msgid "Total Parsing Time:"
|
||||
msgstr "總解析時間:"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:355
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:357
|
||||
msgid "Track moderator actions across the community."
|
||||
msgstr "追蹤整個社群的版主行動。"
|
||||
|
||||
@@ -18789,7 +18817,7 @@ msgstr "調整此分類的基本設定。"
|
||||
msgid "Tweak this channel's basics."
|
||||
msgstr "調整此頻道的基本設定。"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1034
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1036
|
||||
#: src/components/modals/guildTabs/GuildRolesTab.tsx:1102
|
||||
msgid "Two columns"
|
||||
msgstr "兩欄"
|
||||
@@ -18895,7 +18923,7 @@ msgstr "無法安裝表情包"
|
||||
msgid "Unable to install sticker pack"
|
||||
msgstr "無法安裝貼圖包"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:619
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:621
|
||||
msgid "Unable to load activity logs"
|
||||
msgstr "無法載入活動紀錄"
|
||||
|
||||
@@ -18949,8 +18977,8 @@ msgstr "僅對職員可用"
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:171
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:151
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:305
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1049
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:323
|
||||
#: src/components/modals/UserProfileModal.tsx:1051
|
||||
#: src/components/uikit/ContextMenu/items/RelationshipMenuItems.tsx:230
|
||||
#: src/utils/RelationshipActionUtils.tsx:169
|
||||
msgid "Unblock"
|
||||
@@ -18963,8 +18991,8 @@ msgstr "寄送好友邀請前請先解除封鎖此用戶。"
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:180
|
||||
#: src/components/modals/tabs/BlockedUsersTab.tsx:56
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:149
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:319
|
||||
#: src/components/modals/UserProfileModal.tsx:1244
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:321
|
||||
#: src/components/modals/UserProfileModal.tsx:1246
|
||||
#: src/utils/RelationshipActionUtils.tsx:167
|
||||
msgid "Unblock User"
|
||||
msgstr "解除封鎖用戶"
|
||||
@@ -19760,7 +19788,7 @@ msgstr "使用安全金鑰"
|
||||
msgid "Use system locale for time format"
|
||||
msgstr "使用系統語系的時間格式"
|
||||
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:998
|
||||
#: src/components/modals/channelTabs/ChannelPermissionsTab.tsx:1000
|
||||
msgid "Use these buttons to quickly set all permissions."
|
||||
msgstr "使用這些按鈕可快速設定所有權限。"
|
||||
|
||||
@@ -19840,11 +19868,11 @@ msgid "User Moved Channel"
|
||||
msgstr "使用者移動頻道"
|
||||
|
||||
#: src/components/modals/tabs/ComponentGalleryTab/InputsTab.tsx:133
|
||||
#: src/components/modals/UserProfileModal.tsx:945
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
msgid "User Profile"
|
||||
msgstr "使用者資料"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:947
|
||||
#: src/components/modals/UserProfileModal.tsx:949
|
||||
msgid "User Profile: {tag}"
|
||||
msgstr "用戶檔案:{tag}"
|
||||
|
||||
@@ -20109,7 +20137,7 @@ msgid "Video"
|
||||
msgstr "影片"
|
||||
|
||||
#: src/components/channel/ChannelHeader.tsx:572
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:519
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:521
|
||||
msgid "Video Call"
|
||||
msgstr "視訊通話"
|
||||
|
||||
@@ -20135,7 +20163,7 @@ msgid "Video Quality"
|
||||
msgstr "影片品質"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:227
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:376
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:372
|
||||
msgid "Video Settings"
|
||||
msgstr "影片設定"
|
||||
|
||||
@@ -20212,7 +20240,7 @@ msgid "View Codes"
|
||||
msgstr "檢視代碼"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Community Profile"
|
||||
msgstr "檢視社群資料"
|
||||
|
||||
@@ -20231,7 +20259,7 @@ msgid "View Gift Inventory"
|
||||
msgstr "檢視禮物庫存"
|
||||
|
||||
#: src/components/modals/UserProfileActionsSheet.tsx:194
|
||||
#: src/components/modals/UserProfileModal.tsx:1087
|
||||
#: src/components/modals/UserProfileModal.tsx:1089
|
||||
msgid "View Global Profile"
|
||||
msgstr "檢視全域個人檔案"
|
||||
|
||||
@@ -20370,7 +20398,7 @@ msgstr "語音"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:288
|
||||
#: src/components/uikit/ContextMenu/items/VoiceParticipantMenuItems.tsx:135
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:442
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:438
|
||||
msgid "Voice & Video Settings"
|
||||
msgstr "語音與視訊設定"
|
||||
|
||||
@@ -20386,7 +20414,7 @@ msgstr "語音通話"
|
||||
#: src/components/bottomsheets/DMBottomSheet.tsx:421
|
||||
#: src/components/channel/ChannelHeader.tsx:562
|
||||
#: src/components/modals/guildTabs/GuildMemberActionsSheet.tsx:227
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:511
|
||||
#: src/components/modals/UserProfileMobileSheet.tsx:513
|
||||
msgid "Voice Call"
|
||||
msgstr "語音通話"
|
||||
|
||||
@@ -20460,8 +20488,8 @@ msgid "Voice Region"
|
||||
msgstr "語音區域"
|
||||
|
||||
#: src/components/bottomsheets/VoiceSettingsBottomSheets.tsx:165
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:199
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:287
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:197
|
||||
#: src/components/voice/VoiceSettingsMenus.tsx:284
|
||||
msgid "Voice Settings"
|
||||
msgstr "語音設定"
|
||||
|
||||
@@ -20844,7 +20872,7 @@ msgstr "啟用後,您可以收藏頻道,將顯示在「我的最愛」區段
|
||||
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 "啟用後,加入語音頻道需連點兩次。停用時(預設)單點即可立即加入。"
|
||||
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:610
|
||||
#: src/components/modals/guildTabs/GuildAuditLogTab.tsx:612
|
||||
msgid "When moderators begin moderating, you can moderate the moderation here."
|
||||
msgstr "當版主開始進行管理時,您可以在這裡管理管理行為。"
|
||||
|
||||
@@ -21085,7 +21113,7 @@ msgstr "您可以使用連結與 Markdown 來格式化文字。啟用 <0/> 後
|
||||
msgid "You can't add new reactions while you're on timeout."
|
||||
msgstr "您在冷卻期間無法新增反應。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1171
|
||||
#: src/components/modals/UserProfileModal.tsx:1173
|
||||
msgid "You can't befriend yourself"
|
||||
msgstr "您無法與自己成為朋友"
|
||||
|
||||
@@ -21100,8 +21128,8 @@ msgstr "您無法在搜尋結果中與反應互動,以免干擾時空連續體
|
||||
msgid "You can't join while you're on timeout."
|
||||
msgstr "您在冷卻期間無法加入。"
|
||||
|
||||
#: src/components/modals/UserProfileModal.tsx:1183
|
||||
#: src/components/popouts/UserProfilePopout.tsx:282
|
||||
#: src/components/modals/UserProfileModal.tsx:1185
|
||||
#: src/components/popouts/UserProfilePopout.tsx:284
|
||||
#: src/components/profile/ProfilePreview.tsx:284
|
||||
msgid "You can't message yourself"
|
||||
msgstr "您無法傳送訊息給自己"
|
||||
|
||||
Reference in New Issue
Block a user