Skip to content

Commit

Permalink
Update localization files (2024-04-23T01:44:17.630Z)
Browse files Browse the repository at this point in the history
  • Loading branch information
scratchaddons-bot[bot] committed Apr 23, 2024
1 parent 5f0ae63 commit 52d0bc1
Show file tree
Hide file tree
Showing 4 changed files with 137 additions and 6 deletions.
10 changes: 5 additions & 5 deletions fi/html-content/unsupported-browser.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ <h1 class=mb-3>Selainta ei tueta</h1>
</section>
<div class=container>
<section class=mb-3>
<p>Please update your browser to use Scratch Addons. We recommend exporting your settings before doing so.</p>
<p>Päivitä selaimesi, jotta voit käyttää Scratch-lisäosia. On suositeltavaa, että lataat asetuksesi ennen sitä.</p>
<p id=export-settings style=display:none>
<button id=export-btn class="btn btn-primary">Export my extension settings</button>
<button id=export-view-btn class="btn btn-primary">View my extension settings</button>
</p><p>After updating your browser, you can import your settings by going to Scratch Addons settings &gt; More Settings &gt; Import settings.</p>
<button id=export-btn class="btn btn-primary">Lataa laajennuksen asetukset</button>
<button id=export-view-btn class="btn btn-primary">Näytä laajennuksen asetukset</button>
</p><p>Selaimen päivittämisen jälkeen voit tuoda asetuksesi siirtymällä Scratch-lisäosien asetuksiin &gt; valitsemalla Lisää asetuksia &gt; Tuo asetukset.</p>
<p></p>
</section>
<hr>
<section>
<p>These are the browsers we currently support.</p>
<p>Näitä selaimia tuetaan tällä hetkellä.</p>
<br>
<h4>
<span class=iconify-inline data-icon=simple-icons:googlechrome></span> Chromium 96+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Kuvakkeen lisääminen asetuksen nimeen
Lisätäksesi kuvakkeen asetuksen nimeen ilman [kaatumisten](https://github.com/ScratchAddons/ScratchAddons/commit/ead64b9da1434e7ed593c141cba7b02addd70a54) [aiheutumista](https://github.com/ScratchAddons/ScratchAddons/pull/1529):

- Varmista, ettei kuvaketiedoston nimi sisällä väliviivoja
- Kirjoita `@KUVAKETIEDOSTONNIMI.svg setting name` `addon.json'-tiedostoon`
- Kirjoita `@KUVAKETIEDOSTONNIMI.svg setting name` `addon.json'`-tiedostoon
- Lisää `KUVAKETIEDOSTONNIMI.svg` `/images/icons/`-kohtaan, jos se puuttuu
- Muokkaa `/background/load-addon-manifests.js`-tiedostoa ja lisää `iconfilenameIcon: "@KUVAKETIEDOSTONNIMI.svg",`
- Muokkaa Scratch-ilmoitusten asetuksia `/addons/scratch-notifier/notifier.js`-tiedostossa.
23 changes: 23 additions & 0 deletions fi/markdown/docs/develop/getting-started/addon-basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: Lisäosien perusteet
---

## Mikä lisäosa oikeastaan on?
Itse asiassa lisäosa ei ole sen enempää kuin käyttäjäskripti, käyttäjätyyli tai näiden kahden yhdistelmä. Jos jotkin näistä liittyvät toisiinsa, tehdään niistä yhdellä nimellä kulkevan lisäosan osia. Esimerkiksi "Scratch 3 Kehittäjän työkalut" -lisäosassa on käyttäjäskripti, joka vastaa hakulaatikon lisäämisestä editoriin, ja käyttäjätyyli, joka määrittelee lisätyn laatikon CSS-tyylin.

## Mikä on käyttäjäskripti?
Käyttäjäskripti on läjä JavaScript-koodia, joka suoritetaan yhdessä Scratch-välilehden kanssa. Voit määrittää, missä käyttäjäskripti suoritetaan, kuten esimerkiksi pelkästään projektisivuilla. Käyttäjäskriptit ovat samanlaisia selainlaajennusten sisältöskriptien kanssa, ja jos olet käyttänyt käyttäjäskriptien hallintaohjelmaa, tulet huomaamaan, että ne ovat periaatteessa sama asia.
Käyttäjäskripteillä voi muuttaa Scratch-verkkosivuston toimintaa, kuten esimerkiksi lisätä tai poistaa navigointipalkin painikkeita.

## Mikä on käyttäjätyyli?
Käyttäjätyyli on samankaltainen käyttäjäskriptin kanssa; niillekin voi määrittää URL-säännön. Käyttäjätyylit kuitenkin lisäävät CSS-koodia JavaScriptin sijaan. Niitä käytetään usein käyttäjäskriptien lisäämien elementtien ulkonäön muuttamiseen. Niitä voidaan käyttää myös Scratchin alkuperäisten elementtien muuttamiseen, jolloin niistä käytetään yleensä nimitystä "teema".

## Minkälainen lisäosa on käsitteenä?
Saatat pohtia, pitäisikö luoda uusi lisäosa vai muokata olemassa olevaa.
Jos kaksi lisäosaa jakaa jotakin näistä, ne pitäisi mahdollisesti yhdistää.
- Molemmat tarvitsevat tai eivät tarvitse lupia, jotka vaativat vuorovaikutusta käyttäjän kanssa (kuten ilmoitukset).
- Ne jakavat paljon koodia.
- Käyttäjä voisi olettaa, että lisäosa tarjoaa molemmat ominaisuudet.
- Jos ne olisivat erillään, ne voisivat häiritä toisiaan.

Remember addons are customizable by the user - adding new functionality does not affect old users of the addon, unless we intentionally make it do so.
108 changes: 108 additions & 0 deletions fi/markdown/docs/develop/userstyles/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
---
title: Käyttäjätyylit
description: Userstyles are CSS rules that affect Scratch pages. They can apply styles to existing Scratch UI, as well as to elements that were added to the page by addons.
---

Userstyles are CSS rules that affect Scratch pages. They can apply styles to existing Scratch UI, as well as to elements that were added to the page by addons.


## Declaring userstyles in the addon manifest

{{< admonition warning >}}
**Some changes require an extension reload** from `chrome://extensions` to take effect, such as updating the addon manifest file.

It's not necessary to reload the extension when changing the source of an already existing userstyle CSS file. In those cases, reloading the page is enough.
{{< /admonition >}}

Userstyles are declared inside a "userstyles" array, similarly to userscripts.

Each item of the array must have the following properties:
- `"url"`: the relative URL to a CSS file.
- `"matches"`: the list of Scratch pages where the userstyle will be applied. See [matches](/docs/reference/addon-manifest/#matches) for more information.
- `if`: a list of conditions that may toggle whether the userstyle is currently applied or not. See [userstyle.if](https://scratchaddons.com/docs/reference/addon-manifest/#if) for more information.

Example manifest:
```json
{
"name": "Scratch Messaging",
"description": "Provides easy reading and replying to your Scratch messages.",
"userstyles": [
{
"url": "styles.css",
"matches": ["projects", "https://scratch.mit.edu/", "profiles"]
},
{
"url": "resize.css",
"matches": ["projects"],
"if": {
"settings": {
"resize": true
}
}
},
],
"settings": [
{
"name": "Resize messages",
"id": "resize",
"type": "boolean",
"default": false
}
],
"tags": ["community"],
"enabledByDefault": false
}
```


## Dynamically toggling userstyles after page load

It is usually unnecessary to use a JavaScript userscript to dynamically toggle whether a userstyle is active on the page in response to the user changing settings.

- Including `dynamicEnable: true` in the addon manifest will allow the extension to dynamically inject userstyles if the addon has been enabled (for the first time) after loading the page.
- Including `dynamicDisable: true` in the addon manifest will allow the extension to dynamically remove or reinject userstyles if the addon has been toggled, without requiring a page reload.
- Including `updateUserstylesOnSettingsChange: true` in the addon manifest will re-evaluate "if" conditions that depend on user settings without requiring a page reload. The extension will remove or inject userstyles accordingly.


## Accessing addon settings from CSS

Userstyles can easily obtain color and numerical settings through CSS variables. They can also access settings from other enabled addons.

The CSS variables always follow the `--addonId-settingId` format. Setting IDs are always converted from kebab-case to camelCase.

These CSS variables are always available for all enabled addons and no manifest property is necessary to expose them. They are also synchronized with user settings without requiring a page reload.

```css
.sa-progress-bar {
/* Color setting */
background-color: var(--progressBar-bgColor);

/* Color setting with fallback */
border-color: var(--editorDarkMode-border, #fc7c24);
/* If editor-dark-mode is disabled, the fallback will be used instead */

/* Numerical setting */
height: calc(1px * var(--progressBar-height));
}
```


## Custom CSS variables

If a userstyle needs to choose between one of two values based on a background color (text contrast) or an addon setting, JavaScript isn't necessary. These conditions, among others, can be declared in the addon manifest through [customCssVariables](/docs/reference/addon-manifest/#customcssvariables), and the userstyle can simply reference that CSS variable.


## Applying styles only inside the editor

The extension automatically toggles a class name on the `<body>` element when the user enters or exits the project editor.

For example, styling `<input>` elements inside and outside the editor differently:
```css
.sa-body-editor input {
/* Only applies if `addon.tab.editorMode` is `editor` or `fullscreen` */
}

body:not(.sa-body-editor) input {
/* Only applies if `addon.tab.editorMode` is NOT `editor` nor `fullscreen` */
}
```

0 comments on commit 52d0bc1

Please sign in to comment.