Skip to content

Commit

Permalink
Merge pull request #767 from guidobouman/patch-1
Browse files Browse the repository at this point in the history
Fix hardcoded typo's
  • Loading branch information
leits authored Oct 11, 2024
2 parents 1e1b6d8 + 7d1016b commit bb68454
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MeetingBar/Views/Shared.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct endEventNotificationPicker: View {

var body: some View {
HStack {
Toggle("Sent a notification when event ends", isOn: $endOfEventNotification)
Toggle("Send a notification when event ends", isOn: $endOfEventNotification)
Picker("", selection: $endOfEventNotificationTime) {
Text("when event ends").tag(TimeBeforeEventEnd.atEnd)
Text("1 minute before").tag(TimeBeforeEventEnd.minuteBefore)
Expand Down Expand Up @@ -130,7 +130,7 @@ struct LaunchAtLoginANDPreferredLanguagePicker: View {
Group {
Text("English").tag(AppLanguage.english)
Text("Українська").tag(AppLanguage.ukrainian)
Text("Deutsche").tag(AppLanguage.german)
Text("Deutsch").tag(AppLanguage.german)
Text("Français").tag(AppLanguage.french)
Text("Hrvatski").tag(AppLanguage.croatian)
Text("Norks").tag(AppLanguage.norwegian)
Expand All @@ -145,7 +145,7 @@ struct LaunchAtLoginANDPreferredLanguagePicker: View {
Text("Español").tag(AppLanguage.spanish)
Text("Português").tag(AppLanguage.portuguese)
Text("Slovenčina").tag(AppLanguage.slovak)
Text("Nederland").tag(AppLanguage.dutch)
Text("Nederlands").tag(AppLanguage.dutch)
}
}
}.frame(width: 250)
Expand Down

0 comments on commit bb68454

Please sign in to comment.