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

Commit

Permalink
Merge pull request #4757 from corona-warn-app/story/adjust-info-scree…
Browse files Browse the repository at this point in the history
…n-release227

Adjust info screen for release 2.27
  • Loading branch information
naveeddotio authored Aug 31, 2022
2 parents a80d0ce + 59e822e commit 33cc6f8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1701,12 +1701,18 @@ Bei ausgeschalteter Hintergrundaktualisierung müssen Sie die App täglich aufru

"DeltaOnboarding_NewVersionFeatures_Button_Continue" = "Weiter";

"DeltaOnboarding_NewVersionFeatures_Description" = "Mit diesem Update beheben wir Fehler in der App. Es enthält keine neuen Funktionen.";
"DeltaOnboarding_NewVersionFeatures_Description" = "Mit diesem Update stellen wir Ihnen neben Fehlerbehebungen auch neue und erweiterte Funktionen zur Verfügung.";

/* New Version Features */

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

/* Version 2.27 */

"NewVersionFeature_227_wear_mask_title" = "Anzeige der Maskenbefreiung";

"NewVersionFeature_227_wear_mask_description" = "Auf Ihrem digitalen COVID-Zertifikat wird angezeigt, ob Sie nach den aktuell gültigen Regeln von der Maskenpflicht befreit sind, oder eine Maske tragen müssen.";

/* Delta Onboarding */
"DeltaOnboarding_AccessibilityImageLabel" = "Länderübergreifende Risiko-Ermittlung";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import UIKit
// WARNING: Do not rename class name because it is used to identify already presented onboardings. But if you need to, rename it and override the id property of the DeltaOnboarding Protocol and assign the origin id (see DeltaOnboardingProtocols)
class DeltaOnboardingNewVersionFeatures: DeltaOnboarding {

let version = "2.26"
let version = "2.27"
let store: Store

init(store: Store) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ struct DeltaOnboardingNewVersionFeaturesViewModel {

// ADD NEW FEATURES HERE

self.featureVersion = "2.26"
self.featureVersion = "2.27"

self.newVersionFeatures.append(
// wear mask
NewVersionFeature(title: AppStrings.NewVersionFeatures.feature227WearMaskTitle, description: AppStrings.NewVersionFeatures.feature227WearMaskDescription)
)
}

// MARK: - Internal
Expand Down
4 changes: 4 additions & 0 deletions src/xcode/ENA/ENA/Source/View Helpers/AppStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,10 @@ enum AppStrings {
static let buttonContinue = NSLocalizedString("DeltaOnboarding_NewVersionFeatures_Button_Continue", comment: "")
static let generalDescription = NSLocalizedString("DeltaOnboarding_NewVersionFeatures_Description", comment: "")
static let aboutAppInformation = NSLocalizedString("NewVersionFeatures_Info_about_abb_information", comment: "")

/* Version 2.27 */
static let feature227WearMaskTitle = NSLocalizedString("NewVersionFeature_227_wear_mask_title", comment: "")
static let feature227WearMaskDescription = NSLocalizedString("NewVersionFeature_227_wear_mask_description", comment: "")
}

enum DeltaOnboarding {
Expand Down

0 comments on commit 33cc6f8

Please sign in to comment.