aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/notification/notification.vue2
-rw-r--r--src/i18n/en.json4
-rw-r--r--src/modules/statuses.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index 33ae054f..16124e50 100644
--- a/src/components/notification/notification.vue
+++ b/src/components/notification/notification.vue
@@ -76,7 +76,7 @@
</span>
<span v-if="notification.type === 'move'">
<i class="fa icon-arrow-curved lit" />
- <small>{{ $t('notifications.moved_to') }}</small>
+ <small>{{ $t('notifications.migrated_to') }}</small>
</span>
</div>
<div
diff --git a/src/i18n/en.json b/src/i18n/en.json
index dcd2f3d7..4fd8ee0b 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -111,7 +111,7 @@
"read": "Read!",
"repeated_you": "repeated your status",
"no_more_notifications": "No more notifications",
- "moved_to": "moved to"
+ "migrated_to": "migrated to"
},
"polls": {
"add_poll": "Add Poll",
@@ -312,7 +312,7 @@
"notification_visibility_likes": "Likes",
"notification_visibility_mentions": "Mentions",
"notification_visibility_repeats": "Repeats",
- "notification_visibility_moves": "Moves",
+ "notification_visibility_moves": "User Migrates",
"no_rich_text_description": "Strip rich text formatting from all posts",
"no_blocks": "No blocks",
"no_mutes": "No mutes",
diff --git a/src/modules/statuses.js b/src/modules/statuses.js
index 420b3183..f3fc0f21 100644
--- a/src/modules/statuses.js
+++ b/src/modules/statuses.js
@@ -340,7 +340,7 @@ const addNewNotifications = (state, { dispatch, notifications, older, visibleNot
i18nString = 'followed_you'
break
case 'move':
- i18nString = 'moved_to'
+ i18nString = 'migrated_to'
break
}