diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a745004..e46e247e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: build env: - XCODE_VERSION: 'Xcode_12.4' + XCODE_VERSION: 'Xcode_13.2.1' on: push: diff --git a/.github/workflows/distribute.yml b/.github/workflows/distribute.yml index a928a5d4..1608abf3 100644 --- a/.github/workflows/distribute.yml +++ b/.github/workflows/distribute.yml @@ -1,7 +1,7 @@ name: appstore env: - XCODE_VERSION: 'Xcode_12.4' + XCODE_VERSION: 'Xcode_13.2.1' on: push: diff --git a/DP3TApp/Screens/Homescreen/EncountersDetail/NSTracingSettingsControl.swift b/DP3TApp/Screens/Homescreen/EncountersDetail/NSTracingSettingsControl.swift index bf368d00..ab103ba1 100644 --- a/DP3TApp/Screens/Homescreen/EncountersDetail/NSTracingSettingsControl.swift +++ b/DP3TApp/Screens/Homescreen/EncountersDetail/NSTracingSettingsControl.swift @@ -77,6 +77,7 @@ class NSTracingSettingsControl: UIView { titleLabel.text = "tracing_setting_title".ub_localized subtitleLabel.text = "tracing_setting_text_ios".ub_localized_per_version switchControl.onTintColor = .ns_blue + switchControl.accessibilityLabel = "tracing_setting_text_ios".ub_localized_per_version setup() setupAccessibility() diff --git a/DP3TApp/Screens/Navigation/NSNavigationController.swift b/DP3TApp/Screens/Navigation/NSNavigationController.swift index 10399318..6aa747b2 100644 --- a/DP3TApp/Screens/Navigation/NSNavigationController.swift +++ b/DP3TApp/Screens/Navigation/NSNavigationController.swift @@ -41,6 +41,7 @@ class NSNavigationController: UINavigationController { // MARK: - Setup private func setup() { + view.backgroundColor = .ns_background navigationBar.isTranslucent = false if useLine { diff --git a/DP3TApp/Screens/Navigation/NSTabBarController.swift b/DP3TApp/Screens/Navigation/NSTabBarController.swift index ad0cd8f8..f99b8551 100644 --- a/DP3TApp/Screens/Navigation/NSTabBarController.swift +++ b/DP3TApp/Screens/Navigation/NSTabBarController.swift @@ -47,6 +47,8 @@ class NSTabBarController: UITabBarController { navigationItem.title = "app_name".ub_localized + view.backgroundColor = .ns_background + // navigation bar let image = UIImage(named: "ic-info-outline") navigationItem.rightBarButtonItem = UIBarButtonItem(image: image, landscapeImagePhone: image, style: .plain, target: self, action: #selector(infoButtonPressed)) @@ -95,6 +97,9 @@ class NSTabBarController: UITabBarController { setTabBarItemColors(appearance.inlineLayoutAppearance) setTabBarItemColors(appearance.compactInlineLayoutAppearance) tabBar.standardAppearance = appearance + if #available(iOS 15.0, *) { + tabBar.scrollEdgeAppearance = appearance + } } else { tabBar.unselectedItemTintColor = .ns_tabbarNormalBlue tabBar.tintColor = .ns_tabbarSelectedBlue diff --git a/DP3TApp/Screens/Onboarding/NSOnboardingBaseViewController.swift b/DP3TApp/Screens/Onboarding/NSOnboardingBaseViewController.swift index 0447b852..3d26770f 100644 --- a/DP3TApp/Screens/Onboarding/NSOnboardingBaseViewController.swift +++ b/DP3TApp/Screens/Onboarding/NSOnboardingBaseViewController.swift @@ -181,7 +181,7 @@ class NSOnboardingBaseViewController: NSViewController { internal func finishAnimation() { let vcToHide = stepViewControllers[currentStep] - vcToHide.fadeAnimation(fromFactor: 0, toFactor: -1, delay: 0.0) { _ -> Void in + vcToHide.fadeAnimation(fromFactor: 0, toFactor: -1, delay: 0.0) { _ in self.completedOnboarding() self.dismiss(animated: true, completion: nil) } diff --git a/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedCheckInViewController.swift b/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedCheckInViewController.swift index e6e319fb..362c3f49 100644 --- a/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedCheckInViewController.swift +++ b/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedCheckInViewController.swift @@ -156,6 +156,7 @@ class NSReportsDetailExposedCheckInViewController: NSTitleViewScrollViewControll view.addSpacerView(2 * NSPadding.small) let textLabel = NSLabel(.textLight) + textLabel.isHtmlContent = true textLabel.text = text view.addArrangedView(textLabel) } diff --git a/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedEncountersViewController.swift b/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedEncountersViewController.swift index 2a6b2b4f..2972dad0 100644 --- a/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedEncountersViewController.swift +++ b/DP3TApp/Screens/Reports/Exposed/NSReportsDetailExposedEncountersViewController.swift @@ -297,6 +297,7 @@ class NSReportsDetailExposedEncountersViewController: NSTitleViewScrollViewContr titleLabel.accessibilityTraits = [.header] let textLabel = NSLabel(.textLight) + textLabel.isHtmlContent = true textLabel.text = text view.addArrangedView(textLabel) } diff --git a/DP3TApp/SharedUI/Style/NSLabelType.swift b/DP3TApp/SharedUI/Style/NSLabelType.swift index 183bd0a7..c8f554f1 100644 --- a/DP3TApp/SharedUI/Style/NSLabelType.swift +++ b/DP3TApp/SharedUI/Style/NSLabelType.swift @@ -24,9 +24,7 @@ class NSFontSize { return min(max(minimum, bfs), maximum) } - public static let fontSizeMultiplicator: CGFloat = { - max(1.0, bodyFontSize() / normalBodyFontSize) - }() + public static let fontSizeMultiplicator: CGFloat = max(1.0, bodyFontSize() / normalBodyFontSize) } public enum NSLabelType: UBLabelType { diff --git a/DP3TApp/SharedUI/Views/NSDatePickerBottomSheetViewController.swift b/DP3TApp/SharedUI/Views/NSDatePickerBottomSheetViewController.swift index b55c1e30..4c76e4e4 100644 --- a/DP3TApp/SharedUI/Views/NSDatePickerBottomSheetViewController.swift +++ b/DP3TApp/SharedUI/Views/NSDatePickerBottomSheetViewController.swift @@ -210,7 +210,7 @@ private class InteractiveModalPresentationController: UIPresentationController { return } - coordinator.animate(alongsideTransition: { [weak self] _ -> Void in + coordinator.animate(alongsideTransition: { [weak self] _ in guard let self = self else { return } view.sheetView.transform = .init(translationX: 0, y: view.sheetView.frame.height) self.dimmingView.alpha = 0 diff --git a/Translations/bs.lproj/Localizable.strings b/Translations/bs.lproj/Localizable.strings index fd47e243..2a35432f 100644 --- a/Translations/bs.lproj/Localizable.strings +++ b/Translations/bs.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "Koji su simptomi COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Ovi simptomi se često javljaju:\n\n– temperatura, osećaj groznice\n– bolovi u grlu\n– kašalj (najčešće suv)\n– kratak dah\n– bolovi u grudima\n– iznenadni gubitak čula mirisa i/ili ukusa\n\nOsim toga, mogući su sledeći simptomi:\n\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži"; +"symptom_faq1_text" = "Novi virus korone često može pokazati različite simptome bolesti. Najčešći simptomi su:\n\n– bol u grlu\n– kašalj (uglavnom suv)\n– kratak dah\n– bol u grudima\n– temperatura\n– iznenadni gubitak čula mirisa i/ili ukusa\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži\n\nImajte na umu sledeće: Simptomi bolesti su različite jačine i mogu varati u zavisnost od varijante virusa. Mogu biti i blagi. I samo kijavica može značiti da ste zaraženi."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Zbog čega je praćenje deaktivirano?"; @@ -1643,9 +1643,9 @@ "checkin_report_title1" = "Zaštititi kontakte"; "checkin_report_title2" = "Obratiti pažnju na simptome"; "checkin_report_title3" = "Vršiti testiranje"; -"checkin_report_subtitle1" = "Mogli biste biti zarazni, a da to ne primetite. Pridržavajte se važećih higijenskih i zaštitnih mera i zaštitite svoju porodicu, prijatelje i okolinu."; +"checkin_report_subtitle1" = "Mogli ste da se zarazite, a da ne primetite. Obratite pažnju na sledeće mere opreza:\n\n- nositi masku do 7 dana posle kontakta)\n\n- ograničiti kontakte\n\n- držati razmak (najmanje 1,5 metar)\n\n- izbegavati javne zatvorene prostore"; "checkin_report_subtitle2" = "Proveravajte svoje zdravsveno stanje."; -"checkin_report_subtitle3" = "Odmah se testirajte ako imate simptome. Čak i ako nema simptoma i niste u potpunosti vakcinisani, test korone je važan i preporučuje se."; +"checkin_report_subtitle3" = "U slučaju pojave simptoma odmah se testirati – i ako ste vakcinisati (uključ. dopunske vakcine) ili ste preležali koronu. Čak i ako imate samo blage simptome, testiranje je korisno i preporučljivo.

Testirajte se, i ako nemate simptome. Možete biti zaraženi i kada nemate simptome. Test u tom slučaju treba uraditi nekoliko dana (4–7) posle rizičnog kontakta. U tom vremenu se najčešće može otkriti zaraza."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Prijava"; @@ -1799,7 +1799,7 @@ "vaccination_booking_info_text" = "Vakcinacija se može održati na primer na sledećim mestima u Vašoj blizini:\n\n- u specifičnim centrima za vakcinaciju\n- u bolnicama\n- kod Vašeg ličnog lekara ili lekarke\n- u vakcinišućim apotekama\n\nMnoga mesta nude i vakcinaciju bez zakazanog termina"; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 12 godina. Vakcinacija je besplatna."; +"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 5 godina."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/de.lproj/Localizable.strings b/Translations/de.lproj/Localizable.strings index b93a705f..0f719d3a 100644 --- a/Translations/de.lproj/Localizable.strings +++ b/Translations/de.lproj/Localizable.strings @@ -637,7 +637,7 @@ "symptom_faq1_title" = "Was sind COVID-19-Symptome?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Diese Symptome treten häufig auf:\n\n– Fieber, Fiebergefühl\n– Halsschmerzen\n– Husten (meist trocken)\n– Kurzatmigkeit\n– Brustschmerzen\n– Plötzlicher Verlust des Geruchs- und/oder Geschmackssinns\n\nZudem sind folgende Symptome möglich:\n\n– Kopfschmerzen\n– Allgemeine Schwäche, Unwohlsein\n– Muskelschmerzen\n– Schnupfen\n– Magen-Darm-Symptome (Übelkeit, Erbrechen, Durchfall, Bauchschmerzen)\n– Hautausschläge"; +"symptom_faq1_text" = "Das neue Coronavirus kann sehr unterschiedliche Krankheitssymptome zeigen.\nDie häufigsten Symptome sind:\n\n– Halsschmerzen\n– Husten (meist trocken)\n– Kurzatmigkeit\n– Brustschmerzen\n– Fieber\n– Plötzlicher Verlust des Geruchs- und/oder Geschmackssinns\n– Kopfschmerzen\n– Allgemeine Schwäche, Unwohlsein\n– Muskelschmerzen\n– Schnupfen\n– Magen-Darm-Symptome (Übelkeit, Erbrechen, Durchfall, Bauchschmerzen)\n– Hautausschläge\n\nBeachten Sie: Die Krankheitssymptome sind unterschiedlich stark und können je nach Virusvariante variieren. Sie können auch leicht sein. Bereits ein Schnupfen kann eine Infektion bedeuten."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Warum ist das Tracing deaktiviert?"; @@ -1719,9 +1719,9 @@ "checkin_report_title1" = "Kontakte schützen"; "checkin_report_title2" = "Auf Symptome achten"; "checkin_report_title3" = "Testen lassen"; -"checkin_report_subtitle1" = "Sie könnten bereits ansteckend sein, ohne es zu merken. Beachten Sie die geltenden Hygiene- und Schutzmassnahmen und schützen Sie Ihre Familie, Ihre Freunde und Ihr Umfeld."; +"checkin_report_subtitle1" = "Sie könnten sich angesteckt haben, ohne es zu merken. Beachten Sie folgende Vorsichtsmassnahmen:\n\n- Maske tragen (bis 7 Tagen nach Kontakt)\n\n- Kontakte einschränken\n\n- Abstand halten (mind. 1,5 Meter)\n\n- öffentliche Räume meiden"; "checkin_report_subtitle2" = "Überwachen Sie Ihren Gesundheitszustand."; -"checkin_report_subtitle3" = "Lassen Sie sich beim Auftreten von Symptomen sofort testen. Wenn keine Symptome auftreten und Sie noch nicht vollständig geimpft sind, ist ein Corona-Test ebenfalls sinnvoll und empfohlen."; +"checkin_report_subtitle3" = "Lassen Sie sich beim Auftreten von Symptomen sofort testen – auch wenn Sie geimpft (inkl. Auffrischimpfungen) oder genesen sind. Selbst wenn Sie nur leichte Symptome haben, ist ein Test sinnvoll und empfohlen.

Lassen Sie sich auch testen, wenn Sie keine Symptome haben. Sie könnten sich angesteckt haben, aber symptomlos sein. Ein Test sollte in diesem Fall erst einige Tage (4–7) nach dem Risiko-Kontakt stattfinden. Dann kann eine symptomlose Ansteckung am ehesten entdeckt werden."; /*Titel von CheckIn Meldungen Screen.*/ /*Fuzzy*/ @@ -1882,7 +1882,7 @@ "vaccination_booking_info_text" = "Eine Impfung könnte zum Beispiel an diesen Orten in Ihrer Nähe stattfinden:\n\n- in spezifischen Impfzentren\n- in Spitälern\n- bei Ihrem Hausarzt oder Ihrer Hausärztin\n- in Impfapotheken\n\nViele Orte bieten auch Walk-in-Impfungen ohne Termine an."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Die Covid-19-Impfung ist für Personen ab 12 Jahren empfohlen. Die Impfung ist gratis."; +"vaccination_booking_info_info" = "Die Covid-19-Impfung ist für Personen ab 5 Jahren empfohlen."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/en.lproj/Localizable.strings b/Translations/en.lproj/Localizable.strings index b77e8914..251a9f52 100644 --- a/Translations/en.lproj/Localizable.strings +++ b/Translations/en.lproj/Localizable.strings @@ -629,7 +629,7 @@ "symptom_faq1_title" = "What are the symptoms of COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "These are the most common symptoms of COVID-19:\n\n– Fever, feverish feeling \n– Sore throat\n– Cough (mostly dry)\n– Shortness of breath\n– Body aches\n– Sudden loss of the sense of taste and/or smell\n\nOther symptoms may include:\n\n– Headache\n– General weakness, feeling unwell\n– Aching muscles\n– Head cold\n– Gastrointestinal symptoms (nausea, vomiting, diarrhoea, stomach ache)\n– Skin rash"; +"symptom_faq1_text" = "The new coronavirus can show many different symptoms. The most common symptoms are:\n\n– Sore throat\n– Cough (mostly dry)\n– Shortness of breath\n– Chest pain\n– High temperature\n– Sudden loss of sense of smell and/or taste\n– Headache\n– General weakness, feeling unwell\n– Aching muscles\n– Head cold\n– Gastrointestinal symptoms (nausea, vomiting, diarrhoea, stomach ache)\n– Skin rash\n\nNote: The symptoms of the disease vary in severity and can vary depending on the variant. They may also be mild. Even a head cold may mean an infection."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Why is tracing deactivated?"; @@ -1671,9 +1671,9 @@ "checkin_report_title1" = "Protect your contacts"; "checkin_report_title2" = "Look out for symptoms"; "checkin_report_title3" = "Get tested"; -"checkin_report_subtitle1" = "You may already be infectious without realising it. Follow the rules on hygiene and social distancing and protect your loved ones and those around you."; +"checkin_report_subtitle1" = "You might have been infected without noticing. Take these precautions:\n\n- Wear a mask (until 7 days after contact)\n\n- Limit your contacts\n\n- Social distance (min. 1.5 metres)\n\n- Avoid public places"; "checkin_report_subtitle2" = "Monitor your state of health."; -"checkin_report_subtitle3" = "If you develop symptoms, get tested immediately. A coronavirus test is also advisable and recommended if you have no symptoms and are not yet fully vaccinated."; +"checkin_report_subtitle3" = "If symptoms appear, get tested immediately – even if you’ve been vaccinated or have recovered from COVID. A test makes sense and is recommended even if you only have slight symptoms.

Also get tested if you have no symptoms. You could have been infected but be symptom free. In this case you should not get tested until a few (4–7) days after the risky contact. That’s when a symptom-free infection is most likely to be detected."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1827,7 +1827,7 @@ "vaccination_booking_info_text" = "Vaccination may be performed at the following locations near you:\n\n- at specific vaccination centres\n- in hospitals\n- at your general practitioner's surgery\n- at a vaccination pharmacy\n\nMany places also offer walk-in vaccinations without an appointment."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "The COVID-19 vaccination is recommended for those over 12. It's free of charge."; +"vaccination_booking_info_info" = "The COVID-19 vaccination is recommended for those over 5."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/es.lproj/Localizable.strings b/Translations/es.lproj/Localizable.strings index 43a2fb1d..a87e608c 100644 --- a/Translations/es.lproj/Localizable.strings +++ b/Translations/es.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "¿Cuáles son los síntomas de COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Los síntomas siguientes aparecen con frecuencia:\n\n– fiebre, sensación febril\n– dolor de garganta\n– tos (casi siempre seca)\n– dificultad respiratoria\n– dolor en el pecho\n– pérdida repentina del sentido del gusto y/o del olfato \nPueden aparecer también los síntomas siguientes:\n\n– dolor de cabeza\n– debilidad general, malestar\n– dolores musculares\n– catarro\n– síntomas gastrointestinales (nauseas, vómitos, diarrea, dolor de estómago)\n– erupciones cutáneas"; +"symptom_faq1_text" = "El nuevo coronavirus puede causar síntomas de enfermedad muy diversos. Los síntomas mas frecuentes son:\n\n– dolor de garganta\n– tos (casi siempre seca)\n– dificultad respiratoria\n– dolor en el pecho\n– fiebre\n– pérdida repentina del sentido del gusto y/o del olfato \n– dolor de cabeza\n– debilidad general, malestar\n– dolores musculares\n– catarro\n– síntomas gastrointestinales (nauseas, vómitos, diarrea, dolor de estómago)\n– erupciones cutáneas\n\nTenga en cuenta: Los síntomas pueden ser más o menos graves y variar en función de la variante del virus. Es posible que sean muy leves. Incluso un catarro puede significar un contagio."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "¿Por qué está desactivado el rastreo?"; @@ -1643,9 +1643,9 @@ "checkin_report_title1" = "Proteger a sus contactos"; "checkin_report_title2" = "Estar atento a los síntomas"; "checkin_report_title3" = "Hacer el test"; -"checkin_report_subtitle1" = "Es posible que sea usted contagioso sin darse cuenta. Observe las reglas de higiene y comportamiento y proteja a su familia, sus amigos y su entorno."; +"checkin_report_subtitle1" = "Es posible que se haya contagiado sin darse cuenta. Observe las siguientes medidas de precaución:\n\n- llevar mascarilla (hasta 7 días tras el contacto)\n\n- limitar los contactos\n\n- mantener la distancia ( 1,5 metros como mín.)\n\n- evitar los espacios públicos"; "checkin_report_subtitle2" = "Vigile su estado de salud."; -"checkin_report_subtitle3" = "Ante la aparición de síntomas haga el test inmediatamente. Incluso si no tiene síntomas y aún no está vacunado por completo, es conveniente y recomendable hacer el test del coronavirus."; +"checkin_report_subtitle3" = "Haga inmediatamente el test si aparecen síntomas – también si está vacunado (incl. vacunas de refuerzo) o si se ha recuperado. Hacer el test es apropiado y recomendable incluso si los síntomas son leves.

Haga también el test si no tienesíntomas. Puede usted haberse contagiado pero ser asintomático. En este caso, el test debería realizarse trascurridos algunos días (4-7) tras el contacto de riesgo. A partir de ese momento, la probabilidad de detectar un contagio asintomático es mayor."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1799,7 +1799,7 @@ "vaccination_booking_info_text" = "Es posible vacunarse, por ejemplo, en los siguientes puntos cerca de usted:\n\n- en centros de vacunación específicos\n- en hospitales\n- en la consulta de su médico de familia\n- en farmacias que ofrecen la vacunación\n\nMuchos centros ofrecen la posibllidad de vacunarse sin cita previa."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Se recomienda la vacuna contra la Covid-19 a las personas mayores de 12 años. La vacuna es gratuita."; +"vaccination_booking_info_info" = "Se recomienda la vacuna contra la Covid-19 a las personas mayores de 5 años."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/fr.lproj/Localizable.strings b/Translations/fr.lproj/Localizable.strings index 33d9226b..77117c74 100644 --- a/Translations/fr.lproj/Localizable.strings +++ b/Translations/fr.lproj/Localizable.strings @@ -628,7 +628,7 @@ "symptom_faq1_title" = "Quels sont les symptômes du COVID-19 ?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Ces symptômes sont fréquents :\n\n– Fièvre, sensation de fièvre\n– Mal de gorge\n– Toux (généralement sèche)\n– Difficultés respiratoires\n– Douleurs dans la poitrine\n– Perte soudaine de l’odorat et/ou du goût\n\nLes symptômes suivants peuvent aussi apparaître :\n\n– Maux de tête\n– Faiblesse générale, sensation de malaise\n– Douleurs musculaires\n– Rhume\n– Symptômes gastro-intestinaux (nausées, vomissements, diarrhée, maux de ventre)\n– Éruptions cutanées"; +"symptom_faq1_text" = "Le coronavirus peut présenter des symptômes très variés. Symptômes les plus fréquents :\n\n– Mal de gorge\n– Toux (généralement sèche)\n– Difficultés respiratoires\n– Douleurs dans la poitrine\n– Fièvre\n– Perte soudaine de l’odorat et/ou du goût\n– Maux de tête\n– Faiblesse générale, sensation de malaise\n– Douleurs musculaires\n– Rhume\n– Symptômes gastro-intestinaux (nausées, vomissements, diarrhée, maux de ventre)\n– Éruptions cutanées\n\nAttention : les symptômes varient fortement et peuvent être différents selon le variant. Ils peuvent également être légers. Un rhume peut déjà indiquer une infection."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Pourquoi le traçage est-il désactivé ?"; @@ -1676,9 +1676,9 @@ "checkin_report_title1" = "Protéger les contacts"; "checkin_report_title2" = "Observer les symptômes"; "checkin_report_title3" = "Se faire tester"; -"checkin_report_subtitle1" = "Il est possible d’être contagieux sans le savoir. Respectez les règles d’hygiène et de conduite pour protéger votre famille, vos amis et tout votre entourage."; +"checkin_report_subtitle1" = "Vous pourriez avoir été infecté sans le remarquer. Veuillez suivre les mesures de précaution suivantes :\n\n- Porter le masque (jusqu'à 7 jours après le contact)\n\n- Limiter les contacts\n\n- Garder ses distances (au moins 1,5 m)\n\n- Éviter les espaces publics"; "checkin_report_subtitle2" = "Surveillez votre état de santé."; -"checkin_report_subtitle3" = "Faites-vous immédiatement tester si vous présentez des symptômes. Même en l’absence de symptômes, il peut être utile et recommandé de se faire tester pour le coronavirus si vous n'êtes pas encore complètement vacciné."; +"checkin_report_subtitle3" = "En cas de symptômes, faites-vous tester immédiatement même si vous êtes vacciné (rappel compris) ou guéri. Même si vous ressentez seulement des symptômes légers, il est recommandé de procéder à un test.

Faites-vous aussi tester si vous n'avez aucun symptôme. Vous pourriez avoir été infecté et ne présenter aucun symptôme. Dans ce cas, le dépistage devrait avoir lieu seulement quelques jours (4 à 7) après le contact à risque. C'est le meilleur moment pour détecter une infection asymptomatique."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1832,7 +1832,7 @@ "vaccination_booking_info_text" = "La vaccination pourrait, par exemple, être proposée dans les lieux suivants situés à proximité de chez vous :\n\n- dans des centres de vaccination désignés\n- dans les hôpitaux\n- chez votre médecin de famille\n- dans les pharmacies\n\nIl est aussi possible de se faire vacciner sans rendez-vous dans de nombreux endroits."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Gratuite, la vaccination contre le COVID-19 est recommandée pour les personnes dès 12 ans."; +"vaccination_booking_info_info" = "La vaccination contre le COVID-19 est recommandée pour les personnes dès 5 ans."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/hr.lproj/Localizable.strings b/Translations/hr.lproj/Localizable.strings index cc54ff94..11fe5f45 100644 --- a/Translations/hr.lproj/Localizable.strings +++ b/Translations/hr.lproj/Localizable.strings @@ -623,7 +623,7 @@ "symptom_faq1_title" = "Koji su simptomi COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Ovi simptomi se često javljaju:\n\n– temperatura, osećaj groznice\n– bolovi u grlu\n– kašalj (najčešće suv)\n– kratak dah\n– bolovi u grudima\n– iznenadni gubitak čula mirisa i/ili ukusa\n\nOsim toga, mogući su sledeći simptomi:\n\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži"; +"symptom_faq1_text" = "Novi virus korone često može pokazati različite simptome bolesti. Najčešći simptomi su:\n\n– bol u grlu\n– kašalj (uglavnom suv)\n– kratak dah\n– bol u grudima\n– temperatura\n– iznenadni gubitak čula mirisa i/ili ukusa\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži\n\nImajte na umu sledeće: Simptomi bolesti su različite jačine i mogu varati u zavisnost od varijante virusa. Mogu biti i blagi. I samo kijavica može značiti da ste zaraženi."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Zbog čega je praćenje deaktivirano?"; @@ -1641,9 +1641,9 @@ "checkin_report_title1" = "Zaštititi kontakte"; "checkin_report_title2" = "Obratiti pažnju na simptome"; "checkin_report_title3" = "Vršiti testiranje"; -"checkin_report_subtitle1" = "Mogli biste biti zarazni, a da to ne primetite. Pridržavajte se važećih higijenskih i zaštitnih mera i zaštitite svoju porodicu, prijatelje i okolinu."; +"checkin_report_subtitle1" = "Mogli ste da se zarazite, a da ne primetite. Obratite pažnju na sledeće mere opreza:\n\n- nositi masku do 7 dana posle kontakta)\n\n- ograničiti kontakte\n\n- držati razmak (najmanje 1,5 metar)\n\n- izbegavati javne zatvorene prostore"; "checkin_report_subtitle2" = "Proveravajte svoje zdravsveno stanje."; -"checkin_report_subtitle3" = "Odmah se testirajte ako imate simptome. Čak i ako nema simptoma i niste u potpunosti vakcinisani, test korone je važan i preporučuje se."; +"checkin_report_subtitle3" = "U slučaju pojave simptoma odmah se testirati – i ako ste vakcinisati (uključ. dopunske vakcine) ili ste preležali koronu. Čak i ako imate samo blage simptome, testiranje je korisno i preporučljivo.

Testirajte se, i ako nemate simptome. Možete biti zaraženi i kada nemate simptome. Test u tom slučaju treba uraditi nekoliko dana (4–7) posle rizičnog kontakta. U tom vremenu se najčešće može otkriti zaraza."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Prijava"; @@ -1797,7 +1797,7 @@ "vaccination_booking_info_text" = "Vakcinacija se može održati na primer na sledećim mestima u Vašoj blizini:\n\n- u specifičnim centrima za vakcinaciju\n- u bolnicama\n- kod Vašeg ličnog lekara ili lekarke\n- u vakcinišućim apotekama\n\nMnoga mesta nude i vakcinaciju bez zakazanog termina"; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 12 godina. Vakcinacija je besplatna."; +"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 5 godina."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/it.lproj/Localizable.strings b/Translations/it.lproj/Localizable.strings index f6711fb6..8a4da32e 100644 --- a/Translations/it.lproj/Localizable.strings +++ b/Translations/it.lproj/Localizable.strings @@ -628,7 +628,7 @@ "symptom_faq1_title" = "Quali sono i sintomi della COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Questi sono i sintomi più frequenti:\n\n– febbre, sensazione di febbre\n– mal di gola\n– tosse (perlopiù secca)\n– affanno\n– dolori al petto\n– perdita improvvisa dell'olfatto e/o del gusto\n\nPossono inoltre comparire i seguenti sintomi:\n\n– mal di testa\n– malessere, debolezza generale\n– dolori muscolari\n– raffreddore\n– sintomi gastrointestinali (nausea, vomito, diarrea, mal di pancia)\n– eruzioni cutanee"; +"symptom_faq1_text" = "Il nuovo coronavirus può causare sintomi molto differenti. Questi sono i più frequenti:\n\n– mal di gola;\n– tosse (perlopiù secca);\n– affanno; \n– dolori al petto; \n– febbre; \n– perdita improvvisa dell'olfatto e/o del gusto\n– mal di testa\n– malessere, debolezza generale\n– dolori muscolari\n– raffreddore\n– sintomi gastrointestinali (nausea, vomito, diarrea, mal di pancia)\n– eruzioni cutanee\n\nAttenzione: i sintomi di malattia possono essere di varia intensità, diversi in funzione della variante del virus e anche lievi. Già un raffreddore può essere indicatore di un’infezione."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Perché il tracciamento è disattivato?"; @@ -1676,9 +1676,9 @@ "checkin_report_title1" = "Proteggi i tuoi contatti"; "checkin_report_title2" = "Presta attenzione ai sintomi"; "checkin_report_title3" = "Fai il test"; -"checkin_report_subtitle1" = "Potresti già essere contagioso senza accorgertene. Rispetta le misure d'igiene e di protezione vigenti e proteggi la tua famiglia, i tuoi amici e il tuo ambiente."; +"checkin_report_subtitle1" = "Potreste essere stati infettati senza accorgervene. Osservate le seguenti misure precauzionali: - portate una mascherina (fino a 7 giorni dopo il contatto)\n\n- limitate i contatti\n\n- mantenete la distanza (almeno 1,5 metri)\n\n- evitate i luoghi pubblici"; "checkin_report_subtitle2" = "Sorveglia il tuo stato di salute."; -"checkin_report_subtitle3" = "In caso di sintomi fai subito il test. Per chi non è ancora completamente vaccinato, il test è opportuno e raccomandato anche in assenza di sintomi."; +"checkin_report_subtitle3" = "In caso di sintomi, sottoponetevi immediatamente al test, anche se siete completamente vaccinati (inclusa la vaccinazione di richiamo) o se siete guariti. Anche se i sintomi sono lievi, un test è raccomandato e opportuno.

Fatevi testare anche se non avete sintomi. Potreste essere stati infettati ma essere asintomatici. In questo caso, bisognerebbe farsi testare solo qualche giorno (4–7 giorni) dopo il contatto a rischio. In questo modo è più probabile che un'infezione asintomatica venga rilevata."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1832,7 +1832,7 @@ "vaccination_booking_info_text" = "Per esempio potresti farti vaccinare in uno di questi luoghi nelle tue vicinanze:\n\n- in centri di vaccinazione specifici\n- negli ospedali\n- dal tuo medico di famiglia\n- nelle farmacie che vaccinano\n\nMolti di essi offrono anche vaccinazioni libere senza appuntamento."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "La vaccinazione anti-COVID-19 è raccomandata per le persone a partire dai 12 anni ed è gratuita."; +"vaccination_booking_info_info" = "La vaccinazione anti-COVID-19 è raccomandata per le persone a partire dai 5 anni."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/pt.lproj/Localizable.strings b/Translations/pt.lproj/Localizable.strings index 465faf11..6d9f4ec0 100644 --- a/Translations/pt.lproj/Localizable.strings +++ b/Translations/pt.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "Quais são os sintomas da COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Estes sintomas são frequentes:\n\n– Febre, sensação de febre\n– Dores de garganta\n– Tosse (seca, na maioria dos casos)\n– Falta de ar\n– Dores no peito\n– Perda repentina do olfato e/ou do paladar\n\nOutros sintomas podem ser:\n\n– Dores de cabeça\n– Fraqueza geral, indisposição\n– Dores musculares\n– Constipação\n– Sintomas gastrointestinais (náusea, vómito, diarréia, dores de estômago)\n– Erupções cutâneas"; +"symptom_faq1_text" = "O novo coronavírus pode proovocar sintomas muito variados. Os sintomas mais frequentes são:\n\n– Dores de garganta\n– Tosse (seca, na maioria dos casos)\n– Falta de ar\n– Dores no peito\n– Febre\n– Perda repentina do olfato e/ou do paladar\n– Dores de cabeça\n– Fraqueza geral, indisposição\n– Dores musculares\n– Constipação\n– Sintomas gastrointestinais (náusea, vómito, diarréia, dores de estômago)\n– Erupções cutâneas\n\nÉ favor observar: A intensidade do sintomas da doença é diferente e pode variar dependendo da variante do vírus. Os sintomas também podem ser ligeiros. Uma mera constipação também pode ser devida a uma infeção."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Porque está o rastreamento desativado?"; @@ -1643,9 +1643,9 @@ "checkin_report_title1" = "Proteger os contactos"; "checkin_report_title2" = "Observar os sintomas"; "checkin_report_title3" = "Deixar testar-se"; -"checkin_report_subtitle1" = "Você já pode ser contagioso, sem percebê-lo. Observe as medidas de higiene e proteção vigentes e proteja a sua família, os amigos e o seu ambiente."; +"checkin_report_subtitle1" = "É possível que se tenha infetado sem percebê-lo. Observe as seguintes regras de precaução:\n\n- Use a máscara (até 7 dias após o contacto)\n\n- Limite os contactos\n\n- Mantenha a distância (pelo menos 1,5 metros)\n\n- Evite os espaços públicos"; "checkin_report_subtitle2" = "Observe o seu estado de saúde."; -"checkin_report_subtitle3" = "Deixe testar-se imediatamente se aparecerem sintomas. Mesmo se não aparecerem sintomas e se você ainda não tiver sido completamente vacinado, um teste de corona é conveniente e recomendado."; +"checkin_report_subtitle3" = "Deixe testar-se imediatamente quando surgirem sintomas – mesmo se for vacinado (incl. vacinas de reforço) ou recuperado. Um teste é conveniente e recomendado, mesmo se só tiver sintomas ligeiros.

Também deixe testar-se, se não tiver sintomas. É possível que tenha sido infetado, mas não tenha sintomas. Neste caso, um teste só deve ser feito alguns dias (4 a 7) após o contacto de risco. Isso permite descubrir melhor uma infeção sem sintomas."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1799,7 +1799,7 @@ "vaccination_booking_info_text" = "Uma vacinação pode ser feita, por exemplo, nestes lugares na sua proximidade:\n\n- nos centros de vacinação específicos\n- nos hospitais\n- no seu médico de família\n- nas farmácias de vacinação\n\nMuitos lugares também oferecem vacinações Walk-in sem agendamento."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "A vacina contra a Covid-19 é recomendada para pessoas a partir dos 12 anos de idade. A vacinação é gratuita."; +"vaccination_booking_info_info" = "A vacina contra a Covid-19 é recomendada para pessoas a partir dos 5 anos de idade."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/rm.lproj/Localizable.strings b/Translations/rm.lproj/Localizable.strings index 3b777e72..264f37ba 100644 --- a/Translations/rm.lproj/Localizable.strings +++ b/Translations/rm.lproj/Localizable.strings @@ -623,7 +623,7 @@ "symptom_faq1_title" = "Tge èn sintoms da COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Quests sintoms cumparan savens:\n\n– fevra, sentiment da fevra\n– mal la gula\n– tuss (per il solit tuss sitga)\n– respiraziun asmatica\n– mal il pèz\n– perdita andetga da l'odurat e/u dal palat\n\nPussaivels èn er ils suandants sintoms:\n\n– mal il chau\n– deblezza generala, malesser\n– mal ils musculs\n– dafraid\n– sintoms dal tract digestiv (indispostadad, vomitar, diarrea, mal il venter)\n– eczems"; +"symptom_faq1_text" = "Il nov coronavirus po mussar sintoms da la malsogna fitg differents.\nIls sintoms ils pli frequents èn:\n\n– mal la gula\n– tuss (il pli savens sitga)\n– respiraziun asmatica\n– mal il pèz\n– fevra\n– perdita andetga da l'odurat e/u dal palat\n– mal il chau\n– deblezza generala, malesser\n– mal ils musculs\n– dafraid\n– sintoms dal tract digestiv (indispostadad, vomitar, diarrea, mal il venter)\n– eczems\n\nResguardai per plaschair: Ils sintoms da la malsogna èn da differenta grevezza e pon variar tut tenor la varianta dal virus. Ils sintoms pon er esser miaivels. Gia in dafraid po signifitgar ina infecziun."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Pertge è il tracing deactivà?"; @@ -1641,9 +1641,9 @@ "checkin_report_title1" = "Proteger contacts"; "checkin_report_title2" = "Far stim da sintoms"; "checkin_report_title3" = "Laschar far in test"; -"checkin_report_subtitle1" = "Vus pudais gia esser infectusa u infectus senza badar quai. Observai las mesiras d'igiena e da protecziun vertentas e protegi Vossa famiglia, Vossas amias e Voss amis sco er Voss conturn."; +"checkin_report_subtitle1" = "Vus As pudais esser infectada u infectà senza badar. Resguardai las suandantas mesiras preventivas:\n\n- purtar ina mascrina (fin 7 dis suenter il contact)\n\n- restrenscher ils contacts\n\n- tegnair distanza (almain 1,5 meters)\n\n- evitar locals publics"; "checkin_report_subtitle2" = "Survegliai Voss stadi da sanadad."; -"checkin_report_subtitle3" = "Faschai immediatamain in test, sche Vus avais sintoms. In test dal coronavirus è raschunaivel e vegn cusseglià, er sche Vus n'avais nagins sintoms e sche Vus n'essas anc betg vaccinada u vaccinà cumplettamain."; +"checkin_report_subtitle3" = "As laschai testar immediatamain, sche Vus avais sintoms – er sche Vus essas vaccinada u vaccinà (incl. vaccinaziuns da rinfrestgament) ubain guarida u guarì. Er sche Vus avais mo levs sintoms, è in test raschunaivel e vegn recumandà.

As laschai er testar, sche Vus n'avais nagins sintoms. Vus As pudais esser infectada u infectà, però n'avais nagins sintoms. En quest cas duessas Vus far in test pir in pèr dis (4–7) suenter il contact da ristga. Lura po vegnir identifitgada il pli tgunsch ina infecziun senza sintoms."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Registraziun"; @@ -1797,7 +1797,7 @@ "vaccination_booking_info_text" = "Ina vaccinaziun pudess per exempel vegnir fatga en quests lieus en Vossa vischinanza:\n\n- en centers da vaccinaziun specifics\n- en ospitals\n- tar Vossa media u tar Voss medi da chasa\n- en apotecas da vaccinaziun\n\nBlers lieus porschan er vaccinaziuns «walk-in» senza termin."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "La vaccinaziun cunter COVID-19 è recumandada per persunas a partir da 12 onns. La vaccinaziun è gratuita."; +"vaccination_booking_info_info" = "La vaccinaziun cunter COVID-19 è recumandada per persunas a partir da 5 onns."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/sq.lproj/Localizable.strings b/Translations/sq.lproj/Localizable.strings index 6b4c6d19..ed56d864 100644 --- a/Translations/sq.lproj/Localizable.strings +++ b/Translations/sq.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "Çfarë simptomash ka COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Simptomat më të shpeshta janë:\n\n– Temperaturë, ndjesi ethesh\n– Dhimbje fyti\n– Kollë (zakonisht e thatë)\n– Vështirësi në frymëmarrje\n– Dhimbje kraharori\n– Humbje e papritur e shqisës së nuhatjes dhe/ose të shijuarit\n\nJanë gjithashtu të mundshme simptomat e mëposhtme:\n\n– Dhimbje koke\n– Dobësi e përgjithshme, parehati\n– Dhimbje muskulore\n– Nuhat\nSimptoma gastrointestinale (të përziera, të vjella, diarre, dhimbje abdominale)\n– Skuqje e lëkurës"; +"symptom_faq1_text" = "Koronavirusi i ri mund të shfaqë simptoma shumë të ndryshme sëmundjeje.\nSimptomat më të shpeshta janë:\n\n– Dhimbje fyti\n– Kollë (zakonisht e thatë)\n– Vështirësi në frymëmarrje\n– Dhimbje kraharori\n– Temperaturë,\n– Humbje e papritur e shqisës së nuhatjes dhe/ose të shijuarit\n– Dhimbje koke\n– Dobësi e përgjithshme, parehati\n– Dhimbje muskulore\n– Rrufë\n– Simptoma gastrointestinale (të përziera, të vjella, diarre, dhimbje abdominale)\n– Skuqje e lëkurës\n\nVini re: Simptomat kanë intensitete të ndryshme dhe mund të ndryshojnë në varësi të variantit të virusit. Mund të jenë edhe të lehta. Rrufa tashme mund të jetë një infektim."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Pse është çaktivizuar gjurmimi?"; @@ -1643,9 +1643,9 @@ "checkin_report_title1" = "Mbroni kontaktet"; "checkin_report_title2" = "Kini parasysh simptomat"; "checkin_report_title3" = "Kryeni testin"; -"checkin_report_subtitle1" = "Ju tashmë mund të jeni i infektuar pa e vënë re. Mbani parasysh masat e higjienës dhe të mbrojtjes dhe mbroni familjen tuaj, miqtë tuaj dhe mjedisin tuaj rrethues."; +"checkin_report_subtitle1" = "Mundet që ju jeni infektuar pa vënë re këtë gjë. Vini re këto masa kujdesjeje:\n\n- mbani maskë (deri në 7 ditë pas kontaktit)\n\n- kufizojini kontaktet\n\n- mbani distancë (të paktën 1.5 metër)\n\n- shmanguni ambienteve publike"; "checkin_report_subtitle2" = "Mbikëqyrni gjendjen tuaj shëndetësore."; -"checkin_report_subtitle3" = "Testohuni menjëherë gjatë shfaqjes së simptomave. Edhe nëse nuk shfaqet asnjë simptomë dhe nuk jeni akoma i vaksinuar plotësisht, testi i koronës është i arsyeshëm dhe i rekomandueshëm."; +"checkin_report_subtitle3" = "Në rastin e shfaqjes së simptomave testohuni menjëherë – edhe nëse jeni vaksinuar (përfshirë vaksinimet përforcuese) ose shëruar. Edhe nëse keni vetëm simtoma të lehta, një test është kuptimplotë dhe rekomandohet.

Testohuni gjithashtu, nëse nuk keni simptoma. Ju mund të jeni infektuar, por jeni pa simptoma. Në këtë rast, një test duhej kryer vetëm disa ditë (4–7) pas kontaktit të rrezikuar. Atëherë një infektim pa simptoma mund të zbulohet më mirë."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-In"; @@ -1799,7 +1799,7 @@ "vaccination_booking_info_text" = "Vaksinimi mund të bëhet pranë jush, për shembull:\n\n- në qendrat specifike të vaksinimit\n- në spitale\n- nga mjeku juaj i familjes\n- në farmacitë e vaksinimit\n\nShumë vende gjithashtu ofrojnë vaksinime pa takim."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Vaksinimi kundër Covid-19 rekomandohet për njerëzit e moshës 12 vjeç e lart. Vaksinimi është falas."; +"vaccination_booking_info_info" = "Vaksinimi kundër Covid-19 rekomandohet për njerëzit e moshës 5 vjeç e lart."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/sr-Latn-RS.lproj/Localizable.strings b/Translations/sr-Latn-RS.lproj/Localizable.strings index 7dc819c0..48b77b28 100644 --- a/Translations/sr-Latn-RS.lproj/Localizable.strings +++ b/Translations/sr-Latn-RS.lproj/Localizable.strings @@ -623,7 +623,7 @@ "symptom_faq1_title" = "Koji su simptomi COVID-19?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Ovi simptomi se često javljaju:\n\n– temperatura, osećaj groznice\n– bolovi u grlu\n– kašalj (najčešće suv)\n– kratak dah\n– bolovi u grudima\n– iznenadni gubitak čula mirisa i/ili ukusa\n\nOsim toga, mogući su sledeći simptomi:\n\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži"; +"symptom_faq1_text" = "Novi virus korone često može pokazati različite simptome bolesti. Najčešći simptomi su:\n\n– bol u grlu\n– kašalj (uglavnom suv)\n– kratak dah\n– bol u grudima\n– temperatura\n– iznenadni gubitak čula mirisa i/ili ukusa\n– glavobolja\n– opšta slabost, malaksalost\n– bolovi u mišićima\n– kijavica\n– simptomi gastrointestinalnog trakta (mučnina, povraćanje, proliv, bolovi u stomaku)\n– osipi na koži\n\nImajte na umu sledeće: Simptomi bolesti su različite jačine i mogu varati u zavisnost od varijante virusa. Mogu biti i blagi. I samo kijavica može značiti da ste zaraženi."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "Zbog čega je praćenje deaktivirano?"; @@ -1641,9 +1641,9 @@ "checkin_report_title1" = "Zaštititi kontakte"; "checkin_report_title2" = "Obratiti pažnju na simptome"; "checkin_report_title3" = "Vršiti testiranje"; -"checkin_report_subtitle1" = "Mogli biste biti zarazni, a da to ne primetite. Pridržavajte se važećih higijenskih i zaštitnih mera i zaštitite svoju porodicu, prijatelje i okolinu."; +"checkin_report_subtitle1" = "Mogli ste da se zarazite, a da ne primetite. Obratite pažnju na sledeće mere opreza:\n\n- nositi masku do 7 dana posle kontakta)\n\n- ograničiti kontakte\n\n- držati razmak (najmanje 1,5 metar)\n\n- izbegavati javne zatvorene prostore"; "checkin_report_subtitle2" = "Proveravajte svoje zdravsveno stanje."; -"checkin_report_subtitle3" = "Odmah se testirajte ako imate simptome. Čak i ako nema simptoma i niste u potpunosti vakcinisani, test korone je važan i preporučuje se."; +"checkin_report_subtitle3" = "U slučaju pojave simptoma odmah se testirati – i ako ste vakcinisati (uključ. dopunske vakcine) ili ste preležali koronu. Čak i ako imate samo blage simptome, testiranje je korisno i preporučljivo.

Testirajte se, i ako nemate simptome. Možete biti zaraženi i kada nemate simptome. Test u tom slučaju treba uraditi nekoliko dana (4–7) posle rizičnog kontakta. U tom vremenu se najčešće može otkriti zaraza."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Prijava"; @@ -1797,7 +1797,7 @@ "vaccination_booking_info_text" = "Vakcinacija se može održati na primer na sledećim mestima u Vašoj blizini:\n\n- u specifičnim centrima za vakcinaciju\n- u bolnicama\n- kod Vašeg ličnog lekara ili lekarke\n- u vakcinišućim apotekama\n\nMnoga mesta nude i vakcinaciju bez zakazanog termina"; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 12 godina. Vakcinacija je besplatna."; +"vaccination_booking_info_info" = "Vakcina za Covid-19 preporučena je osobama starijim od 5 godina."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/ti.lproj/Localizable.strings b/Translations/ti.lproj/Localizable.strings index 4a42277f..57fece8e 100644 --- a/Translations/ti.lproj/Localizable.strings +++ b/Translations/ti.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "ምልክታት ኮቪድ-19 እንታይ እዩ፧"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "እዚኦም ምልክታት ብዙሕ ግዜ ይርኣዩ፦\n\n– ረስኒ፣ ስምዒት ናይ ረስኒ\n– ቃንዛ ጎሮሮ\n– ሰዓል (መብዛሕትኡ ግዜ ደረቕ ሰዓል)\n– ሕጽረት እስትንፋስ\n– ቃንዛ ኣፍ-ልቢ\n– ናይ ምሽታትን ናይ ምስትምቓርን ክእለት ብሃንደበት ምጥፋእ\n\n\nካብኡ ንየው ዝስዕቡ ምልክታት ክቕልቀሉ ይኽእሉ፥\n\n– ቃንዛ ርእሲ\n– ሓፈሻዊ ድኻም፣ ስግድግድ\n– ቃንዛ ጭዋዳታት\n– ሰዓል\n– ናይ ከብድን መዓንጣን ጸገማት (ስግድግድ፣ ምትፋእ፣ ውጽኣት፣ ቃንዛ ከብዲ)\n– ነድሪ ቆርበት"; +"symptom_faq1_text" = "ሓድሽ ኮሮናቫይረስ ኣዝዩ ዝተፈላለየ ምልክታት ሕማም ከርኢ ይኽእል።\n\n– ቃንዛ ጎሮሮ\n– ሰዓል (መብዛሕትኡ ግዜ ደረቕ ሰዓል)\n– ሕጽረት እስትንፋስ\n– ቃንዛ ኣፍ-ልቢ\n– ረስኒ\n– ናይ ምሽታትን ናይ ምስትምቓርን ክእለት ብሃንደበት ምጥፋእ\n– ቃንዛ ርእሲ\n– ሓፈሻዊ ድኻም፣ ስግድግድ\n– ቃንዛ ጭዋዳታት\n– ሰዓል ኣፍንጫ\n– ናይ ከብድን መዓንጣን ጸገማት (ስግድግድ፣ ምትፋእ፣ ውጽኣት፣ ቃንዛ ከብዲ)\n– ነድሪ ቆርበት\n\nኣስተውዕሉ፦ ምልክታት እቲ ሕማም ከከም እቲ ቫይረስ ኪፈላለ ይኽእል እዩ። ፈኲስ እውን ኪኸውን ይኽእል እዩ። ጐያዪ ኣፍንጫ እውን እንተ ዀነ ሕማም ድሮ ኬመልክት ይኽእል እዩ።"; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "እቲ ምክትታል ስለምንታይ ተዓጽዩ፧"; @@ -1642,9 +1642,9 @@ "checkin_report_title1" = "ርክባት ምክልኻል"; "checkin_report_title2" = "ምልክታት ምጥንቃቕ"; "checkin_report_title3" = "ምምርማር"; -"checkin_report_subtitle1" = "ድሮ ተላጋቢ ክትኮኑ ትኽእሉ ከይተገንዘብኩም። እቶም ብቑዓት ናይ ጽሬትን ምክልኻልን ስጉምትታት ተኸተሉ ከምኡውን ስድራኹምን ኣዕሩኽትኹምን ከባብኹምን ኣስተውዕሉ።"; +"checkin_report_subtitle1" = "ከይፈለጥካ በዚ ተለቢድካ ትኸውን። ነዞም ዚስዕቡ ጥንቃቐታት ተዓዘቦ፦\n\n- ማስኬራ ምኽዳን (ምስ ተራኸብካ ክሳብ 7 መዓልቲ)\n\n- ደረት ርክብ ግበር\n\n- ርሕቐት ምግዳፍ (እንተ ወሓደ 1.5 ሜተር)\n\n- ካብ ህዝባዊ ቦታታት ርሓቕ"; "checkin_report_subtitle2" = "መርገጽ ጥዕናኹም ተኸታተሉ።"; -"checkin_report_subtitle3" = "ኣብ ምቕልቓል ምልክታት ብዝቐልጠፈ ተመርመሩ። ዋላ ምልክታት ዘይቕልቀሉ እንተኾይኖም ኮምኡውን ገና ብምልኡ ዘይተኸተብኩም እንተኾይንኩም፣ መርመራ ኮሮና እንተላይ ጤቓምን ዝምረጽን እዩ።"; +"checkin_report_subtitle3" = "ዋላ እውን እንተ ተኸቲብካ (ወይ መሕደሲ ክታበት እንተገበርካ) ወይ እንተ ሓወኻ፣ ምልክታት ሕማም እንተ ኣጋጢሙካ ብኡንብኡ ተመርመር። ዋላ እውን ፈኲስ ምልክታት እንተ ሃለወካ ፈተና ጠቃምን ምኽሪ ዚወሃበካን እዩ።

ዝዀነ ይኹን ልክት እንተ ዘይብልካ እውን ተመርመር። ተለቢድካ ኔርካ ትኸውን፣ ግና ሽዑ ምልክት ሕማም ከምዘለካ ናይ ግድን ኣይኮነን። ኣብ ከምዚ ዝኣመሰለ ዅነታት እቲ መርመራ ድሕሪ እቲ ሓደጋ ሒደት መዓልትታት (4-7) ጥራይ እዩ ኺግበር ዘለዎ። ድሕሪኡ ምልክት ዘይብሉ ረኽሲ ኺርአ ይኽእል እዩ ።"; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "ቸክ-ኢን"; @@ -1798,7 +1798,7 @@ "vaccination_booking_info_text" = "ንኣብነት ኣብዚ ኣብ ጥቓኻ ዘለ ቦታታት ክትኽተብ ትኽእል ኢኻ፥\n\n- ኣብ እተወሰነ ማእከላት ክታበት\n- ኣብ ሆስፒታላት\n- ምስ ዘቤታዊ ሓኪም\n- ኣብ ናይ ክታበት ፋርማሲታት\n\nኣብ መብዛሕትኦም ቦታታት ብዘይ ቈጸራ ብቐጥታ ክትኽተብ ትኽእል።"; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "ክታበት ኮቪድ-19 ነቶም 12 ዓመትን ልዕሊኡን ዝዕድሚኦም ሰባት ተመኺሩ። እቲ ክታበት ነጻ እዩ።"; +"vaccination_booking_info_info" = "ክታበት ኮቪድ-19 ነቶም 5 ዓመትን ልዕሊኡን ዝዕድሚኦም ሰባት ተመኺሩ።"; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung"; diff --git a/Translations/tr.lproj/Localizable.strings b/Translations/tr.lproj/Localizable.strings index 6d573923..64f1465e 100644 --- a/Translations/tr.lproj/Localizable.strings +++ b/Translations/tr.lproj/Localizable.strings @@ -624,7 +624,7 @@ "symptom_faq1_title" = "KOVİD-19 semptomları nedir?"; /*Symptome: FAQ Text*/ -"symptom_faq1_text" = "Bu semptomlar sıklıkla ortaya çıkmaktadır:\n\n– Ateş, ateşlenme\n– Boğaz ağrısı\n– Öksürme (genelde kuru)\n– Nefes darlığı\n– Göğüs ağrıları\n– Koku ve tad alma yetisinin aniden kaybolması\n\nAyrıca bu semptomlar görülebilir:\n\n– Başağrıları\n– Genel halsizlik, rahatsızlık\n– Kas ağrıları\n– Nezle\n– Mide-bağırsak semptomları (bulantı, kusma, ishal, mide ağrıları)\n– Deri döküntüleri"; +"symptom_faq1_text" = "Yeni koronavirüs çok farklı hastalık semptomları gösterebilir. En sık görülen semptomlar şunlardır:\n\n– Boğaz ağrısı\n– Öksürük (çoğunlukla kuru öksürük)\n– Nefes darlığı\n– Göğüs ağrıları\n– Koku ve tad alma duyusunun aniden kaybolması\n– Başağrıları\n– Genel halsizlik, rahatsızlık\n– Kas ağrıları\n– Nezle\n– Mide-bağırsak semptomları (bulantı, kusma, ishal, karın ağrıları)\n– Deri döküntüleri\n\nŞuna dikkat edin: Hastalık semptomlarının şiddeti farklı farklı olur ve virüsün varyantına göre değişebilir. Hafif de olabilirler. Sadece nezle bir enfeksiyon demek olabilir."; /*Meldungen: Positiv getestet FAQ Titel*/ "meldungen_positive_tested_faq1_title" = "İzleme neden devre dışı bırakıldı?"; @@ -1642,9 +1642,9 @@ "checkin_report_title1" = "Temaslıları koruyun"; "checkin_report_title2" = "Semptomlara dikkat edin"; "checkin_report_title3" = "Test yaptırın"; -"checkin_report_subtitle1" = "Henüz kendiniz fark etmeden de hastalığı bulaştırabilirsiniz. Geçerli hijyen ve koruma önlemlerini dikkate alın ve ailenizi, arkadaşlarınızı ve çevrenizi koruyun."; +"checkin_report_subtitle1" = "Hastalığı farkına varmadan kapmış olabilirsiniz. Lütfen şu ihtiyat tedbirlerine uyun:\n\n- Maske takın (temastan 7 gün sonrasına kadar)\n\n- Temasları sınırlayın\n\n- Mesafe bırakın (en az 1,5 metre)\n\n- Umumi mekânlardan uzak durun"; "checkin_report_subtitle2" = "Sağlık durumunuzu gözetim altında tutun."; -"checkin_report_subtitle3" = "Kendinizde semptomların varlığını gözlemlediğinizde hemen test yaptırın. Semptomlar olmadığında ve ilgili tüm aşıları olmadıysanız da bir korona testi mantıklıdır ve tavsiye edilmektedir."; +"checkin_report_subtitle3" = "'Semptomlar görürseniz hemen test olun -aşılı (güçlendirme aşıları dahil) ya da iyileşmiş olsanız bile. Sadece hafif semptomlarınız varsa bile, test yaptırmanız yararlıdır ve tavsiye edilir.

'Ayrıca semptomlarınız yoksa da test olun. Hastalık size bulaştığı halde semptomlarınız olmayabilir. Böyle bir durumda bir test ancak riskli temastan birkaç gün sonra (4-7) yapılmalıdır. Semptomsuz bir bulaşmanın tespit edilmesi o günlerde daha kolaydır."; /*Titel von CheckIn Meldungen Screen.*/ "meldung_detail_checkin_title" = "Check-in"; @@ -1798,7 +1798,7 @@ "vaccination_booking_info_text" = "Örneğin yakınınızdaki şu yerlerde aşı yaptırabilirsiniz:\n\n- özel aşı merkezlerinde\n- kliniklerde\n- eile hekiminizde\n- aşı yapan eczanelerde\n\nBirçok yerde, randevu almadan doğrudan aşı yaptırılabilmektedir."; /*vaccination booking info screen info box at bottom*/ -"vaccination_booking_info_info" = "Covid-19 aşısı 12 yaş ve üstü kişilere tavsiye edilmektedir. Aşı ücretsizdir."; +"vaccination_booking_info_info" = "Covid-19 aşısı 5 yaş ve üstü kişilere tavsiye edilmektedir."; /*url for booking an appointment for vaccination for canton ag*/ "vaccination_booking_ag_url" = "https://www.ag.ch/coronavirus-impfung";