diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index 6979854b5..710288c9e 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -273,6 +273,7 @@ "no_pending_invites": "You have no pending invites", "no_blocked_users": "You have no blocked users", "friend_code_copied": "Friend code copied", - "undo_friendship_modal_text": "This will undo your friendship with {{displayName}}" + "undo_friendship_modal_text": "This will undo your friendship with {{displayName}}", + "image_process_failure": "Failure while processing the image" } } diff --git a/src/locales/pt-BR/translation.json b/src/locales/pt-BR/translation.json index d3b0f0a48..1303f7c8c 100644 --- a/src/locales/pt-BR/translation.json +++ b/src/locales/pt-BR/translation.json @@ -276,6 +276,7 @@ "no_pending_invites": "Você não possui convites de amizade pendentes", "no_blocked_users": "Você não tem nenhum usuário bloqueado", "friend_code_copied": "Código de amigo copiado", - "undo_friendship_modal_text": "Isso irá remover sua amizade com {{displayName}}" + "undo_friendship_modal_text": "Isso irá remover sua amizade com {{displayName}}", + "image_process_failure": "Falha ao processar a imagem" } } diff --git a/src/locales/pt-PT/translation.json b/src/locales/pt-PT/translation.json index 3384bdf70..cd4fc44c6 100644 --- a/src/locales/pt-PT/translation.json +++ b/src/locales/pt-PT/translation.json @@ -277,6 +277,7 @@ "pending": "Pendentes", "no_pending_invites": "Não tens convites de amizade pendentes", "no_blocked_users": "Não tens nenhum utilizador bloqueado", - "friend_code_copied": "Código de amigo copiado" + "friend_code_copied": "Código de amigo copiado", + "image_process_failure": "Falha ao processar a imagem" } } diff --git a/src/renderer/src/pages/user/user-profile-settings-modal/user-edit-profile.tsx b/src/renderer/src/pages/user/user-profile-settings-modal/user-edit-profile.tsx index 6c2b1cbde..e91773837 100644 --- a/src/renderer/src/pages/user/user-profile-settings-modal/user-edit-profile.tsx +++ b/src/renderer/src/pages/user/user-profile-settings-modal/user-edit-profile.tsx @@ -60,6 +60,7 @@ export const UserEditProfile = ({ const { imagePath } = await window.electron .processProfileImage(filePaths[0]) .catch(() => { + showErrorToast(t("image_process_failure")); return { imagePath: null }; }) .finally(() => setIsLoadingImage(false));