Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dutch (nl) localisation #645

Merged
merged 3 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added
- Dutch (nl) subtitles

## [3.70.0] - 2024-08-21
### Added
- Support for a new placeholder `{adBreakRemainingTime}` in [AdMessageLabel](https://cdn.bitmovin.com/player/ui/3/docs/classes/AdMessageLabel.html) that displays the remaining time in an ad break. [Documentation](https://cdn.bitmovin.com/player/ui/3/docs/functions/StringUtils.replaceAdMessagePlaceholders.html) on usage.
Expand Down
3 changes: 3 additions & 0 deletions src/ts/localization/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import vocabularyDe from './languages/de.json';
import vocabularyEn from './languages/en.json';
import vocabularyEs from './languages/es.json';
import vocabularyNl from './languages/nl.json';

import { LocalizationConfig } from '../uimanager.js';

export const defaultVocabularies: Vocabularies = {
'en': vocabularyEn,
'de': vocabularyDe,
'es': vocabularyEs,
'nl': vocabularyNl,
};

const defaultLocalizationConfig: LocalizationConfig = {
Expand Down
76 changes: 76 additions & 0 deletions src/ts/localization/languages/nl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"settings.video.quality": "Videokwaliteit",
"settings.audio.quality": "Audiokwaliteit",
"settings.audio.track": "Audiospoor",
"settings.audio.mute": "Dempen",
"settings.audio.volume": "Volume",
"settings.subtitles.window.color": "Vensterkleur",
"settings.subtitles.window.opacity": "Venster doorzichtigheid",
"settings.subtitles": "Ondertiteling",
"settings.subtitles.font.color": "Lettertype kleur",
"settings.subtitles.font.opacity": "Lettertype doorzichtigheid",
"settings.subtitles.background.color": "Achtergrondkleur",
"settings.subtitles.background.opacity": "Achtergrond doorzichtigheid",
"colors.white": "wit",
"colors.black": "zwart",
"colors.red": "rood",
"colors.green": "groen",
"colors.blue": "blauw",
"colors.cyan": "cyaan",
"colors.yellow": "geel",
"colors.magenta": "magenta",
"percent": "{value}%",
"settings.subtitles.font.size": "Lettertype grootte",
"settings.subtitles.characterEdge": "Lettertype rand",
"settings.subtitles.characterEdge.raised": "verhoogd",
"settings.subtitles.characterEdge.depressed": "verlaagd",
"settings.subtitles.characterEdge.uniform": "uniform",
"settings.subtitles.characterEdge.dropshadowed": "schaduw",
"settings.subtitles.font.family": "Standaard lettertype",
"settings.subtitles.font.family.monospacedserif": "monospace serif",
"settings.subtitles.font.family.proportionalserif": "proportioneel serif",
"settings.subtitles.font.family.monospacedsansserif": "monospace sans-serif",
"settings.subtitles.font.family.proportionalsansserif": "proportioneel sans-serif",
"settings.subtitles.font.family.casual": "casual",
"settings.subtitles.font.family.cursive": "cursief",
"settings.subtitles.font.family.smallcapital": "kleine hoofdletters",
"settings.time.hours": "Uren",
"settings.time.minutes": "Minuten",
"settings.time.seconds": "Seconden",
"ads.remainingTime": "Deze advertentie eindigt in {remainingTime} seconden.",
"settings": "Instellingen",
"fullscreen": "Volledig scherm",
"speed": "Snelheid",
"playPause": "Afspelen/Pauzeren",
"play": "Afspelen",
"pause": "Pauzeren",
"open": "Openen",
"close": "Sluiten",
"pictureInPicture": "Picture-in-Picture",
"appleAirplay": "Apple AirPlay",
"googleCast": "Google Cast",
"vr": "VR",
"off": "uit",
"auto": "automatisch",
"ecoMode": "Eco-modus",
"ecoMode.title": "Eco-modus",
"back": "Terug",
"reset": "Reset",
"replay": "Opnieuw afspelen",
"normal": "normaal",
"default": "standaard",
"live": "Live",
"subtitle.example": "voorbeeld ondertiteling",
"subtitle.select": "Selecteer ondertiteling",
"playingOn": "Speelt af op <strong>{castDeviceName}</strong>",
"connectingTo": "Verbinden met <strong>{castDeviceName}</strong>...",
"watermarkLink": "Link naar homepage",
"controlBar": "Videospeler bediening",
"player": "Videospeler",
"seekBar": "Video tijdlijn",
"seekBar.value": "Waarde",
"seekBar.timeshift": "Tijdverschuiving",
"seekBar.durationText": "van",
"quickseek.forward": "Vooruitspoelen",
"quickseek.rewind": "Terugspoelen"
}