chore(client): remove hours from C# cert (#51606)

This commit is contained in:
Tom
2023-09-22 09:14:32 -05:00
committed by GitHub
parent 87efeac430
commit cf65ad4dbb
7 changed files with 382 additions and 19 deletions

View File

@@ -5,6 +5,7 @@ function FreeCodeCampLogo(
): JSX.Element {
return (
<svg
data-cy='freeCodeCamp-logo'
height={24}
version='1.1'
viewBox='0 0 210 24'

View File

@@ -5,6 +5,7 @@ function MicrosoftLogo(
): JSX.Element {
return (
<svg
data-cy='microsoft-logo'
version='1.1'
viewBox='0 0 610 130'
xmlns='http://www.w3.org/2000/svg'

View File

@@ -341,7 +341,14 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
</header>
<main className='information'>
<div className='information-container'>
<Trans i18nKey='certification.fulltext' title={certTitle}>
<Trans
i18nKey={
isMicrosoftCert
? 'certification.fulltextNoHours'
: 'certification.fulltext'
}
title={certTitle}
>
<h3>placeholder</h3>
<h1>
<strong>{{ user: displayName }}</strong>
@@ -378,6 +385,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
<>
<div>
<Image
data-cy='quincy-signature'
alt="Quincy Larson's Signature"
src={
'https://cdn.freecodecamp.org' +
@@ -393,6 +401,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
</div>
<div className='microsoft-signature'>
<Image
data-cy='microsoft-signature'
alt="Julia Liusons's Signature"
src={
'https://cdn.freecodecamp.org' +
@@ -411,6 +420,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
) : (
<div>
<Image
data-cy='quincy-signature'
alt="Quincy Larson's Signature"
src={
'https://cdn.freecodecamp.org' +

View File

@@ -175,7 +175,7 @@ const ShowProjectLinks = (props: ShowProjectLinksProps): JSX.Element => {
if (!isCertName(certName)) return <div> Unknown Certification</div>;
return (
<div>
<div data-cy='solution-widget'>
{t(
certName === 'Legacy Full Stack'
? 'certification.project.heading-legacy-full-stack'