1
0
mirror of https://github.com/privacyguides/i18n.git synced 2025-08-28 00:49:15 +00:00

New Crowdin translations by GitHub Action

This commit is contained in:
Crowdin Bot
2024-07-25 07:33:48 +00:00
parent 5e61c0e541
commit d07b0e3b4a
145 changed files with 1247 additions and 899 deletions

View File

@@ -2,11 +2,11 @@
title: Caricare Immagini
---
Ecco un paio di regole generali per contribuire a Privacy Guides:
If you make changes to this website that involve adding new images or replacing existing ones, here are a couple of general recommendations:
## Immagini
- **Preferiamo** le immagini SVG, ma se non esistono, possiamo utilizzare le immagini PNG
- We **prefer** SVG images, but if those do not exist we can use PNG images. Additionally, for cover images, we prefer that they are obtained from [Unsplash](https://unsplash.com) and are in the WebP format.
I loghi aziendali hanno dimensioni di:
@@ -17,7 +17,7 @@ I loghi aziendali hanno dimensioni di:
### PNG
Utilizza l'[OptiPNG](https://sourceforge.net/projects/optipng) per ottimizzare l'immagine PNG:
Use the [OptiPNG](https://sourceforge.net/projects/optipng) tool to optimize PNG images:
```bash
optipng -o7 file.png
@@ -87,3 +87,11 @@ scour --set-precision=5 \
--protect-ids-noninkscape \
input.svg output.svg
```
### WebP
Use the [cwebp](https://developers.google.com/speed/webp/docs/using) command to convert PNG or JPEG image files to WebP format:
```bash
cwebp -q 70 -m 6 input_file -o output.webp
```