mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Locale): add Italain translation (#10288)
This commit is contained in:
parent
8acb93c43d
commit
5b7c8883a3
@ -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 | - |
|
||||
|
@ -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 | - |
|
||||
|
71
packages/vant/src/locale/lang/it-IT.ts
Normal file
71
packages/vant/src/locale/lang/it-IT.ts
Normal 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',
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user