new logos

This commit is contained in:
Artur Savitskiy 2024-06-11 15:37:10 +02:00
parent ad81db5b42
commit c97ef4f880
4 changed files with 9 additions and 6 deletions

BIN
Befund/.DS_Store vendored

Binary file not shown.

View File

@ -353,6 +353,7 @@ extension Core
public func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { public func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
#if DEBUG #if DEBUG
// Accept all certificates // Accept all certificates
let urlCredential = URLCredential(trust: challenge.protectionSpace.serverTrust!) let urlCredential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
completionHandler(.useCredential, urlCredential) completionHandler(.useCredential, urlCredential)

View File

@ -205,7 +205,7 @@ extension Core.Lang
result.setValue("Ihr Gerät lässt das Scannen von QR-Codes in dieser App nicht zu. Bitte geben Sie in Ihren Einstellungen die Freigabe zur Nutzung der Kamera und nutzen Sie ein Gerät mit einer funktionierenden Kamera.", forKey: "MSG_SCAN_NOT_SUPPORTED") result.setValue("Ihr Gerät lässt das Scannen von QR-Codes in dieser App nicht zu. Bitte geben Sie in Ihren Einstellungen die Freigabe zur Nutzung der Kamera und nutzen Sie ein Gerät mit einer funktionierenden Kamera.", forKey: "MSG_SCAN_NOT_SUPPORTED")
result.setValue("Scannen nicht unterstützt", forKey: "LBL_SCAN_NOT_SUPPORTED") result.setValue("Scannen nicht unterstützt", forKey: "LBL_SCAN_NOT_SUPPORTED")
result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/6406135946.html", forKey: "AGB_POLICY_LINK") result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/pba-datenschutz.html", forKey: "AGB_POLICY_LINK")
result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/098672600.html", forKey: "FAQ_LINK") result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/098672600.html", forKey: "FAQ_LINK")

View File

@ -109,6 +109,8 @@ extension Core.Lang
result.setValue( "Problem", forKey: "LBL_SUPPORT_TOPIC_TROUBLE") result.setValue( "Problem", forKey: "LBL_SUPPORT_TOPIC_TROUBLE")
result.setValue( "Delete Account", forKey: "LBL_SUPPORT_TOPIC_ACCOUNT_DELETE") result.setValue( "Delete Account", forKey: "LBL_SUPPORT_TOPIC_ACCOUNT_DELETE")
result.setValue("Submitting a report does not replace a conversation with the doctor.", forKey: "LBL_BEFUND_HINWEIS")
//MARK: ERRORS //MARK: ERRORS
result.setValue("Bitte geben Sie die PLZ Ihres Wohnorts ein", forKey: "ERROR_ENTER_ZIP") result.setValue("Bitte geben Sie die PLZ Ihres Wohnorts ein", forKey: "ERROR_ENTER_ZIP")
result.setValue("Bitte geben Sie Ihr Geburtsdatum ein", forKey: "ERROR_ENTER_BIRTHDAY") result.setValue("Bitte geben Sie Ihr Geburtsdatum ein", forKey: "ERROR_ENTER_BIRTHDAY")
@ -162,14 +164,14 @@ extension Core.Lang
result.setValue("Your device does not support scanning a code from an item. Please use a device with a camera.", forKey: "MSG_SCAN_NOT_SUPPORTED") result.setValue("Your device does not support scanning a code from an item. Please use a device with a camera.", forKey: "MSG_SCAN_NOT_SUPPORTED")
result.setValue("Scanning not supported", forKey: "LBL_SCAN_NOT_SUPPORTED") result.setValue("Scanning not supported", forKey: "LBL_SCAN_NOT_SUPPORTED")
result.setValue("https://www.limbachgruppe.com/datenschutz/", forKey: "AGB_POLICY_LINK")
result.setValue("https://www.limbachgruppe.com/impressum/", forKey: "FAQ_LINK")
result.setValue("<html><h1>Application must be closed.</h1></html>", forKey: "APP_MUST_BE_CLOSED") result.setValue("<html><h1>Application must be closed.</h1></html>", forKey: "APP_MUST_BE_CLOSED")
result.setValue("<html><h1>Internet connection is needed. No AGB.</h1></html>", forKey: "NO_AGB_AVAILABLE") result.setValue("<html><h1>Internet connection is needed. No AGB.</h1></html>", forKey: "NO_AGB_AVAILABLE")
result.setValue("<html><h1>Internet connection is needed. No FAQ.</h1></html>", forKey: "NO_FAQ_AVAILABLE") result.setValue("<html><h1>Internet connection is needed. No FAQ.</h1></html>", forKey: "NO_FAQ_AVAILABLE")
result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/pba-data-protection.html", forKey: "AGB_POLICY_LINK")
result.setValue("https://www.limbachgruppe.com/fileadmin/downloads/098235490.html", forKey: "FAQ_LINK")
return result return result
} }
} }