chore(i18n,learn): processed translations (#50211)

This commit is contained in:
camperbot
2023-04-28 20:56:45 +05:30
committed by GitHub
parent ee1d1eb9d8
commit 082f778262
80 changed files with 459 additions and 459 deletions

View File

@@ -22,7 +22,7 @@ Completa la funzione usando le regole sottostanti per modificare l'oggetto passa
- La funzione deve sempre restituire l'intero oggetto `records`.
- Se `value` è una stringa vuota, elimina la proprietà `prop` dall'album.
- Se `prop` non è `tracks` e `value` non è una stringa vuota, assegna `value` alla `prop` di quell'album.
- Se `prop` è `tracks` e il valore non è una stringa vuota, aggiungi `value` alla fine dell'array `tracks`. Devi prima creare questo array se l'album non ha una proprietà `tracks`.
- If `prop` is `tracks` and `value` isn't an empty string, you need to update the album's `tracks` array. First, if the album does not have a `tracks` property, assign it an empty array. Then add the `value` as the last item in the album's `tracks` array.
**Nota:** una copia dell'oggetto `recordCollection` viene utilizzata per i test. Non dovresti modificare direttamente l'oggetto `recordCollection`.