From 7086fe1ba0d776f52a4cd67e4dd41ba914c5bebd Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 25 Sep 2024 09:22:17 +1000 Subject: [PATCH 01/17] Number of small Xcode 16 build fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Renamed an init which matched a private API so triggered a store submission warning • Fixed a unit test build issue in Xcode 16 • Updated the LintLocalizableStrings updatePermissionStrings output to be sorted (so it doesn't change every time) • Moved the 'Ensure InfoPlist.xcstrings updated' build step to the Session target --- Scripts/LintLocalizableStrings.swift | 2 +- Session.xcodeproj/project.pbxproj | 7 +++++-- Session/Meta/Translations/InfoPlist.xcstrings | 2 +- SessionUtilitiesKit/Configuration.swift | 4 ++-- SignalUtilitiesKit/Configuration.swift | 2 +- _SharedTestUtilities/NimbleExtensions.swift | 2 +- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Scripts/LintLocalizableStrings.swift b/Scripts/LintLocalizableStrings.swift index 6161f6b3f..71eebf0ee 100755 --- a/Scripts/LintLocalizableStrings.swift +++ b/Scripts/LintLocalizableStrings.swift @@ -264,7 +264,7 @@ enum ScriptAction: String { return } - if let data: Data = try? JSONSerialization.data(withJSONObject: updatedInfoPlistJSON, options: [ .fragmentsAllowed ]) { + if let data: Data = try? JSONSerialization.data(withJSONObject: updatedInfoPlistJSON, options: [ .fragmentsAllowed, .sortedKeys ]) { do { try data.write(to: URL(fileURLWithPath: projectState.infoPlistLocalizationFile.path), options: [.atomic]) } catch { diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index 1515f6cc3..5f70370e8 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -4634,7 +4634,6 @@ FD5E93D52C12D8120038C25A /* Add Commit Hash To Build Info Plist */, FD5E93D72C12DA400038C25A /* Add App Group To Build Info Plist */, FDC498C12AC1775400EDD897 /* Ensure Localizable.strings included */, - 943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */, ); buildRules = ( ); @@ -4777,6 +4776,7 @@ FDD82C422A2085B900425F05 /* Add Commit Hash To Build Info Plist */, FD5E93D32C12D3990038C25A /* Add App Group To Build Info Plist */, FDC498BF2AC1747900EDD897 /* Ensure Localizable.strings included */, + FD0B1FA92CA3805C00F60F46 /* Ensure InfoPlist.xcstrings updated */, ); buildRules = ( ); @@ -5263,7 +5263,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */ = { + FD0B1FA92CA3805C00F60F46 /* Ensure InfoPlist.xcstrings updated */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -5301,6 +5301,7 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "INFO_PLIST=\"${TARGET_BUILD_DIR}\"/\"${INFOPLIST_PATH}\"\nENTITLEMENTS_FILE=\"${SRCROOT}/${CODE_SIGN_ENTITLEMENTS}\"\n\n# Wait for Info.plist to be processed\nwhile [[ ! -f \"${INFO_PLIST}\" ]] && [[ ! -f \"${ENTITLEMENTS_FILE}\" ]]; do\n echo \"Waiting for plist and entitlements to be copied\"\n sleep 1\ndone\n\n# Query and save the value; suppress any error message, if key not found.\nvalue=$(/usr/libexec/PlistBuddy -c 'print :AppGroupsId' \"${INFO_PLIST}\" 2>/dev/null)\n\n# Check if value is empty\nif [ -z \"$value\" ] \nthen\n /usr/libexec/PlistBuddy -c \"Add :AppGroupsId string\" \"${INFO_PLIST}\"\nfi\n\napp_group_id=$(xmllint --xpath 'string(//key[.=\"com.apple.security.application-groups\"]/following-sibling::array/string)' \"$ENTITLEMENTS_FILE\")\n\n/usr/libexec/PlistBuddy -c \"Set :AppGroupsId ${app_group_id}\" \"${INFO_PLIST}\"\n"; + showEnvVarsInLog = 0; }; FD5E93D42C12D3CB0038C25A /* Add Commit Hash To Build Info Plist */ = { isa = PBXShellScriptBuildPhase; @@ -5364,6 +5365,7 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "INFO_PLIST=\"${TARGET_BUILD_DIR}\"/\"${INFOPLIST_PATH}\"\nENTITLEMENTS_FILE=\"${SRCROOT}/${CODE_SIGN_ENTITLEMENTS}\"\n\n# Wait for Info.plist to be processed\nwhile [[ ! -f \"${INFO_PLIST}\" ]] && [[ ! -f \"${ENTITLEMENTS_FILE}\" ]]; do\n echo \"Waiting for plist and entitlements to be copied\"\n sleep 1\ndone\n\n# Query and save the value; suppress any error message, if key not found.\nvalue=$(/usr/libexec/PlistBuddy -c 'print :AppGroupsId' \"${INFO_PLIST}\" 2>/dev/null)\n\n# Check if value is empty\nif [ -z \"$value\" ] \nthen\n /usr/libexec/PlistBuddy -c \"Add :AppGroupsId string\" \"${INFO_PLIST}\"\nfi\n\napp_group_id=$(xmllint --xpath 'string(//key[.=\"com.apple.security.application-groups\"]/following-sibling::array/string)' \"$ENTITLEMENTS_FILE\")\n\n/usr/libexec/PlistBuddy -c \"Set :AppGroupsId ${app_group_id}\" \"${INFO_PLIST}\"\n"; + showEnvVarsInLog = 0; }; FD5E93D72C12DA400038C25A /* Add App Group To Build Info Plist */ = { isa = PBXShellScriptBuildPhase; @@ -5505,6 +5507,7 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "INFO_PLIST=\"${TARGET_BUILD_DIR}\"/\"${INFOPLIST_PATH}\"\n\n# Wait for Info.plist to be processed\nwhile [[ ! -f \"${INFO_PLIST}\" ]]; do\n echo \"Waiting for plist to be copied\"\n sleep 1\ndone\n\n# Query and save the value; suppress any error message, if key not found.\nvalue=$(/usr/libexec/PlistBuddy -c 'print :GitCommitHash' \"${INFO_PLIST}\" 2>/dev/null)\n\n# Check if value is empty\nif [ -z \"$value\" ] \nthen\n /usr/libexec/PlistBuddy -c \"Add :GitCommitHash string\" \"${INFO_PLIST}\"\nfi\n\n/usr/libexec/PlistBuddy -c \"Set :GitCommitHash `git rev-parse --short=7 HEAD`\" \"${INFO_PLIST}\"\n"; + showEnvVarsInLog = 0; }; FDE7214D287E50820093DF33 /* Lint Localizable.strings */ = { isa = PBXShellScriptBuildPhase; diff --git a/Session/Meta/Translations/InfoPlist.xcstrings b/Session/Meta/Translations/InfoPlist.xcstrings index 5c8246869..460bb18a0 100644 --- a/Session/Meta/Translations/InfoPlist.xcstrings +++ b/Session/Meta/Translations/InfoPlist.xcstrings @@ -1 +1 @@ -{"sourceLanguage":"en","version":"1.0","strings":{"NSHumanReadableCopyright":{"comment":"Copyright (human-readable)","localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}},"extractionState":"extracted_with_value"},"NSCameraUsageDescription":{"extractionState":"manual","localizations":{"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova."}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة."}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya kamera hewce dike da ku wêneyên û vedîdarên twist bike, an QR kodên scanner bike."}},"sr-CS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"hi":{"stringUnit":{"state":"translated","value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։"}},"da":{"stringUnit":{"value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。"}},"en":{"stringUnit":{"value":"Session needs camera access to take photos and videos, or scan QR codes.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови.","state":"translated"}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa camera upang kumuha ng litrato at video, o mag-scan ng mga QR code.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди."}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov."}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu."}},"km":{"stringUnit":{"value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"hu":{"stringUnit":{"value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి."}},"fr":{"stringUnit":{"value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og video, eller skanne QR-koder.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове."}},"vi":{"stringUnit":{"value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"cy":{"stringUnit":{"value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder."}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes."}},"pl":{"stringUnit":{"value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}}}},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"state":"new","value":""}}},"comment":"Get Info string"},"NSPhotoLibraryAddUsageDescription":{"localizations":{"sr":{"stringUnit":{"value":"Session треба приступ складишту да сачува прилоге и медије.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다."}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"ta":{"stringUnit":{"value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją."}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang i-save ang mga attachment at media."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینەی فایل بۆ هەڵگرتنی پەیوەستەکان و میدیا ناردن"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"bal":{"stringUnit":{"value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias."}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia."}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media."}},"et":{"stringUnit":{"value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限来保存附件和媒体。"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"hi":{"stringUnit":{"value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限以保存附件和媒體。","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina xelasî û medyayê hewce dike."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan."}},"he":{"stringUnit":{"value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k úložisku na uloženie príloh a médií.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"bn":{"stringUnit":{"state":"translated","value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to save attachments and media.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om aanhegsels en media te stoor."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"ms":{"stringUnit":{"value":"Session memerlukan akses storan untuk menyimpan lampiran dan media.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}}},"extractionState":"manual"},"NSPhotoLibraryUsageDescription":{"localizations":{"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینە بۆ ناردنی وێنە و ڤیدیۆکان."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir."}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om foto's en video's te stuur."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí."}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer."}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限來發送照片和影片。","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang mag-send ng mga larawan at video."}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}},"da":{"stringUnit":{"value":"Session har brug for lageradgang for at sende billeder og videoer.","state":"translated"}},"fr":{"stringUnit":{"value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina wêneyên û vedîdarên bişîne."}},"it":{"stringUnit":{"value":"Session richiede l'accesso all'archiviazione per inviare foto e video.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci."}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to send photos and videos."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos."}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za slanje slika i videa.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за складиште да шаље слике и видео клипове."}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus."}},"ps":{"stringUnit":{"state":"translated","value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso de almacenamiento para enviar fotos y videos.","state":"translated"}}},"extractionState":"manual"},"CFBundleName":{"localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value","comment":"Bundle name"},"New Message":{},"NSFaceIDUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"ka":{"stringUnit":{"state":"translated","value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს"}},"el":{"stringUnit":{"value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"vi":{"stringUnit":{"value":"Tính năng khóa màn hình trên Session sử dụng Face ID.","state":"translated"}},"tl":{"stringUnit":{"value":"Ang feature ng screen lock sa Session ay gumagamit ng Face ID.","state":"translated"}},"sr":{"stringUnit":{"value":"Функција закључавања екрана на Session користи Face ID.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"bg":{"stringUnit":{"value":"Функцията за заключване на екрана в Session използва Face ID.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"fil":{"stringUnit":{"state":"translated","value":"Ang screen lock feature ng Session ay gumagamit ng Face ID."}},"th":{"stringUnit":{"value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"ny":{"stringUnit":{"state":"translated","value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID."}},"ca":{"stringUnit":{"state":"translated","value":"La funció de bloqueig de pantalla en Session utilitza Face ID."}},"fa":{"stringUnit":{"value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Funkcija zaklepanja zaslona na Session uporablja Face ID."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session的屏幕锁功能使用 Face ID。"}},"ne-NP":{"stringUnit":{"value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।","state":"translated"}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"hr":{"stringUnit":{"value":"Funkcija zaključavanja zaslona na Session koristi Face ID.","state":"translated"}},"az":{"stringUnit":{"value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID."}},"uk":{"stringUnit":{"value":"Функція блокування екрана в Session використовує Face ID.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"La función de pantalla bloqueada en Session usa Face ID."}},"no":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"kmr":{"stringUnit":{"state":"translated","value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike."}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"km":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session ekraaniluku funktsioon kasutab Face ID-d."}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"ms":{"stringUnit":{"state":"translated","value":"Ciri kunci skrin pada Session menggunakan Face ID."}},"lt":{"stringUnit":{"state":"translated","value":"Ekrano užraktas Session naudoja Face ID."}},"pt-BR":{"stringUnit":{"value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial.","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Funcția de blocare a ecranului din Session folosește Face ID."}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"nl":{"stringUnit":{"value":"De vergrendelfunctie op Session gebruikt Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"be":{"stringUnit":{"state":"translated","value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID."}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Die Bildschirmsperrfunktion von Session verwendet Face ID."}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"ar":{"stringUnit":{"value":"ميزة قفل الشاشة على Session تستخدم Face ID.","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"sw":{"stringUnit":{"value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"id":{"stringUnit":{"state":"translated","value":"Fitur kunci layar pada Session menggunakan Face ID."}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"he":{"stringUnit":{"value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi."}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Skärmlåsfunktionen på Session använder Face ID."}},"ku":{"stringUnit":{"state":"translated","value":"فەرمۆن جێگیرکردنی تابلەکردنی سکرین ناستەوەی Session پێی ئەنجامدەدرێت."}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"es-ES":{"stringUnit":{"state":"translated","value":"La función de bloqueo de pantalla en Session usa Face ID."}}},"extractionState":"manual"},"CFBundleDisplayName":{"localizations":{"en":{"stringUnit":{"state":"new","value":"Session"}}},"extractionState":"extracted_with_value","comment":"Bundle display name"},"NSMicrophoneUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain.","state":"translated"}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"ny":{"stringUnit":{"value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень."}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session ng access sa mikropono upang makagawa ng mga tawag at mag-record ng mga mensaheng audio.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం."}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike."}},"no":{"stringUnit":{"value":"Session trenger mikrofontilgang for å foreta samtaler og ta opp lydmeldinger.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger."}},"mn":{"stringUnit":{"value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze."}},"ne-NP":{"stringUnit":{"value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session دەتوانێت بەکارهێنانی داده‌یەکیی وەکو پەیوەستەکان بکات بۆ پەیوەندیش"}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio."}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"az":{"stringUnit":{"state":"translated","value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes.","state":"translated"}},"sr-CS":{"stringUnit":{"value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke.","state":"translated"}},"pl":{"stringUnit":{"value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"hi":{"stringUnit":{"value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"fr":{"stringUnit":{"value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio."}},"hr":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"nb":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser."}},"ps":{"stringUnit":{"state":"translated","value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري."}}},"extractionState":"manual"},"NSAppleMusicUsageDescription":{"extractionState":"manual","localizations":{"pt-PT":{"stringUnit":{"value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။"}},"es-ES":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios.","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler."}},"id":{"stringUnit":{"value":"Session membutuhkan Apple Music untuk memutar lampiran media.","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує використовувати Apple Music для відтворення медіавкладень."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger Apple Music for å spille av media-vedlegg."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ."}},"ku":{"stringUnit":{"value":"Session پێویستە بە پارێزمەنیی ژمارەی تەلەفۆنەکان بۆ بەکردنەوەی هەموو پەیوەستەکان.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid."}},"ms":{"stringUnit":{"state":"translated","value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media."}},"az":{"stringUnit":{"value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります"}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"ps":{"stringUnit":{"state":"translated","value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي."}},"tr":{"stringUnit":{"value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs to use Apple Music to play media attachments."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"xh":{"stringUnit":{"state":"translated","value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"bn":{"stringUnit":{"state":"translated","value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔"}},"eu":{"stringUnit":{"value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka."}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"fr":{"stringUnit":{"value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias.","state":"translated"}},"pl":{"stringUnit":{"value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов.","state":"translated"}},"fil":{"stringUnit":{"value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir anexos multimedia.","state":"translated"}},"cy":{"stringUnit":{"value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session na gumamit ng Apple Music para mag-play ng mga media attachment.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari."}},"ha":{"stringUnit":{"value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh.","state":"translated"}},"da":{"stringUnit":{"value":"Session skal bruge Apple Music for at afspille medievedhæftninger.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"si-LK":{"stringUnit":{"state":"translated","value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用 Apple Music 來播放媒體附件。","state":"translated"}},"nl":{"stringUnit":{"value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session må bruke Apple Music for å spille medievedlegg."}}}}}} \ No newline at end of file +{"sourceLanguage":"en","version":"1.0","strings":{"NSAppleMusicUsageDescription":{"localizations":{"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios."}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports."}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує використовувати Apple Music для відтворення медіавкладень.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು.","state":"translated"}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"fr":{"stringUnit":{"value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda."}},"fil":{"stringUnit":{"state":"translated","value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment."}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"ps":{"stringUnit":{"value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي.","state":"translated"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen."}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ."}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"xh":{"stringUnit":{"value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya.","state":"translated"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります"}},"ne-NP":{"stringUnit":{"value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων.","state":"translated"}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir anexos multimedia.","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"bn":{"stringUnit":{"value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់"}},"si-LK":{"stringUnit":{"value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia.","state":"translated"}},"sq":{"stringUnit":{"value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။","state":"translated"}},"sr-RS":{"stringUnit":{"value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir."}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"mn":{"stringUnit":{"value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй.","state":"translated"}},"hr":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"et":{"stringUnit":{"value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid.","state":"translated"}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko."}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh."}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"da":{"stringUnit":{"state":"translated","value":"Session skal bruge Apple Music for at afspille medievedhæftninger."}},"ta":{"stringUnit":{"state":"translated","value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்."}},"nn-NO":{"stringUnit":{"value":"Session trenger Apple Music for å spille av media-vedlegg.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan Apple Music untuk memutar lampiran media.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari.","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"bg":{"stringUnit":{"value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове.","state":"translated"}},"cy":{"stringUnit":{"value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs to use Apple Music to play media attachments.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用 Apple Music 來播放媒體附件。"}},"hy-AM":{"stringUnit":{"value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen."}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"ms":{"stringUnit":{"value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов."}},"pl":{"stringUnit":{"state":"translated","value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music."}}},"extractionState":"manual"},"NSFaceIDUsageDescription":{"extractionState":"manual","localizations":{"ms":{"stringUnit":{"value":"Ciri kunci skrin pada Session menggunakan Face ID.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Tính năng khóa màn hình trên Session sử dụng Face ID."}},"ny":{"stringUnit":{"state":"translated","value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID."}},"kn":{"stringUnit":{"value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।"}},"ro":{"stringUnit":{"state":"translated","value":"Funcția de blocare a ecranului din Session folosește Face ID."}},"bg":{"stringUnit":{"state":"translated","value":"Функцията за заключване на екрана в Session използва Face ID."}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session的屏幕锁功能使用 Face ID。"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"ka":{"stringUnit":{"value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს","state":"translated"}},"sr":{"stringUnit":{"value":"Функција закључавања екрана на Session користи Face ID.","state":"translated"}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"sv-SE":{"stringUnit":{"value":"Skärmlåsfunktionen på Session använder Face ID.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"nl":{"stringUnit":{"state":"translated","value":"De vergrendelfunctie op Session gebruikt Face ID."}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"el":{"stringUnit":{"value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session의 화면 잠금 기능은 Face ID를 사용합니다."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"af":{"stringUnit":{"value":"Die skermsluitfunksie op Session gebruik Face ID.","state":"translated"}},"ca":{"stringUnit":{"value":"La funció de bloqueig de pantalla en Session utilitza Face ID.","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"be":{"stringUnit":{"value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"lg":{"stringUnit":{"state":"translated","value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID."}},"he":{"stringUnit":{"state":"translated","value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים."}},"bn":{"stringUnit":{"value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Veçoria e mbylljes së ekranit në Session përdor Face ID."}},"pt-BR":{"stringUnit":{"state":"translated","value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial."}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"sw":{"stringUnit":{"state":"translated","value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID."}},"ku":{"stringUnit":{"state":"translated","value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike."}},"sr-RS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"cs":{"stringUnit":{"state":"translated","value":"Funkce zamčení obrazovky Session používá Face ID."}},"hr":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja zaslona na Session koristi Face ID."}},"sl":{"stringUnit":{"value":"Funkcija zaklepanja zaslona na Session uporablja Face ID.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි.","state":"translated"}},"eo":{"stringUnit":{"value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"fil":{"stringUnit":{"value":"Ang screen lock feature ng Session ay gumagamit ng Face ID.","state":"translated"}},"ru":{"stringUnit":{"value":"Функция блокировки экрана в Session использует Face ID.","state":"translated"}},"pl":{"stringUnit":{"value":"Funkcja blokady ekranu w aplikacji Session używa Face ID.","state":"translated"}},"lt":{"stringUnit":{"state":"translated","value":"Ekrano užraktas Session naudoja Face ID."}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"uk":{"stringUnit":{"state":"translated","value":"Функція блокування екрана в Session використовує Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"et":{"stringUnit":{"value":"Session ekraaniluku funktsioon kasutab Face ID-d.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir."}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"fa":{"stringUnit":{"state":"translated","value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند."}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"km":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"ar":{"stringUnit":{"state":"translated","value":"ميزة قفل الشاشة على Session تستخدم Face ID."}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"de":{"stringUnit":{"value":"Die Bildschirmsperrfunktion von Session verwendet Face ID.","state":"translated"}},"es-419":{"stringUnit":{"value":"La función de pantalla bloqueada en Session usa Face ID.","state":"translated"}},"en":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"es-ES":{"stringUnit":{"value":"La función de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"id":{"stringUnit":{"value":"Fitur kunci layar pada Session menggunakan Face ID.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"uz":{"stringUnit":{"value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi.","state":"translated"}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"th":{"stringUnit":{"state":"translated","value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID"}},"fr":{"stringUnit":{"state":"translated","value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID."}},"nb":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 上的螢幕鎖功能使用 Face ID。"}}}},"CFBundleName":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"comment":"Bundle name"},"NSMicrophoneUsageDescription":{"extractionState":"manual","localizations":{"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"bal":{"stringUnit":{"state":"translated","value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت"}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu."}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio."}},"af":{"stringUnit":{"state":"translated","value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem."}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ.","state":"translated"}},"az":{"stringUnit":{"value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir.","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio."}},"hi":{"stringUnit":{"state":"translated","value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।"}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"mn":{"stringUnit":{"value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"fa":{"stringUnit":{"state":"translated","value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки."}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại.","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень.","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger."}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio."}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"eu":{"stringUnit":{"value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti.","state":"translated"}},"ms":{"stringUnit":{"value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn."}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"te":{"stringUnit":{"value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"kn":{"stringUnit":{"value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"it":{"stringUnit":{"value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv."}},"da":{"stringUnit":{"value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser.","state":"translated"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"nn-NO":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения."}},"ps":{"stringUnit":{"value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري.","state":"translated"}},"uz":{"stringUnit":{"value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად.","state":"translated"}}}},"NSPhotoLibraryAddUsageDescription":{"localizations":{"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za spremanje privitaka i medija."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina xelasî û medyayê hewce dike."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"uz":{"stringUnit":{"value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限以保存附件和媒體。","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"es-419":{"stringUnit":{"value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限来保存附件和媒体。","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для збереження вкладень та медіа.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar."}},"af":{"stringUnit":{"value":"Session het berging toegang nodig om aanhegsels en media te stoor.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern."}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media.","state":"translated"}},"bn":{"stringUnit":{"value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"it":{"stringUnit":{"value":"Session richiede l'accesso allo storage per salvare allegati e media.","state":"translated"}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menyimpan lampiran dan media."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup k úložisku na uloženie príloh a médií."}},"ko":{"stringUnit":{"state":"translated","value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다."}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to save attachments and media."}},"lv":{"stringUnit":{"value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau.","state":"translated"}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia."}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"az":{"stringUnit":{"value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias."}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"bal":{"stringUnit":{"value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے","state":"translated"}},"hi":{"stringUnit":{"state":"translated","value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å lagre vedlegg og media.","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"ta":{"stringUnit":{"state":"translated","value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை."}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Session треба приступ складишту да сачува прилоге и медије."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"te":{"stringUnit":{"value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط."}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה."}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}}},"extractionState":"manual"},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","comment":"Get Info string","localizations":{"en":{"stringUnit":{"state":"new","value":""}}}},"NSPhotoLibraryUsageDescription":{"localizations":{"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"bn":{"stringUnit":{"value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري."}},"mn":{"stringUnit":{"value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй.","state":"translated"}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para enviar fotos y videos."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video.","state":"translated"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za slanje slika i videa.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"fa":{"stringUnit":{"value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos.","state":"translated"}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа.","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video."}},"km":{"stringUnit":{"value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ.","state":"translated"}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso all'archiviazione per inviare foto e video."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად.","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"ta":{"stringUnit":{"value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to send photos and videos.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn.","state":"translated"}},"af":{"stringUnit":{"value":"Session het berging toegang nodig om foto's en video's te stuur.","state":"translated"}},"te":{"stringUnit":{"value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi."}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov.","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ."}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar."}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session har brug for lageradgang for at sende billeder og videoer."}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за складиште да шаље слике и видео клипове.","state":"translated"}},"sr-RS":{"stringUnit":{"value":"Session treba pristup skladištu da šalje fotografije i videe.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"ku":{"stringUnit":{"value":"Session permiya hilkişina wêneyên û vedîdarên bişîne.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema.","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí.","state":"translated"}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos."}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限來發送照片和影片。","state":"translated"}},"az":{"stringUnit":{"value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}}},"extractionState":"manual"},"NSHumanReadableCopyright":{"localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}},"comment":"Copyright (human-readable)","extractionState":"extracted_with_value"},"NSCameraUsageDescription":{"extractionState":"manual","localizations":{"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs camera access to take photos and videos, or scan QR codes."}},"cy":{"stringUnit":{"value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។"}},"ps":{"stringUnit":{"value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।"}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához."}},"hy-AM":{"stringUnit":{"value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"te":{"stringUnit":{"value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR."}},"sr-RS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes.","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди.","state":"translated"}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"nb":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar."}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"ku":{"stringUnit":{"value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة."}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar.","state":"translated"}},"fil":{"stringUnit":{"value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen."}},"eo":{"stringUnit":{"value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn.","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR."}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}},"vi":{"stringUnit":{"value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR."}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR.","state":"translated"}},"hr":{"stringUnit":{"value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。","state":"translated"}},"hi":{"stringUnit":{"value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů.","state":"translated"}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"da":{"stringUnit":{"state":"translated","value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder."}},"mn":{"stringUnit":{"value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად."}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"ny":{"stringUnit":{"value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။"}},"ms":{"stringUnit":{"value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen.","state":"translated"}},"he":{"stringUnit":{"value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir."}}}},"New Message":{},"CFBundleDisplayName":{"localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value","comment":"Bundle display name"}}} \ No newline at end of file diff --git a/SessionUtilitiesKit/Configuration.swift b/SessionUtilitiesKit/Configuration.swift index 96e639971..6edc44f25 100644 --- a/SessionUtilitiesKit/Configuration.swift +++ b/SessionUtilitiesKit/Configuration.swift @@ -33,8 +33,8 @@ public enum SNUtilitiesKit: MigratableTarget { // Just to make the external API ) } - public static func configure(maxFileSize: UInt) { - SNUtilitiesKitConfiguration.maxFileSize = maxFileSize + public static func configure(networkMaxFileSize: UInt) { + SNUtilitiesKitConfiguration.maxFileSize = networkMaxFileSize } } diff --git a/SignalUtilitiesKit/Configuration.swift b/SignalUtilitiesKit/Configuration.swift index bca07926e..d2cd6914b 100644 --- a/SignalUtilitiesKit/Configuration.swift +++ b/SignalUtilitiesKit/Configuration.swift @@ -9,7 +9,7 @@ import SessionUtilitiesKit public enum Configuration { public static func performMainSetup() { // Need to do this first to ensure the legacy database exists - SNUtilitiesKit.configure(maxFileSize: UInt(Network.maxFileSize)) + SNUtilitiesKit.configure(networkMaxFileSize: UInt(Network.maxFileSize)) SNMessagingKit.configure() SNUIKit.configure() diff --git a/_SharedTestUtilities/NimbleExtensions.swift b/_SharedTestUtilities/NimbleExtensions.swift index e11a461dd..0cbe4c72d 100644 --- a/_SharedTestUtilities/NimbleExtensions.swift +++ b/_SharedTestUtilities/NimbleExtensions.swift @@ -171,7 +171,7 @@ fileprivate struct CallInfo { } } -fileprivate func generateCallInfo(_ actualExpression: Expression, _ functionBlock: @escaping (inout T) throws -> R) -> CallInfo where M: Mock { +fileprivate func generateCallInfo(_ actualExpression: Nimble.Expression, _ functionBlock: @escaping (inout T) throws -> R) -> CallInfo where M: Mock { var maybeFunction: MockFunction? var allFunctionsCalled: [FunctionConsumer.Key] = [] var desiredFunctionCalls: [String] = [] From 62f84d2c1fb49fc7b2cc71341cd07ddc00411284 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Wed, 2 Oct 2024 14:04:51 +1000 Subject: [PATCH 02/17] add script the catch licenses in SPM and generate a plist file as Acknowledgement in Settings.bundle --- Scripts/GenerateLicenses.swift | 111 + Session.xcodeproj/project.pbxproj | 23 + ...pendencies-Session-settings-metadata.plist | 1846 ----------------- Session/Meta/Settings.bundle/Root.plist | 2 +- .../Settings.bundle/ThirdPartyLicenses.plist | 1657 +++++++++++++++ Session/Meta/Translations/InfoPlist.xcstrings | 2 +- 6 files changed, 1793 insertions(+), 1848 deletions(-) create mode 100755 Scripts/GenerateLicenses.swift delete mode 100644 Session/Meta/Settings.bundle/Pods-GlobalDependencies-Session-settings-metadata.plist create mode 100644 Session/Meta/Settings.bundle/ThirdPartyLicenses.plist diff --git a/Scripts/GenerateLicenses.swift b/Scripts/GenerateLicenses.swift new file mode 100755 index 000000000..06d267f87 --- /dev/null +++ b/Scripts/GenerateLicenses.swift @@ -0,0 +1,111 @@ +#!/usr/bin/xcrun --sdk macosx swift + +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. +// +// stringlint:disable + +import Foundation + +// Get the Derived Data path and the project's name +let derivedDataPath = getDerivedDataPath() ?? "" +let projectName = ProcessInfo.processInfo.environment["PROJECT_NAME"] ?? "" +let projectPath = "\(ProcessInfo.processInfo.environment["PROJECT_DIR"] ?? FileManager.default.currentDirectoryPath)/\(projectName)" + +let packageCheckoutsPath = "\(derivedDataPath)/SourcePackages/checkouts/" +let packageArtifactsPath = "\(derivedDataPath)/SourcePackages/artifacts/" + +func getDerivedDataPath() -> String? { + // Define the regular expression pattern to extract the DerivedData path + let regexPattern = ".*DerivedData/[^/]*" + guard + let buildDir = ProcessInfo.processInfo.environment["BUILD_DIR"], + let regex = try? NSRegularExpression(pattern: regexPattern) + else { return nil } + + let range = NSRange(location: 0, length: buildDir.utf16.count) + + // Perform the regex matching + if let match = regex.firstMatch(in: buildDir, options: [], range: range) { + // Extract the matching portion (the DerivedData path) + if let range = Range(match.range, in: buildDir) { + return String(buildDir[range]) + } + } else { + print("No DerivedData path found in BUILD_DIR") + } + + return nil +} + +// Function to list all directories (Swift package checkouts) inside the SourcePackages/checkouts directory +func listDirectories(atPath path: String) -> [String] { + let fileManager = FileManager.default + do { + let items = try fileManager.contentsOfDirectory(atPath: path) + return items.filter { item in + var isDir: ObjCBool = false + let fullPath = path + "/" + item + return fileManager.fileExists(atPath: fullPath, isDirectory: &isDir) && isDir.boolValue + } + } catch { + print("Error reading contents of directory: \(error)") + return [] + } +} + +// Function to find and read LICENSE files in each package +func findLicenses(in packagesPath: String) -> [(package: String, licenseContent: String)] { + var licenses: [(package: String, licenseContent: String)] = [] + let packages: [String] = listDirectories(atPath: packagesPath) + + print("\(packages.count) packages found in \(packagesPath)") + + packages.forEach { package in + let packagePath = "\(packagesPath)/\(package)" + scanDirectory(atPath: packagePath) { filePath in + if filePath.lowercased().contains("license") || filePath.lowercased().contains("copying") { + if let licenseContent = try? String(contentsOfFile: filePath, encoding: .utf8) { + licenses.append((package, licenseContent)) + } + } + } + } + + return licenses +} + +func scanDirectory(atPath path: String, foundFile: (String) -> Void) { + if let enumerator = FileManager.default.enumerator(atPath: path) { + for case let file as String in enumerator { + let fullPath = "\(path)/\(file)" + if FileManager.default.fileExists(atPath: fullPath, isDirectory: nil) { + foundFile(fullPath) + } + } + } +} + +// Write licenses to a plist file +func writePlist(licenses: [(package: String, licenseContent: String)], outputPath: String) { + var plistArray: [[String: String]] = [] + + for license in licenses { + plistArray.append([ + "Title": license.package, + "License": license.licenseContent + ]) + } + + let plistData = try! PropertyListSerialization.data(fromPropertyList: plistArray, format: .xml, options: 0) + let plistURL = URL(fileURLWithPath: outputPath) + try? plistData.write(to: plistURL) +} + +// Execute the license discovery process +let licenses = findLicenses(in: packageCheckoutsPath) + findLicenses(in: packageArtifactsPath) + +// Specify the path for the output plist +let outputPlistPath = "\(projectPath)/Meta/Settings.bundle/ThirdPartyLicenses.plist" +writePlist(licenses: licenses, outputPath: outputPlistPath) + +print("Licenses generated successfully at \(outputPlistPath)") diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index 1515f6cc3..155838e9f 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -1383,6 +1383,7 @@ 94367C422C6C828500814252 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; 943C6D812B75E061004ACE64 /* Message+DisappearingMessages.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Message+DisappearingMessages.swift"; sourceTree = ""; }; 943C6D832B86B5F1004ACE64 /* Localization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Localization.swift; sourceTree = ""; }; + 9471CAA72CACFB4E00090FB7 /* GenerateLicenses.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GenerateLicenses.swift; sourceTree = ""; }; 9473386D2BDF5F3E00B9E169 /* InfoPlist.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = InfoPlist.xcstrings; sourceTree = ""; }; 947AD68F2C8968FF000B2730 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; 94B3DC162AF8592200C88531 /* QuoteView_SwiftUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QuoteView_SwiftUI.swift; sourceTree = ""; }; @@ -4387,6 +4388,7 @@ FDE72150287E50D50093DF33 /* LintLocalizableStrings.swift */, FD5CE3442A3C5D96001A6DE3 /* DecryptExportedKey.swift */, FDEF57642C44B8C200131302 /* ProcessIP2CountryData.swift */, + 9471CAA72CACFB4E00090FB7 /* GenerateLicenses.swift */, ); path = Scripts; sourceTree = ""; @@ -4777,6 +4779,7 @@ FDD82C422A2085B900425F05 /* Add Commit Hash To Build Info Plist */, FD5E93D32C12D3990038C25A /* Add App Group To Build Info Plist */, FDC498BF2AC1747900EDD897 /* Ensure Localizable.strings included */, + 9471CAA62CACFB0600090FB7 /* Generate Licenses Plist */, ); buildRules = ( ); @@ -5283,6 +5286,26 @@ shellScript = "\"${SRCROOT}/Scripts/LintLocalizableStrings.swift\" update\n"; showEnvVarsInLog = 0; }; + 9471CAA62CACFB0600090FB7 /* Generate Licenses Plist */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Generate Licenses Plist"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Scripts/GenerateLicenses.swift\"\n"; + showEnvVarsInLog = 0; + }; FD5E93D32C12D3990038C25A /* Add App Group To Build Info Plist */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; diff --git a/Session/Meta/Settings.bundle/Pods-GlobalDependencies-Session-settings-metadata.plist b/Session/Meta/Settings.bundle/Pods-GlobalDependencies-Session-settings-metadata.plist deleted file mode 100644 index 944297194..000000000 --- a/Session/Meta/Settings.bundle/Pods-GlobalDependencies-Session-settings-metadata.plist +++ /dev/null @@ -1,1846 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - - Title - xcbeautify - Type - PSGroupSpecifier - - - FooterText - BSD 3-Clause License - -Copyright (c) 2010-2022, Deusty, LLC -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of Deusty nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Deusty, LLC. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Title - CocoaLumberjack - Type - PSGroupSpecifier - - - FooterText - Copyright (C) 2015-2023 Gwendal Roué - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Title - GRDB.swift - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2008, ZETETIC LLC -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the ZETETIC LLC nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Title - SQLCipher - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright (c) 2014-2020, Frank Denis <j at pureftpd dot org> - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - - Title - Sodium - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2011, The WebRTC project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Title - WebRTC-lib - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - Title - DifferenceKit - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Vinh Nguyen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - Title - NVActivityIndicatorView - Type - PSGroupSpecifier - - - FooterText - This code is distributed under the terms and conditions of the MIT license. - -Copyright (c) 2014-2015 Tyler Fox - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Title - PureLayout - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2015 ibireme <ibireme@gmail.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - Title - YYImage - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - Title - libwebp - Type - PSGroupSpecifier - - - FooterText - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/> - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - {description} - Copyright (C) {year} {fullname} - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - {signature of Ty Coon}, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. - Title - Curve25519Kit - Type - PSGroupSpecifier - - - FooterText - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - - Title - OpenSSL-Universal - Type - PSGroupSpecifier - - - FooterText - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - Title - SignalCoreKit - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2010-2016 Sam Soffes, http://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Title - SAMKeychain - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## Runtime Library Exception to the Apache 2.0 License: ## - - - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. - - Title - SwiftProtobuf - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Session/Meta/Settings.bundle/Root.plist b/Session/Meta/Settings.bundle/Root.plist index 2b5fc900a..2635819a3 100644 --- a/Session/Meta/Settings.bundle/Root.plist +++ b/Session/Meta/Settings.bundle/Root.plist @@ -8,7 +8,7 @@ File - Pods-GlobalDependencies-Session-settings-metadata + ThirdPartyLicenses Title Acknowledgements Type diff --git a/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist b/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist new file mode 100644 index 000000000..0af99e17d --- /dev/null +++ b/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist @@ -0,0 +1,1657 @@ + + + + + + License + ISC License + +Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2022. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Title + lucide-icons-swift + + + License + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + Title + DifferenceKit + + + License + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Title + CwlCatchException + + + License + The MIT License (MIT) + +Copyright (c) 2016 Vinh Nguyen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + Title + NVActivityIndicatorView + + + License + BSD 3-Clause License + +Copyright (c) 2010-2024, Deusty, LLC +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of Deusty nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Deusty, LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Title + CocoaLumberjack + + + License + Copyright (C) 2014-3099 Marcin Krzyżanowski <marcin.krzyzanowski@gmail.com> +This software is provided 'as-is', without any express or implied warranty. + +In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +- The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required. +- Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. +- This notice may not be removed or altered from any source or binary distribution. +- Redistributions of any form whatsoever must retain the following acknowledgment: 'This product includes software developed by the "Marcin Krzyzanowski" (http://krzyzanowskim.com/).' + + Title + CryptoSwift + + + License + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014, Quick Team + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + Quick + + + License + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2016 Quick Team + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + Quick + + + License + The MIT License (MIT) + +Copyright (c) 2016 swiftlyfalling (https://github.com/swiftlyfalling) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + Title + session-grdb-swift + + + License + The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + * May you do good and not evil. + * May you find forgiveness for yourself and forgive others. + * May you share freely, never taking more than you give. + + Title + session-grdb-swift + + + License + /* +** LICENSE for the sqlite3 WebAssembly/JavaScript APIs. +** +** This bundle (typically released as sqlite3.js or sqlite3.mjs) +** is an amalgamation of JavaScript source code from two projects: +** +** 1) https://emscripten.org: the Emscripten "glue code" is covered by +** the terms of the MIT license and University of Illinois/NCSA +** Open Source License, as described at: +** +** https://emscripten.org/docs/introducing_emscripten/emscripten_license.html +** +** 2) https://sqlite.org: all code and documentation labeled as being +** from this source are released under the same terms as the sqlite3 +** C library: +** +** 2022-10-16 +** +** The author disclaims copyright to this source code. In place of a +** legal notice, here is a blessing: +** +** * May you do good and not evil. +** * May you find forgiveness for yourself and forgive others. +** * May you share freely, never taking more than you give. +*/ + + Title + session-grdb-swift + + + License + The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + Title + session-grdb-swift + + + License + The MIT License + +Copyright (c) 2015 - 2024 Evgenii Neumerzhitckii + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + Title + keychain-swift + + + License + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Title + CwlPreconditionTesting + + + License + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + swift-log + + + License + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +## Runtime Library Exception to the Apache 2.0 License: ## + + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. + + Title + swift-protobuf + + + License + Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + Title + libwebp-Xcode + + + License + The MIT License (MIT) + +Copyright (c) 2015 ibireme <ibireme@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + Title + session-ios-yyimage + + + License + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2016 Quick Team + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + Nimble + + + License + BSD 3-Clause License +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +Google WebRTC +Copyright (c) 2011, The WebRTC project authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Title + WebRTC + + + License + Copyright (c) 2011, The WebRTC project authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Title + webrtc + + + diff --git a/Session/Meta/Translations/InfoPlist.xcstrings b/Session/Meta/Translations/InfoPlist.xcstrings index 5c8246869..7e84bf4db 100644 --- a/Session/Meta/Translations/InfoPlist.xcstrings +++ b/Session/Meta/Translations/InfoPlist.xcstrings @@ -1 +1 @@ -{"sourceLanguage":"en","version":"1.0","strings":{"NSHumanReadableCopyright":{"comment":"Copyright (human-readable)","localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}},"extractionState":"extracted_with_value"},"NSCameraUsageDescription":{"extractionState":"manual","localizations":{"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova."}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة."}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya kamera hewce dike da ku wêneyên û vedîdarên twist bike, an QR kodên scanner bike."}},"sr-CS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"hi":{"stringUnit":{"state":"translated","value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։"}},"da":{"stringUnit":{"value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。"}},"en":{"stringUnit":{"value":"Session needs camera access to take photos and videos, or scan QR codes.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови.","state":"translated"}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa camera upang kumuha ng litrato at video, o mag-scan ng mga QR code.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди."}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov."}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu."}},"km":{"stringUnit":{"value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"hu":{"stringUnit":{"value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి."}},"fr":{"stringUnit":{"value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og video, eller skanne QR-koder.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове."}},"vi":{"stringUnit":{"value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"cy":{"stringUnit":{"value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder."}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes."}},"pl":{"stringUnit":{"value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}}}},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"state":"new","value":""}}},"comment":"Get Info string"},"NSPhotoLibraryAddUsageDescription":{"localizations":{"sr":{"stringUnit":{"value":"Session треба приступ складишту да сачува прилоге и медије.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다."}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"ta":{"stringUnit":{"value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją."}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang i-save ang mga attachment at media."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینەی فایل بۆ هەڵگرتنی پەیوەستەکان و میدیا ناردن"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"bal":{"stringUnit":{"value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias."}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia."}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media."}},"et":{"stringUnit":{"value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限来保存附件和媒体。"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"hi":{"stringUnit":{"value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限以保存附件和媒體。","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina xelasî û medyayê hewce dike."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan."}},"he":{"stringUnit":{"value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k úložisku na uloženie príloh a médií.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"bn":{"stringUnit":{"state":"translated","value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to save attachments and media.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om aanhegsels en media te stoor."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"ms":{"stringUnit":{"value":"Session memerlukan akses storan untuk menyimpan lampiran dan media.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}}},"extractionState":"manual"},"NSPhotoLibraryUsageDescription":{"localizations":{"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینە بۆ ناردنی وێنە و ڤیدیۆکان."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir."}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om foto's en video's te stuur."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí."}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer."}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限來發送照片和影片。","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang mag-send ng mga larawan at video."}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}},"da":{"stringUnit":{"value":"Session har brug for lageradgang for at sende billeder og videoer.","state":"translated"}},"fr":{"stringUnit":{"value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina wêneyên û vedîdarên bişîne."}},"it":{"stringUnit":{"value":"Session richiede l'accesso all'archiviazione per inviare foto e video.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci."}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to send photos and videos."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos."}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za slanje slika i videa.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за складиште да шаље слике и видео клипове."}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus."}},"ps":{"stringUnit":{"state":"translated","value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso de almacenamiento para enviar fotos y videos.","state":"translated"}}},"extractionState":"manual"},"CFBundleName":{"localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value","comment":"Bundle name"},"New Message":{},"NSFaceIDUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"ka":{"stringUnit":{"state":"translated","value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს"}},"el":{"stringUnit":{"value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"vi":{"stringUnit":{"value":"Tính năng khóa màn hình trên Session sử dụng Face ID.","state":"translated"}},"tl":{"stringUnit":{"value":"Ang feature ng screen lock sa Session ay gumagamit ng Face ID.","state":"translated"}},"sr":{"stringUnit":{"value":"Функција закључавања екрана на Session користи Face ID.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"bg":{"stringUnit":{"value":"Функцията за заключване на екрана в Session използва Face ID.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"fil":{"stringUnit":{"state":"translated","value":"Ang screen lock feature ng Session ay gumagamit ng Face ID."}},"th":{"stringUnit":{"value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"ny":{"stringUnit":{"state":"translated","value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID."}},"ca":{"stringUnit":{"state":"translated","value":"La funció de bloqueig de pantalla en Session utilitza Face ID."}},"fa":{"stringUnit":{"value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Funkcija zaklepanja zaslona na Session uporablja Face ID."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session的屏幕锁功能使用 Face ID。"}},"ne-NP":{"stringUnit":{"value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।","state":"translated"}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"hr":{"stringUnit":{"value":"Funkcija zaključavanja zaslona na Session koristi Face ID.","state":"translated"}},"az":{"stringUnit":{"value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID."}},"uk":{"stringUnit":{"value":"Функція блокування екрана в Session використовує Face ID.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"La función de pantalla bloqueada en Session usa Face ID."}},"no":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"kmr":{"stringUnit":{"state":"translated","value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike."}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"km":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session ekraaniluku funktsioon kasutab Face ID-d."}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"ms":{"stringUnit":{"state":"translated","value":"Ciri kunci skrin pada Session menggunakan Face ID."}},"lt":{"stringUnit":{"state":"translated","value":"Ekrano užraktas Session naudoja Face ID."}},"pt-BR":{"stringUnit":{"value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial.","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Funcția de blocare a ecranului din Session folosește Face ID."}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"nl":{"stringUnit":{"value":"De vergrendelfunctie op Session gebruikt Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"be":{"stringUnit":{"state":"translated","value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID."}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Die Bildschirmsperrfunktion von Session verwendet Face ID."}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"ar":{"stringUnit":{"value":"ميزة قفل الشاشة على Session تستخدم Face ID.","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"sw":{"stringUnit":{"value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"id":{"stringUnit":{"state":"translated","value":"Fitur kunci layar pada Session menggunakan Face ID."}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"he":{"stringUnit":{"value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi."}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Skärmlåsfunktionen på Session använder Face ID."}},"ku":{"stringUnit":{"state":"translated","value":"فەرمۆن جێگیرکردنی تابلەکردنی سکرین ناستەوەی Session پێی ئەنجامدەدرێت."}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"es-ES":{"stringUnit":{"state":"translated","value":"La función de bloqueo de pantalla en Session usa Face ID."}}},"extractionState":"manual"},"CFBundleDisplayName":{"localizations":{"en":{"stringUnit":{"state":"new","value":"Session"}}},"extractionState":"extracted_with_value","comment":"Bundle display name"},"NSMicrophoneUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain.","state":"translated"}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"ny":{"stringUnit":{"value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень."}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session ng access sa mikropono upang makagawa ng mga tawag at mag-record ng mga mensaheng audio.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం."}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike."}},"no":{"stringUnit":{"value":"Session trenger mikrofontilgang for å foreta samtaler og ta opp lydmeldinger.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger."}},"mn":{"stringUnit":{"value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze."}},"ne-NP":{"stringUnit":{"value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session دەتوانێت بەکارهێنانی داده‌یەکیی وەکو پەیوەستەکان بکات بۆ پەیوەندیش"}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio."}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"az":{"stringUnit":{"state":"translated","value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes.","state":"translated"}},"sr-CS":{"stringUnit":{"value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke.","state":"translated"}},"pl":{"stringUnit":{"value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"hi":{"stringUnit":{"value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"fr":{"stringUnit":{"value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio."}},"hr":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"nb":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser."}},"ps":{"stringUnit":{"state":"translated","value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري."}}},"extractionState":"manual"},"NSAppleMusicUsageDescription":{"extractionState":"manual","localizations":{"pt-PT":{"stringUnit":{"value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။"}},"es-ES":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios.","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler."}},"id":{"stringUnit":{"value":"Session membutuhkan Apple Music untuk memutar lampiran media.","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує використовувати Apple Music для відтворення медіавкладень."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger Apple Music for å spille av media-vedlegg."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ."}},"ku":{"stringUnit":{"value":"Session پێویستە بە پارێزمەنیی ژمارەی تەلەفۆنەکان بۆ بەکردنەوەی هەموو پەیوەستەکان.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid."}},"ms":{"stringUnit":{"state":"translated","value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media."}},"az":{"stringUnit":{"value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります"}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"ps":{"stringUnit":{"state":"translated","value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي."}},"tr":{"stringUnit":{"value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs to use Apple Music to play media attachments."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"xh":{"stringUnit":{"state":"translated","value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"bn":{"stringUnit":{"state":"translated","value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔"}},"eu":{"stringUnit":{"value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka."}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"fr":{"stringUnit":{"value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias.","state":"translated"}},"pl":{"stringUnit":{"value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов.","state":"translated"}},"fil":{"stringUnit":{"value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir anexos multimedia.","state":"translated"}},"cy":{"stringUnit":{"value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session na gumamit ng Apple Music para mag-play ng mga media attachment.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari."}},"ha":{"stringUnit":{"value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh.","state":"translated"}},"da":{"stringUnit":{"value":"Session skal bruge Apple Music for at afspille medievedhæftninger.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"si-LK":{"stringUnit":{"state":"translated","value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用 Apple Music 來播放媒體附件。","state":"translated"}},"nl":{"stringUnit":{"value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session må bruke Apple Music for å spille medievedlegg."}}}}}} \ No newline at end of file +{"version":"1.0","sourceLanguage":"en","strings":{"NSMicrophoneUsageDescription":{"localizations":{"fr":{"stringUnit":{"value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio.","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio."}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง"}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"zh-CN":{"stringUnit":{"value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。","state":"translated"}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"uz":{"stringUnit":{"value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio."}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain."}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir."}},"uk":{"stringUnit":{"value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"kn":{"stringUnit":{"value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"fa":{"stringUnit":{"state":"translated","value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد."}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"ku":{"stringUnit":{"value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike.","state":"translated"}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"bn":{"stringUnit":{"value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti."}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"mn":{"stringUnit":{"state":"translated","value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes."}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại."}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"te":{"stringUnit":{"value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar.","state":"translated"}},"hi":{"stringUnit":{"state":"translated","value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।"}},"gl":{"stringUnit":{"value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։","state":"translated"}},"sr-RS":{"stringUnit":{"value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke.","state":"translated"}},"sv-SE":{"stringUnit":{"value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden.","state":"translated"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।"}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu."}},"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ."}},"nn-NO":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}}},"extractionState":"manual"},"NSHumanReadableCopyright":{"comment":"Copyright (human-readable)","extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}}},"NSFaceIDUsageDescription":{"localizations":{"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Skärmlåsfunktionen på Session använder Face ID."}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"uk":{"stringUnit":{"state":"translated","value":"Функція блокування екрана в Session використовує Face ID."}},"sr-RS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"hi":{"stringUnit":{"value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।","state":"translated"}},"ku":{"stringUnit":{"value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session رو پیلناکردگ لاگو کردانت پاس ID."}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"id":{"stringUnit":{"value":"Fitur kunci layar pada Session menggunakan Face ID.","state":"translated"}},"es-ES":{"stringUnit":{"value":"La función de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"de":{"stringUnit":{"value":"Die Bildschirmsperrfunktion von Session verwendet Face ID.","state":"translated"}},"es-419":{"stringUnit":{"value":"La función de pantalla bloqueada en Session usa Face ID.","state":"translated"}},"ny":{"stringUnit":{"value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID.","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Функција закључавања екрана на Session користи Face ID."}},"ka":{"stringUnit":{"value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს","state":"translated"}},"fil":{"stringUnit":{"value":"Ang screen lock feature ng Session ay gumagamit ng Face ID.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"bg":{"stringUnit":{"state":"translated","value":"Функцията за заключване на екрана в Session използва Face ID."}},"lt":{"stringUnit":{"value":"Ekrano užraktas Session naudoja Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"he":{"stringUnit":{"state":"translated","value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים."}},"kn":{"stringUnit":{"value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"fa":{"stringUnit":{"value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"ca":{"stringUnit":{"state":"translated","value":"La funció de bloqueig de pantalla en Session utilitza Face ID."}},"zh-CN":{"stringUnit":{"value":"Session的屏幕锁功能使用 Face ID。","state":"translated"}},"nl":{"stringUnit":{"value":"De vergrendelfunctie op Session gebruikt Face ID.","state":"translated"}},"be":{"stringUnit":{"value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID.","state":"translated"}},"fr":{"stringUnit":{"value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"az":{"stringUnit":{"value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi."}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"km":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Funkcija zaklepanja zaslona na Session uporablja Face ID."}},"vi":{"stringUnit":{"state":"translated","value":"Tính năng khóa màn hình trên Session sử dụng Face ID."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"en":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।"}},"el":{"stringUnit":{"state":"translated","value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID."}},"ro":{"stringUnit":{"value":"Funcția de blocare a ecranului din Session folosește Face ID.","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"et":{"stringUnit":{"value":"Session ekraaniluku funktsioon kasutab Face ID-d.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"ms":{"stringUnit":{"value":"Ciri kunci skrin pada Session menggunakan Face ID.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"pt-BR":{"stringUnit":{"state":"translated","value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial."}},"da":{"stringUnit":{"state":"translated","value":"Skærmlåsfunktionen på Session bruger Face ID."}},"sw":{"stringUnit":{"state":"translated","value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID."}},"hy-AM":{"stringUnit":{"value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"A funcionalidade de bloqueio de ecrã Session usa Face ID."}},"ar":{"stringUnit":{"state":"translated","value":"ميزة قفل الشاشة على Session تستخدم Face ID."}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"hr":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja zaslona na Session koristi Face ID."}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔"}},"th":{"stringUnit":{"value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID","state":"translated"}}},"extractionState":"manual"},"NSAppleMusicUsageDescription":{"extractionState":"manual","localizations":{"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων.","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios."}},"hr":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music."}},"cy":{"stringUnit":{"state":"translated","value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau."}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує використовувати Apple Music для відтворення медіавкладень.","state":"translated"}},"zh-CN":{"stringUnit":{"value":"Session需要使用Apple Music来播放媒体附件。","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"nn-NO":{"stringUnit":{"value":"Session trenger Apple Music for å spille av media-vedlegg.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan Apple Music untuk memutar lampiran media."}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media."}},"my":{"stringUnit":{"value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid."}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia."}},"ur-IN":{"stringUnit":{"value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia."}},"bn":{"stringUnit":{"value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"xh":{"stringUnit":{"value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya.","state":"translated"}},"sq":{"stringUnit":{"value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ.","state":"translated"}},"si-LK":{"stringUnit":{"value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"az":{"stringUnit":{"state":"translated","value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir."}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir anexos multimedia."}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs to use Apple Music to play media attachments.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"sw":{"stringUnit":{"value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"eu":{"stringUnit":{"value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko.","state":"translated"}},"ku":{"stringUnit":{"value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne.","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"ja":{"stringUnit":{"value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります","state":"translated"}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"pt-BR":{"stringUnit":{"value":"Session precisa usar a Apple Music para reproduzir anexos de mídia.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用 Apple Music 來播放媒體附件。","state":"translated"}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози."}},"fil":{"stringUnit":{"value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"ps":{"stringUnit":{"state":"translated","value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي."}},"da":{"stringUnit":{"value":"Session skal bruge Apple Music for at afspille medievedhæftninger.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов."}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka."}},"he":{"stringUnit":{"value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה.","state":"translated"}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"it":{"stringUnit":{"value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali.","state":"translated"}},"te":{"stringUnit":{"value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session moet Apple Music gebruik om media-aanhegsels te speel."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"ms":{"stringUnit":{"value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา"}},"tr":{"stringUnit":{"state":"translated","value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda."}}}},"NSCameraUsageDescription":{"localizations":{"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi."}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"ca":{"stringUnit":{"value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR.","state":"translated"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs camera access to take photos and videos, or scan QR codes.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।"}},"hy-AM":{"stringUnit":{"value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։","state":"translated"}},"hr":{"stringUnit":{"value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR."}},"ru":{"stringUnit":{"value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов.","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen."}},"be":{"stringUnit":{"value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды.","state":"translated"}},"te":{"stringUnit":{"value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR."}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди.","state":"translated"}},"nb":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"he":{"stringUnit":{"value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове."}},"az":{"stringUnit":{"value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir.","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code."}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR.","state":"translated"}},"hi":{"stringUnit":{"value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"eu":{"stringUnit":{"value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder."}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。"}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}}},"extractionState":"manual"},"CFBundleDisplayName":{"comment":"Bundle display name","localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value"},"CFBundleName":{"extractionState":"extracted_with_value","comment":"Bundle name","localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}}},"NSPhotoLibraryUsageDescription":{"extractionState":"manual","localizations":{"pl":{"stringUnit":{"value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限以取用及发送照片或视频。"}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo."}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup pohrani za slanje slika i videa."}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema."}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å sende bilder og videoer."}},"ku":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina wêneyên û vedîdarên bişîne."}},"ms":{"stringUnit":{"value":"Session memerlukan akses storan untuk menghantar foto dan video.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to send photos and videos.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です","state":"translated"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"az":{"stringUnit":{"value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir.","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso all'archiviazione per inviare foto e video."}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí.","state":"translated"}},"ps":{"stringUnit":{"value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි."}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"af":{"stringUnit":{"value":"Session het berging toegang nodig om foto's en video's te stuur.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov."}},"es-419":{"stringUnit":{"value":"Session necesita acceso al almacenamiento para enviar fotos y videos.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"de":{"stringUnit":{"value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden.","state":"translated"}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video.","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para enviar fotos y videos."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez."}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要存儲權限來發送照片和影片。"}},"da":{"stringUnit":{"value":"Session har brug for lageradgang for at sende billeder og videoer.","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ."}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"bn":{"stringUnit":{"value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для отправки фотографий и видео."}},"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за складиште да шаље слике и видео клипове."}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i anfon lluniau a fideos.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}}}},"CFBundleGetInfoString":{"localizations":{"en":{"stringUnit":{"state":"new","value":""}}},"extractionState":"extracted_with_value","comment":"Get Info string"},"NSPhotoLibraryAddUsageDescription":{"extractionState":"manual","localizations":{"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev.","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"fr":{"stringUnit":{"value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias.","state":"translated"}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai."}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要存儲權限以保存附件和媒體。"}},"fa":{"stringUnit":{"value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari.","state":"translated"}},"ku":{"stringUnit":{"value":"Session permiya hilkişina xelasî û medyayê hewce dike.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern."}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба приступ складишту да сачува прилоге и медије."}},"af":{"stringUnit":{"value":"Session het berging toegang nodig om aanhegsels en media te stoor.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия."}},"ur-IN":{"stringUnit":{"value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"he":{"stringUnit":{"value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے"}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menyimpan lampiran dan media."}},"ko":{"stringUnit":{"value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup pohrani za spremanje privitaka i medija."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez."}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup k úložisku na uloženie príloh a médií."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia."}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"ta":{"stringUnit":{"state":"translated","value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。"}},"az":{"stringUnit":{"value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å lagre vedlegg og media.","state":"translated"}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media."}},"uz":{"stringUnit":{"value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限来保存附件和媒体。"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media.","state":"translated"}},"hi":{"stringUnit":{"value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to save attachments and media.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"lv":{"stringUnit":{"value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai.","state":"translated"}}}},"New Message":{}}} \ No newline at end of file From 79b98994fef18d7fcc24f99b86b060fcc19267e1 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 3 Oct 2024 09:03:28 +1000 Subject: [PATCH 03/17] Fixed a bug with return from background logs Fixed a bug where logs sent before the logger finishes setting up after returning from the background weren't getting added to the log gile --- SessionUtilitiesKit/General/Logging.swift | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/SessionUtilitiesKit/General/Logging.swift b/SessionUtilitiesKit/General/Logging.swift index eb08e5f2c..812024dc8 100644 --- a/SessionUtilitiesKit/General/Logging.swift +++ b/SessionUtilitiesKit/General/Logging.swift @@ -68,8 +68,8 @@ public enum Log { private static var pendingStartupLogs: Atomic<[LogInfo]> = Atomic([]) public static func setup(with logger: Logger) { - logger.retrievePendingStartupLogs.mutate { - $0 = { + logger.pendingLogsRetriever.mutate { callback in + callback = { pendingStartupLogs.mutate { pendingStartupLogs in let logs: [LogInfo] = pendingStartupLogs pendingStartupLogs = [] @@ -344,7 +344,7 @@ public class Logger { private let systemLoggers: Atomic<[String: SystemLoggerType]> = Atomic([:]) fileprivate let fileLogger: DDFileLogger fileprivate let isSuspended: Atomic = Atomic(true) - fileprivate let retrievePendingStartupLogs: Atomic<(() -> [Log.LogInfo])?> = Atomic(nil) + fileprivate let pendingLogsRetriever: Atomic<(() -> [Log.LogInfo])?> = Atomic(nil) public init( primaryPrefix: String, @@ -483,11 +483,7 @@ public class Logger { isSuspended = false // Retrieve any logs that were added during - return retrievePendingStartupLogs.mutate { retriever in - let result: [Log.LogInfo] = (retriever?() ?? []) - retriever = nil - return result - } + return pendingLogsRetriever.mutate { retriever in (retriever?() ?? []) } } // If we had an error loading the extension logs then actually log it From f2eb84deb1d8adedae6ce3dd9cfede6a46f58a64 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 3 Oct 2024 09:04:21 +1000 Subject: [PATCH 04/17] Removed the codecov setup --- .drone.jsonnet | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 838e63856..51ab75b2a 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -88,20 +88,6 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U status: ['failure', 'success'], }, }, - { - name: 'Install Codecov CLI', - commands: [ - 'mkdir -p build/artifacts', - 'pip3 install codecov-cli', - 'find $HOME/Library/Python -name codecovcli -print -quit > ./build/artifacts/codecov_path', - ||| - if [[ ! -s ./build/artifacts/codecov_path ]]; then - which codecovcli > ./build/artifacts/codecov_path - fi - |||, - '$(<./build/artifacts/codecov_path) --version', - ], - }, { name: 'Convert xcresult to xml', commands: [ @@ -109,17 +95,6 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U ], depends_on: ['Build and Run Tests'], }, - { - // No token needed for public repos - name: 'Upload coverage to Codecov', - commands: [ - '$(<./build/artifacts/codecov_path) upload-process --fail-on-error -f ./build/artifacts/coverage.xml', - ], - depends_on: [ - 'Convert xcresult to xml', - 'Install Codecov CLI', - ], - }, ], }, // Validate build artifact was created by the direct branch push (PRs only) From 2c9427edcf612ab861096849d0d7d7e1df574f1e Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 3 Oct 2024 17:12:13 +1000 Subject: [PATCH 05/17] Refactored MimeTypeUtil to use UniformTypeIdentifiers --- Session.xcodeproj/project.pbxproj | 8 +- .../ConversationVC+Interaction.swift | 22 +- .../Conversations/ConversationViewModel.swift | 2 +- .../Content Views/QuoteView.swift | 2 +- .../SwiftUI/QuoteView_SwiftUI.swift | 2 +- .../DocumentTitleViewController.swift | 3 +- .../GIFs/GifPickerCell.swift | 3 +- .../GIFs/GifPickerViewController.swift | 2 +- .../GIFs/GiphyAPI.swift | 9 +- .../PhotoCapture.swift | 6 +- .../PhotoLibrary.swift | 21 +- Session/Meta/Translations/InfoPlist.xcstrings | 2 +- Session/Settings/ImagePickerHandler.swift | 7 +- .../Database/Models/Attachment.swift | 120 +++-- .../Database/Models/LinkPreview.swift | 24 +- .../VisibleMessage+Attachment.swift | 5 +- .../Attachments/SignalAttachment.swift | 462 +++++++---------- .../ShareNavController.swift | 189 ++++--- SessionShareExtension/ThreadPickerVC.swift | 2 +- SessionUtilitiesKit/Media/Data+Image.swift | 66 +-- SessionUtilitiesKit/Media/DataSource.swift | 79 +-- SessionUtilitiesKit/Media/MediaUtils.swift | 4 +- ...eTypeUtil.swift => UTType+Utilities.swift} | 489 +++++------------- .../AttachmentApprovalViewController.swift | 14 +- .../Image Editing/ImageEditorModel.swift | 9 +- _SharedTestUtilities/NimbleExtensions.swift | 2 +- 26 files changed, 633 insertions(+), 921 deletions(-) rename SessionUtilitiesKit/Media/{MimeTypeUtil.swift => UTType+Utilities.swift} (74%) diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index 1515f6cc3..b49bf7932 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -639,7 +639,7 @@ FD6A38F72C2A6C0100762359 /* CryptoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A38F62C2A6C0100762359 /* CryptoError.swift */; }; FD6A38F92C2A8AF700762359 /* DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A38F82C2A8AF700762359 /* DataSource.swift */; }; FD6A38FE2C2A8B7E00762359 /* MediaUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A38FD2C2A8B7E00762359 /* MediaUtils.swift */; }; - FD6A39002C2A8B9100762359 /* MimeTypeUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A38FF2C2A8B9100762359 /* MimeTypeUtil.swift */; }; + FD6A39002C2A8B9100762359 /* UTType+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A38FF2C2A8B9100762359 /* UTType+Utilities.swift */; }; FD6A39022C2A8BDE00762359 /* UIImage+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A39012C2A8BDE00762359 /* UIImage+Utilities.swift */; }; FD6A39042C2A8C0300762359 /* CGFloat+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A39032C2A8C0300762359 /* CGFloat+Utilities.swift */; }; FD6A39062C2A8C1600762359 /* CGPoint+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6A39052C2A8C1600762359 /* CGPoint+Utilities.swift */; }; @@ -1804,7 +1804,7 @@ FD6A38F62C2A6C0100762359 /* CryptoError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CryptoError.swift; sourceTree = ""; }; FD6A38F82C2A8AF700762359 /* DataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataSource.swift; sourceTree = ""; }; FD6A38FD2C2A8B7E00762359 /* MediaUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MediaUtils.swift; sourceTree = ""; }; - FD6A38FF2C2A8B9100762359 /* MimeTypeUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MimeTypeUtil.swift; sourceTree = ""; }; + FD6A38FF2C2A8B9100762359 /* UTType+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UTType+Utilities.swift"; sourceTree = ""; }; FD6A39012C2A8BDE00762359 /* UIImage+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIImage+Utilities.swift"; sourceTree = ""; }; FD6A39032C2A8C0300762359 /* CGFloat+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CGFloat+Utilities.swift"; sourceTree = ""; }; FD6A39052C2A8C1600762359 /* CGPoint+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CGPoint+Utilities.swift"; sourceTree = ""; }; @@ -2673,7 +2673,7 @@ FD6A38F82C2A8AF700762359 /* DataSource.swift */, FD09797827FAB7E800936362 /* ImageFormat.swift */, FD6A38FD2C2A8B7E00762359 /* MediaUtils.swift */, - FD6A38FF2C2A8B9100762359 /* MimeTypeUtil.swift */, + FD6A38FF2C2A8B9100762359 /* UTType+Utilities.swift */, ); path = Media; sourceTree = ""; @@ -5748,7 +5748,7 @@ 7B1D74B027C365960030B423 /* Timer+MainThread.swift in Sources */, FDE049032C76A09700B6F9BB /* UIAlertAction+Utilities.swift in Sources */, FD428B192B4B576F006D0888 /* AppContext.swift in Sources */, - FD6A39002C2A8B9100762359 /* MimeTypeUtil.swift in Sources */, + FD6A39002C2A8B9100762359 /* UTType+Utilities.swift in Sources */, FD6A38F92C2A8AF700762359 /* DataSource.swift in Sources */, FD559DF52A7368CB00C7C62A /* DispatchQueue+Utilities.swift in Sources */, FDF8488329405A12007DCAE5 /* BatchResponse.swift in Sources */, diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift index 652b230d8..14cc0047f 100644 --- a/Session/Conversations/ConversationVC+Interaction.swift +++ b/Session/Conversations/ConversationVC+Interaction.swift @@ -287,7 +287,7 @@ extension ConversationVC: func handleDocumentButtonTapped() { // UIDocumentPickerModeImport copies to a temp file within our container. // It uses more memory than "open" but lets us avoid working with security scoped URLs. - let documentPickerVC = UIDocumentPickerViewController(documentTypes: [ kUTTypeItem as String ], in: UIDocumentPickerMode.import) + let documentPickerVC = UIDocumentPickerViewController(forOpeningContentTypes: [.item], asCopy: true) documentPickerVC.delegate = self documentPickerVC.modalPresentationStyle = .fullScreen @@ -354,7 +354,7 @@ extension ConversationVC: return } - let type = urlResourceValues.typeIdentifier ?? (kUTTypeData as String) + let type: UTType = (urlResourceValues.typeIdentifier.map({ UTType($0) }) ?? .data) guard urlResourceValues.isDirectory != true else { DispatchQueue.main.async { [weak self] in let modal: ConfirmationModal = ConfirmationModal( @@ -382,12 +382,12 @@ extension ConversationVC: // Although we want to be able to send higher quality attachments through the document picker // it's more imporant that we ensure the sent format is one all clients can accept (e.g. *not* quicktime .mov) - guard !SignalAttachment.isInvalidVideo(dataSource: dataSource, dataUTI: type) else { + guard !SignalAttachment.isInvalidVideo(dataSource: dataSource, type: type) else { return showAttachmentApprovalDialogAfterProcessingVideo(at: url, with: fileName) } // "Document picker" attachments _SHOULD NOT_ be resized - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: type, imageQuality: .original) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: type, imageQuality: .original) showAttachmentApprovalDialog(for: [ attachment ]) } @@ -412,7 +412,7 @@ extension ConversationVC: SignalAttachment .compressVideoAsMp4( dataSource: dataSource, - dataUTI: kUTTypeMPEG4 as String, + type: .mpeg4Movie, using: dependencies ) .attachmentPublisher @@ -700,8 +700,8 @@ extension ConversationVC: func didPasteImageFromPasteboard(_ image: UIImage) { guard let imageData = image.jpegData(compressionQuality: 1.0) else { return } - let dataSource = DataSourceValue(data: imageData, utiType: kUTTypeJPEG as String) - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: kUTTypeJPEG as String, imageQuality: .medium) + let dataSource = DataSourceValue(data: imageData, dataType: .jpeg) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: .jpeg, imageQuality: .medium) guard let approvalVC = AttachmentApprovalViewController.wrappedInNavController( threadId: self.viewModel.threadData.threadId, @@ -1100,7 +1100,7 @@ extension ConversationVC: if attachment.isText || attachment.isMicrosoftDoc || - attachment.contentType == MimeTypeUtil.MimeType.applicationPdf + attachment.contentType == UTType.mimeTypePdf { // FIXME: If given an invalid text file (eg with binary data) this hangs forever // Note: I tried dispatching after a short delay, detecting that the new UI is invalid and dismissing it @@ -1921,12 +1921,12 @@ extension ConversationVC: attachment.state == .downloaded || attachment.state == .uploaded ), - let utiType: String = MimeTypeUtil.utiType(for: attachment.contentType), + let type: UTType = UTType(sessionMimeType: attachment.contentType), let originalFilePath: String = attachment.originalFilePath, let data: Data = try? Data(contentsOf: URL(fileURLWithPath: originalFilePath)) else { return } - UIPasteboard.general.setData(data, forPasteboardType: utiType) + UIPasteboard.general.setData(data, forPasteboardType: type.identifier) } } @@ -2535,7 +2535,7 @@ extension ConversationVC: let fileName = ("messageVoice".localized() as NSString).appendingPathExtension("m4a") dataSource.sourceFilename = fileName - let attachment = SignalAttachment.voiceMessageAttachment(dataSource: dataSource, dataUTI: kUTTypeMPEG4Audio as String) + let attachment = SignalAttachment.voiceMessageAttachment(dataSource: dataSource, type: .mpeg4Audio) guard !attachment.hasError else { return showErrorAlert(for: attachment) diff --git a/Session/Conversations/ConversationViewModel.swift b/Session/Conversations/ConversationViewModel.swift index 060ef3040..e0e8a3c76 100644 --- a/Session/Conversations/ConversationViewModel.swift +++ b/Session/Conversations/ConversationViewModel.swift @@ -574,7 +574,7 @@ public class ConversationViewModel: OWSAudioPlayerDelegate, NavigatableStateHold let linkPreviewAttachment: Attachment? = linkPreviewDraft.map { draft in try? LinkPreview.generateAttachmentIfPossible( imageData: draft.jpegImageData, - mimeType: MimeTypeUtil.MimeType.imageJpeg + type: .jpeg ) } diff --git a/Session/Conversations/Message Cells/Content Views/QuoteView.swift b/Session/Conversations/Message Cells/Content Views/QuoteView.swift index d0e838dcb..ae1640769 100644 --- a/Session/Conversations/Message Cells/Content Views/QuoteView.swift +++ b/Session/Conversations/Message Cells/Content Views/QuoteView.swift @@ -100,7 +100,7 @@ final class QuoteView: UIView { contentView.pin(to: self) if let attachment: Attachment = attachment { - let isAudio: Bool = MimeTypeUtil.isAudio(attachment.contentType) + let isAudio: Bool = attachment.isAudio let fallbackImageName: String = (isAudio ? "attachment_audio" : "actionsheet_document_black") // stringlint:disable let imageView: UIImageView = UIImageView( image: UIImage(named: fallbackImageName)? diff --git a/Session/Conversations/Message Cells/Content Views/SwiftUI/QuoteView_SwiftUI.swift b/Session/Conversations/Message Cells/Content Views/SwiftUI/QuoteView_SwiftUI.swift index f45606c86..17d0d896a 100644 --- a/Session/Conversations/Message Cells/Content Views/SwiftUI/QuoteView_SwiftUI.swift +++ b/Session/Conversations/Message Cells/Content Views/SwiftUI/QuoteView_SwiftUI.swift @@ -95,7 +95,7 @@ struct QuoteView_SwiftUI: View { return thumbnail } - let fallbackImageName: String = (MimeTypeUtil.isAudio(attachment.contentType) ? "attachment_audio" : "actionsheet_document_black") + let fallbackImageName: String = (attachment.isAudio ? "attachment_audio" : "actionsheet_document_black") return UIImage(named: fallbackImageName)? .resized(to: CGSize(width: Self.iconSize, height: Self.iconSize))? .withRenderingMode(.alwaysTemplate) diff --git a/Session/Media Viewing & Editing/DocumentTitleViewController.swift b/Session/Media Viewing & Editing/DocumentTitleViewController.swift index 9e197b8de..83cb35a78 100644 --- a/Session/Media Viewing & Editing/DocumentTitleViewController.swift +++ b/Session/Media Viewing & Editing/DocumentTitleViewController.swift @@ -2,6 +2,7 @@ import UIKit import QuartzCore +import UniformTypeIdentifiers import GRDB import DifferenceKit import SessionUIKit @@ -338,7 +339,7 @@ public class DocumentTileViewController: UIViewController, UITableViewDelegate, if attachment.isText || attachment.isMicrosoftDoc || - attachment.contentType == MimeTypeUtil.MimeType.applicationPdf + attachment.contentType == UTType.mimeTypePdf { delegate?.preview(fileUrl: fileUrl) diff --git a/Session/Media Viewing & Editing/GIFs/GifPickerCell.swift b/Session/Media Viewing & Editing/GIFs/GifPickerCell.swift index f1835c2d3..c085b88be 100644 --- a/Session/Media Viewing & Editing/GIFs/GifPickerCell.swift +++ b/Session/Media Viewing & Editing/GIFs/GifPickerCell.swift @@ -2,6 +2,7 @@ import Foundation import Combine +import UniformTypeIdentifiers import YYImage import SignalUtilitiesKit import SessionUtilitiesKit @@ -197,7 +198,7 @@ class GifPickerCell: UICollectionViewCell { clearViewState() return } - guard Data.isValidImage(at: asset.filePath, mimeType: MimeTypeUtil.MimeType.imageGif) else { + guard Data.isValidImage(at: asset.filePath, type: .gif) else { Log.error("[GitPickerCell] Invalid asset.") clearViewState() return diff --git a/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift b/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift index 6a0b88d9d..3acafb770 100644 --- a/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift +++ b/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift @@ -381,7 +381,7 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect } let dataSource = DataSourcePath(filePath: asset.filePath, shouldDeleteOnDeinit: false) - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: rendition.utiType, imageQuality: .medium) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: rendition.type, imageQuality: .medium) self?.dismiss(animated: true) { // Delegate presents view controllers, so it's important that *this* controller be dismissed before that occurs. diff --git a/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift b/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift index f2bcff3a3..cfdedee02 100644 --- a/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift +++ b/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift @@ -3,6 +3,7 @@ import Foundation import Combine import CoreServices +import UniformTypeIdentifiers import SignalUtilitiesKit import SessionUtilitiesKit @@ -56,11 +57,11 @@ class GiphyRendition: ProxiedContentAssetDescription { } } - public var utiType: String { + public var type: UTType { switch format { - case .gif: return kUTTypeGIF as String - case .mp4: return kUTTypeMPEG4 as String - case .jpg: return kUTTypeJPEG as String + case .gif: return .gif + case .mp4: return .mpeg4Movie + case .jpg: return .jpeg } } diff --git a/Session/Media Viewing & Editing/PhotoCapture.swift b/Session/Media Viewing & Editing/PhotoCapture.swift index a500ee7c9..33c0bc223 100644 --- a/Session/Media Viewing & Editing/PhotoCapture.swift +++ b/Session/Media Viewing & Editing/PhotoCapture.swift @@ -419,8 +419,8 @@ extension PhotoCapture: CaptureOutputDelegate { return } - let dataSource = DataSourceValue(data: photoData, utiType: kUTTypeJPEG as String) - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: kUTTypeJPEG as String, imageQuality: .medium) + let dataSource = DataSourceValue(data: photoData, dataType: .jpeg) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: .jpeg, imageQuality: .medium) delegate?.photoCapture(self, didFinishProcessingAttachment: attachment) } @@ -442,7 +442,7 @@ extension PhotoCapture: CaptureOutputDelegate { } let dataSource = DataSourcePath(fileUrl: outputFileURL, shouldDeleteOnDeinit: true) - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: kUTTypeMPEG4 as String) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: .mpeg4Movie) delegate?.photoCapture(self, didFinishProcessingAttachment: attachment) } diff --git a/Session/Media Viewing & Editing/PhotoLibrary.swift b/Session/Media Viewing & Editing/PhotoLibrary.swift index 7834c498c..c20158da2 100644 --- a/Session/Media Viewing & Editing/PhotoLibrary.swift +++ b/Session/Media Viewing & Editing/PhotoLibrary.swift @@ -4,6 +4,7 @@ import Foundation import Combine import Photos import CoreServices +import UniformTypeIdentifiers import SignalUtilitiesKit import SessionUtilitiesKit @@ -137,7 +138,7 @@ class PhotoCollectionContents { _ = imageManager.requestImage(for: asset, targetSize: thumbnailSize, contentMode: .aspectFill, options: nil, resultHandler: resultHandler) } - private func requestImageDataSource(for asset: PHAsset) -> AnyPublisher<(dataSource: (any DataSource), dataUTI: String), Error> { + private func requestImageDataSource(for asset: PHAsset) -> AnyPublisher<(dataSource: (any DataSource), type: UTType), Error> { return Deferred { Future { [weak self] resolver in @@ -151,24 +152,24 @@ class PhotoCollectionContents { return } - guard let dataUTI = dataUTI else { + guard let type: UTType = dataUTI.map({ UTType($0) }) else { resolver(Result.failure(PhotoLibraryError.assertionError(description: "dataUTI was unexpectedly nil"))) return } - guard let dataSource = DataSourceValue(data: imageData, utiType: dataUTI) else { + guard let dataSource = DataSourceValue(data: imageData, dataType: type) else { resolver(Result.failure(PhotoLibraryError.assertionError(description: "dataSource was unexpectedly nil"))) return } - resolver(Result.success((dataSource: dataSource, dataUTI: dataUTI))) + resolver(Result.success((dataSource: dataSource, type: type))) } } } .eraseToAnyPublisher() } - private func requestVideoDataSource(for asset: PHAsset) -> AnyPublisher<(dataSource: (any DataSource), dataUTI: String), Error> { + private func requestVideoDataSource(for asset: PHAsset) -> AnyPublisher<(dataSource: (any DataSource), type: UTType), Error> { return Deferred { Future { [weak self] resolver in @@ -201,7 +202,7 @@ class PhotoCollectionContents { return } - resolver(Result.success((dataSource: dataSource, dataUTI: kUTTypeMPEG4 as String))) + resolver(Result.success((dataSource: dataSource, type: .mpeg4Movie))) } } } @@ -213,17 +214,17 @@ class PhotoCollectionContents { switch asset.mediaType { case .image: return requestImageDataSource(for: asset) - .map { (dataSource: DataSource, dataUTI: String) in + .map { (dataSource: DataSource, type: UTType) in SignalAttachment - .attachment(dataSource: dataSource, dataUTI: dataUTI, imageQuality: .medium) + .attachment(dataSource: dataSource, type: type, imageQuality: .medium) } .eraseToAnyPublisher() case .video: return requestVideoDataSource(for: asset) - .map { (dataSource: DataSource, dataUTI: String) in + .map { (dataSource: DataSource, type: UTType) in SignalAttachment - .attachment(dataSource: dataSource, dataUTI: dataUTI) + .attachment(dataSource: dataSource, type: type) } .eraseToAnyPublisher() diff --git a/Session/Meta/Translations/InfoPlist.xcstrings b/Session/Meta/Translations/InfoPlist.xcstrings index 5c8246869..0877d4ee2 100644 --- a/Session/Meta/Translations/InfoPlist.xcstrings +++ b/Session/Meta/Translations/InfoPlist.xcstrings @@ -1 +1 @@ -{"sourceLanguage":"en","version":"1.0","strings":{"NSHumanReadableCopyright":{"comment":"Copyright (human-readable)","localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}},"extractionState":"extracted_with_value"},"NSCameraUsageDescription":{"extractionState":"manual","localizations":{"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova."}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة."}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya kamera hewce dike da ku wêneyên û vedîdarên twist bike, an QR kodên scanner bike."}},"sr-CS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"hi":{"stringUnit":{"state":"translated","value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։"}},"da":{"stringUnit":{"value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。"}},"en":{"stringUnit":{"value":"Session needs camera access to take photos and videos, or scan QR codes.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови.","state":"translated"}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa camera upang kumuha ng litrato at video, o mag-scan ng mga QR code.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди."}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov."}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu."}},"km":{"stringUnit":{"value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"hu":{"stringUnit":{"value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి."}},"fr":{"stringUnit":{"value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og video, eller skanne QR-koder.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове."}},"vi":{"stringUnit":{"value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"cy":{"stringUnit":{"value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder."}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes."}},"pl":{"stringUnit":{"value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}}}},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"state":"new","value":""}}},"comment":"Get Info string"},"NSPhotoLibraryAddUsageDescription":{"localizations":{"sr":{"stringUnit":{"value":"Session треба приступ складишту да сачува прилоге и медије.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다."}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"ta":{"stringUnit":{"value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją."}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang i-save ang mga attachment at media."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینەی فایل بۆ هەڵگرتنی پەیوەستەکان و میدیا ناردن"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"bal":{"stringUnit":{"value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias."}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia."}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media."}},"et":{"stringUnit":{"value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限来保存附件和媒体。"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"hi":{"stringUnit":{"value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限以保存附件和媒體。","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina xelasî û medyayê hewce dike."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan."}},"he":{"stringUnit":{"value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k úložisku na uloženie príloh a médií.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"bn":{"stringUnit":{"state":"translated","value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to save attachments and media.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om aanhegsels en media te stoor."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"ms":{"stringUnit":{"value":"Session memerlukan akses storan untuk menyimpan lampiran dan media.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}}},"extractionState":"manual"},"NSPhotoLibraryUsageDescription":{"localizations":{"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینە بۆ ناردنی وێنە و ڤیدیۆکان."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir."}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om foto's en video's te stuur."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí."}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer."}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限來發送照片和影片。","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang mag-send ng mga larawan at video."}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}},"da":{"stringUnit":{"value":"Session har brug for lageradgang for at sende billeder og videoer.","state":"translated"}},"fr":{"stringUnit":{"value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina wêneyên û vedîdarên bişîne."}},"it":{"stringUnit":{"value":"Session richiede l'accesso all'archiviazione per inviare foto e video.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci."}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to send photos and videos."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos."}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za slanje slika i videa.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за складиште да шаље слике и видео клипове."}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus."}},"ps":{"stringUnit":{"state":"translated","value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso de almacenamiento para enviar fotos y videos.","state":"translated"}}},"extractionState":"manual"},"CFBundleName":{"localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value","comment":"Bundle name"},"New Message":{},"NSFaceIDUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"ka":{"stringUnit":{"state":"translated","value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს"}},"el":{"stringUnit":{"value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"vi":{"stringUnit":{"value":"Tính năng khóa màn hình trên Session sử dụng Face ID.","state":"translated"}},"tl":{"stringUnit":{"value":"Ang feature ng screen lock sa Session ay gumagamit ng Face ID.","state":"translated"}},"sr":{"stringUnit":{"value":"Функција закључавања екрана на Session користи Face ID.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"bg":{"stringUnit":{"value":"Функцията за заключване на екрана в Session използва Face ID.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"fil":{"stringUnit":{"state":"translated","value":"Ang screen lock feature ng Session ay gumagamit ng Face ID."}},"th":{"stringUnit":{"value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"ny":{"stringUnit":{"state":"translated","value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID."}},"ca":{"stringUnit":{"state":"translated","value":"La funció de bloqueig de pantalla en Session utilitza Face ID."}},"fa":{"stringUnit":{"value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Funkcija zaklepanja zaslona na Session uporablja Face ID."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session的屏幕锁功能使用 Face ID。"}},"ne-NP":{"stringUnit":{"value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।","state":"translated"}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"hr":{"stringUnit":{"value":"Funkcija zaključavanja zaslona na Session koristi Face ID.","state":"translated"}},"az":{"stringUnit":{"value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID."}},"uk":{"stringUnit":{"value":"Функція блокування екрана в Session використовує Face ID.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"La función de pantalla bloqueada en Session usa Face ID."}},"no":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"kmr":{"stringUnit":{"state":"translated","value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike."}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"km":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session ekraaniluku funktsioon kasutab Face ID-d."}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"ms":{"stringUnit":{"state":"translated","value":"Ciri kunci skrin pada Session menggunakan Face ID."}},"lt":{"stringUnit":{"state":"translated","value":"Ekrano užraktas Session naudoja Face ID."}},"pt-BR":{"stringUnit":{"value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial.","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Funcția de blocare a ecranului din Session folosește Face ID."}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"nl":{"stringUnit":{"value":"De vergrendelfunctie op Session gebruikt Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"be":{"stringUnit":{"state":"translated","value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID."}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Die Bildschirmsperrfunktion von Session verwendet Face ID."}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"ar":{"stringUnit":{"value":"ميزة قفل الشاشة على Session تستخدم Face ID.","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"sw":{"stringUnit":{"value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"id":{"stringUnit":{"state":"translated","value":"Fitur kunci layar pada Session menggunakan Face ID."}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"he":{"stringUnit":{"value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi."}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Skärmlåsfunktionen på Session använder Face ID."}},"ku":{"stringUnit":{"state":"translated","value":"فەرمۆن جێگیرکردنی تابلەکردنی سکرین ناستەوەی Session پێی ئەنجامدەدرێت."}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"es-ES":{"stringUnit":{"state":"translated","value":"La función de bloqueo de pantalla en Session usa Face ID."}}},"extractionState":"manual"},"CFBundleDisplayName":{"localizations":{"en":{"stringUnit":{"state":"new","value":"Session"}}},"extractionState":"extracted_with_value","comment":"Bundle display name"},"NSMicrophoneUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain.","state":"translated"}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"ny":{"stringUnit":{"value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень."}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session ng access sa mikropono upang makagawa ng mga tawag at mag-record ng mga mensaheng audio.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం."}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike."}},"no":{"stringUnit":{"value":"Session trenger mikrofontilgang for å foreta samtaler og ta opp lydmeldinger.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger."}},"mn":{"stringUnit":{"value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze."}},"ne-NP":{"stringUnit":{"value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session دەتوانێت بەکارهێنانی داده‌یەکیی وەکو پەیوەستەکان بکات بۆ پەیوەندیش"}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio."}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"az":{"stringUnit":{"state":"translated","value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes.","state":"translated"}},"sr-CS":{"stringUnit":{"value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke.","state":"translated"}},"pl":{"stringUnit":{"value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"hi":{"stringUnit":{"value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"fr":{"stringUnit":{"value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio."}},"hr":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"nb":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser."}},"ps":{"stringUnit":{"state":"translated","value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري."}}},"extractionState":"manual"},"NSAppleMusicUsageDescription":{"extractionState":"manual","localizations":{"pt-PT":{"stringUnit":{"value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။"}},"es-ES":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios.","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler."}},"id":{"stringUnit":{"value":"Session membutuhkan Apple Music untuk memutar lampiran media.","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує використовувати Apple Music для відтворення медіавкладень."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger Apple Music for å spille av media-vedlegg."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ."}},"ku":{"stringUnit":{"value":"Session پێویستە بە پارێزمەنیی ژمارەی تەلەفۆنەکان بۆ بەکردنەوەی هەموو پەیوەستەکان.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid."}},"ms":{"stringUnit":{"state":"translated","value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media."}},"az":{"stringUnit":{"value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります"}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"ps":{"stringUnit":{"state":"translated","value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي."}},"tr":{"stringUnit":{"value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs to use Apple Music to play media attachments."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"xh":{"stringUnit":{"state":"translated","value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"bn":{"stringUnit":{"state":"translated","value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔"}},"eu":{"stringUnit":{"value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka."}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"fr":{"stringUnit":{"value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias.","state":"translated"}},"pl":{"stringUnit":{"value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов.","state":"translated"}},"fil":{"stringUnit":{"value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir anexos multimedia.","state":"translated"}},"cy":{"stringUnit":{"value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session na gumamit ng Apple Music para mag-play ng mga media attachment.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari."}},"ha":{"stringUnit":{"value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh.","state":"translated"}},"da":{"stringUnit":{"value":"Session skal bruge Apple Music for at afspille medievedhæftninger.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"si-LK":{"stringUnit":{"state":"translated","value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用 Apple Music 來播放媒體附件。","state":"translated"}},"nl":{"stringUnit":{"value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session må bruke Apple Music for å spille medievedlegg."}}}}}} \ No newline at end of file +{"strings":{"NSPhotoLibraryAddUsageDescription":{"extractionState":"manual","localizations":{"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے"}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"ta":{"stringUnit":{"value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов.","state":"translated"}},"sr-RS":{"stringUnit":{"value":"Session treba pristup skladištu da sačuva priloge i medije.","state":"translated"}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限来保存附件和媒体。","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"fr":{"stringUnit":{"value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios.","state":"translated"}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan."}},"lv":{"stringUnit":{"value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။","state":"translated"}},"az":{"stringUnit":{"value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau."}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å lagre vedlegg og media.","state":"translated"}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要存儲權限以保存附件和媒體。"}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat."}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה."}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k úložisku na uloženie príloh a médií.","state":"translated"}},"uz":{"stringUnit":{"value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"hi":{"stringUnit":{"state":"translated","value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।"}},"ko":{"stringUnit":{"value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다.","state":"translated"}},"ku":{"stringUnit":{"value":"Session permiya hilkişina xelasî û medyayê hewce dike.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to save attachments and media."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om aanhegsels en media te stoor."}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å lagre vedlegg og media.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط."}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia."}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"bn":{"stringUnit":{"value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menyimpan lampiran dan media."}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба приступ складишту да сачува прилоге и медије."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko.","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}}}},"New Message":{},"NSPhotoLibraryUsageDescription":{"extractionState":"manual","localizations":{"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"ta":{"stringUnit":{"value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi."}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для відправлення фотографій та відео."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد."}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn."}},"da":{"stringUnit":{"state":"translated","value":"Session har brug for lageradgang for at sende billeder og videoer."}},"pl":{"stringUnit":{"value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ","state":"translated"}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso all'archiviazione per inviare foto e video."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"sr":{"stringUnit":{"value":"Session треба дозволу за складиште да шаље слике и видео клипове.","state":"translated"}},"fi":{"stringUnit":{"value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다.","state":"translated"}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"bn":{"stringUnit":{"value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"lv":{"stringUnit":{"state":"translated","value":"Session vajag pieeju failiem, lai sūtītu atēlus un video."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"ku":{"stringUnit":{"value":"Session permiya hilkişina wêneyên û vedîdarên bişîne.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup pohrani za slanje slika i videa."}},"af":{"stringUnit":{"value":"Session het berging toegang nodig om foto's en video's te stuur.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para enviar fotos y videos."}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo."}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"te":{"stringUnit":{"value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం.","state":"translated"}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"et":{"stringUnit":{"value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov."}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video."}},"hi":{"stringUnit":{"state":"translated","value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।"}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video."}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو."}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko."}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}},"ps":{"stringUnit":{"value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å sende bilete og videoar."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ.","state":"translated"}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"ja":{"stringUnit":{"value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to send photos and videos."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup na disk na posielanie fotiek a videí."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要存儲權限來發送照片和影片。"}}}},"NSFaceIDUsageDescription":{"extractionState":"manual","localizations":{"uk":{"stringUnit":{"value":"Функція блокування екрана в Session використовує Face ID.","state":"translated"}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID."}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"ka":{"stringUnit":{"value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"La función de pantalla bloqueada en Session usa Face ID."}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"vi":{"stringUnit":{"state":"translated","value":"Tính năng khóa màn hình trên Session sử dụng Face ID."}},"fil":{"stringUnit":{"value":"Ang screen lock feature ng Session ay gumagamit ng Face ID.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"fr":{"stringUnit":{"value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Näytön lukitusominaisuus Session käyttää Face ID:tä."}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"sr-RS":{"stringUnit":{"value":"Funkcija zaključavanja ekrana na Session koristi Face ID.","state":"translated"}},"ny":{"stringUnit":{"value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"pt-BR":{"stringUnit":{"state":"translated","value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial."}},"ta":{"stringUnit":{"value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது.","state":"translated"}},"ca":{"stringUnit":{"value":"La funció de bloqueig de pantalla en Session utilitza Face ID.","state":"translated"}},"lt":{"stringUnit":{"value":"Ekrano užraktas Session naudoja Face ID.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"De vergrendelfunctie op Session gebruikt Face ID."}},"hr":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja zaslona na Session koristi Face ID."}},"az":{"stringUnit":{"state":"translated","value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir."}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"sw":{"stringUnit":{"value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID.","state":"translated"}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"it":{"stringUnit":{"value":"La funzione di blocco schermo su Session usa il Face ID.","state":"translated"}},"ha":{"stringUnit":{"value":"Tsarin kulle allo akan Session yana amfani da Face ID.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"ro":{"stringUnit":{"value":"Funcția de blocare a ecranului din Session folosește Face ID.","state":"translated"}},"sv-SE":{"stringUnit":{"value":"Skärmlåsfunktionen på Session använder Face ID.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"mk":{"stringUnit":{"state":"translated","value":"Функцијата за заклучување екранот во Session користи Face ID."}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"ar":{"stringUnit":{"value":"ميزة قفل الشاشة على Session تستخدم Face ID.","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Функција закључавања екрана на Session користи Face ID."}},"ms":{"stringUnit":{"value":"Ciri kunci skrin pada Session menggunakan Face ID.","state":"translated"}},"en":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"sl":{"stringUnit":{"value":"Funkcija zaklepanja zaslona na Session uporablja Face ID.","state":"translated"}},"km":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"hu":{"stringUnit":{"state":"translated","value":"A Session képernyőzár funkciója Face ID-t használ."}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"zh-CN":{"stringUnit":{"value":"Session的屏幕锁功能使用 Face ID。","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID."}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID."}},"fa":{"stringUnit":{"state":"translated","value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند."}},"ku":{"stringUnit":{"value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session ekraaniluku funktsioon kasutab Face ID-d."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"uz":{"stringUnit":{"value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID"}},"bg":{"stringUnit":{"value":"Функцията за заключване на екрана в Session използва Face ID.","state":"translated"}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"kn":{"stringUnit":{"value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים."}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"id":{"stringUnit":{"state":"translated","value":"Fitur kunci layar pada Session menggunakan Face ID."}},"te":{"stringUnit":{"value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"es-ES":{"stringUnit":{"value":"La función de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Die Bildschirmsperrfunktion von Session verwendet Face ID."}}}},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","comment":"Get Info string","localizations":{"en":{"stringUnit":{"value":"","state":"new"}}}},"NSCameraUsageDescription":{"localizations":{"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů."}},"da":{"stringUnit":{"value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova."}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"nn-NO":{"stringUnit":{"value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։","state":"translated"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"af":{"stringUnit":{"value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"fil":{"stringUnit":{"value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code.","state":"translated"}},"sr-RS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"ny":{"stringUnit":{"value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"eo":{"stringUnit":{"value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn.","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR."}},"az":{"stringUnit":{"value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。"}},"uk":{"stringUnit":{"value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди.","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"pl":{"stringUnit":{"state":"translated","value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов."}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod."}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához."}},"fi":{"stringUnit":{"value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។"}},"be":{"stringUnit":{"value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды.","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar."}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen.","state":"translated"}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови."}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"te":{"stringUnit":{"value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR."}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus."}},"et":{"stringUnit":{"value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"hi":{"stringUnit":{"value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs camera access to take photos and videos, or scan QR codes."}},"fr":{"stringUnit":{"value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।","state":"translated"}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR.","state":"translated"}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}}},"extractionState":"manual"},"CFBundleDisplayName":{"comment":"Bundle display name","localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value"},"NSHumanReadableCopyright":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"value":"com.loki-project.loki-messenger","state":"new"}}},"comment":"Copyright (human-readable)"},"NSMicrophoneUsageDescription":{"extractionState":"manual","localizations":{"nb":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze.","state":"translated"}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio.","state":"translated"}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"lv":{"stringUnit":{"value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"ps":{"stringUnit":{"value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري.","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"uz":{"stringUnit":{"value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"cs":{"stringUnit":{"value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv.","state":"translated"}},"ku":{"stringUnit":{"value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ."}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"da":{"stringUnit":{"value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser.","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes."}},"mn":{"stringUnit":{"state":"translated","value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"ha":{"stringUnit":{"value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔"}},"zh-TW":{"stringUnit":{"value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。","state":"translated"}},"az":{"stringUnit":{"value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir.","state":"translated"}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。"}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения."}},"ca":{"stringUnit":{"value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"hr":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"ny":{"stringUnit":{"value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại."}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"hi":{"stringUnit":{"value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।","state":"translated"}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"bn":{"stringUnit":{"value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio."}},"fr":{"stringUnit":{"state":"translated","value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu."}},"ms":{"stringUnit":{"value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke."}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"ta":{"stringUnit":{"state":"translated","value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain."}},"sv-SE":{"stringUnit":{"value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden.","state":"translated"}}}},"NSAppleMusicUsageDescription":{"localizations":{"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog."}},"hr":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"fa":{"stringUnit":{"state":"translated","value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia."}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus."}},"az":{"stringUnit":{"value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau."}},"sr-RS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"da":{"stringUnit":{"state":"translated","value":"Session skal bruge Apple Music for at afspille medievedhæftninger."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"ha":{"stringUnit":{"value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen.","state":"translated"}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用 Apple Music 來播放媒體附件。"}},"ru":{"stringUnit":{"value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"tr":{"stringUnit":{"value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda.","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ.","state":"translated"}},"nl":{"stringUnit":{"value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"bn":{"stringUnit":{"state":"translated","value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"my":{"stringUnit":{"value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh."}},"si-LK":{"stringUnit":{"state":"translated","value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි."}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko."}},"ku":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"bal":{"stringUnit":{"value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia."}},"ps":{"stringUnit":{"value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs to use Apple Music to play media attachments.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios.","state":"translated"}},"fil":{"stringUnit":{"state":"translated","value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"pl":{"stringUnit":{"value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias."}},"nn-NO":{"stringUnit":{"value":"Session trenger Apple Music for å spille av media-vedlegg.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita usar Apple Music para reproducir anexos multimedia."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다."}},"ne-NP":{"stringUnit":{"state":"translated","value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।"}},"ro":{"stringUnit":{"value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media.","state":"translated"}},"uk":{"stringUnit":{"value":"Session потребує використовувати Apple Music для відтворення медіавкладень.","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya."}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります","state":"translated"}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan Apple Music untuk memutar lampiran media."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"sq":{"stringUnit":{"value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων."}},"ms":{"stringUnit":{"state":"translated","value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media."}}},"extractionState":"manual"},"CFBundleName":{"comment":"Bundle name","localizations":{"en":{"stringUnit":{"state":"new","value":"Session"}}},"extractionState":"extracted_with_value"}},"sourceLanguage":"en","version":"1.0"} \ No newline at end of file diff --git a/Session/Settings/ImagePickerHandler.swift b/Session/Settings/ImagePickerHandler.swift index 02e55a4c6..d20072f11 100644 --- a/Session/Settings/ImagePickerHandler.swift +++ b/Session/Settings/ImagePickerHandler.swift @@ -1,6 +1,7 @@ // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. -import Foundation +import UIKit +import UniformTypeIdentifiers import SessionUtilitiesKit class ImagePickerHandler: NSObject, UIImagePickerControllerDelegate & UINavigationControllerDelegate { @@ -38,8 +39,8 @@ class ImagePickerHandler: NSObject, UIImagePickerControllerDelegate & UINavigati guard let resourceValues: URLResourceValues = (try? imageUrl.resourceValues(forKeys: [.typeIdentifierKey])), let type: Any = resourceValues.allValues.first?.value, - let utiTypeString: String = type as? String, - MimeTypeUtil.isAnimated(utiType: utiTypeString) + let typeString: String = type as? String, + UTType.isAnimated(typeString) else { let viewController: CropScaleImageViewController = CropScaleImageViewController( srcImage: rawAvatar, diff --git a/SessionMessagingKit/Database/Models/Attachment.swift b/SessionMessagingKit/Database/Models/Attachment.swift index c7fa8f9b6..3bf47732a 100644 --- a/SessionMessagingKit/Database/Models/Attachment.swift +++ b/SessionMessagingKit/Database/Models/Attachment.swift @@ -4,6 +4,7 @@ import Foundation import AVFAudio import AVFoundation import Combine +import UniformTypeIdentifiers import GRDB import SessionUtilitiesKit import SessionSnodeKit @@ -164,7 +165,7 @@ public struct Attachment: Codable, Identifiable, Equatable, Hashable, FetchableR self.width = width self.height = height self.duration = duration - self.isVisualMedia = (isVisualMedia ?? MimeTypeUtil.isVisualMedia(contentType)) + self.isVisualMedia = (isVisualMedia ?? UTType.isVisualMedia(contentType)) self.isValid = isValid self.encryptionKey = encryptionKey self.digest = digest @@ -208,7 +209,7 @@ public struct Attachment: Codable, Identifiable, Equatable, Hashable, FetchableR self.width = imageSize.map { UInt(floor($0.width)) } self.height = imageSize.map { UInt(floor($0.height)) } self.duration = duration - self.isVisualMedia = MimeTypeUtil.isVisualMedia(contentType) + self.isVisualMedia = UTType.isVisualMedia(contentType) self.isValid = isValid self.encryptionKey = nil self.digest = nil @@ -259,11 +260,11 @@ extension Attachment: CustomStringConvertible { // if there were multiple attachments guard count == 1 else { return "attachmentsNotification" - .put(key: "emoji", value: emoji(for: MimeTypeUtil.MimeType.imageJpeg)) + .put(key: "emoji", value: emoji(for: UTType.mimeTypeJpeg)) .localized() } - if MimeTypeUtil.isAudio(descriptionInfo.contentType) { + if UTType.isAudio(descriptionInfo.contentType) { // a missing filename is the legacy way to determine if an audio attachment is // a voice note vs. other arbitrary audio attachments. if @@ -283,16 +284,16 @@ extension Attachment: CustomStringConvertible { } public static func emoji(for contentType: String) -> String { - if MimeTypeUtil.isAnimated(contentType) { + if UTType.isAnimated(contentType) { return "🎡" // stringlint:disable } - else if MimeTypeUtil.isVideo(contentType) { + else if UTType.isVideo(contentType) { return "🎥" // stringlint:disable } - else if MimeTypeUtil.isAudio(contentType) { + else if UTType.isAudio(contentType) { return "🎧" // stringlint:disable } - else if MimeTypeUtil.isImage(contentType) { + else if UTType.isImage(contentType) { return "📷" // stringlint:disable } @@ -342,7 +343,7 @@ extension Attachment { }() // Regenerate this just in case we added support since the attachment was inserted into // the database (eg. manually downloaded in a later update) - let isVisualMedia: Bool = MimeTypeUtil.isVisualMedia(contentType) + let isVisualMedia: Bool = UTType.isVisualMedia(contentType) let attachmentResolution: CGSize? = { if let width: UInt = self.width, let height: UInt = self.height, width > 0, height > 0 { return CGSize(width: Int(width), height: Int(height)) @@ -371,7 +372,7 @@ extension Attachment { isVisualMedia: ( // Regenerate this just in case we added support since the attachment was inserted into // the database (eg. manually downloaded in a later update) - MimeTypeUtil.isVisualMedia(contentType) + UTType.isVisualMedia(contentType) ), isValid: isValid, encryptionKey: (encryptionKey ?? self.encryptionKey), @@ -389,9 +390,9 @@ extension Attachment { guard let fileName: String = filename, let fileExtension: String = URL(string: fileName)?.pathExtension - else { return MimeTypeUtil.MimeType.applicationOctetStream } + else { return UTType.mimeTypeDefault } - return (MimeTypeUtil.mimeType(for: fileExtension) ?? MimeTypeUtil.MimeType.applicationOctetStream) + return (UTType.sessionMimeType(for: fileExtension) ?? UTType.mimeTypeDefault) } self.id = UUID().uuidString @@ -417,7 +418,7 @@ extension Attachment { self.width = (proto.hasWidth && proto.width > 0 ? UInt(proto.width) : nil) self.height = (proto.hasHeight && proto.height > 0 ? UInt(proto.height) : nil) self.duration = nil // Needs to be downloaded to be set - self.isVisualMedia = MimeTypeUtil.isVisualMedia(contentType) + self.isVisualMedia = UTType.isVisualMedia(contentType) self.isValid = false // Needs to be downloaded to be set self.encryptionKey = proto.key self.digest = proto.digest @@ -609,12 +610,57 @@ extension Attachment { } public static func originalFilePath(id: String, mimeType: String, sourceFilename: String?) -> String? { - return MimeTypeUtil.filePath( - for: id, - ofMimeType: mimeType, - sourceFilename: sourceFilename, - in: Attachment.attachmentsFolder - ) + // Store the file in a subdirectory whose name is the uniqueId of this attachment, + // to avoid collisions between multiple attachments with the same name + let attachmentFolder: String = Attachment.attachmentsFolder.appending("/\(id)") + + if let sourceFilename: String = sourceFilename, !sourceFilename.isEmpty { + // Ensure that the filename is a valid filesystem name, + // replacing invalid characters with an underscore. + var normalizedFileName: String = sourceFilename + .trimmingCharacters(in: .whitespacesAndNewlines) + .components(separatedBy: .whitespacesAndNewlines) + .joined(separator: "_") + .components(separatedBy: .illegalCharacters) + .joined(separator: "_") + .components(separatedBy: .controlCharacters) + .joined(separator: "_") + .components(separatedBy: CharacterSet(charactersIn: "<>|\\:()&;?*/~")) + .joined(separator: "_") + + while normalizedFileName.hasPrefix(".") { + normalizedFileName = String(normalizedFileName.substring(from: 1)) + } + + var targetFileExtension: String = URL(fileURLWithPath: normalizedFileName).pathExtension + let filenameWithoutExtension: String = URL(fileURLWithPath: normalizedFileName) + .deletingPathExtension() + .lastPathComponent + .trimmingCharacters(in: .whitespacesAndNewlines) + + // If the filename has not file extension, deduce one + // from the MIME type. + if targetFileExtension.isEmpty { + targetFileExtension = (UTType(sessionMimeType: mimeType)?.sessionFileExtension ?? UTType.fileExtensionDefault) + } + + targetFileExtension = targetFileExtension.lowercased() + + if !targetFileExtension.isEmpty { + guard case .success = Result(try FileSystem.ensureDirectoryExists(at: attachmentFolder)) else { + return nil + } + + return attachmentFolder.appending("/\(filenameWithoutExtension).\(targetFileExtension)") + } + } + + let targetFileExtension: String = ( + UTType(sessionMimeType: mimeType)?.sessionFileExtension ?? + UTType.fileExtensionDefault + ).lowercased() + + return attachmentFolder.appending("/\(id).\(targetFileExtension)") } public static func localRelativeFilePath(from originalFilePath: String?) -> String? { @@ -625,19 +671,17 @@ extension Attachment { } internal static func imageSize(contentType: String, originalFilePath: String) -> CGSize? { - let isVideo: Bool = MimeTypeUtil.isVideo(contentType) - let isImage: Bool = MimeTypeUtil.isImage(contentType) - let isAnimated: Bool = MimeTypeUtil.isAnimated(contentType) + let type: UTType? = UTType(sessionMimeType: contentType) - guard isVideo || isImage || isAnimated else { return nil } + guard type?.isVideo == true || type?.isImage == true || type?.isAnimated == true else { return nil } - if isVideo { + if type?.isVideo == true { guard MediaUtils.isValidVideo(path: originalFilePath) else { return nil } return Attachment.videoStillImage(filePath: originalFilePath)?.size } - return Data.imageSize(for: originalFilePath, mimeType: contentType) + return Data.imageSize(for: originalFilePath, type: type) } public static func videoStillImage(filePath: String) -> UIImage? { @@ -662,7 +706,7 @@ extension Attachment { let targetPath: String = (constructedFilePath ?? originalFilePath) // Process audio attachments - if MimeTypeUtil.isAudio(contentType) { + if UTType.isAudio(contentType) { do { let audioPlayer: AVAudioPlayer = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: targetPath)) @@ -680,15 +724,15 @@ extension Attachment { } // Process image attachments - if MimeTypeUtil.isImage(contentType) || MimeTypeUtil.isAnimated(contentType) { + if UTType.isImage(contentType) || UTType.isAnimated(contentType) { return ( - Data.isValidImage(at: targetPath, mimeType: contentType), + Data.isValidImage(at: targetPath, type: UTType(sessionMimeType: contentType)), nil ) } // Process video attachments - if MimeTypeUtil.isVideo(contentType) { + if UTType.isVideo(contentType) { let asset: AVURLAsset = AVURLAsset(url: URL(fileURLWithPath: targetPath), options: nil) let durationSeconds: TimeInterval = ( // According to the CMTime docs "value/timescale = seconds" @@ -771,12 +815,12 @@ extension Attachment { return UIImage(contentsOfFile: originalFilePath) } - public var isImage: Bool { MimeTypeUtil.isImage(contentType) } - public var isVideo: Bool { MimeTypeUtil.isVideo(contentType) } - public var isAnimated: Bool { MimeTypeUtil.isAnimated(contentType) } - public var isAudio: Bool { MimeTypeUtil.isAudio(contentType) } - public var isText: Bool { MimeTypeUtil.isText(contentType) } - public var isMicrosoftDoc: Bool { MimeTypeUtil.isMicrosoftDoc(contentType) } + public var isImage: Bool { UTType.isImage(contentType) } + public var isVideo: Bool { UTType.isVideo(contentType) } + public var isAnimated: Bool { UTType.isAnimated(contentType) } + public var isAudio: Bool { UTType.isAudio(contentType) } + public var isText: Bool { UTType.isText(contentType) } + public var isMicrosoftDoc: Bool { UTType.isMicrosoftDoc(contentType) } public var documentFileName: String { if let sourceFilename: String = sourceFilename { return sourceFilename } @@ -894,7 +938,7 @@ extension Attachment { self.isValid, let thumbnailPath: String = Attachment.originalFilePath( id: cloneId, - mimeType: MimeTypeUtil.MimeType.imageJpeg, + mimeType: UTType.mimeTypeJpeg, sourceFilename: thumbnailName ) else { @@ -939,7 +983,7 @@ extension Attachment { // Need to retrieve the size of the thumbnail as it maintains it's aspect ratio let thumbnailSize: CGSize = Attachment .imageSize( - contentType: MimeTypeUtil.MimeType.imageJpeg, + contentType: UTType.mimeTypeJpeg, originalFilePath: thumbnailPath ) .defaulting( @@ -954,7 +998,7 @@ extension Attachment { id: cloneId, variant: .standard, state: .downloaded, - contentType: MimeTypeUtil.MimeType.imageJpeg, + contentType: UTType.mimeTypeJpeg, byteCount: UInt(thumbnailData.count), sourceFilename: thumbnailName, localRelativeFilePath: Attachment.localRelativeFilePath(from: thumbnailPath), diff --git a/SessionMessagingKit/Database/Models/LinkPreview.swift b/SessionMessagingKit/Database/Models/LinkPreview.swift index 0972ad39b..05d57c2f3 100644 --- a/SessionMessagingKit/Database/Models/LinkPreview.swift +++ b/SessionMessagingKit/Database/Models/LinkPreview.swift @@ -4,6 +4,7 @@ import Foundation import Combine +import UniformTypeIdentifiers import GRDB import SessionUtilitiesKit import SessionSnodeKit @@ -129,9 +130,10 @@ public extension LinkPreview { return (floor(sentTimestampMs / 1000 / LinkPreview.timstampResolution) * LinkPreview.timstampResolution) } - static func generateAttachmentIfPossible(imageData: Data?, mimeType: String) throws -> Attachment? { + static func generateAttachmentIfPossible(imageData: Data?, type: UTType) throws -> Attachment? { guard let imageData: Data = imageData, !imageData.isEmpty else { return nil } - guard let fileExtension: String = MimeTypeUtil.fileExtension(for: mimeType) else { return nil } + guard let fileExtension: String = type.sessionFileExtension else { return nil } + guard let mimeType: String = type.preferredMIMEType else { return nil } let filePath = FileSystem.temporaryFilePath(fileExtension: fileExtension) try imageData.write(to: NSURL.fileURL(withPath: filePath), options: .atomicWrite) @@ -406,7 +408,7 @@ public extension LinkPreview { .setFailureType(to: Error.self) .eraseToAnyPublisher() } - guard let imageMimeType = mimetype(forImageFileExtension: imageFileExtension) else { + guard let imageMimeType: String = UTType(sessionFileExtension: imageFileExtension)?.preferredMIMEType else { return Just(LinkPreviewDraft(urlString: linkUrlString, title: title)) .setFailureType(to: Error.self) .eraseToAnyPublisher() @@ -481,7 +483,8 @@ public extension LinkPreview { shouldIgnoreSignalProxy: true ) .tryMap { asset, _ -> Data in - let imageSize = Data.imageSize(for: asset.filePath, mimeType: imageMimeType) + let type: UTType? = UTType(sessionMimeType: imageMimeType) + let imageSize = Data.imageSize(for: asset.filePath, type: type) guard imageSize.width > 0, imageSize.height > 0 else { throw LinkPreviewError.invalidContent @@ -494,10 +497,7 @@ public extension LinkPreview { guard let srcImage = UIImage(data: data) else { throw LinkPreviewError.invalidContent } // Loki: If it's a GIF then ensure its validity and don't download it as a JPG - if - imageMimeType == MimeTypeUtil.MimeType.imageGif && - data.isValidImage(mimeType: MimeTypeUtil.MimeType.imageGif) - { + if type == .gif && data.isValidImage(type: .gif) { return data } @@ -540,18 +540,12 @@ public extension LinkPreview { guard imageFileExtension.count > 0 else { // TODO: For those links don't have a file extension, we should figure out a way to know the image mime type - return "png" + return UTType.fileExtensionDefaultImage } return imageFileExtension } - private static func mimetype(forImageFileExtension imageFileExtension: String) -> String? { - guard imageFileExtension.count > 0 else { return nil } - - return MimeTypeUtil.mimeType(for: imageFileExtension) - } - private static func decodeHTMLEntities(inString value: String) -> String? { guard let data = value.data(using: .utf8) else { return nil } diff --git a/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Attachment.swift b/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Attachment.swift index a69237af4..ef2c45893 100644 --- a/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Attachment.swift +++ b/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Attachment.swift @@ -2,6 +2,7 @@ import Foundation import CoreGraphics +import UniformTypeIdentifiers import SessionUtilitiesKit public extension VisibleMessage { @@ -56,9 +57,9 @@ public extension VisibleMessage { guard let fileName: String = proto.fileName, let fileExtension: String = URL(string: fileName)?.pathExtension - else { return MimeTypeUtil.MimeType.applicationOctetStream } + else { return UTType.mimeTypeDefault } - return (MimeTypeUtil.mimeType(for: fileExtension) ?? MimeTypeUtil.MimeType.applicationOctetStream) + return (UTType.sessionMimeType(for: fileExtension) ?? UTType.mimeTypeDefault) } return VMAttachment( diff --git a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift index ba55cd2b6..a7f7c3c39 100644 --- a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift +++ b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift @@ -1,11 +1,13 @@ // // Copyright (c) 2019 Open Whisper Systems. All rights reserved. // +// stringlint:disable -import Foundation +import UIKit import Combine import MobileCoreServices import AVFoundation +import UniformTypeIdentifiers import SessionUtilitiesKit public enum SignalAttachmentError: Error { @@ -115,10 +117,8 @@ public class SignalAttachment: Equatable { // This flag should be set for attachments that can be sent as contact shares. public var isConvertibleToContactShare = false - // Attachment types are identified using UTIs. - // - // See: https://developer.apple.com/library/content/documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html - public let dataUTI: String + // Attachment types are identified using UTType. + public let dataType: UTType public var error: SignalAttachmentError? { didSet { @@ -142,9 +142,9 @@ public class SignalAttachment: Equatable { // This method should not be called directly; use the factory // methods instead. - private init(dataSource: (any DataSource), dataUTI: String) { + private init(dataSource: (any DataSource), dataType: UTType) { self.dataSource = dataSource - self.dataUTI = dataUTI + self.dataType = dataType } // MARK: Methods @@ -268,25 +268,17 @@ public class SignalAttachment: Equatable { // Returns the MIME type for this attachment or nil if no MIME type // can be identified. public var mimeType: String { - if let filename = sourceFilename { - let fileExtension = (filename as NSString).pathExtension - if fileExtension.count > 0 { - if let mimeType = MimeTypeUtil.mimeType(for: fileExtension) { - // UTI types are an imperfect means of representing file type; - // file extensions are also imperfect but far more reliable and - // comprehensive so we always prefer to try to deduce MIME type - // from the file extension. - return mimeType - } - } - } - if dataUTI == MimeTypeUtil.UTI.unknownUTIForTests { - return MimeTypeUtil.MimeType.unknownMimeTypeForTests - } - guard let mimeType = UTTypeCopyPreferredTagWithClass(dataUTI as CFString, kUTTagClassMIMEType) else { - return MimeTypeUtil.MimeType.applicationOctetStream - } - return mimeType.takeRetainedValue() as String + guard + let fileExtension: String = sourceFilename.map({ $0 as NSString })?.pathExtension, + !fileExtension.isEmpty, + let fileExtensionMimeType: String = UTType(sessionFileExtension: fileExtension)?.preferredMIMEType + else { return (dataType.preferredMIMEType ?? UTType.mimeTypeDefault) } + + // UTI types are an imperfect means of representing file type; + // file extensions are also imperfect but far more reliable and + // comprehensive so we always prefer to try to deduce MIME type + // from the file extension. + return fileExtensionMimeType } // Use the filename if known. If not, e.g. if the attachment was copy/pasted, we'll generate a filename @@ -313,118 +305,38 @@ public class SignalAttachment: Equatable { // Returns the file extension for this attachment or nil if no file extension // can be identified. public var fileExtension: String? { - if let filename = sourceFilename { - let fileExtension = (filename as NSString).pathExtension - if fileExtension.count > 0 { - return fileExtension.filteredFilename - } - } - if dataUTI == MimeTypeUtil.UTI.unknownUTIForTests { - return "unknown".localized() - } - - guard let fileExtension = MimeTypeUtil.fileExtension(forUtiType: dataUTI) else { - return nil - } - return fileExtension - } - - // Returns the set of UTIs that correspond to valid _input_ image formats - // for Signal attachments. - // - // Image attachments may be converted to another image format before - // being uploaded. - private class var inputImageUTISet: Set { - // HEIC is valid input, but not valid output. Non-iOS11 clients do not support it. - let heicSet: Set = Set(["public.heic", "public.heif"]) - - return MimeTypeUtil.supportedImageUtiTypes - .union(animatedImageUTISet) - .union(heicSet) - } - - // Returns the set of UTIs that correspond to valid _output_ image formats - // for Signal attachments. - private class var outputImageUTISet: Set { - return MimeTypeUtil.supportedImageUtiTypes.union(animatedImageUTISet) - } - - private class var outputVideoUTISet: Set { - return Set([kUTTypeMPEG4 as String]) - } - - // Returns the set of UTIs that correspond to valid animated image formats - // for Signal attachments. - private class var animatedImageUTISet: Set { - return MimeTypeUtil.supportedAnimatedUtiTypes - } - - // Returns the set of UTIs that correspond to valid video formats - // for Signal attachments. - private class var videoUTISet: Set { - return MimeTypeUtil.supportedVideoUtiTypes - } - - // Returns the set of UTIs that correspond to valid audio formats - // for Signal attachments. - private class var audioUTISet: Set { - return MimeTypeUtil.supportedAudioUtiTypes - } - - // Returns the set of UTIs that correspond to valid image, video and audio formats - // for Signal attachments. - private class var mediaUTISet: Set { - return audioUTISet.union(videoUTISet).union(animatedImageUTISet).union(inputImageUTISet) - } - - @objc - public var isImage: Bool { - return SignalAttachment.outputImageUTISet.contains(dataUTI) - } - - @objc - public var isAnimatedImage: Bool { - return SignalAttachment.animatedImageUTISet.contains(dataUTI) - } - - @objc - public var isVideo: Bool { - return SignalAttachment.videoUTISet.contains(dataUTI) + guard + let fileExtension: String = sourceFilename.map({ $0 as NSString })?.pathExtension, + !fileExtension.isEmpty + else { return dataType.sessionFileExtension } + + return fileExtension.filteredFilename } - @objc - public var isAudio: Bool { - return SignalAttachment.audioUTISet.contains(dataUTI) - } + public var isImage: Bool { dataType.isImage || dataType.isAnimated } + public var isAnimatedImage: Bool { dataType.isAnimated } + public var isVideo: Bool { dataType.isVideo } + public var isAudio: Bool { dataType.isAudio } - @objc public var isText: Bool { - return ( - isConvertibleToTextMessage && - UTTypeConformsTo(dataUTI as CFString, kUTTypeText) - ) + isConvertibleToTextMessage && + dataType.conforms(to: .text) } - @objc public var isUrl: Bool { - return UTTypeConformsTo(dataUTI as CFString, kUTTypeURL) + dataType.conforms(to: .url) } - @objc public class func pasteboardHasPossibleAttachment() -> Bool { return UIPasteboard.general.numberOfItems > 0 } - @objc public class func pasteboardHasText() -> Bool { - if UIPasteboard.general.numberOfItems < 1 { - return false - } - let itemSet = IndexSet(integer: 0) - guard let pasteboardUTITypes = UIPasteboard.general.types(forItemSet: itemSet) else { - return false - } - let pasteboardUTISet = Set(pasteboardUTITypes[0]) + guard + UIPasteboard.general.numberOfItems > 0, + let pasteboardUTIdentifiers: [[String]] = UIPasteboard.general.types(forItemSet: IndexSet(integer: 0)), + let pasteboardUTTypes: Set = pasteboardUTIdentifiers.first.map({ Set($0.compactMap { UTType($0) }) }) + else { return false } // The pasteboard can be populated with multiple UTI types // with different payloads. iMessage for example will copy @@ -440,23 +352,9 @@ public class SignalAttachment: Equatable { // In general, our rule is to prefer non-text pasteboard // contents, so we return true IFF there is a text UTI type // and there is no non-text UTI type. - var hasTextUTIType = false - var hasNonTextUTIType = false - for utiType in pasteboardUTISet { - if UTTypeConformsTo(utiType as CFString, kUTTypeText) { - hasTextUTIType = true - } else if mediaUTISet.contains(utiType) { - hasNonTextUTIType = true - } - } - if pasteboardUTISet.contains(kUTTypeURL as String) { - // Treat URL as a textual UTI type. - hasTextUTIType = true - } - if hasNonTextUTIType { - return false - } - return hasTextUTIType + guard !pasteboardUTTypes.contains(where: { !$0.conforms(to: .text) }) else { return false } + + return pasteboardUTTypes.contains(where: { $0.conforms(to: .text) || $0.conforms(to: .url) }) } // Returns an attachment from the pasteboard, or nil if no attachment @@ -465,63 +363,58 @@ public class SignalAttachment: Equatable { // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. public class func attachmentFromPasteboard() -> SignalAttachment? { - guard UIPasteboard.general.numberOfItems >= 1 else { - return nil - } - // If pasteboard contains multiple items, use only the first. - let itemSet = IndexSet(integer: 0) - guard let pasteboardUTITypes = UIPasteboard.general.types(forItemSet: itemSet) else { - return nil - } - let pasteboardUTISet = Set(pasteboardUTITypes[0]) - for dataUTI in inputImageUTISet { - if pasteboardUTISet.contains(dataUTI) { - guard let data = dataForFirstPasteboardItem(dataUTI: dataUTI) else { - return nil - } - let dataSource = DataSourceValue(data: data, utiType: dataUTI) + guard + UIPasteboard.general.numberOfItems > 0, + let pasteboardUTIdentifiers: [[String]] = UIPasteboard.general.types(forItemSet: IndexSet(integer: 0)), + let pasteboardUTTypes: Set = pasteboardUTIdentifiers.first.map({ Set($0.compactMap { UTType($0) }) }) + else { return nil } + + for type in UTType.supportedInputImageTypes { + if pasteboardUTTypes.contains(type) { + guard let data: Data = dataForFirstPasteboardItem(type: type) else { return nil } + // Pasted images _SHOULD _NOT_ be resized, if possible. - return attachment(dataSource: dataSource, dataUTI: dataUTI, imageQuality: .original) + let dataSource = DataSourceValue(data: data, dataType: type) + return attachment(dataSource: dataSource, type: type, imageQuality: .original) } } - for dataUTI in videoUTISet { - if pasteboardUTISet.contains(dataUTI) { - guard let data = dataForFirstPasteboardItem(dataUTI: dataUTI) else { - return nil - } - let dataSource = DataSourceValue(data: data, utiType: dataUTI) - return videoAttachment(dataSource: dataSource, dataUTI: dataUTI) + for type in UTType.supportedVideoTypes { + if pasteboardUTTypes.contains(type) { + guard let data = dataForFirstPasteboardItem(type: type) else { return nil } + + let dataSource = DataSourceValue(data: data, dataType: type) + return videoAttachment(dataSource: dataSource, type: type) } } - for dataUTI in audioUTISet { - if pasteboardUTISet.contains(dataUTI) { - guard let data = dataForFirstPasteboardItem(dataUTI: dataUTI) else { - return nil - } - let dataSource = DataSourceValue(data: data, utiType: dataUTI) - return audioAttachment(dataSource: dataSource, dataUTI: dataUTI) + for type in UTType.supportedAudioTypes { + if pasteboardUTTypes.contains(type) { + guard let data = dataForFirstPasteboardItem(type: type) else { return nil } + + let dataSource = DataSourceValue(data: data, dataType: type) + return audioAttachment(dataSource: dataSource, type: type) } } - let dataUTI = pasteboardUTISet[pasteboardUTISet.startIndex] - guard let data = dataForFirstPasteboardItem(dataUTI: dataUTI) else { - return nil - } - let dataSource = DataSourceValue(data: data, utiType: dataUTI) - return genericAttachment(dataSource: dataSource, dataUTI: dataUTI) + let type: UTType = pasteboardUTTypes[pasteboardUTTypes.startIndex] + guard let data = dataForFirstPasteboardItem(type: type) else { return nil } + + let dataSource = DataSourceValue(data: data, dataType: type) + return genericAttachment(dataSource: dataSource, type: type) } // This method should only be called for dataUTIs that // are appropriate for the first pasteboard item. - private class func dataForFirstPasteboardItem(dataUTI: String) -> Data? { - let itemSet = IndexSet(integer: 0) - guard let datas = UIPasteboard.general.data(forPasteboardType: dataUTI, inItemSet: itemSet) else { - return nil - } - guard datas.count > 0 else { - return nil - } - return datas[0] + private class func dataForFirstPasteboardItem(type: UTType) -> Data? { + guard + UIPasteboard.general.numberOfItems > 0, + let dataValues: [Data] = UIPasteboard.general.data( + forPasteboardType: type.identifier, + inItemSet: IndexSet(integer: 0) + ), + !dataValues.isEmpty + else { return nil } + + return dataValues[0] } // MARK: Image Attachments @@ -530,18 +423,17 @@ public class SignalAttachment: Equatable { // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - private class func imageAttachment(dataSource: (any DataSource)?, dataUTI: String, imageQuality: TSImageQuality) -> SignalAttachment { - assert(dataUTI.count > 0) + private class func imageAttachment(dataSource: (any DataSource)?, type: UTType, imageQuality: TSImageQuality) -> SignalAttachment { assert(dataSource != nil) guard var dataSource = dataSource else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: type) attachment.error = .missingData return attachment } - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: dataSource, dataType: type) - guard inputImageUTISet.contains(dataUTI) else { + guard UTType.supportedInputImageTypes.contains(type) else { attachment.error = .invalidFileFormat return attachment } @@ -551,7 +443,7 @@ public class SignalAttachment: Equatable { return attachment } - if animatedImageUTISet.contains(dataUTI) { + if UTType.supportedAnimatedImageTypes.contains(type) { guard dataSource.dataLength <= MediaUtils.maxFileSizeAnimatedImage else { attachment.error = .fileSizeTooLarge return attachment @@ -566,7 +458,7 @@ public class SignalAttachment: Equatable { } attachment.cachedImage = image - let isValidOutput = isValidOutputImage(image: image, dataSource: dataSource, dataUTI: dataUTI, imageQuality: imageQuality) + let isValidOutput = isValidOutputImage(image: image, dataSource: dataSource, type: type, imageQuality: imageQuality) if let sourceFilename = dataSource.sourceFilename, let sourceFileExtension = sourceFilename.fileExtension, @@ -580,7 +472,7 @@ public class SignalAttachment: Equatable { // updating the extension as well. No problem. // However the problem comes in when you edit an HEIC image in Photos.app - the image is saved // in the Photos.app as a JPEG, but retains the (now incongruous) HEIC extension in the filename. - assert(dataUTI == kUTTypeJPEG as String || !isValidOutput) + assert(type == .jpeg || !isValidOutput) let baseFilename = sourceFilename.filenameWithoutExtension dataSource.sourceFilename = baseFilename.appendingFileExtension("jpg") @@ -596,34 +488,28 @@ public class SignalAttachment: Equatable { // If the proposed attachment already conforms to the // file size and content size limits, don't recompress it. - private class func isValidOutputImage(image: UIImage?, dataSource: (any DataSource)?, dataUTI: String, imageQuality: TSImageQuality) -> Bool { - guard image != nil else { - return false - } - guard let dataSource = dataSource else { - return false - } - guard SignalAttachment.outputImageUTISet.contains(dataUTI) else { - return false - } - if doesImageHaveAcceptableFileSize(dataSource: dataSource, imageQuality: imageQuality) && - dataSource.dataLength <= MediaUtils.maxFileSizeImage { - return true - } - return false + private class func isValidOutputImage(image: UIImage?, dataSource: (any DataSource)?, type: UTType, imageQuality: TSImageQuality) -> Bool { + guard + image != nil, + let dataSource = dataSource, + UTType.supportedOutputImageTypes.contains(type) + else { return false } + + return ( + doesImageHaveAcceptableFileSize(dataSource: dataSource, imageQuality: imageQuality) && + dataSource.dataLength <= MediaUtils.maxFileSizeImage + ) } // Factory method for an image attachment. // // NOTE: The attachment returned by this method may nil or not be valid. // Check the attachment's error property. - public class func imageAttachment(image: UIImage?, dataUTI: String, filename: String?, imageQuality: TSImageQuality) -> SignalAttachment { - assert(dataUTI.count > 0) - - guard let image = image else { + public class func imageAttachment(image: UIImage?, type: UTType, filename: String?, imageQuality: TSImageQuality) -> SignalAttachment { + guard let image: UIImage = image else { let dataSource = DataSourceValue.empty dataSource.sourceFilename = filename - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: dataSource, dataType: type) attachment.error = .missingData return attachment } @@ -631,7 +517,7 @@ public class SignalAttachment: Equatable { // Make a placeholder attachment on which to hang errors if necessary. let dataSource = DataSourceValue.empty dataSource.sourceFilename = filename - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: dataSource, dataType: type) attachment.cachedImage = image return compressImageAsJPEG(image: image, attachment: attachment, filename: filename, imageQuality: imageQuality) @@ -642,7 +528,7 @@ public class SignalAttachment: Equatable { if imageQuality == .original && attachment.dataLength < MediaUtils.maxFileSizeGeneric && - outputImageUTISet.contains(attachment.dataUTI) { + UTType.supportedOutputImageTypes.contains(attachment.dataType) { // We should avoid resizing images attached "as documents" if possible. return attachment } @@ -672,7 +558,7 @@ public class SignalAttachment: Equatable { if doesImageHaveAcceptableFileSize(dataSource: dataSource, imageQuality: imageQuality) && dataSource.dataLength <= MediaUtils.maxFileSizeImage { - let recompressedAttachment = SignalAttachment(dataSource: dataSource, dataUTI: kUTTypeJPEG as String) + let recompressedAttachment = SignalAttachment(dataSource: dataSource, dataType: .jpeg) recompressedAttachment.cachedImage = dstImage return recompressedAttachment } @@ -787,15 +673,14 @@ public class SignalAttachment: Equatable { } private class func removeImageMetadata(attachment: SignalAttachment) -> SignalAttachment { - guard let source = CGImageSourceCreateWithData(attachment.data as CFData, nil) else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: attachment.dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: attachment.dataType) attachment.error = .missingData return attachment } guard let type = CGImageSourceGetType(source) else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: attachment.dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: attachment.dataType) attachment.error = .invalidFileFormat return attachment } @@ -824,12 +709,12 @@ public class SignalAttachment: Equatable { } if CGImageDestinationFinalize(destination) { - guard let dataSource = DataSourceValue(data: mutableData as Data, utiType: attachment.dataUTI) else { + guard let dataSource = DataSourceValue(data: mutableData as Data, dataType: attachment.dataType) else { attachment.error = .couldNotRemoveMetadata return attachment } - let strippedAttachment = SignalAttachment(dataSource: dataSource, dataUTI: attachment.dataUTI) + let strippedAttachment = SignalAttachment(dataSource: dataSource, dataType: attachment.dataType) return strippedAttachment } else { @@ -844,18 +729,20 @@ public class SignalAttachment: Equatable { // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - private class func videoAttachment(dataSource: (any DataSource)?, dataUTI: String) -> SignalAttachment { + private class func videoAttachment(dataSource: (any DataSource)?, type: UTType) -> SignalAttachment { guard let dataSource = dataSource else { let dataSource = DataSourceValue.empty - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: dataSource, dataType: type) attachment.error = .missingData return attachment } - return newAttachment(dataSource: dataSource, - dataUTI: dataUTI, - validUTISet: videoUTISet, - maxFileSize: MediaUtils.maxFileSizeVideo) + return newAttachment( + dataSource: dataSource, + type: type, + validTypes: UTType.supportedVideoTypes, + maxFileSize: MediaUtils.maxFileSizeVideo + ) } public class func copyToVideoTempDir(url fromUrl: URL) throws -> URL { @@ -876,11 +763,11 @@ public class SignalAttachment: Equatable { public class func compressVideoAsMp4( dataSource: (any DataSource), - dataUTI: String, + type: UTType, using dependencies: Dependencies ) -> (AnyPublisher, AVAssetExportSession?) { guard let url = dataSource.dataUrl else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: type) attachment.error = .missingData return ( Just(attachment) @@ -893,7 +780,7 @@ public class SignalAttachment: Equatable { let asset = AVAsset(url: url) guard let exportSession = AVAssetExportSession(asset: asset, presetName: AVAssetExportPresetMediumQuality) else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: type) attachment.error = .couldNotConvertToMpeg4 return ( Just(attachment) @@ -917,7 +804,7 @@ public class SignalAttachment: Equatable { let mp4Filename = baseFilename?.filenameWithoutExtension.appendingFileExtension("mp4") guard let dataSource = DataSourcePath(fileUrl: exportURL, shouldDeleteOnDeinit: true) else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: type) attachment.error = .couldNotConvertToMpeg4 resolver(Result.success(attachment)) return @@ -925,7 +812,7 @@ public class SignalAttachment: Equatable { dataSource.sourceFilename = mp4Filename - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: kUTTypeMPEG4 as String) + let attachment = SignalAttachment(dataSource: dataSource, dataType: .mpeg4Movie) resolver(Result.success(attachment)) } } @@ -945,18 +832,18 @@ public class SignalAttachment: Equatable { } } - public class func compressVideoAsMp4(dataSource: (any DataSource), dataUTI: String, using dependencies: Dependencies) -> VideoCompressionResult { - let (attachmentPublisher, exportSession) = compressVideoAsMp4(dataSource: dataSource, dataUTI: dataUTI, using: dependencies) + public class func compressVideoAsMp4(dataSource: (any DataSource), type: UTType, using dependencies: Dependencies) -> VideoCompressionResult { + let (attachmentPublisher, exportSession) = compressVideoAsMp4(dataSource: dataSource, type: type, using: dependencies) return VideoCompressionResult(attachmentPublisher: attachmentPublisher, exportSession: exportSession) } - public class func isInvalidVideo(dataSource: (any DataSource), dataUTI: String) -> Bool { - guard videoUTISet.contains(dataUTI) else { + public class func isInvalidVideo(dataSource: (any DataSource), type: UTType) -> Bool { + guard UTType.supportedVideoTypes.contains(type) else { // not a video return false } - guard isValidOutputVideo(dataSource: dataSource, dataUTI: dataUTI) else { + guard isValidOutputVideo(dataSource: dataSource, type: type) else { // found a video which needs to be converted return true } @@ -965,18 +852,13 @@ public class SignalAttachment: Equatable { return false } - private class func isValidOutputVideo(dataSource: (any DataSource)?, dataUTI: String) -> Bool { - guard let dataSource = dataSource else { - return false - } - - guard SignalAttachment.outputVideoUTISet.contains(dataUTI) else { - return false - } - - if dataSource.dataLength <= MediaUtils.maxFileSizeVideo { - return true - } + private class func isValidOutputVideo(dataSource: (any DataSource)?, type: UTType) -> Bool { + guard + let dataSource = dataSource, + UTType.supportedOutputVideoTypes.contains(type), + dataSource.dataLength <= MediaUtils.maxFileSizeVideo + else { return false } + return false } @@ -986,11 +868,13 @@ public class SignalAttachment: Equatable { // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - private class func audioAttachment(dataSource: (any DataSource)?, dataUTI: String) -> SignalAttachment { - return newAttachment(dataSource: dataSource, - dataUTI: dataUTI, - validUTISet: audioUTISet, - maxFileSize: MediaUtils.maxFileSizeAudio) + private class func audioAttachment(dataSource: (any DataSource)?, type: UTType) -> SignalAttachment { + return newAttachment( + dataSource: dataSource, + type: type, + validTypes: UTType.supportedAudioTypes, + maxFileSize: MediaUtils.maxFileSizeAudio + ) } // MARK: Generic Attachments @@ -999,17 +883,19 @@ public class SignalAttachment: Equatable { // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - private class func genericAttachment(dataSource: (any DataSource)?, dataUTI: String) -> SignalAttachment { - return newAttachment(dataSource: dataSource, - dataUTI: dataUTI, - validUTISet: nil, - maxFileSize: MediaUtils.maxFileSizeGeneric) + private class func genericAttachment(dataSource: (any DataSource)?, type: UTType) -> SignalAttachment { + return newAttachment( + dataSource: dataSource, + type: type, + validTypes: nil, + maxFileSize: MediaUtils.maxFileSizeGeneric + ) } // MARK: Voice Messages - public class func voiceMessageAttachment(dataSource: (any DataSource)?, dataUTI: String) -> SignalAttachment { - let attachment = audioAttachment(dataSource: dataSource, dataUTI: dataUTI) + public class func voiceMessageAttachment(dataSource: (any DataSource)?, type: UTType) -> SignalAttachment { + let attachment = audioAttachment(dataSource: dataSource, type: type) attachment.isVoiceMessage = true return attachment } @@ -1020,51 +906,53 @@ public class SignalAttachment: Equatable { // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - public class func attachment(dataSource: (any DataSource)?, dataUTI: String) -> SignalAttachment { - return attachment(dataSource: dataSource, dataUTI: dataUTI, imageQuality: .original) + public class func attachment(dataSource: (any DataSource)?, type: UTType) -> SignalAttachment { + return attachment(dataSource: dataSource, type: type, imageQuality: .original) } // Factory method for attachments of any kind. // // NOTE: The attachment returned by this method may not be valid. // Check the attachment's error property. - public class func attachment(dataSource: (any DataSource)?, dataUTI: String, imageQuality: TSImageQuality) -> SignalAttachment { - if inputImageUTISet.contains(dataUTI) { - return imageAttachment(dataSource: dataSource, dataUTI: dataUTI, imageQuality: imageQuality) - } else if videoUTISet.contains(dataUTI) { - return videoAttachment(dataSource: dataSource, dataUTI: dataUTI) - } else if audioUTISet.contains(dataUTI) { - return audioAttachment(dataSource: dataSource, dataUTI: dataUTI) - } else { - return genericAttachment(dataSource: dataSource, dataUTI: dataUTI) + public class func attachment(dataSource: (any DataSource)?, type: UTType, imageQuality: TSImageQuality) -> SignalAttachment { + if UTType.supportedInputImageTypes.contains(type) { + return imageAttachment(dataSource: dataSource, type: type, imageQuality: imageQuality) + } else if UTType.supportedVideoTypes.contains(type) { + return videoAttachment(dataSource: dataSource, type: type) + } else if UTType.supportedAudioTypes.contains(type) { + return audioAttachment(dataSource: dataSource, type: type) } + + return genericAttachment(dataSource: dataSource, type: type) } public class func empty() -> SignalAttachment { - return SignalAttachment.attachment(dataSource: DataSourceValue.empty, - dataUTI: kUTTypeContent as String, - imageQuality: .original) + return SignalAttachment.attachment( + dataSource: DataSourceValue.empty, + type: .content, + imageQuality: .original + ) } // MARK: Helper Methods - private class func newAttachment(dataSource: (any DataSource)?, - dataUTI: String, - validUTISet: Set?, - maxFileSize: UInt) -> SignalAttachment { - assert(dataUTI.count > 0) - + private class func newAttachment( + dataSource: (any DataSource)?, + type: UTType, + validTypes: Set?, + maxFileSize: UInt + ) -> SignalAttachment { assert(dataSource != nil) guard let dataSource = dataSource else { - let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: DataSourceValue.empty, dataType: type) attachment.error = .missingData return attachment } - let attachment = SignalAttachment(dataSource: dataSource, dataUTI: dataUTI) + let attachment = SignalAttachment(dataSource: dataSource, dataType: type) - if let validUTISet = validUTISet { - guard validUTISet.contains(dataUTI) else { + if let validTypes: Set = validTypes { + guard validTypes.contains(type) else { attachment.error = .invalidFileFormat return attachment } @@ -1101,7 +989,7 @@ public class SignalAttachment: Equatable { } return ( - lhs.dataUTI == rhs.dataUTI && + lhs.dataType == rhs.dataType && lhs.captionText == rhs.captionText && lhs.linkPreviewDraft == rhs.linkPreviewDraft && lhs.isConvertibleToTextMessage == rhs.isConvertibleToTextMessage && diff --git a/SessionShareExtension/ShareNavController.swift b/SessionShareExtension/ShareNavController.swift index bb980353d..7ebfe080f 100644 --- a/SessionShareExtension/ShareNavController.swift +++ b/SessionShareExtension/ShareNavController.swift @@ -3,6 +3,7 @@ import UIKit import Combine import CoreServices +import UniformTypeIdentifiers import SignalUtilitiesKit import SessionUIKit import SessionUtilitiesKit @@ -261,78 +262,28 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { } // MARK: Attachment Prep - private class func itemMatchesSpecificUtiType(itemProvider: NSItemProvider, utiType: String) -> Bool { - // URLs, contacts and other special items have to be detected separately. - // Many shares (e.g. pdfs) will register many UTI types and/or conform to kUTTypeData. - guard itemProvider.registeredTypeIdentifiers.count == 1 else { - return false - } - guard let firstUtiType = itemProvider.registeredTypeIdentifiers.first else { - return false - } - - return (firstUtiType == utiType) - } - - private class func isVisualMediaItem(itemProvider: NSItemProvider) -> Bool { - return ( - itemProvider.hasItemConformingToTypeIdentifier(kUTTypeImage as String) || - itemProvider.hasItemConformingToTypeIdentifier(kUTTypeMovie as String) - ) - } - private class func isUrlItem(itemProvider: NSItemProvider) -> Bool { - return itemMatchesSpecificUtiType( - itemProvider: itemProvider, - utiType: kUTTypeURL as String - ) - } - - private class func isContactItem(itemProvider: NSItemProvider) -> Bool { - return itemMatchesSpecificUtiType( - itemProvider: itemProvider, - utiType: kUTTypeContact as String - ) - } - - private class func utiType(itemProvider: NSItemProvider) -> String? { - Log.info("utiTypeForItem: \(itemProvider.registeredTypeIdentifiers)") - - if isUrlItem(itemProvider: itemProvider) { - return kUTTypeURL as String - } - else if isContactItem(itemProvider: itemProvider) { - return kUTTypeContact as String - } - - // Use the first UTI that conforms to "data". - let matchingUtiType = itemProvider.registeredTypeIdentifiers.first { (utiType: String) -> Bool in - UTTypeConformsTo(utiType as CFString, kUTTypeData) - } - return matchingUtiType - } - - private class func createDataSource(utiType: String, url: URL, customFileName: String?) -> (any DataSource)? { - if utiType == (kUTTypeURL as String) { + private class func createDataSource(type: UTType, url: URL, customFileName: String?) -> (any DataSource)? { + switch (type, type.conforms(to: .text)) { // Share URLs as text messages whose text content is the URL - return DataSourceValue(text: url.absoluteString) - } - else if UTTypeConformsTo(utiType as CFString, kUTTypeText) { + case (.url, _): return DataSourceValue(text: url.absoluteString) + // Share text as oversize text messages. // // NOTE: SharingThreadPickerViewController will try to unpack them // and send them as normal text messages if possible. - return DataSourcePath(fileUrl: url, shouldDeleteOnDeinit: false) - } - - guard let dataSource = DataSourcePath(fileUrl: url, shouldDeleteOnDeinit: false) else { - return nil + case (_, true): return DataSourcePath(fileUrl: url, shouldDeleteOnDeinit: false) + + default: + guard let dataSource = DataSourcePath(fileUrl: url, shouldDeleteOnDeinit: false) else { + return nil + } + + // Fallback to the last part of the URL + dataSource.sourceFilename = (customFileName ?? url.lastPathComponent) + + return dataSource } - - // Fallback to the last part of the URL - dataSource.sourceFilename = (customFileName ?? url.lastPathComponent) - - return dataSource } private class func preferredItemProviders(inputItem: NSExtensionItem) -> [NSItemProvider]? { @@ -342,7 +293,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { var hasNonVisualMedia = false for attachment in attachments { - if isVisualMediaItem(itemProvider: attachment) { + if attachment.isVisualMediaItem { visualMediaItemProviders.append(attachment) } else { @@ -370,7 +321,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { return false } - return isUrlItem(itemProvider: itemProvider) + return itemProvider.matches(type: .url) }) { return [preferredAttachment] } @@ -412,11 +363,10 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { // MARK: - LoadedItem - private - struct LoadedItem { + private struct LoadedItem { let itemProvider: NSItemProvider let itemUrl: URL - let utiType: String + let type: UTType var customFileName: String? var isConvertibleToTextMessage = false @@ -424,13 +374,13 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { init(itemProvider: NSItemProvider, itemUrl: URL, - utiType: String, + type: UTType, customFileName: String? = nil, isConvertibleToTextMessage: Bool = false, isConvertibleToContactShare: Bool = false) { self.itemProvider = itemProvider self.itemUrl = itemUrl - self.utiType = utiType + self.type = type self.customFileName = customFileName self.isConvertibleToTextMessage = isConvertibleToTextMessage self.isConvertibleToContactShare = isConvertibleToContactShare @@ -449,12 +399,12 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { // * UTIs aren't very descriptive (there are far more MIME types than UTI types) // so in the case of file attachments we try to refine the attachment type // using the file extension. - guard let srcUtiType = ShareNavController.utiType(itemProvider: itemProvider) else { + guard let srcType: UTType = itemProvider.type else { let error = ShareViewControllerError.unsupportedMedia return Fail(error: error) .eraseToAnyPublisher() } - Log.debug("matched utiType: \(srcUtiType)") + Log.debug("matched UTType: \(srcType.identifier)") return Deferred { Future { resolver in @@ -477,7 +427,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { switch value { case let data as Data: let customFileName = "Contact.vcf" // stringlint:disable - let customFileExtension = MimeTypeUtil.fileExtension(forUtiType: srcUtiType) + let customFileExtension: String? = srcType.sessionFileExtension guard let tempFilePath = try? FileSystem.write(data: data, toTemporaryFileWithExtension: customFileExtension) else { resolver( @@ -492,7 +442,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { LoadedItem( itemProvider: itemProvider, itemUrl: fileUrl, - utiType: srcUtiType, + type: srcType, customFileName: customFileName, isConvertibleToContactShare: false ) @@ -516,15 +466,15 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { let fileUrl = URL(fileURLWithPath: tempFilePath) - let isConvertibleToTextMessage = !itemProvider.registeredTypeIdentifiers.contains(kUTTypeFileURL as String) + let isConvertibleToTextMessage = !itemProvider.registeredTypeIdentifiers.contains(UTType.fileURL.identifier) - if UTTypeConformsTo(srcUtiType as CFString, kUTTypeText) { + if srcType.conforms(to: .text) { resolver( Result.success( LoadedItem( itemProvider: itemProvider, itemUrl: fileUrl, - utiType: srcUtiType, + type: srcType, isConvertibleToTextMessage: isConvertibleToTextMessage ) ) @@ -536,7 +486,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { LoadedItem( itemProvider: itemProvider, itemUrl: fileUrl, - utiType: kUTTypeText as String, + type: .text, isConvertibleToTextMessage: isConvertibleToTextMessage ) ) @@ -546,8 +496,8 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { case let url as URL: // If the share itself is a URL (e.g. a link from Safari), try to send this as a text message. let isConvertibleToTextMessage = ( - itemProvider.registeredTypeIdentifiers.contains(kUTTypeURL as String) && - !itemProvider.registeredTypeIdentifiers.contains(kUTTypeFileURL as String) + itemProvider.registeredTypeIdentifiers.contains(UTType.url.identifier) && + !itemProvider.registeredTypeIdentifiers.contains(UTType.fileURL.identifier) ) if isConvertibleToTextMessage { @@ -556,7 +506,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { LoadedItem( itemProvider: itemProvider, itemUrl: url, - utiType: kUTTypeURL as String, + type: .url, isConvertibleToTextMessage: isConvertibleToTextMessage ) ) @@ -568,7 +518,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { LoadedItem( itemProvider: itemProvider, itemUrl: url, - utiType: srcUtiType, + type: srcType, isConvertibleToTextMessage: isConvertibleToTextMessage ) ) @@ -587,7 +537,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { LoadedItem( itemProvider: itemProvider, itemUrl: url, - utiType: srcUtiType + type: srcType ) ) ) @@ -613,7 +563,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { } } - itemProvider.loadItem(forTypeIdentifier: srcUtiType, options: nil, completionHandler: loadCompletion) + itemProvider.loadItem(forTypeIdentifier: srcType.identifier, options: nil, completionHandler: loadCompletion) } } .eraseToAnyPublisher() @@ -622,7 +572,6 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { private func buildAttachment(forLoadedItem loadedItem: LoadedItem) -> AnyPublisher { let itemProvider = loadedItem.itemProvider let itemUrl = loadedItem.itemUrl - let utiType = loadedItem.utiType var url = itemUrl do { @@ -635,35 +584,35 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { .eraseToAnyPublisher() } - Log.debug("building DataSource with url: \(url), utiType: \(utiType)") + Log.debug("building DataSource with url: \(url), UTType: \(loadedItem.type)") - guard let dataSource = ShareNavController.createDataSource(utiType: utiType, url: url, customFileName: loadedItem.customFileName) else { + guard let dataSource = ShareNavController.createDataSource(type: loadedItem.type, url: url, customFileName: loadedItem.customFileName) else { let error = ShareViewControllerError.assertionError(description: "Unable to read attachment data") return Fail(error: error) .eraseToAnyPublisher() } // start with base utiType, but it might be something generic like "image" - var specificUTIType = utiType - if utiType == (kUTTypeURL as String) { + var specificType: UTType = loadedItem.type + if loadedItem.type == .url { // Use kUTTypeURL for URLs. - } else if UTTypeConformsTo(utiType as CFString, kUTTypeText) { + } else if loadedItem.type.conforms(to: .text) { // Use kUTTypeText for text. } else if url.pathExtension.count > 0 { // Determine a more specific utiType based on file extension - if let typeExtension = MimeTypeUtil.utiType(forFileExtension: url.pathExtension) { - Log.debug("utiType based on extension: \(typeExtension)") - specificUTIType = typeExtension + if let fileExtensionType: UTType = UTType(sessionFileExtension: url.pathExtension) { + Log.debug("UTType based on extension: \(fileExtensionType.identifier)") + specificType = fileExtensionType } } - guard !SignalAttachment.isInvalidVideo(dataSource: dataSource, dataUTI: specificUTIType) else { + guard !SignalAttachment.isInvalidVideo(dataSource: dataSource, type: specificType) else { // This can happen, e.g. when sharing a quicktime-video from iCloud drive. - let (publisher, _) = SignalAttachment.compressVideoAsMp4(dataSource: dataSource, dataUTI: specificUTIType, using: Dependencies()) + let (publisher, _) = SignalAttachment.compressVideoAsMp4(dataSource: dataSource, type: specificType, using: Dependencies()) return publisher } - let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: specificUTIType, imageQuality: .medium) + let attachment = SignalAttachment.attachment(dataSource: dataSource, type: specificType, imageQuality: .medium) if loadedItem.isConvertibleToContactShare { Log.info("isConvertibleToContactShare") attachment.isConvertibleToContactShare = true @@ -737,12 +686,12 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { Log.verbose("item URL has no file extension: \(itemUrl).") return false } - guard let utiTypeForURL = MimeTypeUtil.utiType(forFileExtension: pathExtension) else { + guard let typeForURL: UTType = UTType(sessionFileExtension: pathExtension) else { Log.verbose("item has unknown UTI type: \(itemUrl).") return false } - Log.verbose("utiTypeForURL: \(utiTypeForURL)") - guard utiTypeForURL == kUTTypeMPEG4 as String else { + Log.verbose("typeForURL: \(typeForURL.identifier)") + guard typeForURL == .mpeg4Movie else { // Either it's not a video or it was a video which was not auto-converted to mp4. // Not affected by the issue. return false @@ -750,6 +699,42 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { // If video file already existed on disk as an mp4, then the host app didn't need to // apply any conversion, so no need to relocate the app. - return !itemProvider.registeredTypeIdentifiers.contains(kUTTypeMPEG4 as String) + return !itemProvider.registeredTypeIdentifiers.contains(UTType.mpeg4Movie.identifier) + } +} + +// MARK: - NSItemProvider Convenience + +private extension NSItemProvider { + var isVisualMediaItem: Bool { + hasItemConformingToTypeIdentifier(UTType.image.identifier) || + hasItemConformingToTypeIdentifier(UTType.movie.identifier) + } + + func matches(type: UTType) -> Bool { + // URLs, contacts and other special items have to be detected separately. + // Many shares (e.g. pdfs) will register many UTI types and/or conform to kUTTypeData. + guard + registeredTypeIdentifiers.count == 1, + let firstTypeIdentifier: String = registeredTypeIdentifiers.first + else { return false } + + return (firstTypeIdentifier == type.identifier) + } + + var type: UTType? { + Log.info("utiTypeForItem: \(registeredTypeIdentifiers)") + + switch (matches(type: .url), matches(type: .contact)) { + case (true, _): return .url + case (_, true): return .contact + + // Use the first UTI that conforms to "data". + default: + return registeredTypeIdentifiers + .compactMap { UTType($0) } + .first { $0.conforms(to: .data) } + } } } + diff --git a/SessionShareExtension/ThreadPickerVC.swift b/SessionShareExtension/ThreadPickerVC.swift index 18708dd77..7925efb91 100644 --- a/SessionShareExtension/ThreadPickerVC.swift +++ b/SessionShareExtension/ThreadPickerVC.swift @@ -307,7 +307,7 @@ final class ThreadPickerVC: UIViewController, UITableViewDataSource, UITableView attachmentId: LinkPreview .generateAttachmentIfPossible( imageData: linkPreviewDraft.jpegImageData, - mimeType: MimeTypeUtil.MimeType.imageJpeg + type: .jpeg )? .inserted(db) .id diff --git a/SessionUtilitiesKit/Media/Data+Image.swift b/SessionUtilitiesKit/Media/Data+Image.swift index 359e58393..0cefcd929 100644 --- a/SessionUtilitiesKit/Media/Data+Image.swift +++ b/SessionUtilitiesKit/Media/Data+Image.swift @@ -2,6 +2,7 @@ import UIKit import ImageIO +import UniformTypeIdentifiers import libwebp public extension Data { @@ -20,7 +21,7 @@ public extension Data { return ( count < maxFileSize && - isValidImage(mimeType: nil, format: imageFormat) && + isValidImage(type: nil, format: imageFormat) && hasValidImageDimensions(isAnimated: isAnimated) ) } @@ -106,18 +107,16 @@ public extension Data { // MARK: - Initialization - init?(validImageDataAt path: String, mimeType: String? = nil) throws { + init?(validImageDataAt path: String, type: UTType? = nil) throws { let fileUrl: URL = URL(fileURLWithPath: path) guard - let mimeType: String = (mimeType ?? MimeTypeUtil.mimeType(for: fileUrl.pathExtension)), - !mimeType.isEmpty, - let fileSize: UInt64 = FileSystem.fileSize(of: path) + let type: UTType = type, + let fileSize: UInt64 = FileSystem.fileSize(of: path), + fileSize <= FileSystem.maxFileSize, + (type.isImage || type.isAnimated) else { return nil } - guard fileSize <= FileSystem.maxFileSize else { return nil } - guard MimeTypeUtil.isImage(mimeType) || MimeTypeUtil.isAnimated(mimeType) else { return nil } - self = try Data(contentsOf: fileUrl, options: [.dataReadingMapped]) } @@ -132,11 +131,11 @@ public extension Data { return Data.hasValidImageDimension(source: imageSource, isAnimated: isAnimated) } - func isValidImage(mimeType: String?) -> Bool { - return isValidImage(mimeType: mimeType, format: self.guessedImageFormat) + func isValidImage(type: UTType?) -> Bool { + return isValidImage(type: type, format: self.guessedImageFormat) } - func isValidImage(mimeType: String?, format: ImageFormat) -> Bool { + func isValidImage(type: UTType?, format: ImageFormat) -> Bool { // Don't trust the file extension; iOS (e.g. UIKit, Core Graphics) will happily // load a .gif with a .png file extension // @@ -146,37 +145,24 @@ public extension Data { // deduced image format switch format { case .unknown: return false - case .png: return (mimeType == nil || mimeType == MimeTypeUtil.MimeType.imagePng) - case .jpeg: return (mimeType == nil || mimeType == MimeTypeUtil.MimeType.imageJpeg) + case .png: return (type == nil || type == .png) + case .jpeg: return (type == nil || type == .jpeg) case .gif: guard hasValidGifSize else { return false } - return (mimeType == nil || mimeType == MimeTypeUtil.MimeType.imageGif) - - case .tiff: - return ( - mimeType == nil || - mimeType == MimeTypeUtil.MimeType.imageTiff1 || - mimeType == MimeTypeUtil.MimeType.imageTiff2 - ) - - case .bmp: - return ( - mimeType == nil || - mimeType == MimeTypeUtil.MimeType.imageBmp1 || - mimeType == MimeTypeUtil.MimeType.imageBmp2 - ) + return (type == nil || type == .gif) - case .webp: - return (mimeType == nil || mimeType == MimeTypeUtil.MimeType.imageWebp) + case .tiff: return (type == nil || type == .tiff || type == .xTiff) + case .bmp: return (type == nil || type == .bmp || type == .xWinBpm) + case .webp: return (type == nil || type == .webP) } } - static func isValidImage(at path: String, mimeType: String? = nil) -> Bool { - guard let data: Data = try? Data(validImageDataAt: path, mimeType: mimeType) else { return false } + static func isValidImage(at path: String, type: UTType? = nil) -> Bool { + guard let data: Data = try? Data(validImageDataAt: path, type: type) else { return false } - return data.hasValidImageDimensions(isAnimated: (mimeType.map { MimeTypeUtil.isAnimated($0) } ?? false)) + return data.hasValidImageDimensions(isAnimated: type?.isAnimated == true) } static func hasValidImageDimension(source: CGImageSource, isAnimated: Bool) -> Bool { @@ -234,16 +220,16 @@ public extension Data { return ImageDimensions(pixelSize: CGSize(width: width, height: height), depthBytes: depthBytes) } - static func imageSize(for path: String, mimeType: String) -> CGSize { + static func imageSize(for path: String, type: UTType?) -> CGSize { let fileUrl: URL = URL(fileURLWithPath: path) - let isAnimated: Bool = MimeTypeUtil.isAnimated(mimeType) + let isAnimated: Bool = (type?.isAnimated ?? false) guard - let data: Data = try? Data(validImageDataAt: path, mimeType: mimeType), - let pixelSize: CGSize = imageSize(at: path, with: data, mimeType: mimeType, isAnimated: isAnimated) + let data: Data = try? Data(validImageDataAt: path, type: type), + let pixelSize: CGSize = imageSize(at: path, with: data, type: type, isAnimated: isAnimated) else { return .zero } - guard mimeType != MimeTypeUtil.MimeType.imageWebp else { return pixelSize } + guard type != .webP else { return pixelSize } // With CGImageSource we avoid loading the whole image into memory. let options: [String: Any] = [kCGImageSourceShouldCache as String: NSNumber(booleanLiteral: false)] @@ -281,11 +267,11 @@ public extension Data { } } - private static func imageSize(at path: String, with data: Data?, mimeType: String?, isAnimated: Bool) -> CGSize? { + private static func imageSize(at path: String, with data: Data?, type: UTType?, isAnimated: Bool) -> CGSize? { let fileUrl: URL = URL(fileURLWithPath: path) // Need to custom handle WebP images via libwebp - guard mimeType != MimeTypeUtil.MimeType.imageWebp else { + guard type != .webP else { guard let targetData: Data = (data ?? (try? Data(contentsOf: fileUrl, options: [.dataReadingMapped]))) else { return nil } diff --git a/SessionUtilitiesKit/Media/DataSource.swift b/SessionUtilitiesKit/Media/DataSource.swift index d14195f00..1cc3bf20d 100644 --- a/SessionUtilitiesKit/Media/DataSource.swift +++ b/SessionUtilitiesKit/Media/DataSource.swift @@ -1,6 +1,7 @@ // Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. import Foundation +import UniformTypeIdentifiers // MARK: - DataSource @@ -22,37 +23,18 @@ public protocol DataSource: Equatable { var mimeType: String? { get } var shouldDeleteOnDeinit: Bool { get } + var isValidImage: Bool { get } + var isValidVideo: Bool { get } + // MARK: - Functions func write(to path: String) throws } -public extension DataSource { - var isValidImage: Bool { - guard let dataPath: String = self.dataPathIfOnDisk else { - return self.data.isValidImage - } - - // if ows_isValidImage is given a file path, it will - // avoid loading most of the data into memory, which - // is considerably more performant, so try to do that. - return Data.isValidImage(at: dataPath, mimeType: mimeType) - } - - var isValidVideo: Bool { - guard let dataUrl: URL = self.dataUrl else { return false } - - return MediaUtils.isValidVideo(path: dataUrl.path) - } -} - // MARK: - DataSourceValue public class DataSourceValue: DataSource { - public static let empty: DataSourceValue = DataSourceValue( - data: Data(), - fileExtension: MimeTypeUtil.FileExtension.syncMessage - ) + public static let empty: DataSourceValue = DataSourceValue(data: Data(), fileExtension: UTType.fileExtensionText) public var data: Data public var sourceFilename: String? @@ -63,7 +45,7 @@ public class DataSourceValue: DataSource { public var dataUrl: URL? { dataPath.map { URL(fileURLWithPath: $0) } } public var dataPathIfOnDisk: String? { cachedFilePath } public var dataLength: Int { data.count } - public var mimeType: String? { MimeTypeUtil.mimeType(for: fileExtension) } + public var mimeType: String? { UTType.sessionMimeType(for: fileExtension) } var dataPath: String? { let fileExtension: String = self.fileExtension @@ -83,6 +65,23 @@ public class DataSourceValue: DataSource { } } + public var isValidImage: Bool { + guard let dataPath: String = self.dataPathIfOnDisk else { + return self.data.isValidImage + } + + // if ows_isValidImage is given a file path, it will + // avoid loading most of the data into memory, which + // is considerably more performant, so try to do that. + return Data.isValidImage(at: dataPath, type: UTType(sessionFileExtension: fileExtension)) + } + + public var isValidVideo: Bool { + guard let dataUrl: URL = self.dataUrl else { return false } + + return MediaUtils.isValidVideo(path: dataUrl.path) + } + // MARK: - Initialization public init(data: Data, fileExtension: String) { @@ -97,8 +96,8 @@ public class DataSourceValue: DataSource { self.init(data: data, fileExtension: fileExtension) } - public convenience init?(data: Data?, utiType: String) { - guard let fileExtension: String = MimeTypeUtil.fileExtension(forUtiType: utiType) else { return nil } + public convenience init?(data: Data?, dataType: UTType) { + guard let fileExtension: String = dataType.sessionFileExtension else { return nil } self.init(data: data, fileExtension: fileExtension) } @@ -109,11 +108,7 @@ public class DataSourceValue: DataSource { let data: Data = text.filteredForDisplay.data(using: .utf8) else { return nil } - self.init(data: data, fileExtension: MimeTypeUtil.FileExtension.text) - } - - convenience init(syncMessageData: Data) { - self.init(data: syncMessageData, fileExtension: MimeTypeUtil.FileExtension.syncMessage) + self.init(data: data, fileExtension: UTType.fileExtensionText) } deinit { @@ -191,7 +186,27 @@ public class DataSourcePath: DataSource { } } - public var mimeType: String? { MimeTypeUtil.mimeType(for: URL(fileURLWithPath: filePath).pathExtension) } + public var mimeType: String? { UTType.sessionMimeType(for: URL(fileURLWithPath: filePath).pathExtension) } + + public var isValidImage: Bool { + guard let dataPath: String = self.dataPathIfOnDisk else { + return self.data.isValidImage + } + + // if ows_isValidImage is given a file path, it will + // avoid loading most of the data into memory, which + // is considerably more performant, so try to do that. + return Data.isValidImage( + at: dataPath, + type: UTType(sessionFileExtension: URL(fileURLWithPath: filePath).pathExtension) + ) + } + + public var isValidVideo: Bool { + guard let dataUrl: URL = self.dataUrl else { return false } + + return MediaUtils.isValidVideo(path: dataUrl.path) + } // MARK: - Initialization diff --git a/SessionUtilitiesKit/Media/MediaUtils.swift b/SessionUtilitiesKit/Media/MediaUtils.swift index daf6a5a6f..8c80fbc02 100644 --- a/SessionUtilitiesKit/Media/MediaUtils.swift +++ b/SessionUtilitiesKit/Media/MediaUtils.swift @@ -76,11 +76,11 @@ public enum MediaUtils { return false } let fileExtension = URL(fileURLWithPath: path).pathExtension - guard let contentType = MimeTypeUtil.mimeType(for: fileExtension) else { + guard let contentType: String = UTType.sessionMimeType(for: fileExtension) else { SNLog("Media file has unknown content type.") return false } - guard MimeTypeUtil.isVideo(contentType) else { + guard UTType.isVideo(contentType) else { SNLog("Media file has invalid content type.") return false } diff --git a/SessionUtilitiesKit/Media/MimeTypeUtil.swift b/SessionUtilitiesKit/Media/UTType+Utilities.swift similarity index 74% rename from SessionUtilitiesKit/Media/MimeTypeUtil.swift rename to SessionUtilitiesKit/Media/UTType+Utilities.swift index ae28f987b..6ee882361 100644 --- a/SessionUtilitiesKit/Media/MimeTypeUtil.swift +++ b/SessionUtilitiesKit/Media/UTType+Utilities.swift @@ -4,386 +4,199 @@ import UIKit import MobileCoreServices +import UniformTypeIdentifiers -public extension MimeTypeUtil.MimeType { - static let imageGif: MimeTypeUtil.MimeType = "image/gif" - static let imagePng: MimeTypeUtil.MimeType = "image/png" - static let imageJpeg: MimeTypeUtil.MimeType = "image/jpeg" - static let imageWebp: MimeTypeUtil.MimeType = "image/webp" - static let imageTiff1: MimeTypeUtil.MimeType = "image/tiff" - static let imageTiff2: MimeTypeUtil.MimeType = "image/x-tiff" - static let imageBmp1: MimeTypeUtil.MimeType = "image/bmp" - static let imageBmp2: MimeTypeUtil.MimeType = "image/x-windows-bmp" +public extension UTType { + /// This is an invalid type used to improve DSL for UTType usage + static let invalid: UTType = UTType(exportedAs: "invalid") + static let fileExtensionText: String = "txt" + static let fileExtensionDefault: String = "bin" + static let fileExtensionDefaultImage: String = "png" + static let mimeTypeDefault: String = "application/octet-stream" + static let mimeTypeJpeg: String = "image/jpeg" + static let mimeTypePdf: String = "application/pdf" - static let applicationPdf: MimeTypeUtil.MimeType = "application/pdf" - static let applicationOctetStream: MimeTypeUtil.MimeType = "application/octet-stream" - - static let unknownMimeTypeForTests: MimeTypeUtil.MimeType = "unknown/mimetype" -} - -public extension MimeTypeUtil.FileExtension { - static let text: MimeTypeUtil.FileExtension = "txt" - static let syncMessage: MimeTypeUtil.FileExtension = "bin" - - static let unknownExtensionForTests: MimeTypeUtil.FileExtension = "unknown" -} - -public extension MimeTypeUtil.UTI { - static let unknownUTIForTests: MimeTypeUtil.UTI = "org.whispersystems.unknown" -} - -public enum MimeTypeUtil { - public typealias MimeType = String - public typealias FileExtension = String - public typealias UTI = String - - public static let supportedAudioUtiTypes: Set = { - supportedAudioMimeTypesToExtensionTypes - .keys - .compactMap { utiType(for: $0) } - .asSet() - }() - - public static let supportedImageUtiTypes: Set = { - supportedImageMimeTypesToExtensionTypes - .keys - .compactMap { utiType(for: $0) } - .asSet() - }() - - public static let supportedAnimatedUtiTypes: Set = { - supportedAnimatedMimeTypesToExtensionTypes - .keys - .compactMap { utiType(for: $0) } - .asSet() - }() - - public static let supportedVideoUtiTypes: Set = { - supportedVideoMimeTypesToExtensionTypes - .keys - .compactMap { utiType(for: $0) } - .asSet() - }() + static let xTiff: UTType = UTType(mimeType: "image/x-tiff")! + static let xWinBpm: UTType = UTType(mimeType: "image/x-windows-bmp")! + + static let supportedAnimatedImageTypes: Set = [ + .gif, .webP + ] - public static func isAnimated(_ mimeType: String) -> Bool { - return (supportedAnimatedMimeTypesToExtensionTypes[mimeType] != nil) - } + static let supportedAudioTypes: Set = [ + UTType(mimeType: "audio/aac"), + UTType(mimeType: "audio/x-m4p"), + UTType(mimeType: "audio/x-m4b"), + UTType(mimeType: "audio/x-m4a"), + .wav, + .mp3, + .aiff, + .mpeg4Audio, + UTType(mimeType: "audio/3gpp2"), + UTType(mimeType: "audio/3gpp") + ].compactMap { $0 }.asSet() - public static func isAnimated(utiType: String) -> Bool { - return supportedAnimatedMimeTypesToExtensionTypes.keys.contains { mimeType in - return (self.utiType(for: mimeType) == utiType) - } - } + static let supportedImageTypes: Set = [ + .jpeg, .png, .tiff, .bmp, .gif, .ico, .webP + ] - public static func isBinaryData(_ mimeType: String) -> Bool { - return (supportedBinaryDataMimeTypesToExtensionTypes[mimeType] != nil) - } + /// HEIC is valid input, but not valid output. Non-iOS11 clients do not support it. + static let supportedInputImageTypes: Set = supportedImageTypes + .union(supportedAnimatedImageTypes) + .union([.heic, .heif]) - public static func isImage(_ mimeType: String) -> Bool { - return (supportedImageMimeTypesToExtensionTypes[mimeType] != nil) - } + static let supportedOutputImageTypes: Set = supportedImageTypes + .union(supportedAnimatedImageTypes) - public static func isVideo(_ mimeType: String) -> Bool { - return (supportedVideoMimeTypesToExtensionTypes[mimeType] != nil) - } + static let supportedVideoTypes: Set = [ + UTType(mimeType: "video/3gpp"), + UTType(mimeType: "video/3gpp2"), + .mpeg4Movie, + .appleProtectedMPEG4Video, + .quickTimeMovie, + UTType(mimeType: "video/x-m4v"), + UTType(mimeType: "video/mpeg") + ].compactMap { $0 }.asSet() - public static func isAudio(_ mimeType: String) -> Bool { - return (supportedAudioMimeTypesToExtensionTypes[mimeType] != nil) - } + static let supportedOutputVideoTypes: Set = [.mpeg4Movie] - public static func isText(_ mimeType: String) -> Bool { - return supportedTextMimeTypes.contains(mimeType) - } + static let supportedVisualMediaTypes: Set = supportedImageTypes + .union(supportedAnimatedImageTypes) + .union(supportedVideoTypes) - public static func isMicrosoftDoc(_ mimeType: String) -> Bool { - return supportedMicrosoftDocMimeTypes.contains(mimeType) - } + static let supportedTextTypes: Set = [ + .text, .plainText, .commaSeparatedText, .tabSeparatedText + ] - public static func isVisualMedia(_ mimeType: String) -> Bool { - guard !isImage(mimeType) else { return true } - guard !isVideo(mimeType) else { return true } - guard !isAnimated(mimeType) else { return true } + static let supportedMicrosoftDocTypes: Set = [ + // Word files + UTType(mimeType: "application/msword"), - return false - } - - public static func mimeType(for fileExtension: String) -> String? { - return genericExtensionTypesToMimeTypes[fileExtension] - } - - public static func filePath( - for attachmentId: String, - ofMimeType mimeType: String, - sourceFilename: String?, - in folder: String - ) -> String? { - let defaultFileExtension: String = "bin" + UTType(mimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"), + UTType(mimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.template"), + UTType(mimeType: "application/vnd.ms-word.document.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-word.template.macroEnabled.12"), - if let sourceFilename: String = sourceFilename, !sourceFilename.isEmpty { - // Ensure that the filename is a valid filesystem name, - // replacing invalid characters with an underscore. - var normalizedFileName: String = sourceFilename - .trimmingCharacters(in: .whitespacesAndNewlines) - .components(separatedBy: .whitespacesAndNewlines) - .joined(separator: "_") - .components(separatedBy: .illegalCharacters) - .joined(separator: "_") - .components(separatedBy: .controlCharacters) - .joined(separator: "_") - .components(separatedBy: CharacterSet(charactersIn: "<>|\\:()&;?*/~")) - .joined(separator: "_") - - while normalizedFileName.hasPrefix(".") { - normalizedFileName = String(normalizedFileName.substring(from: 1)) - } - - var targetFileExtension: String = URL(fileURLWithPath: normalizedFileName).pathExtension - let filenameWithoutExtension: String = URL(fileURLWithPath: normalizedFileName) - .deletingPathExtension() - .lastPathComponent - .trimmingCharacters(in: .whitespacesAndNewlines) - - // If the filename has not file extension, deduce one - // from the MIME type. - if targetFileExtension.isEmpty { - targetFileExtension = (fileExtension(for: mimeType) ?? defaultFileExtension) - } - - targetFileExtension = targetFileExtension.lowercased() - - if !targetFileExtension.isEmpty { - // Store the file in a subdirectory whose name is the uniqueId of this attachment, - // to avoid collisions between multiple attachments with the same name - let attachmentFolderPath: String = folder.appending("/\(attachmentId)") - - guard case .success = Result(try FileSystem.ensureDirectoryExists(at: attachmentFolderPath)) else { - return nil - } - - return attachmentFolderPath.appending("/\(filenameWithoutExtension).\(targetFileExtension)") - } - } + // Excel files + UTType(mimeType: "application/vnd.ms-excel"), - let maybeExtension: String? = { - guard !isVideo(mimeType) else { return supportedVideoMimeTypesToExtensionTypes[mimeType] } - guard !isAudio(mimeType) else { return supportedAudioMimeTypesToExtensionTypes[mimeType] } - guard !isImage(mimeType) else { return supportedImageMimeTypesToExtensionTypes[mimeType] } - guard !isAnimated(mimeType) else { return supportedAnimatedMimeTypesToExtensionTypes[mimeType] } - guard !isBinaryData(mimeType) else { return supportedBinaryDataMimeTypesToExtensionTypes[mimeType] } - guard mimeType != MimeType.unknownMimeTypeForTests else { - // This file extension is arbitrary - it should never be exposed to the user or - // be used outside the app. - return FileExtension.unknownExtensionForTests - } - - return fileExtension(for: mimeType) - }() + UTType(mimeType: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"), + UTType(mimeType: "application/vnd.openxmlformats-officedocument.spreadsheetml.template"), + UTType(mimeType: "application/vnd.ms-excel.sheet.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-excel.template.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-excel.addin.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-excel.sheet.binary.macroEnabled.12"), - let targetFileExtension: String = (maybeExtension ?? defaultFileExtension).lowercased() + // Powerpoint files + UTType(mimeType: "application/vnd.ms-powerpoint"), - return folder.appending("/\(attachmentId).\(targetFileExtension)") - } + UTType(mimeType: "application/vnd.openxmlformats-officedocument.presentationml.presentation"), + UTType(mimeType: "application/vnd.openxmlformats-officedocument.presentationml.template"), + UTType(mimeType: "application/vnd.openxmlformats-officedocument.presentationml.slideshow"), + UTType(mimeType: "application/vnd.ms-powerpoint.addin.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-powerpoint.presentation.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-powerpoint.template.macroEnabled.12"), + UTType(mimeType: "application/vnd.ms-powerpoint.slideshow.macroEnabled.12") + ].compactMap { $0 }.asSet() - // MARK: - Deduction Logic + var isAnimated: Bool { UTType.supportedAnimatedImageTypes.contains(self) } + var isImage: Bool { UTType.supportedImageTypes.contains(self) } + var isVideo: Bool { UTType.supportedVideoTypes.contains(self) } + var isAudio: Bool { UTType.supportedAudioTypes.contains(self) } + var isText: Bool { UTType.supportedTextTypes.contains(self) } + var isMicrosoftDoc: Bool { UTType.supportedMicrosoftDocTypes.contains(self) } + var isVisualMedia: Bool { isImage || isVideo || isAnimated } - public static func fileExtension(forUtiType utiType: String?) -> String? { - guard let utiType: String = utiType else { return nil } - + var sessionFileExtension: String? { // Special-case the "aac" filetype we use for voice messages (for legacy reasons) // to use a .m4a file extension, not .aac, since AVAudioPlayer can't handle .aac // properly. Doesn't affect file contents. - guard utiType != "public.aac-audio" else { return "m4a" } - - let maybeFileExtension: Unmanaged? = UTTypeCopyPreferredTagWithClass(utiType as CFString, kUTTagClassFilenameExtension) - - guard let fileExtension: CFString = maybeFileExtension?.takeRetainedValue() else { return nil } + guard identifier != "public.aac-audio" else { return "m4a" } - return fileExtension as String - } - - public static func fileExtension(for mimeType: String) -> String? { // Try to deduce the file extension by using a lookup table. // // This should be more accurate than deducing the file extension by // converting to a UTI type. For example, .m4a files will have a // UTI type of kUTTypeMPEG4Audio which incorrectly yields the file // extension .mp4 instead of .m4a. - guard let fileExtension: String = genericExtensionTypesToMimeTypes[mimeType] else { - // Try to deduce the file extension by converting to a UTI type - return fileExtension(forUtiType: utiType(for: mimeType)) - } + guard + let mimeType: String = preferredMIMEType, + let fileExtension: String = UTType.genericExtensionTypesToMimeTypes + .first(where: { _, value in value == mimeType })? + .value + else { return preferredFilenameExtension } return fileExtension } - public static func utiType(forFileExtension fileExtension: String) -> String? { - let maybeUtiType: Unmanaged? = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, fileExtension as CFString, nil) - - guard let utiType: CFString = maybeUtiType?.takeRetainedValue() else { return nil } + // MARK: - Initialization + + init?(sessionFileExtension: String) { + guard + let mimeType: String = UTType.sessionMimeType(for: sessionFileExtension), + let result: UTType = UTType(sessionMimeType: mimeType) + else { return nil } - return utiType as String + self = result } - public static func utiType(for mimeType: String) -> String? { - let maybeUtiType: Unmanaged? = UTTypeCreatePreferredIdentifierForTag(kUTTagClassMIMEType, mimeType as CFString, nil) - - guard let utiType: CFString = maybeUtiType?.takeRetainedValue() else { - switch mimeType as String { - case "audio/amr": return "org.3gpp.adaptive-multi-rate-audio" - case "audio/mp3", "audio/x-mpeg", "audio/mpeg", "audio/mpeg3", "audio/x-mp3", "audio/x-mpeg3": - return kUTTypeMP3 as String - - case "audio/aac", "audio/x-m4a": return kUTTypeMPEG4Audio as String - case "audio/aiff", "audio/x-aiff": return kUTTypeAudioInterchangeFileFormat as String + init?(sessionMimeType: String) { + guard let result: UTType = UTType(mimeType: sessionMimeType) else { + switch sessionMimeType { + case "audio/amr": + guard let result: UTType = UTType("org.3gpp.adaptive-multi-rate-audio") else { return nil } + self = result + case "audio/mp3", "audio/x-mpeg", "audio/mpeg", "audio/mpeg3", "audio/x-mp3", "audio/x-mpeg3": self = .mp3 + case "audio/aac", "audio/x-m4a": self = .mpeg4Audio + case "audio/aiff", "audio/x-aiff": self = .aiff + default: return nil } + + return } - return utiType as String + self = result } -} - -// MARK: - Definitions - -fileprivate extension MimeTypeUtil { - static let supportedVideoMimeTypesToExtensionTypes: [String: String] = [ - "video/3gpp": "3gp", - "video/3gpp2": "3g2", - "video/mp4": "mp4", - "video/quicktime": "mov", - "video/x-m4v": "m4v", - "video/mpeg": "mpg" - ] - static let supportedAudioMimeTypesToExtensionTypes: [String: String] = [ - "audio/aac": "m4a", - "audio/x-m4p": "m4p", - "audio/x-m4b": "m4b", - "audio/x-m4a": "m4a", - "audio/wav": "wav", - "audio/x-wav": "wav", - "audio/x-mpeg": "mp3", - "audio/mpeg": "mp3", - "audio/mp4": "mp4", - "audio/mp3": "mp3", - "audio/mpeg3": "mp3", - "audio/x-mp3": "mp3", - "audio/x-mpeg3": "mp3", - "audio/aiff": "aiff", - "audio/x-aiff": "aiff", - "audio/3gpp2": "3g2", - "audio/3gpp": "3gp" - ] + // MARK: - Convenience - static let supportedImageMimeTypesToExtensionTypes: [String: String] = [ - "image/jpeg": "jpeg", - "image/pjpeg": "jpeg", - "image/png": "png", - "image/tiff": "tif", - "image/x-tiff": "tif", - "image/bmp": "bmp", - "image/x-windows-bmp": "bmp", - "image/gif": "gif", - "image/x-icon": "ico", - "image/webp": "webp" - ] + static func isAnimated(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isAnimated + } - static let supportedAnimatedMimeTypesToExtensionTypes: [String: String] = [ - "image/gif": "gif", - "image/webp": "image/webp" - ] + static func isImage(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isImage + } - static let supportedTextMimeTypes: Set = [ - "text/plain", "text/csv", "text/tab-separated-values" - ] + static func isVideo(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isVideo + } - static let supportedMicrosoftDocMimeTypes: Set = [ - // Word files - "application/msword", - - "application/vnd.openxmlformats-officedocument.wordprocessingml.document", - "application/vnd.openxmlformats-officedocument.wordprocessingml.template", - "application/vnd.ms-word.document.macroEnabled.12", - "application/vnd.ms-word.template.macroEnabled.12", - - // Excel files - "application/vnd.ms-excel", - - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/vnd.openxmlformats-officedocument.spreadsheetml.template", - "application/vnd.ms-excel.sheet.macroEnabled.12", - "application/vnd.ms-excel.template.macroEnabled.12", - "application/vnd.ms-excel.addin.macroEnabled.12", - "application/vnd.ms-excel.sheet.binary.macroEnabled.12", - - // Powerpoint files - "application/vnd.ms-powerpoint", - - "application/vnd.openxmlformats-officedocument.presentationml.presentation", - "application/vnd.openxmlformats-officedocument.presentationml.template", - "application/vnd.openxmlformats-officedocument.presentationml.slideshow", - "application/vnd.ms-powerpoint.addin.macroEnabled.12", - "application/vnd.ms-powerpoint.presentation.macroEnabled.12", - "application/vnd.ms-powerpoint.template.macroEnabled.12", - "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" - ] + static func isAudio(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isAudio + } - static let supportedBinaryDataMimeTypesToExtensionTypes: [String: String] = [ - "application/octet-stream": "dat" - ] + static func isText(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isText + } - static let supportedVideoExtensionTypesToMimeTypes: [String: String] = [ - "3gp": "video/3gpp", - "3gpp": "video/3gpp", - "3gp2": "video/3gpp2", - "3gpp2": "video/3gpp2", - "mp4": "video/mp4", - "mov": "video/quicktime", - "mqv": "video/quicktime", - "m4v": "video/x-m4v", - "mpg": "video/mpeg", - "mpeg": "video/mpeg" - ] + static func isMicrosoftDoc(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isMicrosoftDoc + } - static let supportedAudioExtensionTypesToMimeTypes: [String: String] = [ - "3gp": "audio/3gpp", - "3gpp": "@audio/3gpp", - "3g2": "audio/3gpp2", - "3gp2": "audio/3gpp2", - "aiff": "audio/aiff", - "aif": "audio/aiff", - "aifc": "audio/aiff", - "cdda": "audio/aiff", - "mp3": "audio/mp3", - "swa": "audio/mp3", - "mp4": "audio/mp4", - "wav": "audio/wav", - "bwf": "audio/wav", - "m4a": "audio/x-m4a", - "m4b": "audio/x-m4b", - "m4p": "audio/x-m4p" - ] + static func isVisualMedia(_ mimeType: String) -> Bool { + return (UTType(sessionMimeType: mimeType) ?? .invalid).isVisualMedia + } - static let supportedImageExtensionTypesToMimeTypes: [String: String] = [ - "png": "image/png", - "x-png": "image/png", - "jfif": "image/jpeg", - "jfif-tbnl": "image/jpeg", - "jpe": "image/jpeg", - "jpeg": "image/jpeg", - "jpg": "image/jpeg", - "tif": "image/tiff", - "tiff": "image/tiff", - "webp": "image/webp" - ] + // MARK: - Lookup Table - static let supportedAnimatedExtensionTypesToMimeTypes: [String: String] = [ - "gif": "image/gif", - "image/webp": "image/webp" - ] + static func sessionMimeType(for fileExtension: String) -> String? { + return UTType.genericExtensionTypesToMimeTypes[fileExtension] + } - static let genericExtensionTypesToMimeTypes = [ + private static let genericExtensionTypesToMimeTypes: [String: String] = [ "123": "application/vnd.lotus-1-2-3", "3dml": "text/vnd.in3d.3dml", "3ds": "image/x-3ds", @@ -1369,24 +1182,4 @@ fileprivate extension MimeTypeUtil { "zirz": "application/vnd.zul", "zmm": "application/vnd.handheld-entertainment+xml", ] - - static func isSupportedVideo(mimeType: String) -> Bool { - return (supportedVideoMimeTypesToExtensionTypes[mimeType] != nil) - } - - static func isSupportedAudio(mimeType: String) -> Bool { - return (supportedAudioMimeTypesToExtensionTypes[mimeType] != nil) - } - - static func isSupportedImage(mimeType: String) -> Bool { - return (supportedImageMimeTypesToExtensionTypes[mimeType] != nil) - } - - static func isSupportedAnimated(mimeType: String) -> Bool { - return (supportedAnimatedMimeTypesToExtensionTypes[mimeType] != nil) - } - - static func isSupportedBinaryData(mimeType: String) -> Bool { - return (supportedBinaryDataMimeTypesToExtensionTypes[mimeType] != nil) - } } diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift index cb0c64439..904a26bf9 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift @@ -505,18 +505,18 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC Log.error("[AttachmentApprovalViewController] Could not render for output.") return attachmentItem.attachment } - var dataUTI = kUTTypeImage as String + var dataType: UTType = .image let maybeDstData: Data? = { let isLossy: Bool = ( - attachmentItem.attachment.mimeType.caseInsensitiveCompare(MimeTypeUtil.MimeType.imageJpeg) == .orderedSame + attachmentItem.attachment.mimeType.caseInsensitiveCompare(UTType.mimeTypeJpeg) == .orderedSame ) if isLossy { - dataUTI = kUTTypeJPEG as String + dataType = .jpeg return dstImage.jpegData(compressionQuality: 0.9) } else { - dataUTI = kUTTypePNG as String + dataType = .png return dstImage.pngData() } }() @@ -525,7 +525,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC Log.error("[AttachmentApprovalViewController] Could not export for output.") return attachmentItem.attachment } - guard let dataSource = DataSourceValue(data: dstData, utiType: dataUTI) else { + guard let dataSource = DataSourceValue(data: dstData, dataType: dataType) else { Log.error("[AttachmentApprovalViewController] Could not prepare data source for output.") return attachmentItem.attachment } @@ -533,13 +533,13 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC // Rewrite the filename's extension to reflect the output file format. var filename: String? = attachmentItem.attachment.sourceFilename if let sourceFilename = attachmentItem.attachment.sourceFilename { - if let fileExtension: String = MimeTypeUtil.fileExtension(forUtiType: dataUTI) { + if let fileExtension: String = dataType.sessionFileExtension { filename = (sourceFilename as NSString).deletingPathExtension.appendingFileExtension(fileExtension) } } dataSource.sourceFilename = filename - let dstAttachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: dataUTI, imageQuality: .medium) + let dstAttachment = SignalAttachment.attachment(dataSource: dataSource, type: dataType, imageQuality: .medium) if let attachmentError = dstAttachment.error { Log.error("[AttachmentApprovalViewController] Could not prepare attachment for output: \(attachmentError).") return attachmentItem.attachment diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Image Editing/ImageEditorModel.swift b/SignalUtilitiesKit/Media Viewing & Editing/Image Editing/ImageEditorModel.swift index 8ae311646..e2b9318ac 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Image Editing/ImageEditorModel.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Image Editing/ImageEditorModel.swift @@ -1,6 +1,7 @@ // Copyright (c) 2019 Open Whisper Systems. All rights reserved. import UIKit +import UniformTypeIdentifiers import SessionUtilitiesKit // Used to represent undo/redo operations. @@ -57,16 +58,16 @@ public class ImageEditorModel { let srcFileName = (srcImagePath as NSString).lastPathComponent let srcFileExtension = (srcFileName as NSString).pathExtension - guard let mimeType = MimeTypeUtil.mimeType(for: srcFileExtension) else { + guard let type: UTType = UTType(sessionFileExtension: srcFileExtension) else { Log.error("[ImageEditorModel] Couldn't determine MIME type for file.") throw ImageEditorError.invalidInput } - guard MimeTypeUtil.isImage(mimeType), !MimeTypeUtil.isAnimated(mimeType) else { - Log.error("[ImageEditorModel] Invalid MIME type: \(mimeType).") + guard type.isImage && !type.isAnimated else { + Log.error("[ImageEditorModel] Invalid MIME type: \(type.preferredMIMEType ?? "unknown").") throw ImageEditorError.invalidInput } - let srcImageSizePixels = Data.imageSize(for: srcImagePath, mimeType: mimeType) + let srcImageSizePixels = Data.imageSize(for: srcImagePath, type: type) guard srcImageSizePixels.width > 0, srcImageSizePixels.height > 0 else { Log.error("[ImageEditorModel] Couldn't determine image size.") throw ImageEditorError.invalidInput diff --git a/_SharedTestUtilities/NimbleExtensions.swift b/_SharedTestUtilities/NimbleExtensions.swift index e11a461dd..0cbe4c72d 100644 --- a/_SharedTestUtilities/NimbleExtensions.swift +++ b/_SharedTestUtilities/NimbleExtensions.swift @@ -171,7 +171,7 @@ fileprivate struct CallInfo { } } -fileprivate func generateCallInfo(_ actualExpression: Expression, _ functionBlock: @escaping (inout T) throws -> R) -> CallInfo where M: Mock { +fileprivate func generateCallInfo(_ actualExpression: Nimble.Expression, _ functionBlock: @escaping (inout T) throws -> R) -> CallInfo where M: Mock { var maybeFunction: MockFunction? var allFunctionsCalled: [FunctionConsumer.Key] = [] var desiredFunctionCalls: [String] = [] From 2bc893982af6b69b7147bff1818b50d8d75ce398 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Tue, 8 Oct 2024 09:50:51 +1100 Subject: [PATCH 06/17] Added a function to retrieve the snode cache size from libSession --- LibSession-Util | 2 +- SessionSnodeKit/LibSession/LibSession+Networking.swift | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/LibSession-Util b/LibSession-Util index f19df114e..10f15aeb1 160000 --- a/LibSession-Util +++ b/LibSession-Util @@ -1 +1 @@ -Subproject commit f19df114e5f4f6c29112f49c0b4897d7b93b78f1 +Subproject commit 10f15aeb1f9712452adf55a8d0826be6271c10e4 diff --git a/SessionSnodeKit/LibSession/LibSession+Networking.swift b/SessionSnodeKit/LibSession/LibSession+Networking.swift index 162f9abd3..a5c16f242 100644 --- a/SessionSnodeKit/LibSession/LibSession+Networking.swift +++ b/SessionSnodeKit/LibSession/LibSession+Networking.swift @@ -167,6 +167,12 @@ public extension LibSession { network_clear_cache(network) } + static func snodeCacheSize() -> Int { + guard let network: UnsafeMutablePointer = networkCache.wrappedValue else { return 0 } + + return network_get_snode_cache_size(network) + } + static func getSwarm(swarmPublicKey: String) -> AnyPublisher, Error> { typealias Output = Result, Error> From 0afb0c399b2d38b5f40987ebe0ad583e3c0acd4e Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 9 Oct 2024 12:14:14 +1100 Subject: [PATCH 07/17] Updated to the latest GRDB (Built with Xcode 16) --- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 844880088..97979c57d 100644 --- a/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -87,8 +87,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/oxen-io/session-grdb-swift.git", "state" : { - "revision" : "426149dd868219517df20eebeca27ff385fee34a", - "version" : "106.29.2" + "revision" : "04f480b95263b7c517085100ceb249f879c021d8", + "version" : "106.29.3" } }, { From 08e8a48eedc8fe684b4f745d92d8e06e182b2b99 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 9 Oct 2024 13:28:12 +1100 Subject: [PATCH 08/17] Optimised the libSession size limit tests, tweaked another couple failing tests --- .../LibSession/LibSessionUtilSpec.swift | 147 +++++++++++------- 1 file changed, 89 insertions(+), 58 deletions(-) diff --git a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift index c8f8b2584..7d1d132bd 100644 --- a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift +++ b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift @@ -138,7 +138,7 @@ fileprivate extension LibSessionUtilSpec { it("can catch size limit errors thrown when pushing") { var randomGenerator: ARC4RandomNumberGenerator = ARC4RandomNumberGenerator(seed: 1000) - try (0..<10000).forEach { index in + try (0..<2500).forEach { index in var contact: contacts_contact = try createContact( for: index, in: conf, @@ -148,7 +148,7 @@ fileprivate extension LibSessionUtilSpec { contacts_set(conf, &contact) } - expect(contacts_size(conf)).to(equal(10000)) + expect(contacts_size(conf)).to(equal(2500)) expect(config_needs_push(conf)).to(beTrue()) expect(config_needs_dump(conf)).to(beTrue()) @@ -187,109 +187,77 @@ fileprivate extension LibSessionUtilSpec { // MARK: ---- has not changed the max empty records it("has not changed the max empty records") { var randomGenerator: ARC4RandomNumberGenerator = ARC4RandomNumberGenerator(seed: 1000) + let expectedRecords: Int = 2212 - for index in (0..<100000) { + repeat { var contact: contacts_contact = try createContact( - for: index, + for: numRecords, in: conf, rand: &randomGenerator ) contacts_set(conf, &contact) - - do { - config_push(conf)?.deallocate() - try LibSessionError.throwIfNeeded(conf) - } - catch { break } - - // We successfully inserted a contact and didn't hit the limit so increment the counter - numRecords += 1 - } + } while !has(conf, with: &numRecords, hitLimit: expectedRecords) // Check that the record count matches the maximum when we last checked - expect(numRecords).to(equal(2212)) + expect(numRecords).to(equal(expectedRecords)) } // MARK: ---- has not changed the max name only records it("has not changed the max name only records") { var randomGenerator: ARC4RandomNumberGenerator = ARC4RandomNumberGenerator(seed: 1000) + let expectedRecords: Int = 742 - for index in (0..<100000) { + repeat { var contact: contacts_contact = try createContact( - for: index, + for: numRecords, in: conf, rand: &randomGenerator, maxing: [.name] ) contacts_set(conf, &contact) - - do { - config_push(conf)?.deallocate() - try LibSessionError.throwIfNeeded(conf) - } - catch { break } - - // We successfully inserted a contact and didn't hit the limit so increment the counter - numRecords += 1 - } + } while !has(conf, with: &numRecords, hitLimit: expectedRecords) // Check that the record count matches the maximum when we last checked - expect(numRecords).to(equal(742)) + expect(numRecords).to(equal(expectedRecords)) } // MARK: ---- has not changed the max name and profile pic only records it("has not changed the max name and profile pic only records") { var randomGenerator: ARC4RandomNumberGenerator = ARC4RandomNumberGenerator(seed: 1000) + let expectedRecords: Int = 274 - for index in (0..<100000) { + repeat { var contact: contacts_contact = try createContact( - for: index, + for: numRecords, in: conf, rand: &randomGenerator, maxing: [.name, .profile_pic] ) contacts_set(conf, &contact) - - do { - config_push(conf)?.deallocate() - try LibSessionError.throwIfNeeded(conf) - } - catch { break } - - // We successfully inserted a contact and didn't hit the limit so increment the counter - numRecords += 1 - } + } while !has(conf, with: &numRecords, hitLimit: expectedRecords) // Check that the record count matches the maximum when we last checked - expect(numRecords).to(equal(274)) + expect(numRecords).to(equal(expectedRecords)) } // MARK: ---- has not changed the max filled records it("has not changed the max filled records") { var randomGenerator: ARC4RandomNumberGenerator = ARC4RandomNumberGenerator(seed: 1000) + let expectedRecords: [Int] = [222, 223] - for index in (0..<100000) { + repeat { var contact: contacts_contact = try createContact( - for: index, + for: numRecords, in: conf, rand: &randomGenerator, maxing: .allProperties ) contacts_set(conf, &contact) - - do { - config_push(conf)?.deallocate() - try LibSessionError.throwIfNeeded(conf) - } - catch { break } - - // We successfully inserted a contact and didn't hit the limit so increment the counter - numRecords += 1 - } + } while !has(conf, with: &numRecords, hitLimit: expectedRecords.max()!) // Check that the record count matches the maximum when we last checked (seems to swap between // these two on different test runs for some reason) - expect(numRecords).to(satisfyAnyOf(equal(222), equal(223))) + expect(numRecords).to(satisfyAnyOf(expectedRecords.map { equal($0) })) } } @@ -512,8 +480,10 @@ fileprivate extension LibSessionUtilSpec { let pushData7: UnsafeMutablePointer = config_push(conf2) expect(pushData7.pointee.seqno).to(equal(3)) - let pushData6Str: String = String(pointer: pushData6.pointee.config, length: pushData6.pointee.config_len, encoding: .ascii)! - let pushData7Str: String = String(pointer: pushData7.pointee.config, length: pushData7.pointee.config_len, encoding: .ascii)! + let pushData6Str: String? = String(pointer: pushData6.pointee.config, length: pushData6.pointee.config_len, encoding: .ascii) + let pushData7Str: String? = String(pointer: pushData7.pointee.config, length: pushData7.pointee.config_len, encoding: .ascii) + expect(pushData6Str).toNot(beNil()) + expect(pushData7Str).toNot(beNil()) expect(pushData6Str).toNot(equal(pushData7Str)) expect([String](pointer: pushData6.pointee.obsolete, count: pushData6.pointee.obsolete_len)) .to(equal([fakeHash2])) @@ -555,8 +525,10 @@ fileprivate extension LibSessionUtilSpec { let pushData9: UnsafeMutablePointer = config_push(conf2) expect(pushData9.pointee.seqno).to(equal(pushData8.pointee.seqno)) - let pushData8Str: String = String(pointer: pushData8.pointee.config, length: pushData8.pointee.config_len, encoding: .ascii)! - let pushData9Str: String = String(pointer: pushData9.pointee.config, length: pushData9.pointee.config_len, encoding: .ascii)! + let pushData8Str: String? = String(pointer: pushData8.pointee.config, length: pushData8.pointee.config_len, encoding: .ascii) + let pushData9Str: String = String(pointer: pushData9.pointee.config, length: pushData9.pointee.config_len, encoding: .ascii)? + expect(pushData8Str).toNot(beNil()) + expect(pushData9Str).toNot(beNil()) expect(pushData8Str).to(equal(pushData9Str)) expect([String](pointer: pushData8.pointee.obsolete, count: pushData8.pointee.obsolete_len)) .to(equal([fakeHash3b, fakeHash3a])) @@ -1723,3 +1695,62 @@ fileprivate extension LibSessionUtilSpec { } } } + +// MARK: - Convenience + +private extension LibSessionUtilSpec { + static func has(_ conf: UnsafeMutablePointer?, with numRecords: inout Int, hitLimit expectedLimit: Int) -> Bool { + // Have a hard limit (ie. don't want to loop over this limit as it likely means something is busted elsewhere + // and we are in an infinite loop) + guard numRecords < 2500 else { return true } + + // When generating push data the actual data generated is based on a diff from the current state to the + // next state - this means that adding 100 records at once is a different size from adding 1 at a time, + // but since adding them 1 at a time is really inefficient we want to try to be smart about calling + // `config_push` when we are far away from the limit, but do so in such a way that we still get accurate + // sizes as we approach the limit (this includes the "diff" values which include the last 5 changes) + // + // **Note:** `config_push` returns null when it hits the config limit + let distanceToLimit: Int = (expectedLimit - numRecords) + + switch distanceToLimit { + case Int.min...50: + // Within 50 records of the expected limit we want to check every record + guard let result: UnsafeMutablePointer = config_push(conf) else { return true } + + // We successfully generated the config push and didn't hit the limit + result.deallocate() + + case 50...100: + // Between 50 and 100 records of the expected limit only check every `10` records + if numRecords.isMultiple(of: 10) { + guard let result: UnsafeMutablePointer = config_push(conf) else { return true } + + // We successfully generated the config push and didn't hit the limit + result.deallocate() + } + + case 100...200: + // Between 100 and 200 records of the expected limit only check every `25` records + if numRecords.isMultiple(of: 25) { + guard let result: UnsafeMutablePointer = config_push(conf) else { return true } + + // We successfully generated the config push and didn't hit the limit + result.deallocate() + } + + default: + // Otherwise check every `50` records + if numRecords.isMultiple(of: 50) { + guard let result: UnsafeMutablePointer = config_push(conf) else { return true } + + // We successfully generated the config push and didn't hit the limit + result.deallocate() + } + } + + // Increment the number of records + numRecords += 1 + return false + } +} From afc289808f091e41f5d00cc13c173d3fad2832e7 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 9 Oct 2024 13:58:50 +1100 Subject: [PATCH 09/17] Fixed a silly typo --- SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift index 7d1d132bd..1b1019540 100644 --- a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift +++ b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift @@ -526,7 +526,7 @@ fileprivate extension LibSessionUtilSpec { expect(pushData9.pointee.seqno).to(equal(pushData8.pointee.seqno)) let pushData8Str: String? = String(pointer: pushData8.pointee.config, length: pushData8.pointee.config_len, encoding: .ascii) - let pushData9Str: String = String(pointer: pushData9.pointee.config, length: pushData9.pointee.config_len, encoding: .ascii)? + let pushData9Str: String? = String(pointer: pushData9.pointee.config, length: pushData9.pointee.config_len, encoding: .ascii) expect(pushData8Str).toNot(beNil()) expect(pushData9Str).toNot(beNil()) expect(pushData8Str).to(equal(pushData9Str)) From 3241e6c529081af9f4f3f9420ce31e7d6dac89d9 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 9 Oct 2024 14:27:13 +1100 Subject: [PATCH 10/17] Fixed some test failure due to incorrect type conversions --- .../LibSession/LibSessionUtilSpec.swift | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift index 1b1019540..dea81913f 100644 --- a/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift +++ b/SessionMessagingKitTests/LibSession/LibSessionUtilSpec.swift @@ -480,11 +480,9 @@ fileprivate extension LibSessionUtilSpec { let pushData7: UnsafeMutablePointer = config_push(conf2) expect(pushData7.pointee.seqno).to(equal(3)) - let pushData6Str: String? = String(pointer: pushData6.pointee.config, length: pushData6.pointee.config_len, encoding: .ascii) - let pushData7Str: String? = String(pointer: pushData7.pointee.config, length: pushData7.pointee.config_len, encoding: .ascii) - expect(pushData6Str).toNot(beNil()) - expect(pushData7Str).toNot(beNil()) - expect(pushData6Str).toNot(equal(pushData7Str)) + let pushData6Data: Data = Data(bytes: pushData6.pointee.config, count: pushData6.pointee.config_len) + let pushData7Data: Data = Data(bytes: pushData7.pointee.config, count: pushData7.pointee.config_len) + expect(pushData6Data).toNot(equal(pushData7Data)) expect([String](pointer: pushData6.pointee.obsolete, count: pushData6.pointee.obsolete_len)) .to(equal([fakeHash2])) expect([String](pointer: pushData7.pointee.obsolete, count: pushData7.pointee.obsolete_len)) @@ -525,11 +523,9 @@ fileprivate extension LibSessionUtilSpec { let pushData9: UnsafeMutablePointer = config_push(conf2) expect(pushData9.pointee.seqno).to(equal(pushData8.pointee.seqno)) - let pushData8Str: String? = String(pointer: pushData8.pointee.config, length: pushData8.pointee.config_len, encoding: .ascii) - let pushData9Str: String? = String(pointer: pushData9.pointee.config, length: pushData9.pointee.config_len, encoding: .ascii) - expect(pushData8Str).toNot(beNil()) - expect(pushData9Str).toNot(beNil()) - expect(pushData8Str).to(equal(pushData9Str)) + let pushData8Data: Data = Data(bytes: pushData8.pointee.config, count: pushData8.pointee.config_len) + let pushData9Data: Data = Data(bytes: pushData9.pointee.config, count: pushData9.pointee.config_len) + expect(pushData8Data).to(equal(pushData9Data)) expect([String](pointer: pushData8.pointee.obsolete, count: pushData8.pointee.obsolete_len)) .to(equal([fakeHash3b, fakeHash3a])) expect([String](pointer: pushData9.pointee.obsolete, count: pushData9.pointee.obsolete_len)) @@ -818,9 +814,9 @@ fileprivate extension LibSessionUtilSpec { // Since we set different things, we're going to get back different serialized data to be // pushed: - let pushData3Str: String? = String(pointer: pushData3.pointee.config, length: pushData3.pointee.config_len, encoding: .ascii) - let pushData4Str: String? = String(pointer: pushData4.pointee.config, length: pushData4.pointee.config_len, encoding: .ascii) - expect(pushData3Str).toNot(equal(pushData4Str)) + let pushData3Data: Data = Data(bytes: pushData3.pointee.config, count: pushData3.pointee.config_len) + let pushData4Data: Data = Data(bytes: pushData4.pointee.config, count: pushData4.pointee.config_len) + expect(pushData3Data).toNot(equal(pushData4Data)) // Now imagine that each client pushed its `seqno=2` config to the swarm, but then each client // also fetches new messages and pulls down the other client's `seqno=2` value. From c693a204620c3ba93462be3b646c8b9aec063fcd Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 10:30:35 +1100 Subject: [PATCH 11/17] Debugging CI 1 --- .drone.jsonnet | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index 51ab75b2a..b00f1f3ec 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -76,6 +76,7 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U commands: [ sim_delete_cmd, ||| + which xcresultparser if [[ -d ./build/artifacts/testResults.xcresult ]]; then xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult else @@ -91,6 +92,7 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U { name: 'Convert xcresult to xml', commands: [ + 'which xcresultparser', 'xcresultparser --output-format cobertura ./build/artifacts/testResults.xcresult > ./build/artifacts/coverage.xml', ], depends_on: ['Build and Run Tests'], From 646fc2359de4c2ba7b544ca36a6744e21db0e414 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 10:31:09 +1100 Subject: [PATCH 12/17] Debugging CI 2 --- .drone.jsonnet | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index b00f1f3ec..324360691 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,6 +6,7 @@ local version_info = { name: 'Version Information', environment: { LANG: 'en_US.UTF-8' }, commands: [ + 'which xcresultparser', 'git --version', 'xcodebuild -version', 'xcbeautify --version', @@ -76,7 +77,6 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U commands: [ sim_delete_cmd, ||| - which xcresultparser if [[ -d ./build/artifacts/testResults.xcresult ]]; then xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult else @@ -92,7 +92,6 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U { name: 'Convert xcresult to xml', commands: [ - 'which xcresultparser', 'xcresultparser --output-format cobertura ./build/artifacts/testResults.xcresult > ./build/artifacts/coverage.xml', ], depends_on: ['Build and Run Tests'], From 8e0fabed17df762a2e1249c86e4d22930568848b Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 10:40:28 +1100 Subject: [PATCH 13/17] Removing debug CI stuff --- .drone.jsonnet | 1 - 1 file changed, 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 324360691..51ab75b2a 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,7 +6,6 @@ local version_info = { name: 'Version Information', environment: { LANG: 'en_US.UTF-8' }, commands: [ - 'which xcresultparser', 'git --version', 'xcodebuild -version', 'xcbeautify --version', From 0b97122209f4bd4cee3c9f272d225f40f5f4d029 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 11:38:24 +1100 Subject: [PATCH 14/17] Try to clean up CI output a little --- .drone.jsonnet | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index 51ab75b2a..6c7d7eb2c 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -76,6 +76,8 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U commands: [ sim_delete_cmd, ||| + set +x + if [[ -d ./build/artifacts/testResults.xcresult ]]; then xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult else From dae4715ca5dff901e6468bdff578d2a67fce4a06 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 12:03:42 +1100 Subject: [PATCH 15/17] Tweaked the unit test summary step to be simpler --- .drone.jsonnet | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 6c7d7eb2c..6163e4f0f 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -75,20 +75,9 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U name: 'Unit Test Summary', commands: [ sim_delete_cmd, - ||| - set +x - - if [[ -d ./build/artifacts/testResults.xcresult ]]; then - xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult - else - echo -e "\n\n\n\e[31;1mUnit test results not found\e[0m" - fi - |||, + 'xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult' ], - depends_on: ['Build and Run Tests'], - when: { - status: ['failure', 'success'], - }, + depends_on: ['Build and Run Tests'] }, { name: 'Convert xcresult to xml', From 7f6e241287fa2fb5ee41c013c89972c89b6105a8 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 16:33:27 +1100 Subject: [PATCH 16/17] Fixed a couple of small bugs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed an issue where the licenses may not be sorted which could result in different outputs between builds • Fixed an issue where non-dependencies could be included in the project if they had been resolved at some point --- Scripts/GenerateLicenses.swift | 49 +- .../Settings.bundle/ThirdPartyLicenses.plist | 518 +++++++----------- 2 files changed, 243 insertions(+), 324 deletions(-) diff --git a/Scripts/GenerateLicenses.swift b/Scripts/GenerateLicenses.swift index 06d267f87..cab5977cd 100755 --- a/Scripts/GenerateLicenses.swift +++ b/Scripts/GenerateLicenses.swift @@ -9,8 +9,9 @@ import Foundation // Get the Derived Data path and the project's name let derivedDataPath = getDerivedDataPath() ?? "" let projectName = ProcessInfo.processInfo.environment["PROJECT_NAME"] ?? "" -let projectPath = "\(ProcessInfo.processInfo.environment["PROJECT_DIR"] ?? FileManager.default.currentDirectoryPath)/\(projectName)" +let projectPath = ProcessInfo.processInfo.environment["PROJECT_DIR"] ?? FileManager.default.currentDirectoryPath +let packageResolutionFilePath = "\(projectPath)/\(projectName).xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved" let packageCheckoutsPath = "\(derivedDataPath)/SourcePackages/checkouts/" let packageArtifactsPath = "\(derivedDataPath)/SourcePackages/artifacts/" @@ -74,6 +75,38 @@ func findLicenses(in packagesPath: String) -> [(package: String, licenseContent: return licenses } +func findPackageDependencyNames(in resolutionFilePath: String) throws -> Set { + struct ResolvedPackages: Codable { + struct Pin: Codable { + struct State: Codable { + let revision: String + let version: String + } + + let identity: String + let kind: String + let location: String + let state: State + } + + let originHash: String + let pins: [Pin] + let version: Int + } + + do { + let data: Data = try Data(contentsOf: URL(fileURLWithPath: resolutionFilePath)) + let resolvedPackages: ResolvedPackages = try JSONDecoder().decode(ResolvedPackages.self, from: data) + + print("Found \(resolvedPackages.pins.count) resolved packages.") + return Set(resolvedPackages.pins.map { $0.identity.lowercased() }) + } + catch { + print("error: Failed to load list of resolved packages") + throw error + } +} + func scanDirectory(atPath path: String, foundFile: (String) -> Void) { if let enumerator = FileManager.default.enumerator(atPath: path) { for case let file as String in enumerator { @@ -86,10 +119,15 @@ func scanDirectory(atPath path: String, foundFile: (String) -> Void) { } // Write licenses to a plist file -func writePlist(licenses: [(package: String, licenseContent: String)], outputPath: String) { +func writePlist(licenses: [(package: String, licenseContent: String)], resolvedPackageNames: Set, outputPath: String) { var plistArray: [[String: String]] = [] + let finalLicenses: [(package: String, licenseContent: String)] = licenses + .filter { resolvedPackageNames.contains($0.package.lowercased()) } + .sorted(by: { $0.package.lowercased() < $1.package.lowercased() }) + + print("\(finalLicenses.count) being written to plist.") - for license in licenses { + finalLicenses.forEach { license in plistArray.append([ "Title": license.package, "License": license.licenseContent @@ -103,9 +141,10 @@ func writePlist(licenses: [(package: String, licenseContent: String)], outputPat // Execute the license discovery process let licenses = findLicenses(in: packageCheckoutsPath) + findLicenses(in: packageArtifactsPath) +let resolvedPackageNames = try findPackageDependencyNames(in: packageResolutionFilePath) // Specify the path for the output plist -let outputPlistPath = "\(projectPath)/Meta/Settings.bundle/ThirdPartyLicenses.plist" -writePlist(licenses: licenses, outputPath: outputPlistPath) +let outputPlistPath = "\(projectPath)/\(projectName)/Meta/Settings.bundle/ThirdPartyLicenses.plist" +writePlist(licenses: licenses, resolvedPackageNames: resolvedPackageNames, outputPath: outputPlistPath) print("Licenses generated successfully at \(outputPlistPath)") diff --git a/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist b/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist index 0af99e17d..1e94962d9 100644 --- a/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist +++ b/Session/Meta/Settings.bundle/ThirdPartyLicenses.plist @@ -2,11 +2,52 @@ + + License + BSD 3-Clause License + +Copyright (c) 2010-2024, Deusty, LLC +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of Deusty nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Deusty, LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Title + CocoaLumberjack + + + License + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Title + CwlCatchException + License ISC License -Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2022. +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -14,14 +55,14 @@ copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Title - lucide-icons-swift + CwlPreconditionTesting License @@ -231,30 +272,9 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - Title - CwlCatchException - - - License - The MIT License (MIT) + The MIT License -Copyright (c) 2016 Vinh Nguyen +Copyright (c) 2015 - 2024 Evgenii Neumerzhitckii Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -263,56 +283,55 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. Title - NVActivityIndicatorView + keychain-swift License - BSD 3-Clause License - -Copyright (c) 2010-2024, Deusty, LLC -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + Copyright (c) 2010, Google Inc. All rights reserved. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -3. Neither the name of Deusty nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Deusty, LLC. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Title - CocoaLumberjack - - - License - Copyright (C) 2014-3099 Marcin Krzyżanowski <marcin.krzyzanowski@gmail.com> -This software is provided 'as-is', without any express or implied warranty. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -In no event will the authors be held liable for any damages arising from the use of this software. + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. -Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required. -- Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -- This notice may not be removed or altered from any source or binary distribution. -- Redistributions of any form whatsoever must retain the following acknowledgment: 'This product includes software developed by the "Marcin Krzyzanowski" (http://krzyzanowskim.com/).' Title - CryptoSwift + libwebp-Xcode License @@ -504,7 +523,7 @@ Permission is granted to anyone to use this software for any purpose,including c same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014, Quick Team + Copyright 2016 Quick Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -519,7 +538,34 @@ Permission is granted to anyone to use this software for any purpose,including c limitations under the License. Title - Quick + Nimble + + + License + The MIT License (MIT) + +Copyright (c) 2016 Vinh Nguyen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + Title + NVActivityIndicatorView License @@ -711,7 +757,7 @@ Permission is granted to anyone to use this software for any purpose,including c same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016 Quick Team + Copyright 2014, Quick Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -730,138 +776,7 @@ Permission is granted to anyone to use this software for any purpose,including c License - The MIT License (MIT) - -Copyright (c) 2016 swiftlyfalling (https://github.com/swiftlyfalling) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - Title - session-grdb-swift - - - License - The author disclaims copyright to this source code. In place of -a legal notice, here is a blessing: - - * May you do good and not evil. - * May you find forgiveness for yourself and forgive others. - * May you share freely, never taking more than you give. - - Title - session-grdb-swift - - - License - /* -** LICENSE for the sqlite3 WebAssembly/JavaScript APIs. -** -** This bundle (typically released as sqlite3.js or sqlite3.mjs) -** is an amalgamation of JavaScript source code from two projects: -** -** 1) https://emscripten.org: the Emscripten "glue code" is covered by -** the terms of the MIT license and University of Illinois/NCSA -** Open Source License, as described at: -** -** https://emscripten.org/docs/introducing_emscripten/emscripten_license.html -** -** 2) https://sqlite.org: all code and documentation labeled as being -** from this source are released under the same terms as the sqlite3 -** C library: -** -** 2022-10-16 -** -** The author disclaims copyright to this source code. In place of a -** legal notice, here is a blessing: -** -** * May you do good and not evil. -** * May you find forgiveness for yourself and forgive others. -** * May you share freely, never taking more than you give. -*/ - - Title - session-grdb-swift - - - License - The author disclaims copyright to this source code. In place of -a legal notice, here is a blessing: - - May you do good and not evil. - May you find forgiveness for yourself and forgive others. - May you share freely, never taking more than you give. - - Title - session-grdb-swift - - - License - The MIT License - -Copyright (c) 2015 - 2024 Evgenii Neumerzhitckii - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - Title - keychain-swift - - - License - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - Title - CwlPreconditionTesting - - - License - - Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1041,7 +956,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -1049,7 +964,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2016 Quick Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1064,17 +979,46 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. limitations under the License. Title - swift-log + Quick License - Apache License + The MIT License (MIT) + +Copyright (c) 2015 ibireme <ibireme@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + Title + session-ios-yyimage + + + License + + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. @@ -1133,14 +1077,14 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, @@ -1156,7 +1100,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. granted to You under this License for that Work shall terminate as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: @@ -1197,7 +1141,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. @@ -1205,12 +1149,12 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or @@ -1220,7 +1164,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be @@ -1232,7 +1176,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this @@ -1243,9 +1187,9 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -1256,106 +1200,32 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## Runtime Library Exception to the Apache 2.0 License: ## - - - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. - - Title - swift-protobuf - - - License - Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - Title - libwebp-Xcode - - - License - The MIT License (MIT) - -Copyright (c) 2015 ibireme <ibireme@gmail.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. Title - session-ios-yyimage + swift-log License - Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. @@ -1414,14 +1284,14 @@ SOFTWARE. on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, @@ -1437,7 +1307,7 @@ SOFTWARE. granted to You under this License for that Work shall terminate as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: @@ -1478,7 +1348,7 @@ SOFTWARE. reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. @@ -1486,12 +1356,12 @@ SOFTWARE. the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or @@ -1501,7 +1371,7 @@ SOFTWARE. appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be @@ -1513,7 +1383,7 @@ SOFTWARE. other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this @@ -1524,12 +1394,12 @@ SOFTWARE. incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -1537,22 +1407,32 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016 Quick Team + Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +## Runtime Library Exception to the Apache 2.0 License: ## + + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. Title - Nimble + swift-protobuf License From afb60fbf5cc1e8fc0ced2e8909bc04010b131337 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Fri, 11 Oct 2024 15:04:59 +1100 Subject: [PATCH 17/17] Fixed a couple of bugs with attachment path creation --- SessionMessagingKit/Database/Models/Attachment.swift | 10 +++++----- SessionUtilitiesKit/Media/UTType+Utilities.swift | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/SessionMessagingKit/Database/Models/Attachment.swift b/SessionMessagingKit/Database/Models/Attachment.swift index 3bf47732a..a87e68d66 100644 --- a/SessionMessagingKit/Database/Models/Attachment.swift +++ b/SessionMessagingKit/Database/Models/Attachment.swift @@ -610,10 +610,6 @@ extension Attachment { } public static func originalFilePath(id: String, mimeType: String, sourceFilename: String?) -> String? { - // Store the file in a subdirectory whose name is the uniqueId of this attachment, - // to avoid collisions between multiple attachments with the same name - let attachmentFolder: String = Attachment.attachmentsFolder.appending("/\(id)") - if let sourceFilename: String = sourceFilename, !sourceFilename.isEmpty { // Ensure that the filename is a valid filesystem name, // replacing invalid characters with an underscore. @@ -647,6 +643,10 @@ extension Attachment { targetFileExtension = targetFileExtension.lowercased() if !targetFileExtension.isEmpty { + // Store the file in a subdirectory whose name is the uniqueId of this attachment, + // to avoid collisions between multiple attachments with the same name + let attachmentFolder: String = Attachment.attachmentsFolder.appending("/\(id)") + guard case .success = Result(try FileSystem.ensureDirectoryExists(at: attachmentFolder)) else { return nil } @@ -660,7 +660,7 @@ extension Attachment { UTType.fileExtensionDefault ).lowercased() - return attachmentFolder.appending("/\(id).\(targetFileExtension)") + return Attachment.attachmentsFolder.appending("/\(id).\(targetFileExtension)") } public static func localRelativeFilePath(from originalFilePath: String?) -> String? { diff --git a/SessionUtilitiesKit/Media/UTType+Utilities.swift b/SessionUtilitiesKit/Media/UTType+Utilities.swift index 6ee882361..7765a2833 100644 --- a/SessionUtilitiesKit/Media/UTType+Utilities.swift +++ b/SessionUtilitiesKit/Media/UTType+Utilities.swift @@ -123,7 +123,7 @@ public extension UTType { let mimeType: String = preferredMIMEType, let fileExtension: String = UTType.genericExtensionTypesToMimeTypes .first(where: { _, value in value == mimeType })? - .value + .key else { return preferredFilenameExtension } return fileExtension