From 80b1905cd02e058f1cfe145cc296508db345d4c9 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Thu, 7 Oct 2021 10:14:01 -0500 Subject: [PATCH] feat(curriculum): replace placeholder text with intros for rdbms section (#43589) * feat: add introsos for rdbms * Update client/i18n/locales/english/intro.json Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> * Update client/i18n/locales/english/intro.json Co-authored-by: Shaun Hamilton * Update client/i18n/locales/english/intro.json Co-authored-by: Shaun Hamilton Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> Co-authored-by: Shaun Hamilton --- client/i18n/locales/english/intro.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index c7b407e3da..5c1909f60e 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -296,11 +296,17 @@ }, "relational-databases": { "title": "Relational Databases", - "intro": ["placeholder"], + "intro": [ + "For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects." + ], "blocks": { "learn-relational-databases": { "title": "Learn Relational Databases", - "intro": ["placeholder"] + "intro": [ + "These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.", + "Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.", + "Finally, you will learn Git, the version control system, and GitHub, a code repository hosting service - two essential tools of every developer." + ] } } },