diff --git a/ui/app/[locale]/home/page.tsx b/ui/app/[locale]/home/page.tsx index cc5ac0af5..2b728e41f 100644 --- a/ui/app/[locale]/home/page.tsx +++ b/ui/app/[locale]/home/page.tsx @@ -331,7 +331,7 @@ async function RecentTopics() { - When you start looking at specific topics through the {t("common.product")} console, they"ll start showing here. + When you start looking at specific topics through the {t("common.product")} console, they'll start showing here. diff --git a/ui/messages/en.json b/ui/messages/en.json index 9eb0c0a9d..a369f5edf 100644 --- a/ui/messages/en.json +++ b/ui/messages/en.json @@ -1,18 +1,17 @@ { "common": { "brand": "Red Hat", - "product": "Streams for Apache Kafka", - "title": "Red Hat Streams for Apache Kafka console", - "description": "Red Hat Streams for Apache Kafka is a lightweight, high-performance, robust messaging platform.", + "product": "streams for Apache Kafka", + "title": "Red Hat streams for Apache Kafka console", + "description": "Red Hat streams for Apache Kafka is a lightweight, high-performance, robust messaging platform.", "search_hint": "Filter by {label}" }, "learning": { "links": { - "overview": "https://access.redhat.com/documentation/en-us/red_hat_amq_streams/2.5/html/amq_streams_on_openshift_overview", - "gettingStarted": "https://access.redhat.com/documentation/en-us/red_hat_amq_streams/2.5/html/getting_started_with_amq_streams_on_openshift", - "connecting": "https://access.redhat.com/documentation/en-us/red_hat_amq_streams/2.5/html/developing_kafka_client_applications", - "topicOperatorUse": "https://access.redhat.com/documentation/en-us/red_hat_amq_streams/2.5/html/deploying_and_managing_amq_streams_on_openshift/using-the-topic-operator-str#doc-wrapper" - + "overview": "https://docs.redhat.com/en/documentation/red_hat_streams_for_apache_kafka/2.7/html/streams_for_apache_kafka_on_openshift_overview", + "gettingStarted": "https://docs.redhat.com/en/documentation/red_hat_streams_for_apache_kafka/2.7/html/getting_started_with_streams_for_apache_kafka_on_openshift", + "connecting": "https://docs.redhat.com/en/documentation/red_hat_streams_for_apache_kafka/2.7/html/developing_kafka_client_applications", + "topicOperatorUse": "https://docs.redhat.com/en/documentation/red_hat_streams_for_apache_kafka/2.7/html/deploying_and_managing_streams_for_apache_kafka_on_openshift/using-the-topic-operator-str#doc-wrapper" } }, "RefreshButton": { @@ -169,7 +168,7 @@ }, "ManagedTopicLabel": { "label": "Managed", - "tooltip": "Managed topics are created using the KafkaTopic custom resource and are created and updated in the Kafka cluster by the Streams for Apache Kafka Topic Operator." + "tooltip": "Managed topics are created using the KafkaTopic custom resource and are created and updated in the Kafka cluster by the streams for Apache Kafka Topic Operator." }, "AdvancedSearch": { "dialog_label": "Search messages", @@ -231,7 +230,7 @@ "internal_Servers_bootstraps_description": "Internal listeners provide client access to a Kafka cluster only from within the OpenShift cluster.", "when_you_have_established_a_connection": "When you have established a connection, you can begin consuming messages from Kafka topics or producing messages to them.", "developing_kafka_client_applications": "Developing Kafka client applications", - "streams_portal": "Streams for Apache Kafka portal" + "streams_portal": "streams for Apache Kafka portal" }, "ClusterDrawer": { "cluster_connection_details": "Cluster connection details" diff --git a/ui/public/masthead-logo.svg b/ui/public/masthead-logo.svg index 046bffaf7..18d86b41b 100644 --- a/ui/public/masthead-logo.svg +++ b/ui/public/masthead-logo.svg @@ -1,93 +1,34 @@ - - - Red Hat Streams for Apache Kafka logo - - - - - - - - - - - - - Red Hat Streams for Apache Kafka logo - - - - Streams for Apache Kafka + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/tests/playwright/HomePage.test.tsx b/ui/tests/playwright/HomePage.test.tsx index 14f23b4d2..0713771f7 100644 --- a/ui/tests/playwright/HomePage.test.tsx +++ b/ui/tests/playwright/HomePage.test.tsx @@ -49,23 +49,23 @@ test("Home page", async ({ page }) => { await test.step("Text on Home Page", async () => { // Assertions for the presence of specific strings in the inner text of page elements expect(await page.innerText("body")).toContain( - "Welcome to the Streams for Apache Kafka console", + "Welcome to the streams for Apache Kafka console", ); expect(await page.innerText("body")).toContain( "Platform: OpenShift Cluster", ); expect(await page.innerText("body")).toContain("Recently viewed topics"); expect(await page.innerText("body")).toContain( - 'When you start looking at specific topics through the Streams for Apache Kafka console, they"ll start showing here.', + "When you start looking at specific topics through the streams for Apache Kafka console, they'll start showing here.", ); expect(await page.innerText("body")).toContain( - "Streams for Apache Kafka on OpenShift Overview", + "streams for Apache Kafka on OpenShift Overview", ); expect(await page.innerText("body")).toContain( "Recommended learning resources", ); expect(await page.innerText("body")).toContain( - "Getting Started with Streams for Apache Kafka on Openshift", + "Getting Started with streams for Apache Kafka on Openshift", ); expect(await page.innerText("body")).toContain( "Connect to a Kafka cluster from an application", diff --git a/ui/tests/playwright/auth.setup.ts b/ui/tests/playwright/auth.setup.ts index a67f803a1..9f885456a 100644 --- a/ui/tests/playwright/auth.setup.ts +++ b/ui/tests/playwright/auth.setup.ts @@ -13,7 +13,7 @@ setup("authenticate", async ({ page }) => { // Sometimes login flow sets cookies in the process of several redirects. await page.waitForURL("./home", { waitUntil: "commit" }); await expect( - page.getByText("Welcome to the Streams for Apache Kafka console"), + page.getByText("Welcome to the streams for Apache Kafka console"), ).toBeVisible(); await page.context().storageState({ path: authFile });