Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
milanvarady committed Apr 20, 2024
1 parent e517025 commit ab944b8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Applite/Views/App Views/AppView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ struct AppView: View {
.font(.system(size: 14))
.buttonStyle(.bordered)
.clipShape(Capsule())
.alert("App coundn't be located", isPresented: $appNotFoundShowing) {
.alert("App couldn't be located", isPresented: $appNotFoundShowing) {
Button("OK", role: .cancel) { }
}

Expand Down
2 changes: 1 addition & 1 deletion Applite/Views/Commands.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct CommandsMenu: Commands {
CommandGroup(replacing: .help) {
Link("Website", destination: URL(string: "https://aerolite.dev/applite")!)
Link("Troubleshooting", destination: URL(string: "https://aerolite.dev/applite/troubleshooting.html")!)
Link("Github", destination: URL(string: "https://github.com/milanvarady/Applite")!)
Link("GitHub", destination: URL(string: "https://github.com/milanvarady/Applite")!)
Link("Discord", destination: URL(string: "https://discord.gg/ZgB6pRE8Qx")!)
}
}
Expand Down
2 changes: 1 addition & 1 deletion Applite/Views/Detail Views/BrewManagementView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ struct BrewManagementView: View {
Label(isAppBrewInstalled ? "Reinstall Homebrew" : "Install Separate Brew", systemImage: "wrench.and.screwdriver")
}
.disabled(modifyingBrew)
.confirmationDialog("Are you sure you wan't to \(isAppBrewInstalled ? "re" : "")install Homebrew?", isPresented: $isPresentingReinstallConfirm) {
.confirmationDialog("Are you sure you want to \(isAppBrewInstalled ? "re" : "")install Homebrew?", isPresented: $isPresentingReinstallConfirm) {
Button("Yes") {
withAnimation {
modifyingBrew = true
Expand Down
2 changes: 1 addition & 1 deletion Applite/Views/Detail Views/DownloadView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct DownloadView: View {
Label("Turn off few downloads filter", systemImage: "slider.horizontal.2.square.on.square")
}
.bigButton()
.help("Apps with few downloads are hidden, consider turning of this filter")
.help("Apps with few downloads are hidden, consider turning off this filter")
}
}
.frame(maxWidth: 800)
Expand Down
20 changes: 10 additions & 10 deletions Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@
}
}
},
"App coundn't be located" : {
"App couldn't be located" : {
"localizations" : {
"fr" : {
"stringUnit" : {
Expand Down Expand Up @@ -903,7 +903,7 @@
}
}
},
"Apps with few downloads are hidden, consider turning of this filter" : {
"Apps with few downloads are hidden, consider turning off this filter" : {
"localizations" : {
"fr" : {
"stringUnit" : {
Expand All @@ -914,7 +914,7 @@
"hu" : {
"stringUnit" : {
"state" : "translated",
"value" : "A kevés letöltéssel rendelkező alkalmazások el vannak rejtve. Fontolja meg ennek a szűrőnek a kikapcsolását."
"value" : "A kevés letöltéssel rendelkező alkalmazások el vannak rejtve. Fontolja meg ennek a szűrőnek a kikapcsolását"
}
},
"zh-Hans" : {
Expand All @@ -931,12 +931,12 @@
}
}
},
"Are you sure you wan't to %@install Homebrew?" : {
"Are you sure you want to %@install Homebrew?" : {
"localizations" : {
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Voulez-vous vraiment %@installer Homebrew ?"
"value" : "Voulez-vous vraiment %@installer Homebrew?"
}
},
"hu" : {
Expand All @@ -954,7 +954,7 @@
"zh-HK" : {
"stringUnit" : {
"state" : "translated",
"value" : "您確定不想%@install Homebrew 嗎?"
"value" : "您確定不想 %@install Homebrew 嗎?"
}
}
}
Expand Down Expand Up @@ -2378,24 +2378,24 @@
}
}
},
"Github" : {
"GitHub" : {
"localizations" : {
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : ""
"value" : "GitHub"
}
},
"hu" : {
"stringUnit" : {
"state" : "translated",
"value" : ""
"value" : "GitHub"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Github"
"value" : "GitHub"
}
},
"zh-HK" : {
Expand Down

0 comments on commit ab944b8

Please sign in to comment.