feat(Locale): add Italain translation (#10288)

This commit is contained in:
neverland 2022-02-11 16:29:48 +08:00 committed by GitHub
parent 8acb93c43d
commit 5b7c8883a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 73 additions and 0 deletions

View File

@ -48,6 +48,7 @@ Current supported languages:
| Spanish (Spain) | es-ES | - |
| French | fr-FR | - |
| Hindi | hi-IN | `v3.4.3` |
| Italian | it-IT | `v3.4.5` |
| Japanese | ja-JP | - |
| Korean | ko-KR | `v3.4.3` |
| Norwegian | nb-NO | - |

View File

@ -49,6 +49,7 @@ Locale.add(messages);
| 西班牙语 | es-ES | - |
| 法语 | fr-FR | - |
| 印地语 | hi-IN | `v3.4.3` |
| 意大利语 | it-IT | `v3.4.5` |
| 日语 | ja-JP | - |
| 韩语/朝鲜语 | ko-KR | `v3.4.3` |
| 挪威语 | nb-NO | - |

View File

@ -0,0 +1,71 @@
export default {
name: 'Nome',
tel: 'Telefono',
save: 'Salva',
confirm: 'Conferma',
cancel: 'Annulla',
delete: 'Elimina',
loading: 'Caricamento in corso...',
noCoupon: 'Nessun coupon',
nameEmpty: 'Inserisci il nome',
addContact: 'Aggiungi contatto',
telInvalid: 'Numero di telefono errato',
vanCalendar: {
end: 'Fine',
start: 'Inizio',
title: 'Calendario',
weekdays: [
'domenica',
'Lunedi',
'Martedì',
'mercoledì',
'giovedì',
'venerdì',
'Sabato',
],
monthTitle: (year: number, month: number) => `${year}/${month}`,
rangePrompt: (maxRange: number) => `Scegli non più di ${maxRange} giorni`,
},
vanCascader: {
select: 'Seleziona',
},
vanPagination: {
prev: 'Precedente',
next: 'Avanti',
},
vanPullRefresh: {
pulling: 'Tiri per aggiornare...',
loosing: 'Largo per rinfrescare...',
},
vanSubmitBar: {
label: 'Totale:',
},
vanCoupon: {
unlimited: 'Illimitato',
discount: (discount: number) => `${discount * 10}% di sconto`,
condition: (condition: number) => `Almeno ${condition}`,
},
vanCouponCell: {
title: 'Buono',
count: (count: number) => `Hai ${count} coupon`,
},
vanCouponList: {
exchange: 'Scambio',
close: 'Chiudi',
enable: 'Disponibile',
disabled: 'Non disponibile',
placeholder: 'Codice coupon',
},
vanAddressEdit: {
area: 'Area',
postal: 'Postale',
areaEmpty: "Seleziona un'area di ricezione",
addressEmpty: "L'indirizzo non può essere vuoto",
postalEmpty: 'Codice postale errato',
addressDetail: 'Indirizzo',
defaultAddress: 'Imposta come indirizzo predefinito',
},
vanAddressList: {
add: 'Aggiungi nuovo indirizzo',
},
};