diff --git a/config/locales/views/dashboard/en.yml b/config/locales/views/dashboard/en.yml
index 62166ae5f..7d7563621 100644
--- a/config/locales/views/dashboard/en.yml
+++ b/config/locales/views/dashboard/en.yml
@@ -29,10 +29,8 @@ en:
analytics:
meta:
title: Analytics
- heading: Analytics Dashboard for %{name}
- desc_1: Welcome to the Analytics Dashboard, the home of in-depth user metrics so that authors can make data-driven decisions about the %{members} ecosystem.
- desc_2: This dashboard highlights deep insights especially relevant to %{members} relations, authors, and serious bloggers.
- back: "👈 Back to Main Dashboard"
+ heading: Analytics for %{name}
+ back: "Back to Main Dashboard"
your: Your Dashboard
org: "%{org} Analytics Dashboard"
article:
@@ -154,6 +152,7 @@ en:
summary:
reactions: Total post reactions
views: Total post views
+ comments: Total post comments
listings: Listings created
credits: Credits available
lt_500: "< 500"
diff --git a/config/locales/views/dashboard/fr.yml b/config/locales/views/dashboard/fr.yml
index 597e49433..de5f96ab3 100644
--- a/config/locales/views/dashboard/fr.yml
+++ b/config/locales/views/dashboard/fr.yml
@@ -30,9 +30,7 @@ fr:
meta:
title: Analytics
heading: Analytics Dashboard for %{name}
- desc_1: Welcome to the Analytics Dashboard, the home of in-depth user metrics so that authors can make data-driven decisions about the %{members} ecosystem.
- desc_2: This dashboard highlights deep insights especially relevant to %{members} relations, authors, and serious bloggers.
- back: "👈 Back to Main Dashboard"
+ back: "Back to Main Dashboard"
your: Your Dashboard
org: "%{org} Analytics Dashboard"
article:
diff --git a/config/locales/views/misc/en.yml b/config/locales/views/misc/en.yml
index 5920aafd6..78f4012ae 100644
--- a/config/locales/views/misc/en.yml
+++ b/config/locales/views/misc/en.yml
@@ -116,12 +116,13 @@ en:
infinity: Infinity
readers: Readers Summary
followers: New Followers Summary
- reactions: "Reactions Summary ❤🦄🔖"
- comments: "Comments Summary 💬"
+ reactions: "Reactions Summary"
+ comments: "Comments Summary"
traffic:
- text: "Traffic Source Summary 🚦"
+ text: "Traffic Source Summary"
source: Source
views: Views
+ reactions_history: "Reactions History"
sticky:
joined: Joined
default_cta: Learn more
diff --git a/cypress/e2e/seededFlows/analyticsFlows/analyticsNavigation.spec.js b/cypress/e2e/seededFlows/analyticsFlows/analyticsNavigation.spec.js
index 77c257734..231f88704 100644
--- a/cypress/e2e/seededFlows/analyticsFlows/analyticsNavigation.spec.js
+++ b/cypress/e2e/seededFlows/analyticsFlows/analyticsNavigation.spec.js
@@ -65,7 +65,7 @@ describe('Analytics navigation', () => {
it('should navigate to correct organization analytics dashboard', () => {
cy.findByText('Bachmanity Analytics Dashboard').click();
- cy.contains('h1', 'Analytics Dashboard for Bachmanity');
+ cy.contains('h1', 'Analytics for Bachmanity');
});
});
});
diff --git a/cypress/e2e/seededFlows/dashboardFlows/postsDashboard.spec.js b/cypress/e2e/seededFlows/dashboardFlows/postsDashboard.spec.js
index cc4d20617..7d94890cc 100644
--- a/cypress/e2e/seededFlows/dashboardFlows/postsDashboard.spec.js
+++ b/cypress/e2e/seededFlows/dashboardFlows/postsDashboard.spec.js
@@ -48,7 +48,7 @@ describe('Posts Dashboard', () => {
name: 'More options for post: Test Article',
}).click();
cy.findByRole('link', { name: 'Stats' }).click();
- cy.findByRole('heading', { name: 'Stats for "Test Article"' });
+ cy.findByRole('heading', { name: 'Test Article' });
// Go back to the dashboard, otherwise it's possible for Cypress to detect an error as the next beforeEach hook runs
// (due to the logged out user not being able to view the stats page)