-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Locale): add Dutch lang (#11419)
- Loading branch information
1 parent
879133e
commit 80f2134
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
export default { | ||
name: 'naam', | ||
tel: 'Telefoon', | ||
save: 'Opslaan', | ||
confirm: 'Bevestigen', | ||
cancel: 'Annuleren', | ||
delete: 'Verwijderen', | ||
loading: 'Bezig met laden...', | ||
noCoupon: 'Geen coupons', | ||
nameEmpty: 'Vul de naam in', | ||
addContact: 'Contact toevoegen', | ||
telInvalid: 'Onjuist opgemaakt telefoonnummer', | ||
vanCalendar: { | ||
end: 'Einde', | ||
start: 'Beginnen', | ||
title: 'Kalender', | ||
weekdays: ['Zon', 'Maan', 'Dins', 'Woens', 'Donder', 'Vrij', 'Zater'], | ||
monthTitle: (year: number, month: number) => `${year}/${month}`, | ||
rangePrompt: (maxRange: number) => `Kies niet meer dan ${maxRange} dagen`, | ||
}, | ||
vanCascader: { | ||
select: 'Selecteer', | ||
}, | ||
vanPagination: { | ||
prev: 'Vorige', | ||
next: 'Volgende', | ||
}, | ||
vanPullRefresh: { | ||
pulling: 'Trekken om te vernieuwen...', | ||
loosing: 'Los om te verversen...', | ||
}, | ||
vanSubmitBar: { | ||
label: 'Totaal:', | ||
}, | ||
vanCoupon: { | ||
unlimited: 'Onbeperkt', | ||
discount: (discount: number) => `${discount * 10}% korting`, | ||
condition: (condition: number) => `Ten minste ${condition}`, | ||
}, | ||
vanCouponCell: { | ||
title: 'Waardebon', | ||
count: (count: number) => `Je hebt ${count} coupons`, | ||
}, | ||
vanCouponList: { | ||
exchange: 'Uitwisselen', | ||
close: 'Sluiten', | ||
enable: 'Beschikbaar', | ||
disabled: 'Niet beschikbaar', | ||
placeholder: 'Couponcode', | ||
}, | ||
vanAddressEdit: { | ||
area: 'Gebied', | ||
areaEmpty: 'Selecteer een ontvangstgebied', | ||
addressEmpty: 'Adres mag niet leeg zijn', | ||
addressDetail: 'Adres', | ||
defaultAddress: 'Instellen als standaardadres', | ||
}, | ||
vanAddressList: { | ||
add: 'Nieuw adres toevoegen', | ||
}, | ||
}; |