-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Add missing strings #359
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -63,6 +63,8 @@ runtimeCommand: | |||||
description: "Update the list of available packages." | ||||||
upgrade: | ||||||
description: "Upgrade all installed packages." | ||||||
run: | ||||||
description: "Run command inside subsystem." | ||||||
enter: | ||||||
description: "Enter the subsystem's environment." | ||||||
export: | ||||||
|
@@ -93,7 +95,6 @@ pkgmanagers: | |||||
labels: | ||||||
name: "Name" | ||||||
builtIn: "Built-in" | ||||||
|
||||||
list: | ||||||
description: "List all available package managers." | ||||||
info: | ||||||
|
@@ -107,7 +108,7 @@ pkgmanagers: | |||||
description: "Show information about the specified package manager." | ||||||
new: | ||||||
description: "Create a new package manager." | ||||||
|
||||||
success: "Package manager %s created successfully." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
error: | ||||||
emptyName: "The name cannot be empty." | ||||||
noName: "No name specified." | ||||||
|
@@ -120,7 +121,6 @@ pkgmanagers: | |||||
askCommand: "Enter the command for '%s':" | ||||||
askOverwrite: "A package manager with the name '%s' already exists. Overwrite | ||||||
it?" | ||||||
success: "Created package manager '%s'." | ||||||
options: | ||||||
assumeYes: | ||||||
description: "Assume yes to all prompts." | ||||||
|
@@ -152,14 +152,17 @@ pkgmanagers: | |||||
description: "Update the specified package manager." | ||||||
info: | ||||||
success: "Updated package manager '%s'." | ||||||
askNewCommand: "Enter new command for '%s' (leave empty to keep '%s'):" | ||||||
error: | ||||||
noName: "No name specified." | ||||||
missingCommand: "Missing command for %s." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
rm: | ||||||
description: "Remove the specified package manager." | ||||||
|
||||||
error: | ||||||
noName: "No name specified." | ||||||
inUse: "The package manager is used in %d stacks:" | ||||||
info: | ||||||
askConfirmation: "Are you sure you want to remove '%s'? [y/N]" | ||||||
askConfirmation: "Are you sure you want to remove '%s'?" | ||||||
success: "Removed package manager '%s'." | ||||||
aborting: "Aborting removal of package manager '%s'." | ||||||
options: | ||||||
|
@@ -195,7 +198,6 @@ stacks: | |||||
labels: | ||||||
name: "Name" | ||||||
builtIn: "Built-in" | ||||||
|
||||||
list: | ||||||
description: "List all available stacks." | ||||||
info: | ||||||
|
@@ -217,6 +219,8 @@ stacks: | |||||
noBase: "No base specified." | ||||||
emptyPkgManager: "The package manager cannot be empty." | ||||||
noPkgManager: "No package manager specified." | ||||||
noPkgManagers: "Could not find any package managers. Create | ||||||
one with 'apx pkgmanagers new' or contact the system administrator." | ||||||
pkgManagerDoesNotExist: "The specified package manager does not exist. Create | ||||||
it with 'apx pkgmanagers new' or contact the system administrator." | ||||||
emptyPackages: "The packages cannot be empty." | ||||||
|
@@ -227,7 +231,7 @@ stacks: | |||||
askBase: "Choose a base (e.g. 'vanillaos/pico'):" | ||||||
askPkgManager: "Choose a package manager:" | ||||||
selectPkgManager: "Select a package manager [1-%d]:" | ||||||
noPackages: "You have not provided any package to install in the stack. Do you | ||||||
noPackages: "You have not provided any packages to install in the stack. Do you | ||||||
want to add some now?" | ||||||
confirmPackages: "Do you want to confirm the current packages list?" | ||||||
askPackages: "Please type the packages you want to install in the stack, separated | ||||||
|
@@ -255,10 +259,12 @@ stacks: | |||||
info: | ||||||
askBase: "Type a new base or confirm the current one (%s):" | ||||||
askPkgManager: "Choose a new package manager or confirm the current one (%s):" | ||||||
confirmPackages: "Do you want to confirm the current packages list?" | ||||||
noPackages: "You have not provided any packages to install in the stack. Do you | ||||||
want to add some now?" | ||||||
askPackages: "Type the packages you want to install in the stack, separated | ||||||
by a space, or confirm the current ones (%s):" | ||||||
success: "Updated stack '%s'." | ||||||
|
||||||
options: | ||||||
assumeYes: | ||||||
description: "Assume yes to all prompts." | ||||||
|
@@ -275,7 +281,7 @@ stacks: | |||||
error: | ||||||
noName: "No name specified." | ||||||
info: | ||||||
askConfirmation: "Are you sure you want to remove '%s'? [y/N]" | ||||||
askConfirmation: "Are you sure you want to remove '%s'?" | ||||||
success: "Removed stack '%s'." | ||||||
options: | ||||||
force: | ||||||
|
@@ -353,7 +359,7 @@ subsystems: | |||||
error: | ||||||
noName: "No name specified." | ||||||
info: | ||||||
askConfirmation: "Are you sure you want to remove '%s'? [y/N]" | ||||||
askConfirmation: "Are you sure you want to remove '%s'?" | ||||||
success: "Removed subsystem '%s'." | ||||||
options: | ||||||
force: | ||||||
|
@@ -365,7 +371,7 @@ subsystems: | |||||
error: | ||||||
noName: "No name specified." | ||||||
info: | ||||||
askConfirmation: "Are you sure you want to reset '%s'? [y/N]" | ||||||
askConfirmation: "Are you sure you want to reset '%s'?" | ||||||
success: "The subsystem '%s' has been reset." | ||||||
options: | ||||||
force: | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.