Merge pull request #7544 from JeroenED/bugfix/profile-translation

Profile vcard translation
This commit is contained in:
Hypolite Petovan 2019-08-20 11:02:50 -04:00 committed by GitHub
commit a47ed18a98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -523,6 +523,14 @@ class Profile
$p['address'] = BBCode::convert($p['address']);
}
if (isset($p['gender'])) {
$p['gender'] = L10n::t($p['gender']);
}
if (isset($p['marital'])) {
$p['marital'] = L10n::t($p['marital']);
}
if (isset($p['photo'])) {
$p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
}