diff --git a/src/components/dialogs/AvatarDialog/AvatarDialog.vue b/src/components/dialogs/AvatarDialog/AvatarDialog.vue index 5d78cffe..d1fe116d 100644 --- a/src/components/dialogs/AvatarDialog/AvatarDialog.vue +++ b/src/components/dialogs/AvatarDialog/AvatarDialog.vue @@ -231,11 +231,11 @@ - + {{ t('dialog.avatar.actions.refresh') }} - + {{ t('dialog.avatar.actions.share') }} @@ -306,7 +306,7 @@ + @click="avatarDialogCommand('Delete Imposter')"> {{ t('dialog.avatar.actions.delete_impostor') }} @@ -734,10 +734,10 @@ function avatarDialogCommand(command) { const D = avatarDialog.value; switch (command) { - case 'RefreshCw': + case 'Refresh': showAvatarDialog(D.id); break; - case 'Share2': + case 'Share': copyAvatarUrl(D.id); break; case 'Rename': @@ -770,7 +770,7 @@ .then(({ ok }) => { if (!ok) return; switch (command) { - case 'Trash2 Favorite': + case 'Delete Favorite': favoriteRequest.deleteFavorite({ objectId: D.id }); @@ -839,7 +839,7 @@ return args; }); break; - case 'Trash2': + case 'Delete': avatarRequest .deleteAvatar({ avatarId: D.id @@ -863,7 +863,7 @@ return args; }); break; - case 'Trash2 Imposter': + case 'Delete Imposter': avatarRequest .deleteImposter({ avatarId: D.id diff --git a/src/components/dialogs/GroupDialog/GroupDialog.vue b/src/components/dialogs/GroupDialog/GroupDialog.vue index ec370ce6..028c5f53 100644 --- a/src/components/dialogs/GroupDialog/GroupDialog.vue +++ b/src/components/dialogs/GroupDialog/GroupDialog.vue @@ -240,11 +240,11 @@ - + {{ t('dialog.group.actions.refresh') }} - + {{ t('dialog.group.actions.share') }} @@ -1523,7 +1523,7 @@ return; } switch (command) { - case 'Share2': + case 'Share': copyToClipboard(groupDialog.value.ref.$url); break; case 'Create Post': @@ -1535,7 +1535,7 @@ case 'Invite To Group': showInviteGroupDialog(D.id, ''); break; - case 'RefreshCw': + case 'Refresh': showGroupDialog(D.id); break; case 'Leave Group': diff --git a/src/components/dialogs/UserDialog/UserActionDropdown.vue b/src/components/dialogs/UserDialog/UserActionDropdown.vue index 74a71544..72cf1cdb 100644 --- a/src/components/dialogs/UserDialog/UserActionDropdown.vue +++ b/src/components/dialogs/UserDialog/UserActionDropdown.vue @@ -30,11 +30,11 @@ - + {{ t('dialog.user.actions.refresh') }} - + {{ t('dialog.user.actions.share') }} @@ -48,19 +48,19 @@ {{ t('dialog.user.actions.show_fallback_avatar') }} - + {{ t('dialog.user.actions.edit_status') }} - + {{ t('dialog.user.actions.edit_language') }} - + {{ t('dialog.user.actions.edit_bio') }} - + {{ t('dialog.user.actions.edit_pronouns') }} @@ -72,7 +72,7 @@ {{ t('dialog.user.actions.request_invite') }} - + {{ t('dialog.user.actions.request_invite_with_message') }} @@ -85,7 +85,7 @@ + @click="onCommand('Invite Message')"> {{ t('dialog.user.actions.invite_with_message') }} @@ -123,7 +123,7 @@ {{ t('dialog.user.actions.group_moderation') }} - + {{ t('dialog.user.actions.edit_note_memo') }} @@ -165,7 +165,7 @@ + @click="onCommand('Moderation Mute')"> {{ t('dialog.user.actions.moderation_mute') }} diff --git a/src/components/dialogs/UserDialog/UserDialog.vue b/src/components/dialogs/UserDialog/UserDialog.vue index c9b8abf9..777c3d36 100644 --- a/src/components/dialogs/UserDialog/UserDialog.vue +++ b/src/components/dialogs/UserDialog/UserDialog.vue @@ -1695,19 +1695,19 @@ if (D.visible === false) { return; } - if (command === 'RefreshCw') { + if (command === 'Refresh') { showUserDialog(D.id); - } else if (command === 'Share2') { + } else if (command === 'Share') { copyUserURL(D.id); } else if (command === 'Add Favorite') { showFavoriteDialog('friend', D.id); - } else if (command === 'Pencil Social Status') { + } else if (command === 'Edit Social Status') { showSocialStatusDialog(); - } else if (command === 'Pencil Language') { + } else if (command === 'Edit Language') { showLanguageDialog(); - } else if (command === 'Pencil Bio') { + } else if (command === 'Edit Bio') { showBioDialog(); - } else if (command === 'Pencil Pronouns') { + } else if (command === 'Edit Pronouns') { showPronounsDialog(); } else if (command === 'Request Invite') { notificationRequest @@ -1721,7 +1721,7 @@ toast('Request invite sent'); return args; }); - } else if (command === 'Invite MessageSquare') { + } else if (command === 'Invite Message') { L = parseLocation(lastLocation.value.location); worldRequest .getCachedWorld({ @@ -1737,7 +1737,7 @@ D.id ); }); - } else if (command === 'Request Invite MessageSquare') { + } else if (command === 'Request Invite Message') { showSendInviteRequestDialog( { platform: 'standalonewindows' @@ -1802,7 +1802,7 @@ } else { setPlayerModeration(D.id, 5); } - } else if (command === 'Pencil Note Memo') { + } else if (command === 'Edit Note Memo') { isEditNoteAndMemoDialogVisible.value = true; } else { const i18nPreFix = 'dialog.user.actions.'; @@ -1896,7 +1896,7 @@ let args; let key; switch (command) { - case 'Trash2 Favorite': + case 'Delete Favorite': favoriteRequest.deleteFavorite({ objectId: userId }); @@ -1963,7 +1963,7 @@ }); handlePlayerModerationDelete(args); break; - case 'Moderation VolumeX': { + case 'Moderation Mute': { args = await playerModerationRequest.sendPlayerModeration({ moderated: userId, type: 'mute' diff --git a/src/components/dialogs/WorldDialog/WorldDialog.vue b/src/components/dialogs/WorldDialog/WorldDialog.vue index 90c835f1..9f863aa2 100644 --- a/src/components/dialogs/WorldDialog/WorldDialog.vue +++ b/src/components/dialogs/WorldDialog/WorldDialog.vue @@ -198,11 +198,11 @@ - + {{ t('dialog.world.actions.refresh') }} - + {{ t('dialog.world.actions.share') }} @@ -240,7 +240,7 @@