From 1ff25b6d5b7069e02115e85c101cb557bc6c2224 Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Thu, 14 Jul 2022 22:28:24 +0200 Subject: [PATCH 01/10] =?UTF-8?q?=F0=9F=8C=90=20Use=20correct=20NL=20forma?= =?UTF-8?q?tting=20for=20date,=20decimals,=20thousands=20and=20other=20dat?= =?UTF-8?q?e=20formats?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/locales/nl.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 89f4bb4cce0..bf547f9f69d 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -18,6 +18,12 @@ module.exports = { 'jan', 'feb', 'maa', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec' ], - date: '%d-%m-%Y' + date: '%d-%m-%Y', + decimal: ',', + thousands: '.' + year: '%Y', + month: '%b %Y', + dayMonth: '%-d %b', + dayMonthYear: '%-d %b %Y' } }; From 6965a46ff32d8f42c2db1ff0ac2a70bd4e87c002 Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Thu, 14 Jul 2022 22:28:51 +0200 Subject: [PATCH 02/10] =?UTF-8?q?=F0=9F=8C=90=20Add=20any=20dutch=20transl?= =?UTF-8?q?ations=20that=20I=20know=20and=20can=20verify?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/locales/nl.js | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index bf547f9f69d..43dbbc37c02 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -3,7 +3,26 @@ module.exports = { moduleType: 'locale', name: 'nl', - dictionary: {}, + dictionary: { + 'Autoscale': 'Automatische schaal', + 'Double-click to zoom back out': 'Zoom uit door te dubbel klikken', + 'Download plot as a png': 'Dowload de plot als een png-bestand', + 'Download plot': 'Download de plot', + 'Edit in Chart Studio': 'In Chart Studio wijzigen', + 'IE only supports svg. Changing format to svg.': 'IE ondersteund alleen svg bestanden. Formaat gewijzigd naar svg.', + 'Produced with Plotly.js': 'Gemaakt met Plotly.js', + 'Zoom': 'Inzoomen', + 'source:': 'bron:', + 'target:': 'doel:', + 'max:': 'maximum:', + 'mean ± σ:': 'gemiddelde ± σ:', + 'mean:': 'gemiddelde:', + 'min:': 'minumum:', + 'new text': 'nieuwe tekst' + 'open:': 'openen:', + 'high:': 'hoog:', + 'low:': 'laag:' + }, format: { days: [ 'zondag', 'maandag', 'dinsdag', 'woensdag', From 9d732ae547b98e023241fb2e77f38769e08a6796 Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Thu, 14 Jul 2022 22:41:32 +0200 Subject: [PATCH 03/10] =?UTF-8?q?=F0=9F=8C=90=20Add=20some=20more=20dutch?= =?UTF-8?q?=20translations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/locales/nl.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 43dbbc37c02..9bdd32aebee 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -5,15 +5,28 @@ module.exports = { name: 'nl', dictionary: { 'Autoscale': 'Automatische schaal', + 'Click to enter Colorscale title': 'Klik om kleurenschaal titel in te vullen', + 'Click to enter Component A title': 'Klik om Component A titel in te vullen', + 'Click to enter Component B title': 'Klik om Component B titel in te vullen', + 'Click to enter Component C title': 'Klik om Component C titel in te vullen', + 'Click to enter Plot title': 'Klik om Plot titel in te vullen', + 'Click to enter X axis title': 'Klik om x-as titel in te vullen', + 'Click to enter Y axis title': 'Klik om y-as titel in te vullen', + 'Click to enter radial axis title': 'Klik om radiaal-as titel in te vullen', 'Double-click to zoom back out': 'Zoom uit door te dubbel klikken', 'Download plot as a png': 'Dowload de plot als een png-bestand', 'Download plot': 'Download de plot', + 'Draw circle'; 'Teken cirkel', + 'Draw closed freeform': 'Teken gesloten vorm', + 'Draw line': 'Teken lijn', + 'Draw open freeform': 'Teken open vorm', + 'Draw rectangle': 'Teken rechthoek', 'Edit in Chart Studio': 'In Chart Studio wijzigen', + 'Erase active shape': 'Wis huidige vorm', 'IE only supports svg. Changing format to svg.': 'IE ondersteund alleen svg bestanden. Formaat gewijzigd naar svg.', + 'Lasso Select': 'Lasso selectie', 'Produced with Plotly.js': 'Gemaakt met Plotly.js', 'Zoom': 'Inzoomen', - 'source:': 'bron:', - 'target:': 'doel:', 'max:': 'maximum:', 'mean ± σ:': 'gemiddelde ± σ:', 'mean:': 'gemiddelde:', @@ -22,6 +35,8 @@ module.exports = { 'open:': 'openen:', 'high:': 'hoog:', 'low:': 'laag:' + 'source:': 'bron:', + 'target:': 'doel:', }, format: { days: [ From b0d8c138b4c545c96602533660bdad245bcdbf2d Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Fri, 15 Jul 2022 09:17:12 +0200 Subject: [PATCH 04/10] =?UTF-8?q?=F0=9F=93=9D=20Add=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- draftlogs/6261_change.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 draftlogs/6261_change.md diff --git a/draftlogs/6261_change.md b/draftlogs/6261_change.md new file mode 100644 index 00000000000..369dfd20920 --- /dev/null +++ b/draftlogs/6261_change.md @@ -0,0 +1,2 @@ +- Change dateMonth format for `nl` locale to confirm with expected nl format +- Add new dutch translations to the dictionary From 1280849dd1310e6b420a53f98f658ba2d2395ff0 Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 08:40:56 +0200 Subject: [PATCH 05/10] =?UTF-8?q?=F0=9F=90=9B=20Fix=20typo=20;=20=3D>=20:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 9bdd32aebee..a20ddd7de88 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -16,7 +16,7 @@ module.exports = { 'Double-click to zoom back out': 'Zoom uit door te dubbel klikken', 'Download plot as a png': 'Dowload de plot als een png-bestand', 'Download plot': 'Download de plot', - 'Draw circle'; 'Teken cirkel', + 'Draw circle': 'Teken cirkel', 'Draw closed freeform': 'Teken gesloten vorm', 'Draw line': 'Teken lijn', 'Draw open freeform': 'Teken open vorm', From 28baf61e45637f377a71e9048f93b7a04f1bfd9f Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 15:33:52 +0200 Subject: [PATCH 06/10] Update lib/locales/nl.js Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com> --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index a20ddd7de88..65e9716387a 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -31,7 +31,7 @@ module.exports = { 'mean ± σ:': 'gemiddelde ± σ:', 'mean:': 'gemiddelde:', 'min:': 'minumum:', - 'new text': 'nieuwe tekst' + 'new text': 'nieuwe tekst', 'open:': 'openen:', 'high:': 'hoog:', 'low:': 'laag:' From 0ef2eb13670443a2637c85b388b07e588244331d Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 16:28:22 +0200 Subject: [PATCH 07/10] Update lib/locales/nl.js Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com> --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 65e9716387a..6bff73ced52 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -34,7 +34,7 @@ module.exports = { 'new text': 'nieuwe tekst', 'open:': 'openen:', 'high:': 'hoog:', - 'low:': 'laag:' + 'low:': 'laag:', 'source:': 'bron:', 'target:': 'doel:', }, From 87dbcf72caaf30f42f7cd4194a81a65907b0cb2e Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 16:28:30 +0200 Subject: [PATCH 08/10] Update lib/locales/nl.js Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com> --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 6bff73ced52..cf211c16527 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -54,7 +54,7 @@ module.exports = { ], date: '%d-%m-%Y', decimal: ',', - thousands: '.' + thousands: '.', year: '%Y', month: '%b %Y', dayMonth: '%-d %b', From bb393644b96ba68a7cecef406cac6426f9b16c4e Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 16:28:35 +0200 Subject: [PATCH 09/10] Update lib/locales/nl.js Co-authored-by: rriksma-fouriq <51152705+rriksma-fouriq@users.noreply.github.com> --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index cf211c16527..3322af7040e 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -23,7 +23,7 @@ module.exports = { 'Draw rectangle': 'Teken rechthoek', 'Edit in Chart Studio': 'In Chart Studio wijzigen', 'Erase active shape': 'Wis huidige vorm', - 'IE only supports svg. Changing format to svg.': 'IE ondersteund alleen svg bestanden. Formaat gewijzigd naar svg.', + 'IE only supports svg. Changing format to svg.': 'IE ondersteunt alleen svg bestanden. Formaat gewijzigd naar svg.', 'Lasso Select': 'Lasso selectie', 'Produced with Plotly.js': 'Gemaakt met Plotly.js', 'Zoom': 'Inzoomen', From e923a28b6e3a6ea494f51aa472224001f73b46df Mon Sep 17 00:00:00 2001 From: Etienne van Delden-de la Haije Date: Mon, 18 Jul 2022 16:28:44 +0200 Subject: [PATCH 10/10] Update lib/locales/nl.js Co-authored-by: rriksma-fouriq <51152705+rriksma-fouriq@users.noreply.github.com> --- lib/locales/nl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 3322af7040e..efa99e84df8 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -30,7 +30,7 @@ module.exports = { 'max:': 'maximum:', 'mean ± σ:': 'gemiddelde ± σ:', 'mean:': 'gemiddelde:', - 'min:': 'minumum:', + 'min:': 'minimum:', 'new text': 'nieuwe tekst', 'open:': 'openen:', 'high:': 'hoog:',