Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Adjust new features screen release 2.25 #4664

Merged
merged 7 commits into from
Jul 12, 2022
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -1716,11 +1716,11 @@ Bei ausgeschalteter Hintergrundaktualisierung müssen Sie die App täglich aufru

"NewVersionFeatures_Info_about_abb_information" = "Änderungen zum Release finden Sie in den App-Informationen unter dem Menüpunkt „Neue Funktionen”.";

/* Version 2.24 */
/* Version 2.25 */

"NewVersionFeature_224_batch_export_title" = "Zertifikate exportieren";
"NewVersionFeature_225_adjust_recommendations_title" = "Verhaltensempfehlungen aktualisiert";

"NewVersionFeature_224_batch_export_description" = "Sie können in einem Schritt alle in Ihrer App vorhandenen Zertifikate in einem gemeinsamen PDF-Dokument speichern.";
"NewVersionFeature_225_adjust_recommendations_description" = "Die Verhaltensempfehlungen bei erhöhten Risiko wurden aktualisiert. Das betrifft unter anderem Empfehlungen zur Reduktion von Kontakten oder dem Tragen von Masken. Angepasst wurden auch die Empfehlungen bei niedrigem Risiko.";

/* Delta Onboarding */
"DeltaOnboarding_AccessibilityImageLabel" = "Länderübergreifende Risiko-Ermittlung";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ struct DeltaOnboardingNewVersionFeaturesViewModel {

// ADD NEW FEATURES HERE

self.featureVersion = "2.24"
self.featureVersion = "2.25"

self.newVersionFeatures.append(
// batch export
NewVersionFeature(title: AppStrings.NewVersionFeatures.feature224BatchExportTitle, description: AppStrings.NewVersionFeatures.feature224BatchExportDescription)
NewVersionFeature(title: AppStrings.NewVersionFeatures.feature225AdjustRecommendationsTitle, description: AppStrings.NewVersionFeatures.feature225AdjustRecommendationsDescription)
)
}

Expand Down
6 changes: 3 additions & 3 deletions src/xcode/ENA/ENA/Source/View Helpers/AppStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1187,9 +1187,9 @@ enum AppStrings {
static let generalDescription = NSLocalizedString("DeltaOnboarding_NewVersionFeatures_Description", comment: "")
static let aboutAppInformation = NSLocalizedString("NewVersionFeatures_Info_about_abb_information", comment: "")

/* Version 2.24 */
static let feature224BatchExportTitle = NSLocalizedString("NewVersionFeature_224_batch_export_title", comment: "")
static let feature224BatchExportDescription = NSLocalizedString("NewVersionFeature_224_batch_export_description", comment: "")
/* Version 2.25 */
static let feature225AdjustRecommendationsTitle = NSLocalizedString("NewVersionFeature_225_adjust_recommendations_title", comment: "")
static let feature225AdjustRecommendationsDescription = NSLocalizedString("NewVersionFeature_225_adjust_recommendations_description", comment: "")
}

enum DeltaOnboarding {
Expand Down