From ffdb4d2582166d3df4026e119df312a2da2badb1 Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Wed, 6 Oct 2021 21:50:50 +0200 Subject: [PATCH] fix(monitor-checks): change monitor check type labels slightly --- src/languages/en.js | 4 ++-- src/languages/nl-NL.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/languages/en.js b/src/languages/en.js index 6f97626..299559f 100644 --- a/src/languages/en.js +++ b/src/languages/en.js @@ -197,9 +197,9 @@ export default { MonitorCheckTypeShould: "Should", MonitorCheckTypeShouldNot: "Should not", MonitorCheckTypeHttpStatusCodeShouldEqual: "equal status code", - MonitorCheckTypeResponseShouldContainText: "contain", + MonitorCheckTypeResponseShouldContainText: "contain text", MonitorCheckTypeResponseShouldMatchRegex: "match regex", - MonitorCheckTypeResponseSelectorShouldEqual: "equal (JSON selector)", + MonitorCheckTypeResponseSelectorShouldEqual: "equal text (JSON selector)", MonitorCheckTypeResponseSelectorShouldMatchRegex: "match regex (JSON selector)", MonitorCheckValuePlaceholder: "Value", MonitorCheckSelectorPathPlaceholder: "Selector, Example: customer.address.street", diff --git a/src/languages/nl-NL.js b/src/languages/nl-NL.js index 2cc73d6..94788e3 100644 --- a/src/languages/nl-NL.js +++ b/src/languages/nl-NL.js @@ -198,10 +198,10 @@ export default { MonitorCheckTypeShould: "Moet", MonitorCheckTypeShouldNot: "Mag niet", MonitorCheckTypeHttpStatusCodeShouldEqual: "gelijk aan status code", - MonitorCheckTypeResponseShouldContainText: "bevatten", - MonitorCheckTypeResponseShouldMatchRegex: "overeenkomen met regex", - MonitorCheckTypeResponseSelectorShouldEqual: "gelijk zijn (JSON selectie)", - MonitorCheckTypeResponseSelectorShouldMatchRegex: "overeenkomen met regex (JSON selectie)", + MonitorCheckTypeResponseShouldContainText: "text bevatten", + MonitorCheckTypeResponseShouldMatchRegex: "regex matchen", + MonitorCheckTypeResponseSelectorShouldEqual: "gelijk zijn aan tekst (JSON selectie)", + MonitorCheckTypeResponseSelectorShouldMatchRegex: "regex matchen (JSON selectie)", MonitorCheckValuePlaceholder: "Waarde", MonitorCheckSelectorPathPlaceholder: "Selectie, Voorbeeld: klant.adres.straat", MonitorCheckSelectorValuePlaceholder: "Waarde, Voorbeeld: Hogestraat",