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

Commit

Permalink
enum strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute committed Sep 8, 2024
1 parent 69f5249 commit 7c4a7cd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,49 @@
"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.backgroundAlignment.TL": "Top Left",
"contributes.configuration.backgroundAlignment.TC": "Top Center",
"contributes.configuration.backgroundAlignment.TR": "Top Right",
"contributes.configuration.backgroundAlignment.CL": "Center Left",
"contributes.configuration.backgroundAlignment.CC": "Center Center",
"contributes.configuration.backgroundAlignment.CR": "Center Right",
"contributes.configuration.backgroundAlignment.BL": "Bottom Left",
"contributes.configuration.backgroundAlignment.BC": "Bottom Center",
"contributes.configuration.backgroundAlignment.BR": "Bottom Right",
"contributes.configuration.backgroundAlignment.M": "Manual",
"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.backgroundRepeat.NR._": "No Repeat",
"contributes.configuration.backgroundRepeat.NR": "Do not repeat",
"contributes.configuration.backgroundRepeat.R_": "Repeat",
"contributes.configuration.backgroundRepeat.R": "Repeat X/Y",
"contributes.configuration.backgroundRepeat.RX._": "Repeat X",
"contributes.configuration.backgroundRepeat.RX": "Repeat X",
"contributes.configuration.backgroundRepeat.RY._": "Repeat Y",
"contributes.configuration.backgroundRepeat.RY": "Repeat Y",
"contributes.configuration.backgroundRepeat.RS._": "Repeat Space",
"contributes.configuration.backgroundRepeat.RS": "Repeat with even spacing to fill the screen",
"contributes.configuration.backgroundRepeat.RR._": "Repeat Round",
"contributes.configuration.backgroundRepeat.RR": "Repeat and stretch images to fill the screen",
"contributes.configuration.backgroundSize": "The background image size.",
"contributes.configuration.backgroundSize.Auto._": "Auto",
"contributes.configuration.backgroundSize.Auto": "Original image size",
"contributes.configuration.backgroundSize.Contain._": "Contain",
"contributes.configuration.backgroundSize.Contain": "Fit image to the screen",
"contributes.configuration.backgroundSize.Cover._": "Cover",
"contributes.configuration.backgroundSize.Cover": "Stretch image to fill the screen",
"contributes.configuration.backgroundSize.Manual._": "Manual",
"contributes.configuration.backgroundSize.Manual": "Manual 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.settingScope.G": "Global",
"contributes.configuration.settingScope.W": "Workspace",
"contributes.configuration.CSS": "Apply raw CSS to VSCode."
}

0 comments on commit 7c4a7cd

Please sign in to comment.