1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-06 19:40:08 +02:00

👌 Missing localized strings

This commit is contained in:
2023-05-27 12:43:31 +02:00
parent 3c7bed0a9b
commit 5c9b06d83b
2 changed files with 7 additions and 3 deletions

View File

@ -233,7 +233,7 @@ struct PhpFormulaeView: View {
public func repairAll() async {
await self.runCommand(InstallAndUpgradeCommand(
title: "Repairing installations...",
title: "phpman.operations.repairing".localized,
upgrading: [],
installing: []
))
@ -241,7 +241,7 @@ struct PhpFormulaeView: View {
public func upgradeAll(_ formulae: [BrewFormula]) async {
await self.runCommand(InstallAndUpgradeCommand(
title: "Installing updates...",
title: "phpman.operations.updating".localized,
upgrading: formulae,
installing: []
))
@ -249,7 +249,7 @@ struct PhpFormulaeView: View {
public func install(_ formula: BrewFormula) async {
await self.runCommand(InstallAndUpgradeCommand(
title: "Installing \(formula.displayName)",
title: "phpman.operations.installing".localized(formula.displayName),
upgrading: [],
installing: [formula]
))

View File

@ -141,6 +141,10 @@ You may be asked for your password during the uninstallation process if file per
"phpman.unlinked.desc" = "You likely still have some version of PHP that is currently installed, but currently no version of PHP is linked.";
"phpman.unlinked.detail" = "Without any PHP version linked, the `php` binary is not accessible on your system and you cannot run any PHP scripts without explicitly being part of the PATH. You can have PHP Monitor automatically resolve this problem (choose Fix Automatically in the main menu), or fix it yourself by running `brew link php --force`.";
"phpman.operations.repairing" = "Repairing installations...";
"phpman.operations.updating" = "Installing updates...";
"phpman.operations.installing" = "Installing %@...";
"phpman.steps.fetching" = "Fetching...";
"phpman.steps.downloading" = "Downloading package data...";
"phpman.steps.installing" = "Installing some package data...";