summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Lundblad <ml@dfupdate.se>2023-03-20 21:13:37 +0100
committerMarcus Lundblad <ml@dfupdate.se>2023-03-20 22:38:19 +0100
commita875b8c797c7892a059cafe916527839db0f1861 (patch)
tree515c64fff09649038485bb5601ab3e048c0ed734
parenta95d641c7a9be3e4c809539bac0c7eaa21967dfb (diff)
downloadgnome-maps-a875b8c797c7892a059cafe916527839db0f1861.tar.gz
placeView: Change "takeaway" to "takeout"
Use the term "takeout", as this is more common in American English.
-rw-r--r--src/placeView.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/placeView.js b/src/placeView.js
index e62b7be9..84924e04 100644
--- a/src/placeView.js
+++ b/src/placeView.js
@@ -292,7 +292,7 @@ export class PlaceView extends Gtk.Box {
* The establishment offers customers to purchase meals
* (or similar) to be consumed elsewhere
*/
- content.push({ info: _("Offers takeaway"),
+ content.push({ info: _("Offers takeout"),
icon: PlaceIcons.getIconForPlace(place) });
break;
case 'no':
@@ -300,7 +300,7 @@ export class PlaceView extends Gtk.Box {
* The establishment only offers customers to purchase
* meals (or similar) to be consumed on-premise.
*/
- content.push({ info: _("Does not offer takeaway"),
+ content.push({ info: _("Does not offer takeout"),
icon: PlaceIcons.getIconForPlace(place) });
break;
case 'only':
@@ -309,7 +309,7 @@ export class PlaceView extends Gtk.Box {
* meals (or similar) to be consumed elsewhere. E.g.
* there is no seating on-premise for eating/drinking
*/
- content.push({ info: _("Only offers takeaway"),
+ content.push({ info: _("Only offers takeout"),
icon: PlaceIcons.getIconForPlace(place) });
break;
}