Remove duplicate translation key

This commit is contained in:
David Benque 2025-06-30 17:18:33 +01:00
parent 7f76b929c3
commit 1e0b7168be
No known key found for this signature in database
GPG Key ID: 7EC3E5D34DCCC0BF
2 changed files with 2 additions and 3 deletions

View File

@ -142,7 +142,6 @@ define(req, function(AppConfig, Default, Language) {
Messages.badges_premium = "Premium user";
Messages.badges_error = "Error while validating this user's data";
Messages.profile_badges = "Badges";
Messages.user_profile = 'Go to user profile';
Messages.show_password = "Show password";
Messages.hide_password = "Hide password";
Messages.page_next = "Next page";

View File

@ -83,8 +83,8 @@ define([
} else if (userData && typeof(userData) === "object" && userData.profile) {
avatar = h('span.cp-avatar',{
tabindex: 0,
title: Messages.user_profile,
'aria-label': Messages.user_profile,
title: Messages.userlist_visitProfile,
'aria-label': Messages.userlist_visitProfile,
role: 'button'
});
Common.displayAvatar($(avatar), userData.avatar, userData.displayName || userData.name);