mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-24 02:18:50 +01:00
Add contributors link
This commit is contained in:
parent
7935b5af7b
commit
07dde17064
3 changed files with 10 additions and 0 deletions
|
@ -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";
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue