change: Rename contacts to friends

This commit is contained in:
Christian Pauly 2021-02-27 11:13:39 +01:00
commit 4217fc4fe6
3 changed files with 7 additions and 7 deletions

View file

@ -87,7 +87,7 @@ class _ContactsState extends State<Contacts> {
appBar: AppBar(
automaticallyImplyLeading: false,
elevation: 1,
title: Text(L10n.of(context).contacts),
title: Text(L10n.of(context).friends),
actions: [
TextButton.icon(
label: Text(
@ -123,7 +123,7 @@ class _ContactsState extends State<Contacts> {
backgroundColor: Theme.of(context).primaryColor,
foregroundColor: Colors.white,
),
title: Text(L10n.of(context).addNewContact),
title: Text(L10n.of(context).addNewFriend),
onTap: () => AdaptivePageLayout.of(context)
.pushNamed('/newprivatechat'),
),