Преглед изворни кода

Copy change for overflow menu item

Neeraj Gupta пре 2 година
родитељ
комит
06a9244fec

+ 1 - 0
lib/generated/intl/messages_en.dart

@@ -785,6 +785,7 @@ class MessageLookup extends MessageLookupByLibrary {
         "manageParticipants": MessageLookupByLibrary.simpleMessage("Manage"),
         "manageParticipants": MessageLookupByLibrary.simpleMessage("Manage"),
         "manageSubscription":
         "manageSubscription":
             MessageLookupByLibrary.simpleMessage("Manage subscription"),
             MessageLookupByLibrary.simpleMessage("Manage subscription"),
+        "map": MessageLookupByLibrary.simpleMessage("Map"),
         "maps": MessageLookupByLibrary.simpleMessage("Maps"),
         "maps": MessageLookupByLibrary.simpleMessage("Maps"),
         "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
         "mastodon": MessageLookupByLibrary.simpleMessage("Mastodon"),
         "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),
         "matrix": MessageLookupByLibrary.simpleMessage("Matrix"),

+ 10 - 0
lib/generated/l10n.dart

@@ -7243,6 +7243,16 @@ class S {
     );
     );
   }
   }
 
 
+  /// `Map`
+  String get map {
+    return Intl.message(
+      'Map',
+      name: 'map',
+      desc: 'Label for the map view',
+      args: [],
+    );
+  }
+
   /// `Maps`
   /// `Maps`
   String get maps {
   String get maps {
     return Intl.message(
     return Intl.message(

+ 4 - 0
lib/l10n/intl_en.arb

@@ -1048,6 +1048,10 @@
   },
   },
   "openstreetmapContributors": "OpenStreetMap contributors",
   "openstreetmapContributors": "OpenStreetMap contributors",
   "hostedAtOsmFrance": "Hosted at OSM France",
   "hostedAtOsmFrance": "Hosted at OSM France",
+  "map": "Map",
+  "@map": {
+    "description": "Label for the map view"
+  },
   "maps" : "Maps",
   "maps" : "Maps",
   "enableMaps": "Enable Maps",
   "enableMaps": "Enable Maps",
   "enableMapsDesc" : "This will show your photos on a world map.\n\nThe map is hosted by OpenStreetMap, and the exact locations of your photos are never shared.\n\nYou can disable this feature anytime from Settings."
   "enableMapsDesc" : "This will show your photos on a world map.\n\nThe map is hosted by OpenStreetMap, and the exact locations of your photos are never shared.\n\nYou can disable this feature anytime from Settings."

+ 1 - 1
lib/ui/viewer/gallery/gallery_app_bar_widget.dart

@@ -293,7 +293,7 @@ class _GalleryAppBarWidgetState extends State<GalleryAppBarWidget> {
                 const Padding(
                 const Padding(
                   padding: EdgeInsets.all(8),
                   padding: EdgeInsets.all(8),
                 ),
                 ),
-                Text(S.of(context).maps),
+                Text(S.of(context).map),
               ],
               ],
             ),
             ),
           ),
           ),