diff --git a/src/intl/en-US.js b/src/intl/en-US.js
index d111dfc8..106e7c97 100644
--- a/src/intl/en-US.js
+++ b/src/intl/en-US.js
@@ -680,5 +680,12 @@ export default {
statusOptions: 'Status options',
confirm: 'Confirm',
closeDialog: 'Close dialog',
- postPrivacy: 'Post privacy'
+ postPrivacy: 'Post privacy',
+ homeOnInstance: 'Home on {instance}',
+ statusesTimelineOnInstance: 'Statuses: {timeline} timeline on {instance}',
+ statusesHashtag: 'Statuses: #{hashtag} hashtag',
+ statusesThread: 'Statuses: thread',
+ statusesAccountTimeline: 'Statuses: account timeline',
+ statusesList: 'Statuses: list',
+ notificationsOnInstance: 'Notifications on {instance}'
}
diff --git a/src/routes/_components/DynamicHeading.html b/src/routes/_components/DynamicHeading.html
new file mode 100644
index 00000000..5485b772
--- /dev/null
+++ b/src/routes/_components/DynamicHeading.html
@@ -0,0 +1,5 @@
+{#if level === 2}
+
{#if hidePage}
@@ -30,6 +31,7 @@
import { store } from '../_store/store.js'
import LoadingPage from './LoadingPage.html'
import LazyComposeBox from './compose/LazyComposeBox.html'
+ import { formatIntl } from '../_utils/formatIntl.js'
export default {
oncreate () {
@@ -40,7 +42,8 @@
},
computed: {
hidePage: ({ $timelineInitialized, $timelinePreinitialized }) => !$timelineInitialized && !$timelinePreinitialized,
- hideTimeline: ({ $timelineInitialized }) => !$timelineInitialized
+ hideTimeline: ({ $timelineInitialized }) => !$timelineInitialized,
+ headingLabel: ({ $currentInstance }) => formatIntl('intl.homeOnInstance', { instance: $currentInstance })
},
store: () => store,
components: {
diff --git a/src/routes/_components/compose/ComposeBox.html b/src/routes/_components/compose/ComposeBox.html
index 305ca4e7..c4ed8562 100644
--- a/src/routes/_components/compose/ComposeBox.html
+++ b/src/routes/_components/compose/ComposeBox.html
@@ -1,5 +1,5 @@
{#if realm === 'home'}
-
{intl.composeStatus}
+
{intl.composeStatus}
{/if}
diff --git a/src/routes/_components/timeline/Timeline.html b/src/routes/_components/timeline/Timeline.html
index 6cf1bf84..c0537aaa 100644
--- a/src/routes/_components/timeline/Timeline.html
+++ b/src/routes/_components/timeline/Timeline.html
@@ -1,4 +1,4 @@
-
{label}
+
{label}
{#if components}
@@ -26,6 +26,7 @@
diff --git a/src/routes/_pages/community/index.html b/src/routes/_pages/community/index.html
index 31d3dd2d..14d1cc84 100644
--- a/src/routes/_pages/community/index.html
+++ b/src/routes/_pages/community/index.html
@@ -1,6 +1,6 @@
{#if $isUserLoggedIn}
+
{intl.community}