Add contributors link

This commit is contained in:
Ming Ming 2023-07-29 02:45:16 +08:00
parent 7935b5af7b
commit 07dde17064
3 changed files with 10 additions and 0 deletions

View file

@ -12,3 +12,4 @@ const enhanceDeepLabColorPopUrl = "https://bit.ly/3Rx0YCD";
const enhanceRetouchUrl = "https://bit.ly/3Ds2cea";
const editPhotosUrl = "https://bit.ly/3v82oKA";
const collectionTypesUrl = "https://bit.ly/3OwSiNq";
const contributorsUrl = "https://bit.ly/3QhlQQs";

View file

@ -1418,6 +1418,7 @@
"createCollectionDialogNextcloudAlbumDescription": "Server-side album, require Nextcloud 25 or above",
"removeCollectionsFailedNotification": "Failed to remove some collections",
"accountSettingsTooltip": "Account settings",
"contributorsTooltip": "Contributors",
"errorUnauthenticated": "Unauthenticated access. Please sign-in again if the problem continues",
"@errorUnauthenticated": {

View file

@ -161,6 +161,14 @@ class _WrappedAccountPickerDialog extends StatelessWidget {
);
},
),
_IconTile(
icon: const Icon(Icons.groups_outlined),
title: Text(L10n.global().contributorsTooltip),
onTap: () {
Navigator.of(context).pop();
launch(help_util.contributorsUrl);
},
),
_IconTile(
icon: const Icon(Icons.help_outline),
title: Text(L10n.global().helpTooltip),