mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix hardcoded string
This commit is contained in:
parent
cbe1cea965
commit
5bf57b33d1
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ enum _ProviderOption {
|
|||
case appAlbum:
|
||||
return L10n.global().createCollectionDialogAlbumLabel;
|
||||
case ncAlbum:
|
||||
return "Nextcloud Album";
|
||||
return L10n.global().createCollectionDialogNextcloudAlbumLabel;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -220,7 +220,7 @@ enum _ProviderOption {
|
|||
case appAlbum:
|
||||
return L10n.global().createCollectionDialogAlbumDescription;
|
||||
case ncAlbum:
|
||||
return "Server-side album, require Nextcloud 25 or above";
|
||||
return L10n.global().createCollectionDialogNextcloudAlbumDescription;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue