diff --git a/website/translated_docs/ar/config.md b/website/translated_docs/ar/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/ar/config.md +++ b/website/translated_docs/ar/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/de/config.md b/website/translated_docs/de/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/de/config.md +++ b/website/translated_docs/de/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/es-ES/config.md b/website/translated_docs/es-ES/config.md index 26742ae71..6d84d8419 100644 --- a/website/translated_docs/es-ES/config.md +++ b/website/translated_docs/es-ES/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -Estas propiedades te permiten modificar el aspecto del interfaz web. Para mas información sobre esta sección lea [la página de interfaz web](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/es-ES/protect-your-dependencies.md b/website/translated_docs/es-ES/protect-your-dependencies.md index 4a5afa91f..5da1a3cdd 100644 --- a/website/translated_docs/es-ES/protect-your-dependencies.md +++ b/website/translated_docs/es-ES/protect-your-dependencies.md @@ -17,7 +17,7 @@ Veamos por ejemplo la siguiente configuración. Tienes un conjunto de dependenci Con esta configuración, básicamente le permitimos agrupar **admin** and **teamA** para * publicar* y **teamA** **teamB** **teamC** *access* a dichas dependencias. -### Use case: teamD try to access the dependency +### Caso de Uso: teamD trata de acceder a la dependencia Entonces, si yo estoy conectado como **teamD**. No debería ser capaz de acceder a todas las dependencias que cumplan con el patrón `my-company-*`. diff --git a/website/translated_docs/fr/config.md b/website/translated_docs/fr/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/fr/config.md +++ b/website/translated_docs/fr/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/hi-IN/config.md b/website/translated_docs/hi-IN/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/hi-IN/config.md +++ b/website/translated_docs/hi-IN/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/it/ansible.md b/website/translated_docs/it/ansible.md index 0f1b4dc38..050738d92 100644 --- a/website/translated_docs/it/ansible.md +++ b/website/translated_docs/it/ansible.md @@ -2,12 +2,12 @@ id: ansible title: "Ansible" --- -We have a customised solution for `verdaccio` in our organization. +Abbiamo una soluzione personalizzata per `verdaccio` nella nostra organizzazione. -#### Other options +#### Altre opzioni -* Ansible role for Gentoo users: [jirutka/ansible-role-sinopia](https://github.com/jirutka/ansible-role-sinopia). -* Ansible role for Ubuntu users: [jagregory/sinopia-ansible](https://github.com/jagregory/sinopia-ansible). -* ansible-verdaccio-role \ No newline at end of file +* Ruolo di Ansible per gli utenti Gentoo: [jirutka/ansible-ruolo-sinopia](https://github.com/jirutka/ansible-role-sinopia). +* Ruolo di Ansible per gli utenti Ubuntu: [jagregory/sinopia-ansible](https://github.com/jagregory/sinopia-ansible). +* ansible-verdaccio-ruolo \ No newline at end of file diff --git a/website/translated_docs/it/auth.md b/website/translated_docs/it/auth.md index 67fcf5aa8..06ad84556 100644 --- a/website/translated_docs/it/auth.md +++ b/website/translated_docs/it/auth.md @@ -1,16 +1,16 @@ --- -id: authentification -title: "Authentification" +id: autenticazione +title: "Autenticazione" --- -The authentification is tied to the auth [plugin](plugins.md) you are using. The package restrictions also is handled by the [Package Access](packages.md). +L'autenticazione è legata al [plugin](plugins.md) di autenticazione che si utilizza. Anche le restrizioni di pacchetto sono gestite dal [pacchetto accesso](packages.md). -The client authentification is handled by `npm` client itself. Once you login to the application: +L'autenticazione del client viene gestito dal `npm` client stesso. Una volta che si effettua il login all'applicazione: ```bash npm adduser --registry http://localhost:4873 ``` -A token is generated in the `npm` configuration file hosted in your user home folder. For more information about `.npmrc` read the [official documentation](https://docs.npmjs.com/files/npmrc). +Un token viene generato nel file di configurazione `npm` ospitato nella cartella home dell'utente. Per ulteriori informazioni su `.npmrc` leggere la [documentazione ufficiale](https://docs.npmjs.com/files/npmrc). ```bash cat .npmrc @@ -19,11 +19,11 @@ registry=http://localhost:5555/ //registry.npmjs.org/:_authToken=secretNpmjsToken ``` -#### Anonymous publish +#### Pubblicazione anonima -`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md). +`verdaccio` permette di attivare la pubblicazione anonima, per riuscirci sarà necessario impostare correttamente [l'accesso ai pacchetti](packages.md). -Eg: +Ad esempio: ```yaml 'my-company-*': @@ -32,11 +32,11 @@ Eg: proxy: npmjs ``` -As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/212#issuecomment-308578500) until `npm@5.3.0` and all minor releases **won't allow you publish without a token**. However `yarn` has not such limitation. +Come è descritto [nel caso #212](https://github.com/verdaccio/verdaccio/issues/212#issuecomment-308578500) fino al `npm@5.3.0` e in tutte le versioni minori **non vi sarà permesso pubblicare senza un token **. Tuttavia `yarn` ha non tale limitazione. -## Default htpasswd +## Impostazione predefinita htpasswd -In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin. +Al fine di semplificare l'installazione, `verdaccio` utilizza un plugin basato su `htpasswd`. A partire dalla versione v3.0.x un [plugin esterno](https://github.com/verdaccio/verdaccio-htpasswd) viene utilizzato come impostazione predefinita. La versione v2.x di questo pacchetto contiene ancora la versione incorporata di questo plugin. ```yaml auth: @@ -47,9 +47,9 @@ auth: #max_users: 1000 ``` -| Property | Type | Required | Example | Support | Description | -| --------- | ------ | -------- | ---------- | ------- | ---------------------------------------- | -| file | string | Yes | ./htpasswd | all | file that host the encrypted credentials | -| max_users | number | No | 1000 | all | set limit of users | +| Proprietà | Tipo | Richiesto | Esempio | Supporto | Descrizione | +| --------- | ------- | --------- | ------------ | -------- | ---------------------------------------------- | +| file | stringa | Sì | . / htpasswd | tutti | file che ospitano le credenziali crittografate | +| max_users | numero | No | 1000 | tutti | imposta limite di utenti | -In case to decide do not allow user to login, you can set `max_users: -1`. \ No newline at end of file +Nel caso si decida di non consentire all'utente di accedere, è possibile impostare `max_users: -1`. \ No newline at end of file diff --git a/website/translated_docs/it/build.md b/website/translated_docs/it/build.md index 7fae9af02..656a94150 100644 --- a/website/translated_docs/it/build.md +++ b/website/translated_docs/it/build.md @@ -1,13 +1,13 @@ --- id: build -title: "Build the source code" +title: "Compilare il codice sorgente" --- -Verdaccio relies on `yarn` instead `npm` to download dependencies. +Verdaccio si basa su `yarn` invece che su `npm` per scaricare le dipendenze. -*Note: the current build only will build with `➜ yarn@1.x`. +*Nota: la compilazione corrente si baserà solo su `➜ yarn@1.x`. ```bash yarn install ``` -To see the complete list of scripts, [click here](https://github.com/verdaccio/verdaccio/wiki/Build-Source-Code). \ No newline at end of file +Per vedere l'elenco completo degli script, [clicca qui](https://github.com/verdaccio/verdaccio/wiki/Build-Source-Code). \ No newline at end of file diff --git a/website/translated_docs/it/chef.md b/website/translated_docs/it/chef.md index 74c42b9d1..f134c6e25 100644 --- a/website/translated_docs/it/chef.md +++ b/website/translated_docs/it/chef.md @@ -2,13 +2,13 @@ id: chef title: "Chef Cookbook" --- -Using Chef Cookbook for Verdaccio +Uso di Chef Cookbook per Verdaccio -For further information: +Per ulteriori informazioni: * * -> We are looking for contributors for this repository, if you are interested please notify the author via tickets. +> Stiamo cercando collaboratori per questo repository, se siete interessati si prega di avvisare l'autore tramite tickets. -Author: [Keli Grubb](https://github.com/kgrubb) && Barthelemy Vessemont. \ No newline at end of file +Autori: [Keli Grubb](https://github.com/kgrubb) && Barthelemy Vessemont. \ No newline at end of file diff --git a/website/translated_docs/it/ci.md b/website/translated_docs/it/ci.md index 97a7584ea..f1624b09f 100644 --- a/website/translated_docs/it/ci.md +++ b/website/translated_docs/it/ci.md @@ -1,8 +1,8 @@ --- id: ci -title: "Continuous Integration" +title: "Integrazione continua" --- -You may use verdaccio with continuous integration while login or publish. When using NPM to install a private module in a continuous integration environment for the first time, a brick wall is quickly hit. The NPM login command is designed to be used interactively. This causes an issue in CI, scripts, etc. Here’s how to use NPM login different continuous integration platforms. +Potete utilizzare verdaccio con integrazione continua mentre effettuate il login o pubblicate. Quando si usa NPM per installare un modulo privato in un ambiente di integrazione continua per la prima volta, si fallisce rapidamente. Il comando di login NPM è progettato per essere utilizzato in modo interattivo. Questo causa un problema in CI, script, ecc. Qui trovate come utilizzare NPM per accedere a differenti piattaforme di integrazione continua. - [Travis CI](https://remysharp.com/2015/10/26/using-travis-with-private-npm-deps) - [Circle CI 1.0](https://circleci.com/docs/1.0/npm-login/) or [Circle CI 2.0](https://circleci.com/docs/2.0/deployment-integrations/#npm) diff --git a/website/translated_docs/it/cli.md b/website/translated_docs/it/cli.md index d68664df4..3a1ae4df1 100644 --- a/website/translated_docs/it/cli.md +++ b/website/translated_docs/it/cli.md @@ -1,24 +1,24 @@ --- id: cli -title: "Command Line Tool" +title: "Strumento riga di comando" --- -The verdaccio CLI is your go start the application. +Il CLI di verdaccio è il modo per avviare l'applicazione. -## Commands +## Comandi ```bash verdaccio --listen 4000 --config ~./config.yaml ``` -| Command | Default | Example | Description | -| ------------------ | ------------------------------ | -------------- | ---------------------- | -| --listen \ **-l** | 4873 | -p 7000 | http port | -| --config \ **-c** | ~/.local/verdaccio/config.yaml | ~./config.yaml | the configuration file | +| Comandi | Impostazione predefinita | Esempio | Descrizione | +| ------------------ | ------------------------------ | -------------- | ------------------------- | +| --listen \ **-l** | 4873 | -p 7000 | porta http | +| --config \ **-c** | ~/.local/verdaccio/config.yaml | ~./config.yaml | il file di configurazione | -## Default config file location +## Posizione predefinita dei file config -To locate the home directory, we rely on **$XDG_DATA_HOME** as a first choice and Windows environment we look for [APPDATA environment variable](https://www.howtogeek.com/318177/what-is-the-appdata-folder-in-windows/). +Per individuare la home directory, ci si affida a **$XDG_DATA_HOME** come prima scelta ed in un ambiente Windows si usa [variabile di ambiente APPDATA](https://www.howtogeek.com/318177/what-is-the-appdata-folder-in-windows/). -## Default storage location +## Percorso di archiviazione predefinito -We use **$XDG_DATA_HOME** environment variable as default to locate the storage by default which [should be the same](https://askubuntu.com/questions/538526/is-home-local-share-the-default-value-for-xdg-data-home-in-ubuntu-14-04) as $HOME/.local/share. If you are using a custom storage, this location is irrelevant. \ No newline at end of file +Si usa la variabile di ambiente **$XDG_DATA_HOME** di default per individuare l'archiviazione predefinita che [dovrebbe essere la stessa](https://askubuntu.com/questions/538526/is-home-local-share-the-default-value-for-xdg-data-home-in-ubuntu-14-04) di $HOME/.local/share. Se si utilizza un'archiviazione dati personalizzata, questo percorso è irrilevante. \ No newline at end of file diff --git a/website/translated_docs/it/config.md b/website/translated_docs/it/config.md index 3d256f49f..61d673c42 100644 --- a/website/translated_docs/it/config.md +++ b/website/translated_docs/it/config.md @@ -1,14 +1,14 @@ --- id: configuration -title: "Configuration File" +title: "File di configurazione" --- -This file is the cornerstone of verdaccio where you can modify the default behaviour, enable plugins and extend features. +Questo file è il fondamento di verdaccio dove è possibile modificare il comportamento predefinito, attivare i plugin ed estendere le funzionalità. -A default configuration file is created the very first time you run `verdaccio`. +Un file di configurazione predefinito viene creato la prima volta che si esegue `verdaccio`. -## Default Configuration +## Configurazione predefinita -The default configuration has support for **scoped** packages and allow any user to access all packages but only **authenticated users to publish**. +La configurazione predefinita dispone del supporto per pacchetti ** scoped** e permette a qualsiasi utente di accedere a tutti i pacchetti ma solo **agli utenti autenticati di pubblicare**. ```yaml storage: ./storage @@ -29,29 +29,29 @@ logs: - {type: stdout, format: pretty, level: http} ``` -## Sections +## Sezioni -The following sections explain what each property means and the different options. +Le sezioni seguenti spiegano cosa significa ogni proprietà e le diverse opzioni. -### Storage +### Archiviazione -Is the location of the default storage. **Verdaccio is by default based on local file system**. +È il percorso di archiviazione predefinito. **Verdaccio è di default basato sul file locale di sistema**. ```yaml storage: ./storage ``` -### Plugins +### Plugin -Is the location of the plugin directory. Useful for Docker/Kubernetes based deployments. +È il percorso della directory dei plugin. Utile per distribuzioni basate su Docker/Kubernetes. ```yaml plugins: ./plugins ``` -### Authentification +### Autenticazione -The authentification set up is done here, the default auth is based on `htpasswd` and is built-in. You can modify this behaviour via [plugins](plugins.md). For more information about this section read the [auth page](auth.md). +L'impostazione dell'autenticazione viene fatta qui, l'autenticazione predefinita è basata su `htpasswd` ed è incorporata. È possibile modificare questo comportamento tramite [plugin](plugins.md). Per ulteriori informazioni su questa sezione leggere la [ pagina dell'autenticazione](auth.md). ```yaml auth: @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +Questa proprietà consente di modificare le caratteristiche dell'interfaccia utente web. Per ulteriori informazioni su questa sezione, leggere la [pagina dell'interfaccia utente web](web.md). ```yaml web: @@ -72,9 +72,9 @@ web: scope: ``` -### Uplinks +### Uplink -Uplinks is the ability of the system to fetch packages from remote registries when those packages are not available locally. For more information about this section read the [uplinks page](uplinks.md). +Uplinks è la capacità del sistema di recuperare i pacchetti da registri remoti quando quei pacchetti non sono disponibili localmente. Per ulteriori informazioni su questa sezione leggere la [ pagina uplinks](uplinks.md). ```yaml uplinks: @@ -82,9 +82,9 @@ uplinks: url: https://registry.npmjs.org/ ``` -### Packages +### Pacchetti -Packages allow the user to control how the packages are gonna be accessed. For more information about this section read the [packages page](packages.md). +Pacchetti consente all'utente di controllare come i pacchetti vengono resi accessibili. Per ulteriori informazioni su questa sezione leggere [pacchetti pagina](packages.md). ```yaml packages: @@ -94,11 +94,11 @@ packages: proxy: npmjs ``` -## Advanced Settings +## Impostazioni avanzate -### Offline Publish +### Pubblicazione non in linea -By default `verdaccio` does not allow to publish when the client is offline, that behavior can be overridden by setting this to *true*. +Per impostazione predefinita `verdaccio` non consente di pubblicare quando il client è offline, questo comportamento può essere modificato impostandola su *true*. ```yaml publish: @@ -107,7 +107,7 @@ publish: Since: verdaccio@2.3.6 due #223 -### URL Prefix +### Prefisso URL ```yaml url_prefix: https://dev.company.local/verdaccio/ @@ -115,17 +115,17 @@ url_prefix: https://dev.company.local/verdaccio/ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/197) -### Max Body Size +### Dimensione massima del corpo -By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value. +Per impostazione predefinita la dimensione massima del corpo per un documento JSON è di `10mb`, se si incontrano errori come `"entità richiesta troppo grande"` si può aumentare questo valore. ```yaml max_body_size: 10mb ``` -### Listen Port +### Porta in ascolto -`verdaccio` runs by default in the port `4873`. Changing the port can be done via [cli](cli.md) or in the configuration file, the following options are valid. +`verdaccio` viene eseguita per impostazione predefinita nella porta `4873`. Modifica della porta può essere fatta tramite [cli](cli.md) o nel file di configurazione, le seguenti opzioni sono valide. ```yaml listen: @@ -139,7 +139,7 @@ listen: ### HTTPS -To enable `https` in `verdaccio` it's enough to set the `listen` flag with the protocol *https://*. For more information about this section read the [ssl page](ssl.md). +Per abilitare `https` in `verdaccio` è sufficiente impostare il tag `ascolto` con il protocollo *https://*. Per ulteriori informazioni su questa sezione leggere la [ pagina del ssl](ssl.md). ```yaml https: @@ -150,11 +150,11 @@ https: ### Proxy -Proxies are special-purpose HTTP servers designed to transfer data from remote servers to local clients. +I proxy sono speciali HTTP Server progettati per trasferire dati da server remoti ai clienti locali. #### http_proxy and https_proxy -If you have a proxy in your network you can set a `X-Forwarded-For` header using the following properties. +Se avete un proxy nella rete è possibile impostare un'intestazione di `X-Forwarded-For` utilizzando le seguenti proprietà. ```yaml http_proxy: http://something.local/ @@ -163,13 +163,13 @@ https_proxy: https://something.local/ #### no_proxy -This variable should contain a comma-separated list of domain extensions proxy should not be used for. +Questa variabile deve contenere un elenco di estensioni di dominio separate da virgole per cui il proxy non deve essere utilizzato. ```yaml no_proxy: localhost,127.0.0.1 ``` -### Notifications +### Notifiche Enabling notifications to third-party tools is fairly easy via web hooks. For more information about this section read the [notifications page](notifications.md). @@ -181,15 +181,15 @@ notify: content: '{"color":"green","message":"New package published: * {{ name }}*","notify":true,"message_format":"text"}' ``` -> For more detailed configuration settings, please [check the source code](https://github.com/verdaccio/verdaccio/tree/master/conf). +> Per impostazioni di configurazione più dettagliate, si prega di [controllare la fonte del codice](https://github.com/verdaccio/verdaccio/tree/master/conf). ### Audit Since: verdaccio@3.0.0 -`npm audit` is a new command released with [npm 6.x](https://github.com/npm/npm/releases/tag/v6.1.0). Verdaccio includes a built-in middleware plugin to handle this command. +`npm audit` è un nuovo comando rilasciato con [npm 6.x](https://github.com/npm/npm/releases/tag/v6.1.0). Verdaccio include un plugin di middleware incorporato per gestire questo comando. -> If you have a new installation it comes by default, otherwise you need to add the following props to your config file +> Se si dispone di una nuova installazione viene fornito di default, altrimenti è necessario aggiungere le seguenti proprietà al file di configurazione ```yaml middlewares: diff --git a/website/translated_docs/it/contributing.md b/website/translated_docs/it/contributing.md index fdb631fb7..5f0f9915f 100644 --- a/website/translated_docs/it/contributing.md +++ b/website/translated_docs/it/contributing.md @@ -1,80 +1,80 @@ --- id: contributing -title: "Contributing Verdaccio" +title: "Contribuendo a Verdaccio" --- First of all Jumping into an unfamiliar code base is not easy but we are here to help you. -## Comunication Channels +## Canali di comunicazione -If you are willing for asking, we use two channels for discussions: +Se desideri fare domande, usiamo due canali per le discussioni: -* [Public Discord channel](http://chat.verdaccio.org/) +* [Canale pubblico Discord](http://chat.verdaccio.org/) -## Getting started +## Guida introduttiva -As a first glance verdaccio is a single repository, but there are many ways you might contribute and a variety of technologies to practice. +A prima vista verdaccio è un unico repository, ma ci sono molti modi in cui potresti contribuire e una ampia varietà di tecnologie da usare. -### Finding my spot +### Trovare il mio posto -All we have different skills, so, let's see where you might feel comfortable. +Tutti noi abbiamo competenze diverse, quindi, vediamo dove ti potresti sentire a tuo agio. -### I know or I want to learn Node.js +### Conosco o voglio imparare Node.js -Node.js is the base of `verdaccio`, we use libraries as `express`, `commander`, `request` or `async`. Verdaccio is basically a Rest API that create a communication with `npm` clients compatible, as `yarn`. +Node.js è la base di `verdaccio`, usiamo librerie come `express`, `commander,``request ` o `async`. Verdaccio è fondamentalmente un'API Rest che crea una comunicazione con i client `npm` compatibili, come `yarn`. -We have a long [list of plugins](plugins.md) ready to be used and improved but at the same time [you might create your own](dev-plugins.md). +Abbiamo una lunga [lista di plugin](plugins.md) pronti per essere utilizzati e migliorati, ma al tempo stesso [è possibile crearne uno proprio](dev-plugins.md). -### I would prefer to work in the User Interface +### Preferirei lavorare nell'Interfaccia Utente -Recently we have moved to modern techonologies as `React` and `element-react`. We are looking forward to see new ideas how to improve the UI. +Recentemente ci siamo spostati su tecnologie moderne come `React` e `element-react`. Siamo ansiosi vedere nuove idee su come migliorare l'interfaccia utente. -### I feel more confortable improving the stack +### Mi sento più a mio agio a migliorare lo stack -Of course, we will be happy to help us improving the stack, you can upgrade dependencies as `eslint`, `stylelint`, `webpack`. You might merely improve the `webpack` configuration would be great. Any suggestion is very welcome. Furthermore whether you have experience with **Yeoman** you might help us with the [verdaccio generator](https://github.com/verdaccio/generator-verdaccio-plugin). +Naturalmente, saremo felici se ci aiutassi a migliorare lo stack, è possibile aggiornare le dipendenze come `eslint`, `stylelint`, `webpack`. Sarebbe di grande aiuto se potessi semplicemente migliorare la configurazione di `webpack`. Ogni suggerimento è molto gradito. Inoltre se avessi esperienza con **Yeoman** potresti aiutarci con il [generatore di verdaccio](https://github.com/verdaccio/generator-verdaccio-plugin). -Here some ideas: +Qui alcune idee: -* Create a common eslint rules to be used across all dependencies or plugins -* Improve Flow types definitions delivery -* Moving to Webpack 4 -* Improve hot reload with Webpack -* We use babel and webpack across all dependencies, why not a common preset? -* Improve continous integration delivery +* Creare regole comuni di eslint per l'uso in tutte le dipendenze o plugin +* Migliorare la distribuzione delle definizioni del tipo di flusso +* Migrare su Webpack 4 +* Migliorare l'hot reload con Webpack +* Utilizziamo babel e webpack attraverso tutte le dipendenze, perché non un preset comune? +* Migliorare l'erogazione di integrazione continua -### I do great Documentation +### Sono bravo nella documentazione -Many contributors find typos and grammar issues, that also helps to improve the overall experience for troubleshooting. +Molti contributori trovano errori di battitura e problemi di grammatica, altra cosa che aiuta a migliorare l'esperienza complessiva per la risoluzione dei problemi. -### I am a Designer +### Sono un Designer -We have a frontend website that will be happy to see your ideas. +Abbiamo un frontend del sito che sarà felice di vedere le vostre idee. -Our website is based on [Docusaurus](https://docusaurus.io/). +Il nostro sito web è basato su [Docusaurus](https://docusaurus.io/). -### I am a DevOps +### Io sono un DevOps -We have a widely popular Docker image that need maintenance and pretty likely huge improvements, we need your knowledge for the benefits of all users. +Abbiamo un'immagine su Docker molto popolare che ha bisogno di manutenzione e miglioramenti abbastanza ingenti, abbiamo bisogno della vostra conoscenza per il beneficio di tutti gli utenti. -We have support for **Kubernetes**, **Puppet**, **Ansible** and **Chef** and we need help in those fields, feel free to see all repositories. +Abbiamo il supporto per **Kubernetes**, **Puppet**, **Ansible** e **Chef** e abbiamo bisogno di aiuto in quei campi, sentitevi liberi di vedere tutti i repository. -### I can do translations +### Posso fare traduzioni -Verdaccio aims to be multilingual, in order to achieve it **we have the awesome support** of [Crowdin](https://crowdin.com) that is an amazing platform for translations. +Verdaccio mira ad essere multilingue, per poter raggiungere questa meta **abbiamo l'importante supporto** di [Crowdin](https://crowdin.com) che è un incredibile piattaforma per le traduzioni. -We have setup a project where you can choose your favourite language, if you do not find your language feel free to request one [creating a ticket](https://github.com/verdaccio/verdaccio/issues/new). +Abbiamo impostato un progetto dove è possibile scegliere la tua lingua preferita, se non la trovi richiedila [creando un ticket](https://github.com/verdaccio/verdaccio/issues/new). [Go to Crowdin Verdaccio](https://crowdin.com/project/verdaccio) -## I'm ready to contribute +## Sono pronto a contribuire -If you are thinking *"I've seen already the [repositories](repositories.md) and I'm willing to start right away"* then I have good news for you, that's the next step. +Se stai pensando *"ho già visto il repository[](repositories.md) e sono disposto a iniziare subito"* ho una buona notizia per te, che troverai nel prossimo step. -You will need learn how to build, [we have prepared a guide just for that](build.md). +Avrai bisogno di imparare a costruire un progetto, [abbiamo preparato una guida proprio per questo](build.md). -Once you have played around with all scripts and you know how to use them, we are ready to go to the next step, run the [**Unit Test**](test.md). +Una volta che ti sei divertito con tutti gli script e hai capito come utilizzarli, siamo pronti per andare al passaggio successivo, eseguire l' [**Unit Test**](test.md). -## Full list of contributors. We want to see your face here ! +## Lista completa dei contributori. Vogliamo vedere la tua faccia qui! diff --git a/website/translated_docs/ja/config.md b/website/translated_docs/ja/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/ja/config.md +++ b/website/translated_docs/ja/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/ko/config.md b/website/translated_docs/ko/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/ko/config.md +++ b/website/translated_docs/ko/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/pl/config.md b/website/translated_docs/pl/config.md index 4e821e5f8..90270ef85 100644 --- a/website/translated_docs/pl/config.md +++ b/website/translated_docs/pl/config.md @@ -62,7 +62,7 @@ auth: ### Internetowy interfejs użytkownika -Te właściwości pozwalają Ci zmienić wygląd internetowego interfejsu użytkownika. Aby uzyskać więcej informacji na temat tej sekcji, przeczytaj stronę dotyczącą [internetowego interfejsu użytkownika](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/pt-BR/config.md b/website/translated_docs/pt-BR/config.md index 267fbd535..394e699e6 100644 --- a/website/translated_docs/pt-BR/config.md +++ b/website/translated_docs/pt-BR/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/pt-PT/config.md b/website/translated_docs/pt-PT/config.md index 3d256f49f..4e8b1e20e 100644 --- a/website/translated_docs/pt-PT/config.md +++ b/website/translated_docs/pt-PT/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/ru/config.md b/website/translated_docs/ru/config.md index e2864ab52..8d63e27bc 100644 --- a/website/translated_docs/ru/config.md +++ b/website/translated_docs/ru/config.md @@ -62,7 +62,7 @@ auth: ### Веб интерфейс -Эти свойства позволят вам изменить внешний вид веб интерфейса. Читайте об это в разделе [Веб интерфейса](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/vi/config.md b/website/translated_docs/vi/config.md index f241427ad..0d1f292a0 100644 --- a/website/translated_docs/vi/config.md +++ b/website/translated_docs/vi/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -Thuộc tính này cho phép bạn sửa đổi giao diện của web UI. Để biết thêm chi tiết về phần này, vui lòng đọc [ trang web ui ](web.md). +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: diff --git a/website/translated_docs/zh-CN/config.md b/website/translated_docs/zh-CN/config.md index 93c59f327..05e19659e 100644 --- a/website/translated_docs/zh-CN/config.md +++ b/website/translated_docs/zh-CN/config.md @@ -62,7 +62,7 @@ auth: ### Web UI -此属性让您可以修改此web UI的外观和感觉。有关更多此章节的详细信息,请阅读 [web ui页面](web.md)。 +This property allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page](web.md). ```yaml web: