Skip to content

Commit

Permalink
TW-1573: change name saveToGallery to saveFiles in web
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockvn authored and hoangdat committed Apr 19, 2024
1 parent e3a8630 commit 6602af1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/pages/image_viewer/media_viewer_app_bar_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ class MediaViewerAppbarView extends StatelessWidget {
menuChildren: [
ContextMenuItemImageViewer(
icon: Icons.file_download_outlined,
title: L10n.of(context)!.saveToGallery,
title: PlatformInfos.isWeb
? L10n.of(context)!.saveFile
: L10n.of(context)!.saveToGallery,
onTap: () {
controller.toggleShowMoreActions(
controller.menuController,
Expand Down

0 comments on commit 6602af1

Please sign in to comment.