mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
Translating the vcard
This commit is contained in:
parent
f775fedc4a
commit
cf95e0f856
1 changed files with 8 additions and 0 deletions
|
@ -523,6 +523,14 @@ class Profile
|
||||||
$p['address'] = BBCode::convert($p['address']);
|
$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'])) {
|
if (isset($p['photo'])) {
|
||||||
$p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
|
$p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue