forked from GNUsocial/gnu-social
		
	[I18N] Fix use of string concatenations in translations
This commit is contained in:
		| @@ -80,7 +80,7 @@ class PersonFeed extends FeedController | ||||
|             'actor'            => $person, | ||||
|             'nickname'         => $person->getNickname(), | ||||
|             'notes'            => E\Note::getAllNotesByActor($person), | ||||
|             'page_title'       => _m($person->getNickname() . '\'s profile'), | ||||
|             'page_title'       => _m('{nickname}\'s profile', ['{nickname}' => $person->getNickname()]), | ||||
|             'notes_feed_title' => (new Heading(level: 2, classes: ['section-title'], text: 'Notes by ' . $person->getNickname())), | ||||
|         ]; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user