diff --git a/client/components/stats/YearInReviewBanner.vue b/client/components/stats/YearInReviewBanner.vue
index f7736078..993443b5 100644
--- a/client/components/stats/YearInReviewBanner.vue
+++ b/client/components/stats/YearInReviewBanner.vue
@@ -7,9 +7,10 @@
-
{{ yearInReviewYear }} Year in Review
+
{{ $getString('HeaderYearReview', [yearInReviewYear]) }}
-
{{ showYearInReview ? 'Hide Year in Review' : 'See Year in Review' }}
+
{{ showYearInReview ? $strings.LabelYearReviewHide :
+ $strings.LabelYearReviewShow }}
@@ -20,24 +21,27 @@
chevron_left
- Previous
+ {{ $strings.ButtonPrevious }}
- Share
+ {{
+ $strings.ButtonShare }}
+
- Your Year in Review ({{ yearInReviewVariant + 1 }})
+ {{ $getString('LabelPersonalYearReview', [yearInReviewVariant + 1]) }}
+
{{ yearInReviewVariant + 1 }}
- Refresh
+ {{ $strings.ButtonRefresh }}
refresh
- Next
+ {{ $strings.ButtonNext }}
chevron_right
@@ -46,7 +50,7 @@
- Share
+ {{ $strings.ButtonShare }}
@@ -56,24 +60,25 @@
chevron_left
- Previous
+ {{ $strings.ButtonPrevious }}
- Share
+ {{ $strings.ButtonShare }}
+
- Server Year in Review ({{ yearInReviewServerVariant + 1 }})
+ {{ $getString('LabelServerYearReview', [yearInReviewServerVariant + 1]) }}
{{ yearInReviewServerVariant + 1 }}
- Refresh
+ {{ $strings.ButtonRefresh }}
refresh
- Next
+ {{ $strings.ButtonNext }}
chevron_right
diff --git a/client/pages/login.vue b/client/pages/login.vue
index c7efa0d0..9b7758d8 100644
--- a/client/pages/login.vue
+++ b/client/pages/login.vue
@@ -10,9 +10,9 @@