New translations toolbar.mdx (Turkish)
This commit is contained in:
parent
7dcf1ad0ca
commit
05b17b6723
1 changed files with 32 additions and 0 deletions
32
website/src/lib/docs/tr/toolbar.mdx
Normal file
32
website/src/lib/docs/tr/toolbar.mdx
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
title: Toolbar
|
||||||
|
---
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import Toolbar from '$lib/components/toolbar/Toolbar.svelte';
|
||||||
|
import { currentTool, Tool } from '$lib/stores';
|
||||||
|
import { onMount, onDestroy } from 'svelte';
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
currentTool.set(Tool.ROUTING);
|
||||||
|
});
|
||||||
|
|
||||||
|
onDestroy(() => {
|
||||||
|
currentTool.set(null);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
# { title }
|
||||||
|
|
||||||
|
The toolbar is located on the left side of the map and is the heart of the application, as it provides access to the main features of **gpx.studio**.
|
||||||
|
Each tool is represented by an icon and can be activated by clicking on it.
|
||||||
|
|
||||||
|
<div class="flex flex-row justify-center text-foreground">
|
||||||
|
<div>
|
||||||
|
<Toolbar class="border rounded-md shadow-lg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
As with [edit actions](./menu/edit), most tools can be applied to multiple files at once and to [inner tracks and segments](./gpx).
|
||||||
|
|
||||||
|
The next sections describe each tool in detail.
|
||||||
Loading…
Reference in a new issue