|
| 1 | +// Use this file as a reference only. It is not bundled in the released package. |
| 2 | +// (1) You only need to define the key-value if you actually need to translate the term or phrase; |
| 3 | +// (2) If you need to correct any original terms (in english), modify the file that uses them directly (and all actual locale keys). |
| 4 | +// (3) If you want to create a new locale support, create a new `bundle.l10n.{locale}.json` file. |
| 5 | + |
| 6 | +{ |
| 7 | + // CodeAction.ts related. |
| 8 | + "major": "", // The package selected will be major updating (eg. "Update $packageName to 2.0 (major)"). |
| 9 | + "excluding major": "", // The packages update will not affects major versions (eg. "Update 5 packages (excluding major)"). |
| 10 | + |
| 11 | + "Update {0} selected packages": "", // User have selected {0} packages to be updated. |
| 12 | + "Update all {0} packages": "", // Possibility to update all packages at the same time. |
| 13 | + "Update \"{0}\" to {1}": "", // The user chose a single package to upgrade (eg. "Update $packageName to $version"). |
| 14 | + |
| 15 | + // Command.ts related. |
| 16 | + "Save your package.json and run your package manager install command to finish updating packages.": "", // Notification balloon to update via the user's package manager. |
| 17 | + "Do it for me!": "", // Notification action to save package.json and run npm install. |
| 18 | + |
| 19 | + "Installing selected packages...": "", // Displayed in the log during the process of installing new versions. |
| 20 | + "Done.": "", // Indicates that the process completed (either success or failure). |
| 21 | + |
| 22 | + "Packages installed successfully!": "", // Notification balloon on success. |
| 23 | + "Failed to install packages. Check the output console.": "", // Notification balloon on failure. |
| 24 | + |
| 25 | + // Diagnostic.ts related. |
| 26 | + "Invalid package version.": "", // The package version entered by the user is invalid (eg. `{ "@package/name": "abc" }`). |
| 27 | + "Package version not available.": "", // The package version entered by the was never released (even considering pre-releases). |
| 28 | + "Package \"{0}\" pending installation: {1}.": "", // The package has been declared as a dependency, but no version has yet been installed. |
| 29 | + "Newer version of \"{0}\" is available: {1}.": "", // New version available which can be used by user. |
| 30 | + "Pre-release version of \"{0}\".": "", // The defined user version is a pre-release, and there is no better alternative yet. |
| 31 | + "Ready-to-install package \"{0}\" at version {1}. Just run your package manager install command.": "", // User must run the `npm install` to install new packages based on version defined. |
| 32 | + "Security advisory: this package version has a known flaw level {0}/{1}.": "", // Diagnostic warning when a security advisory exists. |
| 33 | + "Please upgrade to version {0} or higher.": "", // Suggested upgrade to a version above. |
| 34 | + "No fix available yet.": "", // The flaw is not yet known to be resolved in a future release. |
| 35 | + "If possible, downgrade to version {0}.": "", // But it is possible to downgrade to a version where the flaw does not exist. |
| 36 | + "Details": "", // Link where you can learn more about the flaw. |
| 37 | + "Install package": "", // Forces the display of the notification suggesting to update the package (one package to be installed). |
| 38 | + "Install packages": "", // Forces the display of the notification suggesting to update the package (two or more packages to be installed). |
| 39 | + |
| 40 | + // DocumentDecoration.ts related. |
| 41 | + "Update available:": "", // The package has already been installed and has a new version available. |
| 42 | + "Latest version:": "", // The package was never installed, and the user's version is not the latest available. |
| 43 | + "install pending": "", // The informed version has not yet been installed by the user. |
| 44 | + "already installed, just formalization": "", // The version informed by the user is already installed, only a version formalization of package.json will be needed. |
| 45 | + "attention: major update!": "", // Warns the user that a major update will take place. |
| 46 | + "pre-release": "", // Warns the user that this is a pre-release version. |
| 47 | + "Now run your package manager install command.": "", // User must run the `npm install` to install new packages based on version defined. |
| 48 | + "Security advisory": "", // Informs that the package has a security advisory. |
| 49 | + "low": "", // Security advisory level. |
| 50 | + "moderate": "", // Security advisory level. |
| 51 | + "high": "", // Security advisory level. |
| 52 | + "critical": "" // Security advisory level. |
| 53 | +} |
0 commit comments