Add translation to Yourself option in view as select in profile
- Address https://github.com/friendica/friendica/issues/9682
This commit is contained in:
parent
a991f3dfcf
commit
fbd0cefdf7
2 changed files with 3 additions and 2 deletions
|
@ -231,9 +231,10 @@ class Profile extends BaseProfile
|
|||
);
|
||||
}
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('profile/index.tpl');
|
||||
$tpl = Renderer::getMarkupTemplate('profile/profile.tpl');
|
||||
$o .= Renderer::replaceMacros($tpl, [
|
||||
'$title' => DI::l10n()->t('Profile'),
|
||||
'$yourself' => DI::l10n()->t('Yourself'),
|
||||
'$view_as_contacts' => $view_as_contacts,
|
||||
'$view_as_contact_id' => $view_as_contact_id,
|
||||
'$view_as_contact_alert' => $view_as_contact_alert,
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
<fieldset class="panel-body">
|
||||
<label for="viewas-select">{{$view_as}}</label>
|
||||
<select name="viewas" id="viewas-select" class="form-control">
|
||||
<option value="0">Yourself</option>
|
||||
<option value="0">{{$yourself}}</option>
|
||||
{{foreach $view_as_contacts as $contact}}
|
||||
<option value="{{$contact.id}}"{{if $contact.id == $view_as_contact_id}} selected{{/if}}>{{$contact.name}}</option>
|
||||
{{/foreach}}
|
Loading…
Reference in a new issue