|
| 1 | +import { addLocale } from '@theoplayer/web-ui'; |
| 2 | + |
| 3 | +/** |
| 4 | + * Dutch (Nederlands) |
| 5 | + */ |
| 6 | +addLocale('nl', { |
| 7 | + playAria: 'afspelen', |
| 8 | + pauseAria: 'pauzeren', |
| 9 | + replayAria: 'opnieuw afspelen', |
| 10 | + muteAria: 'dempen', |
| 11 | + unmuteAria: 'dempen opheffen', |
| 12 | + volumeAria: 'volume', |
| 13 | + seekAria: 'zoeken', |
| 14 | + seekForwardAria: (offset) => `spring voorwaarts met ${offset}`, |
| 15 | + seekBackwardAria: (offset) => `spring achterwaarts met ${offset}`, |
| 16 | + live: 'LIVE', |
| 17 | + seekToLiveAria: 'spring naar live', |
| 18 | + fullscreenAria: 'volledig scherm', |
| 19 | + fullscreenExitAria: 'volledig scherm sluiten', |
| 20 | + airplayAria: 'start met afspelen op AirPlay', |
| 21 | + airplayConnectedAria: 'stop met afspelen op AirPlay', |
| 22 | + chromecastAria: 'start met afspelen op Chromecast', |
| 23 | + chromecastConnectedAria: 'stop met afspelen op Chromecast', |
| 24 | + chromecastHeading: 'Aan het afspelen op', |
| 25 | + chromecastDefaultReceiverName: 'Chromecast', |
| 26 | + timeOfTotalAria: (currentTime, totalDuration) => `${currentTime} van ${totalDuration}`, |
| 27 | + playbackTimeAria: 'afspeeltijd', |
| 28 | + unknownTimeAria: 'video niet ingeladen, onbekende tijd', |
| 29 | + adText: 'Advertentie', |
| 30 | + adBreakText: (currentAd, totalAds) => `Advertentie ${currentAd} van ${totalAds}`, |
| 31 | + adClickThroughText: 'Adverteerder bezoeken', |
| 32 | + adCountdownText: (remainingDuration) => `Video wordt hervat in ${remainingDuration}`, |
| 33 | + adSkipButtonText: 'Overslaan', |
| 34 | + adSkipCountdownText: (remainingDuration) => `Overslaan in ${remainingDuration}`, |
| 35 | + liveStreamLoading: 'Laden...', |
| 36 | + liveStreamOffline: `De livestream is nog niet gestart`, |
| 37 | + closeMenuAria: 'menu sluiten', |
| 38 | + openLanguageMenuAria: 'taalmenu openen', |
| 39 | + languageMenuHeading: 'Taal', |
| 40 | + audioMenuHeading: 'Audio', |
| 41 | + subtitleMenuHeading: 'Ondertitels', |
| 42 | + subtitleOff: 'Uit', |
| 43 | + openPlaybackRateMenuAria: 'afspeelsnelheidmenu openen', |
| 44 | + playbackRateMenuHeading: 'Afspeelsnelheid', |
| 45 | + formatPlaybackRate: (rate) => (rate === 1 ? 'Normaal' : `${rate}x`), |
| 46 | + openSettingsMenuAria: 'instellingenmenu openen', |
| 47 | + settingsMenuHeading: 'Instellingen', |
| 48 | + qualityMenuHeading: 'Kwaliteit', |
| 49 | + textTrackStyleMenuHeading: 'Opties voor ondertitels', |
| 50 | + textTrackStyleFontFamily: 'Lettertype', |
| 51 | + textTrackStyleFontColor: 'Tekstkleur', |
| 52 | + textTrackStyleFontOpacity: 'Ondoorzichtigheid van tekst', |
| 53 | + textTrackStyleFontSize: 'Lettergrootte', |
| 54 | + textTrackStyleBackgroundColor: 'Achtergrondkleur', |
| 55 | + textTrackStyleBackgroundOpacity: 'Ondoorzichtigheid van achtergrond', |
| 56 | + textTrackStyleWindowColor: 'Vensterkleur', |
| 57 | + textTrackStyleWindowOpacity: 'Ondoorzichtigheid van venster', |
| 58 | + textTrackStyleEdgeStyle: 'Randstijl van tekens', |
| 59 | + textTrackStyleDefaultLabel: 'Standaard', |
| 60 | + textTrackStyleCustomLabel: 'Aangepast', |
| 61 | + textTrackStyleResetLabel: 'Opnieuw instellen', |
| 62 | + fontFamilyLabels: { |
| 63 | + 'Monospace Serif': 'Serif met gelijke tekenbreedte', |
| 64 | + 'Proportional Serif': 'Proportionele serif', |
| 65 | + 'Monospace Sans': 'Sans-serif met gelijke tekenbreedte', |
| 66 | + 'Proportional Sans': 'Proportionele sans-serif' |
| 67 | + }, |
| 68 | + colorLabels: { |
| 69 | + White: 'Wit', |
| 70 | + Yellow: 'Geel', |
| 71 | + Green: 'Groen', |
| 72 | + Cyan: 'Cyaan', |
| 73 | + Blue: 'Blauw', |
| 74 | + Magenta: 'Magenta', |
| 75 | + Red: 'Rood', |
| 76 | + Black: 'Zwart' |
| 77 | + }, |
| 78 | + edgeStyleLabels: { |
| 79 | + none: 'Geen', |
| 80 | + dropshadow: 'Slagschaduw', |
| 81 | + raised: 'Verhoogd', |
| 82 | + depressed: 'Verlaagd', |
| 83 | + uniform: 'Uniform' |
| 84 | + }, |
| 85 | + automaticQualityLabel: 'Automatisch', |
| 86 | + unknownQualityLabel: 'Onbekend', |
| 87 | + highQualityLabel: 'Hoge kwaliteit', |
| 88 | + lowQualityLabel: 'Lage kwaliteit', |
| 89 | + errorHeading: 'Er is een fout opgetreden', |
| 90 | + openBadNetworkModeMenuAria: 'menu voor slecht netwerk openen', |
| 91 | + formatRemainingDuration: (duration) => `${duration} resterend` |
| 92 | +}); |
0 commit comments