Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
help and package translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute committed Sep 2, 2024
1 parent 10f424f commit 07e9ab1
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 2 deletions.
21 changes: 20 additions & 1 deletion en/readme.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,24 @@
"environment.desc_workspace": "Current VSCode project folder",
"environment.desc_home": "Current user's home directory",
"environment.desc_env": "System environment variable",
"license": "This extension is released under the [GNU General Public License (GPL) v2.0](https://github.com/KatsuteDev/Background/blob/main/LICENSE)."
"license": "This extension is released under the [GNU General Public License (GPL) v2.0](https://github.com/KatsuteDev/Background/blob/main/LICENSE).",
"help.commonIssues": "Common Issues",
"help.corrupt._": "Code installation is corrupt",
"help.corrupt.description": "This warning may appear after running the uninstall command, reopen VSCode for this to disappear.\n\nIf this warning still appears after an uninstall, reinstall [VSCode](https://code.visualstudio.com/download).",
"help.fix._": "VSCode stopped working [#46](https://github.com/KatsuteDev/Background/issues/46)",
"help.fix.description": "This extension modifies an internal file to make backgrounds work, if VSCode stops working replace `%LocalAppData%\\Programs\\Microsoft VS Code\\resources\\app\\out\\vs\\workbench\\workbench.desktop.main.js` with `workbench.desktop.main-backup.js`.\n\nThis extension also modifies `%LocalAppData%\\Programs\\Microsoft VS Code\\resources\\app\\product.json`, replace with `product-backup.json` if VSCode stops working.",
"help.missing._": "Backgrounds are missing on workspace",
"help.missing.description": "The workspace setting will use whatever settings are set for that workspace, it does not fallback to the global setting.",
"help.inverted._": "Opacity is inverted",
"help.inverted.description": "As of 3.0.0, opacity has been switched from 0 visible and 1 invisible to 1 visible and 0 invisible, use the **useInvertedOpacity** option if you want the old behavior.",
"help.uninstall._": "Disable/uninstall doesn't remove background",
"help.uninstall.description": "Backgrounds are not removed on extension disable or uninstall, you must run the **Background: Uninstall** command to remove backgrounds.",
"help.window._": "Background doesn't work on window buttons (minimize/maximize/close) [#178](https://github.com/KatsuteDev/Background/issues/178)",
"help.window.description": "These buttons are controlled by the system and not VSCode; and can not be modified by this extension.",
"help.wsl._": "(Windows) Doesn't work on WSL [#27](https://github.com/KatsuteDev/Background/issues/27#issuecomment-1233610914)",
"help.wsl.description": "Backgrounds can not be changed while running this extension in a remote WSL window. Backgrounds must be changed by making changes in the main VSCode window, then opening the remote WSL window.",
"help.readonly._": "(Mac) read-only file system [#76](https://github.com/KatsuteDev/Background/issues/76)",
"help.readonly.description": "This extension doesn't natively support Mac, write permissions must be granted to the VSCode application:\n\n1. Move `Visual Studio Code.app` from `Download` to the `Application` directory.\n2. Run `sudo chmod -R a+rwx '/Applications/Visual Studio Code.app'` to grant write permissions.",
"help.snap._": "(Linux) snap: read-only file system [#140](https://github.com/KatsuteDev/Background/issues/140#issuecomment-1503820398)",
"help.snap.description": "Applications installed using [snap](https://snapcraft.io/) are inherently read-only, install VSCode using [deb](https://code.visualstudio.com/download) or [rpm](https://code.visualstudio.com/download)."
}
27 changes: 26 additions & 1 deletion en/translations.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
{

"name": "Background",
"description": "The most advanced background image extension for VSCode",
"contributes.command.install": "Install",
"contributes.command.uninstall": "Uninstall",
"contributes.command.reload": "Reload",
"contributes.command.configuration": "Configuration",
"contributes.command.changelog": "Changelog",
"contributes.command.Help": "Help",
"contributes.configuration.windowBackgrounds": "The list of files, globs, or URLs to pull background images from.\n\n* Use only `/` for directories, `\\` is reserved for escape characters.\n\n* Image URLs must be served over HTTPS.",
"contributes.configuration.editorBackgrounds": "The list of files, globs, or URLs to pull background images from.\n\n* Use only `/` for directories, `\\` is reserved for escape characters.\n\n* Image URLs must be served over HTTPS.",
"contributes.configuration.sidebarBackgrounds": "The list of files, globs, or URLs to pull background images from.\n\n* Use only `/` for directories, `\\` is reserved for escape characters.\n\n* Image URLs must be served over HTTPS.",
"contributes.configuration.panelBackgrounds": "The list of files, globs, or URLs to pull background images from.\n\n* Use only `/` for directories, `\\` is reserved for escape characters.\n\n* Image URLs must be served over HTTPS.",
"contributes.configuration.backgroundAlignment": "The background image alignment.",
"contributes.configuration.backgroundAlignmentValue": "If `#background.backgroundAlignment#` is set to `Manual`, this is the literal value for the `background-position` css property.",
"contributes.configuration.backgroundBlur": "The background image blur amount in css units.",
"contributes.configuration.backgroundOpacity": "The background opacity, make sure this number is not to high, otherwise you may not be able to see the UI and revert this change.\n\n`1` is fully visible and `0` is invisible. If `#background.useInvertedOpacity#` is true, this logic is inverted.",
"contributes.configuration.backgroundRepeat": "The background image repeat.",
"contributes.configuration.backgroundSize": "The background image size.",
"contributes.configuration.backgroundSizeValue": "If `#background.windowBackgroundSize#` is set to `Manual`, this is the literal value for the `background-size` css property.",
"contributes.configuration.backgroundChangeTime": "How long in seconds before the background should automatically change.\n\nSet to `0` to always use the same image.",
"contributes.configuration.autoInstall": "Automatically installs backgrounds and reloads the window on startup if changes are detected or VSCode updates.\n\nThis option is disabled when you run the uninstall command.",
"contributes.configuration.renderContentAboveBackground": "Render content like images, PDFs, and markdown previews above the background.",
"contributes.configuration.useInvertedOpacity": "Use an inverted opacity, so 0 is fully visible and 1 is invisible.",
"contributes.configuration.smoothImageRendering": "Use smooth image rendering rather than pixelated rendering when resizing images.",
"contributes.configuration.settingScope": "Where to save and load background settings.\n\nThis does not automatically update the background on workspace change, you need to also turn on `#background.autoInstall#`.",
"contributes.configuration.CSS": "Apply raw CSS to VSCode."
}

0 comments on commit 07e9ab1

Please sign in to comment.