Merge pull request #8257 from MrPetovan/task/8234-add-ap-to-dfrn-request

Switch to second person in dfrn_request "know you" field
This commit is contained in:
Philipp 2020-02-09 10:38:55 +01:00 committed by GitHub
commit 9e5f0ea4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -639,7 +639,7 @@ function dfrn_request_content(App $a)
'$name' => $a->profile['name'],
'$myaddr' => $myaddr,
'$does_know_you' => ['knowyou', DI::l10n()->t('%s knows me', $a->profile['name'])],
'$does_know_you' => ['knowyou', DI::l10n()->t('%s knows you', $a->profile['name'])],
'$addnote_field' => ['dfrn-request-message', DI::l10n()->t('Add a personal note:')],
]);
return $o;

View File

@ -177,7 +177,7 @@ function follow_content(App $a)
'$myaddr' => $myaddr,
'$keywords' => $r[0]['keywords'],
'$does_know_you' => ['knowyou', DI::l10n()->t('Does %s know you?', $ret['name'])],
'$does_know_you' => ['knowyou', DI::l10n()->t('%s knows you', $ret['name'])],
'$addnote_field' => ['dfrn-request-message', DI::l10n()->t('Add a personal note:')],
]);