diff --git a/src/components/extension-landing/project-card.jsx b/src/components/extension-landing/project-card.jsx
index 44606f7b8..09a4ce182 100644
--- a/src/components/extension-landing/project-card.jsx
+++ b/src/components/extension-landing/project-card.jsx
@@ -8,7 +8,10 @@ const ProjectCard = props => (
href={props.cardUrl}
>
{props.title}
@@ -20,6 +23,7 @@ const ProjectCard = props => (
ProjectCard.propTypes = {
cardUrl: PropTypes.string,
description: PropTypes.string,
+ imageAlt: PropTypes.string,
imageSrc: PropTypes.string,
title: PropTypes.string
};
diff --git a/src/views/ev3/ev3.jsx b/src/views/ev3/ev3.jsx
index de25bd133..3e395bdc2 100644
--- a/src/views/ev3/ev3.jsx
+++ b/src/views/ev3/ev3.jsx
@@ -210,18 +210,21 @@ class EV3 extends ExtensionLanding {
diff --git a/src/views/ev3/l10n.json b/src/views/ev3/l10n.json
index b96d679ee..244133609 100644
--- a/src/views/ev3/l10n.json
+++ b/src/views/ev3/l10n.json
@@ -41,5 +41,8 @@
"ev3.imgAltAcceptPasscode": "Use the center button of your EV3 to accept the passcode.",
"ev3.imgAltWaitForWindows": "Windows notifies you when EV3 is ready.",
"ev3.imgAltEnterPasscodeMac": "Enter the passcode into the connection request window opening on your Mac.",
- "ev3.imgAltPlugInMotor": "Port A is not to be confused with Port 4 on the other side of the EV3."
+ "ev3.imgAltPlugInMotor": "Port A is not to be confused with Port 4 on the other side of the EV3.",
+ "ev3.imgAltWaveHello": "A fairy",
+ "ev3.imgAltDistanceInstrument": "A guitar on stage",
+ "ev3.imgAltSpaceTacos": "A cat and a taco in space"
}