# HG changeset patch # User Markus Kottlaender # Date 1558619892 -7200 # Node ID cb2f67a07400a2d4685a54a1a1bf004ebc8d5d65 # Parent 0a666ba899faf13406f10a6cb89bc3b6612d61d7 client: toolbar/dialogs: unified toolbar tooltips and dialog titles diff -r 0a666ba899fa -r cb2f67a07400 client/src/components/fairway/Profiles.vue --- a/client/src/components/fairway/Profiles.vue Thu May 23 15:49:59 2019 +0200 +++ b/client/src/components/fairway/Profiles.vue Thu May 23 15:58:12 2019 +0200 @@ -315,7 +315,7 @@ ...mapGetters("map", ["openLayersMap"]), ...mapGetters("bottlenecks", ["orderedBottlenecks"]), profilesLable() { - return this.$gettext("Bottleneck"); + return this.$gettext("Bottleneck Surveys"); }, selectedBottleneck: { get() { diff -r 0a666ba899fa -r cb2f67a07400 client/src/components/layers/Layers.vue --- a/client/src/components/layers/Layers.vue Thu May 23 15:49:59 2019 +0200 +++ b/client/src/components/layers/Layers.vue Thu May 23 15:58:12 2019 +0200 @@ -67,7 +67,7 @@ ...mapState("application", ["showLayers"]), ...mapState("map", ["openLayersMaps"]), label() { - return this.$gettext("Layers"); + return this.$gettext("Map Layers"); }, sourcesLoading() { let counter = 0; diff -r 0a666ba899fa -r cb2f67a07400 client/src/components/toolbar/Profiles.vue --- a/client/src/components/toolbar/Profiles.vue Thu May 23 15:49:59 2019 +0200 +++ b/client/src/components/toolbar/Profiles.vue Thu May 23 15:58:12 2019 +0200 @@ -32,7 +32,7 @@ computed: { ...mapState("application", ["showProfiles"]), label() { - return this.$gettext("Fairway Profiles"); + return this.$gettext("Bottleneck Surveys"); } } };