diff --git a/curriculum/challenges/arabic/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.arabic.md b/curriculum/challenges/arabic/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.arabic.md index 04c5d02d75..be77af65dc 100644 --- a/curriculum/challenges/arabic/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.arabic.md +++ b/curriculum/challenges/arabic/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.arabic.md @@ -25,7 +25,7 @@ challengeType: 2 tests: - text: "الاختبار 1: يجب أن تستجيب نقطة نهاية API الخاصة بك بالاسم الصحيح" testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: "الاختبار 2: يجب أن تستجيب نقطة نهاية APi الخاصة بك بالاسم الصحيح" + - text: "الاختبار 2: يجب أن تستجيب نقطة نهاية API الخاصة بك بالاسم الصحيح" testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ``` diff --git a/curriculum/challenges/chinese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.chinese.md b/curriculum/challenges/chinese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.chinese.md index 8227da6bbe..845e25dd8a 100644 --- a/curriculum/challenges/chinese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.chinese.md +++ b/curriculum/challenges/chinese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.chinese.md @@ -22,7 +22,7 @@ challengeType: 2 tests: - text: '测试1:您的API端点应使用正确的名称进行响应' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: '测试2:您的APi端点应以正确的名称响应' + - text: '测试2:您的API端点应以正确的名称响应' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ``` diff --git a/curriculum/challenges/english/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.english.md b/curriculum/challenges/english/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.english.md index 17edb5e423..036c2f26b2 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.english.md +++ b/curriculum/challenges/english/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.english.md @@ -25,7 +25,7 @@ Build an API endpoint, mounted at GET /name. Respond with a JSON do tests: - text: 'Test 1 : Your API endpoint should respond with the correct name' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: 'Test 2 : Your APi endpoint should respond with the correct name' + - text: 'Test 2 : Your API endpoint should respond with the correct name' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ``` diff --git a/curriculum/challenges/portuguese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.portuguese.md b/curriculum/challenges/portuguese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.portuguese.md index 5c70ae6960..fe35c5a09a 100644 --- a/curriculum/challenges/portuguese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.portuguese.md +++ b/curriculum/challenges/portuguese/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.portuguese.md @@ -25,7 +25,7 @@ DICA: No exercício a seguir, vamos receber dados de uma solicitação POST, no tests: - text: 'Teste 1: o endpoint da sua API deve responder com o nome correto' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: 'Teste 2: seu ponto de extremidade APi deve responder com o nome correto' + - text: 'Teste 2: seu ponto de extremidade API deve responder com o nome correto' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ``` diff --git a/curriculum/challenges/russian/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.russian.md b/curriculum/challenges/russian/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.russian.md index a2ce1cad27..12f202c9aa 100644 --- a/curriculum/challenges/russian/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.russian.md +++ b/curriculum/challenges/russian/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.russian.md @@ -27,7 +27,7 @@ Build an API endpoint, mounted at GET /name. Respond with a JSON do tests: - text: 'Test 1 : Your API endpoint should respond with the correct name' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: 'Test 2 : Your APi endpoint should respond with the correct name' + - text: 'Test 2 : Your API endpoint should respond with the correct name' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ``` diff --git a/curriculum/challenges/spanish/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.spanish.md b/curriculum/challenges/spanish/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.spanish.md index c7fa01eb12..f57d400d2c 100644 --- a/curriculum/challenges/spanish/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.spanish.md +++ b/curriculum/challenges/spanish/05-apis-and-microservices/basic-node-and-express/get-query-parameter-input-from-the-client.spanish.md @@ -25,7 +25,7 @@ CONSEJO: En el siguiente ejercicio vamos a recibir datos de una solicitud POST, tests: - text: 'Prueba 1: su punto final de API debe responder con el nombre correcto' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' - - text: 'Prueba 2: su punto final APi debe responder con el nombre correcto' + - text: 'Prueba 2: su punto final API debe responder con el nombre correcto' testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })' ```