diff --git a/.changeset/hungry-meals-grin.md b/.changeset/hungry-meals-grin.md new file mode 100644 index 0000000000000..43e7243842dc2 --- /dev/null +++ b/.changeset/hungry-meals-grin.md @@ -0,0 +1,6 @@ +--- +'@rocket.chat/meteor': patch +'@rocket.chat/i18n': patch +--- + +add some missing translations for sound names and font sizes diff --git a/apps/meteor/client/providers/CustomSoundProvider/lib/helpers.ts b/apps/meteor/client/providers/CustomSoundProvider/lib/helpers.ts index 48e955e5dc2ce..a81e0bdb85115 100644 --- a/apps/meteor/client/providers/CustomSoundProvider/lib/helpers.ts +++ b/apps/meteor/client/providers/CustomSoundProvider/lib/helpers.ts @@ -8,20 +8,42 @@ export const getCustomSoundURL = (sound: ICustomSound) => { return getAssetUrl(`/custom-sounds/${sound._id}.${sound.extension}`, { _dc: sound.random || 0 }); }; +// Translation keys for sound names +export const soundTranslationKeys: Record = { + 'chime': 'Sound_Chime', + 'door': 'Sound_Door', + 'beep': 'Sound_Beep', + 'chelle': 'Sound_Chelle', + 'ding': 'Sound_Ding', + 'droplet': 'Sound_Droplet', + 'highbell': 'Sound_Highbell', + 'seasons': 'Sound_Seasons', + 'telephone': 'Sound_Telephone', + 'outbound-call-ringing': 'Sound_Outbound_Call_Ringing', + 'call-ended': 'Sound_Call_Ended', + 'dialtone': 'Sound_Dialtone', + 'ringtone': 'Sound_Ringtone', +}; + export const defaultSounds: ICustomSound[] = [ - { _id: 'chime', name: 'Chime', extension: 'mp3', src: getAssetUrl('sounds/chime.mp3') }, - { _id: 'door', name: 'Door', extension: 'mp3', src: getAssetUrl('sounds/door.mp3') }, - { _id: 'beep', name: 'Beep', extension: 'mp3', src: getAssetUrl('sounds/beep.mp3') }, - { _id: 'chelle', name: 'Chelle', extension: 'mp3', src: getAssetUrl('sounds/chelle.mp3') }, - { _id: 'ding', name: 'Ding', extension: 'mp3', src: getAssetUrl('sounds/ding.mp3') }, - { _id: 'droplet', name: 'Droplet', extension: 'mp3', src: getAssetUrl('sounds/droplet.mp3') }, - { _id: 'highbell', name: 'Highbell', extension: 'mp3', src: getAssetUrl('sounds/highbell.mp3') }, - { _id: 'seasons', name: 'Seasons', extension: 'mp3', src: getAssetUrl('sounds/seasons.mp3') }, - { _id: 'telephone', name: 'Telephone', extension: 'mp3', src: getAssetUrl('sounds/telephone.mp3') }, - { _id: 'outbound-call-ringing', name: 'Outbound Call Ringing', extension: 'mp3', src: getAssetUrl('sounds/outbound-call-ringing.mp3') }, - { _id: 'call-ended', name: 'Call Ended', extension: 'mp3', src: getAssetUrl('sounds/call-ended.mp3') }, - { _id: 'dialtone', name: 'Dialtone', extension: 'mp3', src: getAssetUrl('sounds/dialtone.mp3') }, - { _id: 'ringtone', name: 'Ringtone', extension: 'mp3', src: getAssetUrl('sounds/ringtone.mp3') }, + { _id: 'chime', name: 'Sound_Chime', extension: 'mp3', src: getAssetUrl('sounds/chime.mp3') }, + { _id: 'door', name: 'Sound_Door', extension: 'mp3', src: getAssetUrl('sounds/door.mp3') }, + { _id: 'beep', name: 'Sound_Beep', extension: 'mp3', src: getAssetUrl('sounds/beep.mp3') }, + { _id: 'chelle', name: 'Sound_Chelle', extension: 'mp3', src: getAssetUrl('sounds/chelle.mp3') }, + { _id: 'ding', name: 'Sound_Ding', extension: 'mp3', src: getAssetUrl('sounds/ding.mp3') }, + { _id: 'droplet', name: 'Sound_Droplet', extension: 'mp3', src: getAssetUrl('sounds/droplet.mp3') }, + { _id: 'highbell', name: 'Sound_Highbell', extension: 'mp3', src: getAssetUrl('sounds/highbell.mp3') }, + { _id: 'seasons', name: 'Sound_Seasons', extension: 'mp3', src: getAssetUrl('sounds/seasons.mp3') }, + { _id: 'telephone', name: 'Sound_Telephone', extension: 'mp3', src: getAssetUrl('sounds/telephone.mp3') }, + { + _id: 'outbound-call-ringing', + name: 'Sound_Outbound_Call_Ringing', + extension: 'mp3', + src: getAssetUrl('sounds/outbound-call-ringing.mp3'), + }, + { _id: 'call-ended', name: 'Sound_Call_Ended', extension: 'mp3', src: getAssetUrl('sounds/call-ended.mp3') }, + { _id: 'dialtone', name: 'Sound_Dialtone', extension: 'mp3', src: getAssetUrl('sounds/dialtone.mp3') }, + { _id: 'ringtone', name: 'Sound_Ringtone', extension: 'mp3', src: getAssetUrl('sounds/ringtone.mp3') }, ]; export const formatVolume = (volume: number) => { diff --git a/apps/meteor/client/views/account/accessibility/AccessibilityPage.tsx b/apps/meteor/client/views/account/accessibility/AccessibilityPage.tsx index a53bec579c18b..6f268ced24192 100644 --- a/apps/meteor/client/views/account/accessibility/AccessibilityPage.tsx +++ b/apps/meteor/client/views/account/accessibility/AccessibilityPage.tsx @@ -143,7 +143,7 @@ const AccessibilityPage = () => { control={control} name='fontSize' render={({ field: { onChange, value } }) => ( - )} /> diff --git a/apps/meteor/client/views/account/accessibility/fontSizes.ts b/apps/meteor/client/views/account/accessibility/fontSizes.ts index fbfd44e7d4799..45b5c20b2de8e 100644 --- a/apps/meteor/client/views/account/accessibility/fontSizes.ts +++ b/apps/meteor/client/views/account/accessibility/fontSizes.ts @@ -1,9 +1,12 @@ import type { SelectOption } from '@rocket.chat/fuselage'; +import type { TranslationKey } from '@rocket.chat/ui-contexts'; -export const fontSizes: SelectOption[] = [ - [`${(14 / 16) * 100}%`, 'Small'], - ['100%', 'Default'], - [`${(18 / 16) * 100}%`, 'Medium'], - [`${(20 / 16) * 100}%`, 'Large'], - [`${(24 / 16) * 100}%`, 'Extra large'], +type TranslationFunction = (key: TranslationKey) => string; + +export const fontSizes = (t: TranslationFunction): SelectOption[] => [ + [`${(14 / 16) * 100}%`, t('Font_Small')], + ['100%', t('Font_Default')], + [`${(18 / 16) * 100}%`, t('Font_Medium')], + [`${(20 / 16) * 100}%`, t('Font_Large')], + [`${(24 / 16) * 100}%`, t('Font_Extra_large')], ]; diff --git a/apps/meteor/client/views/account/preferences/PreferencesSoundSection.tsx b/apps/meteor/client/views/account/preferences/PreferencesSoundSection.tsx index 1f1883a5fcd96..96f0a445d9a19 100644 --- a/apps/meteor/client/views/account/preferences/PreferencesSoundSection.tsx +++ b/apps/meteor/client/views/account/preferences/PreferencesSoundSection.tsx @@ -1,5 +1,6 @@ import type { SelectOption } from '@rocket.chat/fuselage'; import { AccordionItem, Field, FieldGroup, FieldHint, FieldLabel, FieldRow, Select, Slider, ToggleSwitch } from '@rocket.chat/fuselage'; +import type { TranslationKey } from '@rocket.chat/ui-contexts'; import { useCustomSound, useTranslation } from '@rocket.chat/ui-contexts'; import { useId } from 'react'; import { Controller, useFormContext } from 'react-hook-form'; @@ -8,7 +9,7 @@ const PreferencesSoundSection = () => { const t = useTranslation(); const customSound = useCustomSound(); - const soundsList: SelectOption[] = customSound.list?.map((value) => [value._id, value.name]) || []; + const soundsList: SelectOption[] = customSound.list?.map((value) => [value._id, t(value.name as TranslationKey)]) || []; const { control, watch } = useFormContext(); const { newMessageNotification, notificationsSoundVolume = 100, masterVolume = 100, voipRingerVolume = 100 } = watch(); diff --git a/packages/i18n/src/locales/ar.i18n.json b/packages/i18n/src/locales/ar.i18n.json index 0af0ce3d1ae09..0d1d1fbdbcb0c 100644 --- a/packages/i18n/src/locales/ar.i18n.json +++ b/packages/i18n/src/locales/ar.i18n.json @@ -1579,6 +1579,11 @@ "Field_removed": "تمت إزالة الحقل", "Field_required": "حقل مطلوب", "File": "الملف", + "Font_Default": "افتراضي", + "Font_Extra_large": "كبير جداً", + "Font_Large": "كبير", + "Font_Medium": "متوسط", + "Font_Small": "صغير", "FileSize_Bytes": "{{fileSize}} بايت", "FileSize_KB": "{{fileSize}} كيلوبايت", "FileSize_MB": "{{fileSize}} ميجابايت", @@ -3468,7 +3473,20 @@ "Sort_By": "فرز حسب", "Sort_by_activity": "فرز حسب النشاط", "Sound": "الصوت", + "Sound_Beep": "صوت تنبيه", + "Sound_Call_Ended": "انتهت المكالمة", + "Sound_Chelle": "شيلي", + "Sound_Chime": "نغمة", + "Sound_Dialtone": "نغمة الطلب", + "Sound_Ding": "دينغ", + "Sound_Door": "باب", + "Sound_Droplet": "قطرة", "Sound_File_mp3": "ملف الصوت (mp3)", + "Sound_Highbell": "جرس عالي", + "Sound_Outbound_Call_Ringing": "مكالمة صادرة", + "Sound_Ringtone": "نغمة الرنين", + "Sound_Seasons": "مواسم", + "Sound_Telephone": "هاتف", "Source": "المصدر", "Star": "تمييز بنجمة", "Star_Message": "تمييز الرسالة بنجمة", diff --git a/packages/i18n/src/locales/de.i18n.json b/packages/i18n/src/locales/de.i18n.json index 761a6eac1040e..1f5f799eeacc4 100644 --- a/packages/i18n/src/locales/de.i18n.json +++ b/packages/i18n/src/locales/de.i18n.json @@ -1753,6 +1753,11 @@ "Field_removed": "Feld entfernt", "Field_required": "Feld erforderlich", "File": "Datei", + "Font_Default": "Standard", + "Font_Extra_large": "Sehr groß", + "Font_Large": "Groß", + "Font_Medium": "Mittel", + "Font_Small": "Klein", "FileSize_Bytes": "{{fileSize}} Bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3860,8 +3865,21 @@ "Sort_By": "Sortieren nach", "Sort_by_activity": "Nach Aktivität sortieren", "Sound": "Ton", + "Sound_Beep": "Piepton", + "Sound_Call_Ended": "Anruf beendet", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Glockenspiel", + "Sound_Dialtone": "Wählton", + "Sound_Ding": "Ding", + "Sound_Door": "Tür", + "Sound_Droplet": "Tropfen", "Sound File": "Ton-Datei", "Sound_File_mp3": "Ton-Datei (.mp3)", + "Sound_Highbell": "Hohe Glocke", + "Sound_Outbound_Call_Ringing": "Ausgehender Anruf", + "Sound_Ringtone": "Klingelton", + "Sound_Seasons": "Jahreszeiten", + "Sound_Telephone": "Telefon", "Source": "Quelle", "Speakers": "Lautsprecher", "Star": "Favorisieren", diff --git a/packages/i18n/src/locales/en.i18n.json b/packages/i18n/src/locales/en.i18n.json index 8c196d14444e6..9b134dac289aa 100644 --- a/packages/i18n/src/locales/en.i18n.json +++ b/packages/i18n/src/locales/en.i18n.json @@ -2126,6 +2126,11 @@ "Field_removed": "Field removed", "Field_required": "Field required", "File": "File", + "Font_Default": "Default", + "Font_Extra_large": "Extra Large", + "Font_Large": "Large", + "Font_Medium": "Medium", + "Font_Small": "Small", "FileSize_Bytes": "{{fileSize}} Bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -4797,7 +4802,20 @@ "Sorting_mechanism": "Sorting mechanism", "Sound": "Sound", "Sound File": "Sound File", + "Sound_Beep": "Beep", + "Sound_Call_Ended": "Call Ended", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Chime", + "Sound_Dialtone": "Dialtone", + "Sound_Ding": "Ding", + "Sound_Door": "Door", + "Sound_Droplet": "Droplet", "Sound_File_mp3": "Sound File (mp3)", + "Sound_Highbell": "Highbell", + "Sound_Outbound_Call_Ringing": "Outbound Call Ringing", + "Sound_Ringtone": "Ringtone", + "Sound_Seasons": "Seasons", + "Sound_Telephone": "Telephone", "Sounds": "Sounds", "Source": "Source", "Speaker": "Speaker", diff --git a/packages/i18n/src/locales/es.i18n.json b/packages/i18n/src/locales/es.i18n.json index ba9fcb91a3375..a60f5a23f7e60 100644 --- a/packages/i18n/src/locales/es.i18n.json +++ b/packages/i18n/src/locales/es.i18n.json @@ -1597,6 +1597,11 @@ "Field_removed": "Campo eliminado", "Field_required": "Campo obligatorio", "File": "Archivo", + "Font_Default": "Predeterminado", + "Font_Extra_large": "Muy grande", + "Font_Large": "Grande", + "Font_Medium": "Mediano", + "Font_Small": "Pequeño", "FileSize_Bytes": "{{fileSize}} bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3558,7 +3563,20 @@ "Sort_By": "Ordenar por", "Sort_by_activity": "Ordenar por actividad", "Sound": "Sonido", + "Sound_Beep": "Pitido", + "Sound_Call_Ended": "Llamada terminada", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Campanilla", + "Sound_Dialtone": "Tono de marcar", + "Sound_Ding": "Ding", + "Sound_Door": "Puerta", + "Sound_Droplet": "Gota", "Sound_File_mp3": "Archivo de sonido (mp3)", + "Sound_Highbell": "Campana alta", + "Sound_Outbound_Call_Ringing": "Llamada saliente", + "Sound_Ringtone": "Tono de llamada", + "Sound_Seasons": "Estaciones", + "Sound_Telephone": "Teléfono", "Source": "Fuente", "Star": "Destacar", "Star_Message": "Destacar mensaje", diff --git a/packages/i18n/src/locales/fi.i18n.json b/packages/i18n/src/locales/fi.i18n.json index d4469401a10f2..c3168eade51f1 100644 --- a/packages/i18n/src/locales/fi.i18n.json +++ b/packages/i18n/src/locales/fi.i18n.json @@ -1804,6 +1804,11 @@ "Field_removed": "Kenttä poistettu", "Field_required": "Kenttä pakollinen", "File": "Tiedosto", + "Font_Default": "Oletus", + "Font_Extra_large": "Erittäin suuri", + "Font_Large": "Suuri", + "Font_Medium": "Keskikokoinen", + "Font_Small": "Pieni", "FileSize_Bytes": "{{fileSize}} tavua", "FileSize_KB": "{{fileSize}} kt", "FileSize_MB": "{{fileSize}} Mt", @@ -3996,8 +4001,21 @@ "Sort_by_activity": "Lajittelu toiminnan mukaan", "Sorting_mechanism": "Lajittelumekanismi", "Sound": "Ääni", + "Sound_Beep": "Piippaus", + "Sound_Call_Ended": "Puhelu päättyi", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Kello", + "Sound_Dialtone": "Valintaääni", + "Sound_Ding": "Ding", + "Sound_Door": "Ovi", + "Sound_Droplet": "Pisara", "Sound File": "Äänitiedosto", "Sound_File_mp3": "Äänitiedosto (mp3)", + "Sound_Highbell": "Korkea kello", + "Sound_Outbound_Call_Ringing": "Lähtevä puhelu", + "Sound_Ringtone": "Soittoääni", + "Sound_Seasons": "Vuodenajat", + "Sound_Telephone": "Puhelin", "Source": "Lähde", "Speakers": "Kaiuttimet", "Star": "Tähti", diff --git a/packages/i18n/src/locales/fr.i18n.json b/packages/i18n/src/locales/fr.i18n.json index 92693ca899ab1..f445d58e03ac3 100644 --- a/packages/i18n/src/locales/fr.i18n.json +++ b/packages/i18n/src/locales/fr.i18n.json @@ -1575,6 +1575,11 @@ "Field_removed": "Champ supprimé", "Field_required": "Champ requis", "File": "Fichier", + "Font_Default": "Par défaut", + "Font_Extra_large": "Très grande", + "Font_Large": "Grande", + "Font_Medium": "Moyenne", + "Font_Small": "Petite", "FileSize_Bytes": "{{fileSize}} octets", "FileSize_KB": "{{fileSize}} ko", "FileSize_MB": "{{fileSize}} Mo", @@ -3469,7 +3474,20 @@ "Sort_By": "Trier par", "Sort_by_activity": "Trier par activité", "Sound": "Son", + "Sound_Beep": "Bip", + "Sound_Call_Ended": "Appel terminé", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Carillon", + "Sound_Dialtone": "Tonalité", + "Sound_Ding": "Ding", + "Sound_Door": "Porte", + "Sound_Droplet": "Goutte", "Sound_File_mp3": "Fichier audio (mp3)", + "Sound_Highbell": "Cloche haute", + "Sound_Outbound_Call_Ringing": "Appel sortant", + "Sound_Ringtone": "Sonnerie", + "Sound_Seasons": "Saisons", + "Sound_Telephone": "Téléphone", "Source": "Source", "Star": "Étoiler", "Star_Message": "Étoiler le message", diff --git a/packages/i18n/src/locales/hi-IN.i18n.json b/packages/i18n/src/locales/hi-IN.i18n.json index 1512f05887efc..ce7ff94d34978 100644 --- a/packages/i18n/src/locales/hi-IN.i18n.json +++ b/packages/i18n/src/locales/hi-IN.i18n.json @@ -1879,6 +1879,11 @@ "Field_removed": "फ़ील्ड हटा दिया गया", "Field_required": "आवश्यक क्षेत्र", "File": "फ़ाइल", + "Font_Default": "डिफ़ॉल्ट", + "Font_Extra_large": "बहुत बड़ा", + "Font_Large": "बड़ा", + "Font_Medium": "मध्यम", + "Font_Small": "छोटा", "FileSize_Bytes": "{{fileSize}} बाइट्स", "FileSize_KB": "{{fileSize}} केबी", "FileSize_MB": "{{fileSize}} एमबी", @@ -4267,8 +4272,21 @@ "Sort_by_activity": "गतिविधि के आधार पर क्रमबद्ध करें", "Sorting_mechanism": "छँटाई तंत्र", "Sound": "आवाज़", + "Sound_Beep": "बीप", + "Sound_Call_Ended": "कॉल समाप्त", + "Sound_Chelle": "चेले", + "Sound_Chime": "घंटी", + "Sound_Dialtone": "डायल टोन", + "Sound_Ding": "डिंग", + "Sound_Door": "दरवाजा", + "Sound_Droplet": "बूंद", "Sound File": "ध्वनि फ़ाइल", "Sound_File_mp3": "ध्वनि फ़ाइल (एमपी3)", + "Sound_Highbell": "ऊंची घंटी", + "Sound_Outbound_Call_Ringing": "आउटबाउंड कॉल रिंगिंग", + "Sound_Ringtone": "रिंगटोन", + "Sound_Seasons": "सीज़न", + "Sound_Telephone": "टेलीफोन", "Sounds": "ध्वनि", "Source": "स्रोत", "Speakers": "वक्ताओं", diff --git a/packages/i18n/src/locales/hu.i18n.json b/packages/i18n/src/locales/hu.i18n.json index 29aa66536be40..e768c826fd123 100644 --- a/packages/i18n/src/locales/hu.i18n.json +++ b/packages/i18n/src/locales/hu.i18n.json @@ -1721,6 +1721,11 @@ "Field_removed": "Mező eltávolítva", "Field_required": "Kötelező mező", "File": "Fájl", + "Font_Default": "Alapértelmezett", + "Font_Extra_large": "Nagyon nagy", + "Font_Large": "Nagy", + "Font_Medium": "Közepes", + "Font_Small": "Kicsi", "FileSize_Bytes": "{{fileSize}} bájt", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3761,8 +3766,21 @@ "Sort_By": "Rendezési sorrend", "Sort_by_activity": "Rendezés tevékenység szerint", "Sound": "Hang", + "Sound_Beep": "Síp", + "Sound_Call_Ended": "Hívás befejeződött", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Csengő", + "Sound_Dialtone": "Tárcsahang", + "Sound_Ding": "Ding", + "Sound_Door": "Ajtó", + "Sound_Droplet": "Csepp", "Sound File": "Hangfájl", "Sound_File_mp3": "Hangfájl (mp3)", + "Sound_Highbell": "Magas csengő", + "Sound_Outbound_Call_Ringing": "Kimenő hívás csörgése", + "Sound_Ringtone": "Csengőhang", + "Sound_Seasons": "Évszakok", + "Sound_Telephone": "Telefon", "Source": "Forrás", "Speakers": "Hangszórók", "Star": "Csillagozás", diff --git a/packages/i18n/src/locales/it.i18n.json b/packages/i18n/src/locales/it.i18n.json index 832dc71e80b16..6ee3e5a1bfc29 100644 --- a/packages/i18n/src/locales/it.i18n.json +++ b/packages/i18n/src/locales/it.i18n.json @@ -1186,6 +1186,11 @@ "Field_removed": "Campo rimosso", "Field_required": "Campo richiesto", "File": "File", + "Font_Default": "Predefinito", + "Font_Extra_large": "Molto grande", + "Font_Large": "Grande", + "Font_Medium": "Medio", + "Font_Small": "Piccolo", "FileSize_Bytes": "{{fileSize}} byte", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -2482,7 +2487,20 @@ "Sort": "Ordinare", "Sort_by_activity": "Ordina per attività", "Sound": "Suoni", + "Sound_Beep": "Beep", + "Sound_Call_Ended": "Chiamata terminata", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Suoneria", + "Sound_Dialtone": "Tono di composizione", + "Sound_Ding": "Ding", + "Sound_Door": "Porta", + "Sound_Droplet": "Gocciolina", "Sound_File_mp3": "File sonoro (mp3)", + "Sound_Highbell": "Campana alta", + "Sound_Outbound_Call_Ringing": "Chiamata in uscita", + "Sound_Ringtone": "Suoneria", + "Sound_Seasons": "Stagioni", + "Sound_Telephone": "Telefono", "Sounds": "Suoni", "Star": "Aggiungi ai preferiti", "Star_Message": "Evidenzia messaggio", diff --git a/packages/i18n/src/locales/ja.i18n.json b/packages/i18n/src/locales/ja.i18n.json index 1f75ee3e048b0..41adc06e2a06a 100644 --- a/packages/i18n/src/locales/ja.i18n.json +++ b/packages/i18n/src/locales/ja.i18n.json @@ -1558,6 +1558,11 @@ "Field_removed": "フィールドが削除されました", "Field_required": "必要なフィールド", "File": "ファイル", + "Font_Default": "デフォルト", + "Font_Extra_large": "特大", + "Font_Large": "大", + "Font_Medium": "中", + "Font_Small": "小", "FileSize_Bytes": "{{fileSize}}バイト", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3440,7 +3445,20 @@ "Sort_By": "並べ替え方法", "Sort_by_activity": "アクティビティで並べ替え", "Sound": "サウンド", + "Sound_Beep": "ビープ音", + "Sound_Call_Ended": "通話終了", + "Sound_Chelle": "シェル", + "Sound_Chime": "チャイム", + "Sound_Dialtone": "ダイヤルトーン", + "Sound_Ding": "ディング", + "Sound_Door": "ドア", + "Sound_Droplet": "水滴", "Sound_File_mp3": "サウンドファイル(mp3)", + "Sound_Highbell": "ハイベル", + "Sound_Outbound_Call_Ringing": "発信呼び出し音", + "Sound_Ringtone": "着信音", + "Sound_Seasons": "シーズンズ", + "Sound_Telephone": "電話", "Source": "ソース", "Star": "スター", "Star_Message": "メッセージにスターを付ける", diff --git a/packages/i18n/src/locales/ka-GE.i18n.json b/packages/i18n/src/locales/ka-GE.i18n.json index 3a0d80020a6ae..9d076c1929bac 100644 --- a/packages/i18n/src/locales/ka-GE.i18n.json +++ b/packages/i18n/src/locales/ka-GE.i18n.json @@ -1255,6 +1255,11 @@ "Field_removed": "ველი ამოღებულია", "Field_required": "ველი მოითხოვება", "File": "ფაილი", + "Font_Default": "სტანდარტული", + "Font_Extra_large": "ძალიან დიდი", + "Font_Large": "დიდი", + "Font_Medium": "საშუალო", + "Font_Small": "პატარა", "FileSize_Bytes": "{{fileSize}} ბაიტი", "FileSize_KB": "{{fileSize}} კილობაიტი", "FileSize_MB": "{{fileSize}} მეგაბაიტი", @@ -2697,7 +2702,20 @@ "Sort_By": "დალაგება __-ის მიხედვით", "Sort_by_activity": "დალაგება აქტივობის მიხედვით", "Sound": "ხმა", + "Sound_Beep": "ბიპი", + "Sound_Call_Ended": "ზარი დასრულდა", + "Sound_Chelle": "ჩელე", + "Sound_Chime": "ზარი", + "Sound_Dialtone": "ნომრის აკრეფის ტონი", + "Sound_Ding": "დინგი", + "Sound_Door": "კარი", + "Sound_Droplet": "წვეთი", "Sound_File_mp3": "ხმოვანი ფაილი (mp3)", + "Sound_Highbell": "მაღალი ზარი", + "Sound_Outbound_Call_Ringing": "გამავალი ზარი", + "Sound_Ringtone": "ზარის ტონი", + "Sound_Seasons": "სეზონები", + "Sound_Telephone": "ტელეფონი", "Star": "ვარსკვლავი", "Star_Message": "შეტყობინების ვარსკვლავით მონიშვნა", "Starred_Messages": "ვარსკვლავით მონიშნული შეტყობინებები", diff --git a/packages/i18n/src/locales/nb.i18n.json b/packages/i18n/src/locales/nb.i18n.json index 7e36eb5fec297..f5fc8049ebbb3 100644 --- a/packages/i18n/src/locales/nb.i18n.json +++ b/packages/i18n/src/locales/nb.i18n.json @@ -2117,6 +2117,11 @@ "Field_removed": "Felt fjernet", "Field_required": "Felt kreves", "File": "Fil", + "Font_Default": "Standard", + "Font_Extra_large": "Ekstra stor", + "Font_Large": "Stor", + "Font_Medium": "Middels", + "Font_Small": "Liten", "FileSize_Bytes": "{{fileSize}} Bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -4781,8 +4786,21 @@ "Sort_by_activity": "Sorter etter aktivitet", "Sorting_mechanism": "Sorteringsmekanisme", "Sound": "Lyd", + "Sound_Beep": "Pip", + "Sound_Call_Ended": "Anrop avsluttet", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Klokke", + "Sound_Dialtone": "Ringetone", + "Sound_Ding": "Ding", + "Sound_Door": "Dør", + "Sound_Droplet": "Dråpe", "Sound File": "Lydfil", "Sound_File_mp3": "Lydfil (mp3)", + "Sound_Highbell": "Høy klokke", + "Sound_Outbound_Call_Ringing": "Utgående anrop ringer", + "Sound_Ringtone": "Ringetone", + "Sound_Seasons": "Årstider", + "Sound_Telephone": "Telefon", "Sounds": "Lyder", "Source": "Kilde", "Speaker": "Høyttaler", diff --git a/packages/i18n/src/locales/nl.i18n.json b/packages/i18n/src/locales/nl.i18n.json index 752ff3c899fd9..4c48da7da99db 100644 --- a/packages/i18n/src/locales/nl.i18n.json +++ b/packages/i18n/src/locales/nl.i18n.json @@ -1570,6 +1570,11 @@ "Field_removed": "Veld verwijderd", "Field_required": "Veld vereist", "File": "Bestand", + "Font_Default": "Standaard", + "Font_Extra_large": "Extra groot", + "Font_Large": "Groot", + "Font_Medium": "Gemiddeld", + "Font_Small": "Klein", "FileSize_Bytes": "{{fileSize}} bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3463,7 +3468,20 @@ "Sort_By": "Sorteer op", "Sort_by_activity": "Sorteren op activiteit", "Sound": "Geluid", + "Sound_Beep": "Piep", + "Sound_Call_Ended": "Gesprek beëindigd", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Klokkenspel", + "Sound_Dialtone": "Kiestoon", + "Sound_Ding": "Ding", + "Sound_Door": "Deur", + "Sound_Droplet": "Druppel", "Sound_File_mp3": "Geluidsbestand (mp3)", + "Sound_Highbell": "Hoge bel", + "Sound_Outbound_Call_Ringing": "Uitgaande oproep", + "Sound_Ringtone": "Beltoon", + "Sound_Seasons": "Seizoenen", + "Sound_Telephone": "Telefoon", "Source": "Bron", "Star": "Voeg aan favorieten toe", "Star_Message": "Markeer bericht", diff --git a/packages/i18n/src/locales/nn.i18n.json b/packages/i18n/src/locales/nn.i18n.json index 97b4eea6ea503..895aa36a64aa0 100644 --- a/packages/i18n/src/locales/nn.i18n.json +++ b/packages/i18n/src/locales/nn.i18n.json @@ -2092,6 +2092,11 @@ "Field_removed": "Felt fjernet", "Field_required": "Felt kreves", "File": "Fil", + "Font_Default": "Standard", + "Font_Extra_large": "Ekstra stor", + "Font_Large": "Stor", + "Font_Medium": "Middels", + "Font_Small": "Liten", "FileSize_Bytes": "{{fileSize}} Bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -4559,8 +4564,21 @@ "Sort_by_activity": "Sorter etter aktivitet", "Sorting_mechanism": "Sorteringsmekanisme", "Sound": "Lyd", + "Sound_Beep": "Pip", + "Sound_Call_Ended": "Anrop avslutta", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Klokke", + "Sound_Dialtone": "Ringetone", + "Sound_Ding": "Ding", + "Sound_Door": "Dør", + "Sound_Droplet": "Dråpe", "Sound File": "Lydfil", "Sound_File_mp3": "Lydfil (mp3)", + "Sound_Highbell": "Høg klokke", + "Sound_Outbound_Call_Ringing": "Utgåande anrop ring", + "Sound_Ringtone": "Ringetone", + "Sound_Seasons": "Årstider", + "Sound_Telephone": "Telefon", "Sounds": "Lyder", "Source": "Kilde", "Speaker": "Høyttaler", diff --git a/packages/i18n/src/locales/pl.i18n.json b/packages/i18n/src/locales/pl.i18n.json index 874821cce4c20..6870b48c83729 100644 --- a/packages/i18n/src/locales/pl.i18n.json +++ b/packages/i18n/src/locales/pl.i18n.json @@ -1732,6 +1732,11 @@ "Field_removed": "Pole usunięte", "Field_required": "Pole wymagane", "File": "Plik", + "Font_Default": "Domyślny", + "Font_Extra_large": "Bardzo duży", + "Font_Large": "Duży", + "Font_Medium": "Średni", + "Font_Small": "Mały", "FileSize_Bytes": "{{fileSize}} Bajty", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -3768,8 +3773,21 @@ "Sort_By": "Sortuj po", "Sort_by_activity": "Sortuj według aktywności", "Sound": "Dźwięk", + "Sound_Beep": "Sygnał dźwiękowy", + "Sound_Call_Ended": "Połączenie zakończone", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Dzwonek", + "Sound_Dialtone": "Sygnał wybierania", + "Sound_Ding": "Ding", + "Sound_Door": "Drzwi", + "Sound_Droplet": "Kropla", "Sound File": "Plik dźwiękowy", "Sound_File_mp3": "Plik dźwiękowy (mp3)", + "Sound_Highbell": "Wysoki dzwon", + "Sound_Outbound_Call_Ringing": "Połączenie wychodzące", + "Sound_Ringtone": "Dzwonek", + "Sound_Seasons": "Pory roku", + "Sound_Telephone": "Telefon", "Source": "Źródło", "Speakers": "Głośniki", "Star": "Oznacz gwiazdką", diff --git a/packages/i18n/src/locales/pt-BR.i18n.json b/packages/i18n/src/locales/pt-BR.i18n.json index 979705fa546c7..7d3f024e7c90d 100644 --- a/packages/i18n/src/locales/pt-BR.i18n.json +++ b/packages/i18n/src/locales/pt-BR.i18n.json @@ -2120,6 +2120,11 @@ "Field_removed": "Campo removido", "Field_required": "Campo obrigatório", "File": "Arquivo", + "Font_Default": "Padrão", + "Font_Extra_large": "Extra Grande", + "Font_Large": "Grande", + "Font_Medium": "Médio", + "Font_Small": "Pequeno", "FileSize_Bytes": "{{fileSize}} bytes", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -4775,7 +4780,20 @@ "Sorting_mechanism": "Mecanismo de classificação", "Sound": "Som", "Sound File": "Arquivo de som", + "Sound_Beep": "Bipe", + "Sound_Call_Ended": "Chamada Encerrada", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Carrilhão", + "Sound_Dialtone": "Tom de Discagem", + "Sound_Ding": "Ding", + "Sound_Door": "Porta", + "Sound_Droplet": "Gotinha", "Sound_File_mp3": "Arquivo de som (mp3)", + "Sound_Highbell": "Sino Alto", + "Sound_Outbound_Call_Ringing": "Chamada de Saída Tocando", + "Sound_Ringtone": "Toque", + "Sound_Seasons": "Estações", + "Sound_Telephone": "Telefone", "Sounds": "Sons", "Source": "Fonte", "Speaker": "Alto falante", diff --git a/packages/i18n/src/locales/ru.i18n.json b/packages/i18n/src/locales/ru.i18n.json index ecfabb6a6b562..3e22ebafb01b4 100644 --- a/packages/i18n/src/locales/ru.i18n.json +++ b/packages/i18n/src/locales/ru.i18n.json @@ -1681,6 +1681,11 @@ "Field_removed": "Поле удалено", "Field_required": "Обязательное поле", "File": "Файл", + "Font_Default": "По умолчанию", + "Font_Extra_large": "Очень крупный", + "Font_Large": "Крупный", + "Font_Medium": "Средний", + "Font_Small": "Мелкий", "FileSize_Bytes": "{{fileSize}} байт", "FileSize_KB": "{{fileSize}} КБ", "FileSize_MB": "{{fileSize}} МБ", @@ -3605,7 +3610,20 @@ "Sort_By": "Сортировать по", "Sort_by_activity": "Сортировать по активности", "Sound": "Звуковые оповещения", + "Sound_Beep": "Гудок", + "Sound_Call_Ended": "Вызов завершен", + "Sound_Chelle": "Челле", + "Sound_Chime": "Колокольчик", + "Sound_Dialtone": "Гудок набора", + "Sound_Ding": "Динг", + "Sound_Door": "Дверь", + "Sound_Droplet": "Капля", "Sound_File_mp3": "Звуковой файл (mp3)", + "Sound_Highbell": "Высокий колокол", + "Sound_Outbound_Call_Ringing": "Исходящий вызов", + "Sound_Ringtone": "Мелодия звонка", + "Sound_Seasons": "Времена года", + "Sound_Telephone": "Телефон", "Source": "Источник", "Star": "Избранное", "Star_Message": "Отметить сообщение", diff --git a/packages/i18n/src/locales/sv.i18n.json b/packages/i18n/src/locales/sv.i18n.json index c96a03bed89ab..fe7eb4e94555c 100644 --- a/packages/i18n/src/locales/sv.i18n.json +++ b/packages/i18n/src/locales/sv.i18n.json @@ -2115,6 +2115,11 @@ "Field_removed": "Fältet borttaget", "Field_required": "Fält krävs", "File": "Fil", + "Font_Default": "Standard", + "Font_Extra_large": "Extra stor", + "Font_Large": "Stor", + "Font_Medium": "Medel", + "Font_Small": "Liten", "FileSize_Bytes": "{{fileSize}} byte", "FileSize_KB": "{{fileSize}} KB", "FileSize_MB": "{{fileSize}} MB", @@ -4248,6 +4253,7 @@ "Require_password_change": "Kräv byte av lösenord", "Required": "Krävs", "Required_action": "Obligatorisk åtgärd", + "Required_field": "Obligatoriskt fält", "Requires_subscription_add-on": "Kräver tilläggsprenumeration", "Resend_verification_email": "Skicka verifieringsemail igen", "Resend_welcome_email": "Skicka ett nytt välkomstmeddelande", @@ -4763,7 +4769,20 @@ "Sorting_mechanism": "Sorteringsmekanism", "Sound": "Ljud", "Sound File": "Ljudfil", + "Sound_Beep": "Pip", + "Sound_Call_Ended": "Samtal avslutat", + "Sound_Chelle": "Chelle", + "Sound_Chime": "Ringklocka", + "Sound_Dialtone": "Kopplingston", + "Sound_Ding": "Ding", + "Sound_Door": "Dörr", + "Sound_Droplet": "Droppe", "Sound_File_mp3": "Ljudfil (mp3)", + "Sound_Highbell": "Hög klocka", + "Sound_Outbound_Call_Ringing": "Utgående samtal ringer", + "Sound_Ringtone": "Ringsignal", + "Sound_Seasons": "Årstider", + "Sound_Telephone": "Telefon", "Sounds": "Ljud", "Source": "Källa", "Speaker": "Högtalare",