Skip to content

Commit

Permalink
Merge pull request #645 from lextas/develop
Browse files Browse the repository at this point in the history
Add Dutch (nl) localisation
  • Loading branch information
wasp898 authored Aug 30, 2024
2 parents 0b11f86 + 6be5ccd commit 8248c50
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
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.71.0] - 2024-08-28

### Added
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"
}

0 comments on commit 8248c50

Please sign in to comment.