mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-04 01:22:32 +00:00
clarify elevation vs elevation gain/loss
This commit is contained in:
@@ -50,13 +50,17 @@
|
|||||||
<MoveDownRight size="18" class="mx-1" />
|
<MoveDownRight size="18" class="mx-1" />
|
||||||
<WithUnits value={statistics.global.elevation.loss} type="elevation" />
|
<WithUnits value={statistics.global.elevation.loss} type="elevation" />
|
||||||
</span>
|
</span>
|
||||||
<span slot="tooltip">{$_('quantities.elevation')}</span>
|
<span slot="tooltip">{$_('quantities.elevation_gain_loss')}</span>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
{#if panelSize > 120 || orientation === 'horizontal'}
|
{#if panelSize > 120 || orientation === 'horizontal'}
|
||||||
<Tooltip class={orientation === 'horizontal' ? 'hidden xs:block' : ''}>
|
<Tooltip class={orientation === 'horizontal' ? 'hidden xs:block' : ''}>
|
||||||
<span slot="data" class="flex flex-row items-center">
|
<span slot="data" class="flex flex-row items-center">
|
||||||
<Zap size="18" class="mr-1" />
|
<Zap size="18" class="mr-1" />
|
||||||
<WithUnits value={statistics.global.speed.moving} type="speed" showUnits={false} />
|
<WithUnits
|
||||||
|
value={statistics.global.speed.moving}
|
||||||
|
type="speed"
|
||||||
|
showUnits={false}
|
||||||
|
/>
|
||||||
<span class="mx-1">/</span>
|
<span class="mx-1">/</span>
|
||||||
<WithUnits value={statistics.global.speed.total} type="speed" />
|
<WithUnits value={statistics.global.speed.total} type="speed" />
|
||||||
</span>
|
</span>
|
||||||
@@ -76,7 +80,9 @@
|
|||||||
<WithUnits value={statistics.global.time.total} type="time" />
|
<WithUnits value={statistics.global.time.total} type="time" />
|
||||||
</span>
|
</span>
|
||||||
<span slot="tooltip"
|
<span slot="tooltip"
|
||||||
>{$_('quantities.time')} ({$_('quantities.moving')} / {$_('quantities.total')})</span
|
>{$_('quantities.time')} ({$_('quantities.moving')} / {$_(
|
||||||
|
'quantities.total'
|
||||||
|
)})</span
|
||||||
>
|
>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
{/if}
|
{/if}
|
||||||
|
@@ -48,7 +48,7 @@
|
|||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
<ToolbarItem tool={Tool.ELEVATION}>
|
<ToolbarItem tool={Tool.ELEVATION}>
|
||||||
<MountainSnow slot="icon" size="18" />
|
<MountainSnow slot="icon" size="18" />
|
||||||
<span slot="tooltip">{$_('toolbar.elevation.tooltip')}</span>
|
<span slot="tooltip">{$_('toolbar.elevation.button')}</span>
|
||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
<ToolbarItem tool={Tool.REDUCE}>
|
<ToolbarItem tool={Tool.REDUCE}>
|
||||||
<Filter slot="icon" size="18" />
|
<Filter slot="icon" size="18" />
|
||||||
|
@@ -185,7 +185,6 @@
|
|||||||
"help_invalid_selection": "Your selection must contain items with multiple traces to extract them."
|
"help_invalid_selection": "Your selection must contain items with multiple traces to extract them."
|
||||||
},
|
},
|
||||||
"elevation": {
|
"elevation": {
|
||||||
"tooltip": "Request elevation data",
|
|
||||||
"button": "Request elevation data",
|
"button": "Request elevation data",
|
||||||
"help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from Mapbox.",
|
"help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from Mapbox.",
|
||||||
"help_no_selection": "Select a file item to request elevation data."
|
"help_no_selection": "Select a file item to request elevation data."
|
||||||
@@ -356,6 +355,7 @@
|
|||||||
"quantities": {
|
"quantities": {
|
||||||
"distance": "Distance",
|
"distance": "Distance",
|
||||||
"elevation": "Elevation",
|
"elevation": "Elevation",
|
||||||
|
"elevation_gain_loss": "Elevation gain and loss",
|
||||||
"temperature": "Temperature",
|
"temperature": "Temperature",
|
||||||
"speed": "Speed",
|
"speed": "Speed",
|
||||||
"pace": "Pace",
|
"pace": "Pace",
|
||||||
|
Reference in New Issue
Block a user