diff --git a/website/src/lib/components/Menu.svelte b/website/src/lib/components/Menu.svelte index 2251034d1..554ba2fc0 100644 --- a/website/src/lib/components/Menu.svelte +++ b/website/src/lib/components/Menu.svelte @@ -43,6 +43,8 @@ BookOpenText, ChartArea, Maximize, + Maximize2, + Minimize2, } from '@lucide/svelte'; import { map } from '$lib/components/map/map'; import { editMetadata } from '$lib/components/file-list/metadata/utils.svelte'; @@ -70,7 +72,7 @@ import { copied, selection } from '$lib/logic/selection'; import { allHidden } from '$lib/logic/hidden'; import { boundsManager } from '$lib/logic/bounds'; - import { tick } from 'svelte'; + import { tick, onMount } from 'svelte'; import { allowedPastes } from '$lib/components/file-list/sortable-file-list'; const { @@ -105,6 +107,23 @@ } let layerSettingsOpen = $state(false); + let fullscreen = $state(false); + + function toggleFullscreen() { + if (!document.fullscreenElement) { + document.documentElement.requestFullscreen?.(); + } else { + document.exitFullscreen?.(); + } + } + + onMount(() => { + const handler = () => { + fullscreen = document.fullscreenElement !== null; + }; + document.addEventListener('fullscreenchange', handler); + return () => document.removeEventListener('fullscreenchange', handler); + });
@@ -377,6 +396,16 @@ {i18n._('menu.toggle_3d')} + + + {#if fullscreen} + + {:else} + + {/if} + {i18n._('menu.fullscreen')} + + diff --git a/website/src/lib/components/toolbar/tools/reduce/utils.svelte.ts b/website/src/lib/components/toolbar/tools/reduce/utils.svelte.ts index 22415f415..525399074 100644 --- a/website/src/lib/components/toolbar/tools/reduce/utils.svelte.ts +++ b/website/src/lib/components/toolbar/tools/reduce/utils.svelte.ts @@ -163,6 +163,9 @@ export class ReducedGPXLayerCollection { reduce() { let itemsAndPoints = new Map(); this._simplified.forEach(([item, maxPts, points], itemFullId) => { + if (!get(selection).hasAnyParent(item)) { + return; + } itemsAndPoints.set( item, points diff --git a/website/src/lib/components/toolbar/tools/routing/routing-controls.ts b/website/src/lib/components/toolbar/tools/routing/routing-controls.ts index 6286a5b7e..dc976594f 100644 --- a/website/src/lib/components/toolbar/tools/routing/routing-controls.ts +++ b/website/src/lib/components/toolbar/tools/routing/routing-controls.ts @@ -820,7 +820,7 @@ export class RoutingControls { ` `, - _map.getCanvasContainer().offsetWidth > 1000 ? 50 : 80 + _map.getCanvasContainer().offsetWidth > 1000 ? 56 : 80 ); } diff --git a/website/src/lib/docs/be/menu/view.mdx b/website/src/lib/docs/be/menu/view.mdx index d338e2b79..b1d337255 100644 --- a/website/src/lib/docs/be/menu/view.mdx +++ b/website/src/lib/docs/be/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. Каб кіраваць арыентацыяй і нахілам карты, вы таксама можаце перацягнуць карту, утрымліваючы Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/ca/menu/view.mdx b/website/src/lib/docs/ca/menu/view.mdx index 08da7d5d0..dff072a7e 100644 --- a/website/src/lib/docs/ca/menu/view.mdx +++ b/website/src/lib/docs/ca/menu/view.mdx @@ -3,7 +3,7 @@ title: Opcions de vista --- @@ -47,3 +47,8 @@ Entra o surt de la vista de mapa en 3D. Per controlar l'orientació i inclinació del mapa, pots arrossegar el mapa mentre prems Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/cs/menu/view.mdx b/website/src/lib/docs/cs/menu/view.mdx index cd1a99d91..5e6f740c2 100644 --- a/website/src/lib/docs/cs/menu/view.mdx +++ b/website/src/lib/docs/cs/menu/view.mdx @@ -3,7 +3,7 @@ title: Možnosti zobrazení --- @@ -47,3 +47,8 @@ Zapnout nebo vypnout 3D zobrazení mapy. Chcete-li ovládat orientaci a náklon mapy, můžete ji také potáhnout s přidržením klávesy Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/da/menu/view.mdx b/website/src/lib/docs/da/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/da/menu/view.mdx +++ b/website/src/lib/docs/da/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/de/menu/view.mdx b/website/src/lib/docs/de/menu/view.mdx index be2679e9c..5fc558ff3 100644 --- a/website/src/lib/docs/de/menu/view.mdx +++ b/website/src/lib/docs/de/menu/view.mdx @@ -3,7 +3,7 @@ title: Anzeigeoptionen --- @@ -47,3 +47,8 @@ Aufrufen oder Beenden der 3D-Kartenansicht. Um die Ausrichtung und Neigung der Karte zu steuern, können Sie die Karte auch ziehen, während Sie die Strg-Taste gedrückt halten. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/el/menu/view.mdx b/website/src/lib/docs/el/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/el/menu/view.mdx +++ b/website/src/lib/docs/el/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/en/menu/view.mdx b/website/src/lib/docs/en/menu/view.mdx index 703815d3e..b812c2f78 100644 --- a/website/src/lib/docs/en/menu/view.mdx +++ b/website/src/lib/docs/en/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -46,4 +46,9 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. - \ No newline at end of file + + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. \ No newline at end of file diff --git a/website/src/lib/docs/es/menu/view.mdx b/website/src/lib/docs/es/menu/view.mdx index e669652d5..669545742 100644 --- a/website/src/lib/docs/es/menu/view.mdx +++ b/website/src/lib/docs/es/menu/view.mdx @@ -3,7 +3,7 @@ title: Opciones de vista --- @@ -47,3 +47,8 @@ Entra o sale de la vista 3D del mapa. Para controlar la orientación e inclinación del mapa, puede arrastrarlo mientras mantiene pulsada la tecla Ctrl. + +### Pantalla completa + +Entrar o salir del modo de pantalla completa. +También puede presionar F11 para alternar, o Escape para salir. diff --git a/website/src/lib/docs/eu/menu/view.mdx b/website/src/lib/docs/eu/menu/view.mdx index e6ab66821..310b13d23 100644 --- a/website/src/lib/docs/eu/menu/view.mdx +++ b/website/src/lib/docs/eu/menu/view.mdx @@ -3,7 +3,7 @@ title: Ikusteko aukerak --- @@ -47,3 +47,8 @@ Aktibatu edo desaktibatu maparen 3D ikuspegia. Maparen orientazioa eta okertzea kontrolatzeko, mapa ere arrasta dezakezu Ctrl sakatzen duzun bitartean. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/fi/menu/view.mdx b/website/src/lib/docs/fi/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/fi/menu/view.mdx +++ b/website/src/lib/docs/fi/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/fr/menu/view.mdx b/website/src/lib/docs/fr/menu/view.mdx index 476cacb1c..a96a11c58 100644 --- a/website/src/lib/docs/fr/menu/view.mdx +++ b/website/src/lib/docs/fr/menu/view.mdx @@ -3,7 +3,7 @@ title: Options d'affichage --- @@ -47,3 +47,8 @@ Entrer ou sortir de la vue 3D de la carte. Pour contrôler l'orientation et l'inclinaison de la carte, vous pouvez également faire glisser la carte tout en maintenant Ctrl. + +### Plein écran + +Passer en mode plein écran, ou le quitter. +Vous pouvez également appuyer sur F11 pour activer/désactiver le mode plein écran, ou sur Échap pour quitter. diff --git a/website/src/lib/docs/he/menu/view.mdx b/website/src/lib/docs/he/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/he/menu/view.mdx +++ b/website/src/lib/docs/he/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/hu/menu/view.mdx b/website/src/lib/docs/hu/menu/view.mdx index 0d3c74369..420412fac 100644 --- a/website/src/lib/docs/hu/menu/view.mdx +++ b/website/src/lib/docs/hu/menu/view.mdx @@ -3,7 +3,7 @@ title: Nézet beállításai --- @@ -47,3 +47,8 @@ Lépjen be vagy lépjen ki a 3D térképnézetből. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/id/menu/view.mdx b/website/src/lib/docs/id/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/id/menu/view.mdx +++ b/website/src/lib/docs/id/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/it/menu/view.mdx b/website/src/lib/docs/it/menu/view.mdx index feea7d34c..45e85c6b0 100644 --- a/website/src/lib/docs/it/menu/view.mdx +++ b/website/src/lib/docs/it/menu/view.mdx @@ -3,7 +3,7 @@ title: Opzioni di visualizzazione --- @@ -47,3 +47,8 @@ Entrare o uscire dalla vista mappa 3D. Per controllare l'orientamento e l'inclinazione della mappa, puoi anche trascinare la mappa tenendo premuto Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/ko/menu/view.mdx b/website/src/lib/docs/ko/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/ko/menu/view.mdx +++ b/website/src/lib/docs/ko/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/lt/menu/view.mdx b/website/src/lib/docs/lt/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/lt/menu/view.mdx +++ b/website/src/lib/docs/lt/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/lv/menu/view.mdx b/website/src/lib/docs/lv/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/lv/menu/view.mdx +++ b/website/src/lib/docs/lv/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/nl/map-controls.mdx b/website/src/lib/docs/nl/map-controls.mdx index 3cf8611e0..584f64da4 100644 --- a/website/src/lib/docs/nl/map-controls.mdx +++ b/website/src/lib/docs/nl/map-controls.mdx @@ -69,4 +69,4 @@ Ze kunnen worden ingeschakeld in het [map layer settings dialoog](./menu/setting In deze instellingen kun je ook de transparantie van de lagen beheren. -For advanced users, it is possible to add custom basemaps and overlays by providing WMTS, WMS, or MapLibre style JSON URLs. +Voor gevorderde gebruikers is het mogelijk om aangepaste basiskaarten en lagen toe te voegen met WMTS, WMS, of MapLibre-stijl JSON URLs. diff --git a/website/src/lib/docs/nl/menu/view.mdx b/website/src/lib/docs/nl/menu/view.mdx index fd93e41c3..71468db87 100644 --- a/website/src/lib/docs/nl/menu/view.mdx +++ b/website/src/lib/docs/nl/menu/view.mdx @@ -3,7 +3,7 @@ title: Bekijk opties --- @@ -47,3 +47,8 @@ Voer in of verlaat de 3D-mapweergave. Om de oriëntatie en kanteling van de kaart te bepalen, kun je ook de kaart slepen terwijl je Ctrl ingedrukt houdt. + +### Volledig scherm + +Start of stop volledig scherm modus. +Je kunt ook op F11 drukken om te wisselen, of Escape om af te sluiten. diff --git a/website/src/lib/docs/nl/toolbar/elevation.mdx b/website/src/lib/docs/nl/toolbar/elevation.mdx index 0eff75966..8a1e9682b 100644 --- a/website/src/lib/docs/nl/toolbar/elevation.mdx +++ b/website/src/lib/docs/nl/toolbar/elevation.mdx @@ -18,7 +18,7 @@ Met dit gereedschap kun je hoogtegegevens toevoegen aan sporen en [interessante -Elevation data is provided by MapTiler. -You can learn more about its origin and accuracy in the documentation. +Hoogtegegevens worden verstrekt door MapTiler. +Je kunt meer leren over de oorsprong en nauwkeurigheid in de documentatie. diff --git a/website/src/lib/docs/no/menu/view.mdx b/website/src/lib/docs/no/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/no/menu/view.mdx +++ b/website/src/lib/docs/no/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/no/toolbar/clean.mdx b/website/src/lib/docs/no/toolbar/clean.mdx index 5b98149fb..345b87506 100644 --- a/website/src/lib/docs/no/toolbar/clean.mdx +++ b/website/src/lib/docs/no/toolbar/clean.mdx @@ -1,5 +1,5 @@ --- -title: Clean +title: Rens --- @@ -47,3 +47,8 @@ Włącza lub wychodzi z widoku mapy 3D. Aby kontrolować orientację i pochylenie mapy, możesz również przeciągnąć mapę przytrzymując Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/pt-BR/menu/view.mdx b/website/src/lib/docs/pt-BR/menu/view.mdx index 653ee487f..53fb74c54 100644 --- a/website/src/lib/docs/pt-BR/menu/view.mdx +++ b/website/src/lib/docs/pt-BR/menu/view.mdx @@ -3,7 +3,7 @@ title: Ver opções --- @@ -47,3 +47,8 @@ Entrar ou sair da visualização do mapa 3D. Para controlar a orientação e a inclinação do mapa, você também pode arrastar o mapa enquanto segura Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/pt/menu/view.mdx b/website/src/lib/docs/pt/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/pt/menu/view.mdx +++ b/website/src/lib/docs/pt/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/ro/menu/view.mdx b/website/src/lib/docs/ro/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/ro/menu/view.mdx +++ b/website/src/lib/docs/ro/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/ru/files-and-stats.mdx b/website/src/lib/docs/ru/files-and-stats.mdx index 0e7dec249..3b0ea77c7 100644 --- a/website/src/lib/docs/ru/files-and-stats.mdx +++ b/website/src/lib/docs/ru/files-and-stats.mdx @@ -47,11 +47,11 @@ title: Файлы и статистика Щелкнув правой кнопкой мыши на вкладке файла, вы можете получить доступ к тем же действиям, что и в [меню редактирования](./menu/edit). -### Tree layout +### Древовидное представление -As mentioned in the [view options section](./menu/view), you can switch to a tree layout for the files list. -This layout is ideal for managing a large number of open files, as it organizes them into a vertical list on the right side of the map. -In addition, the file tree view enables you to inspect the [tracks, segments, and points of interest](./gpx) contained inside the files through collapsible sections. +Как указано в разделе [Варианты отображения](./menu/view), вы можете переключаться на древовидное представление для списка файлов. +Эта раскладка идеально подходит для управления большим количеством открытых файлов, так как она упорядочивает их в вертикальный список справа от карты. +Кроме того, древовидное представление файлов позволяет вам исследовать [треки, сегменты и точки интереса](./gpx) содержащиеся в файлах через выпадающие списки. Вы также можете применять [действия редактирования](./menu/edit) и [инструменты](./toolbar) к внутренним элементам файла. Кроме того, вы можете перетаскивать внутренние элементы, чтобы изменить их порядок, перемещать их в иерархии или даже в другой файл. @@ -98,12 +98,12 @@ In addition, the file tree view enables you to inspect the [tracks, segments, an />
-### Additional data +### Дополнительная информация -Using the button at the bottom-right of the elevation profile, you can optionally color the elevation profile by: +С помощью кнопки справа от профиля высоты можно добавить цветовое выделение профиля на основе: -- **slope** information computed from the elevation data, or -- **surface** or **category** data coming from OpenStreetMap's surface and highway tags. - This is only available for files created with **gpx.studio**. +- **угла наклона** информации, вычисленной на основе данных о высоте, или +- **поверхности** или **категории** - данных, полученных из меток Поверхность и Шоссе карт OpenStreetMap's. + Данная возможность доступна только для файлов, созданных в **gpx.studio**. -If your selection includes it, you can also visualize: **speed**, **heart rate**, **cadence**, **temperature** and **power** data on the elevation profile. +Если выбрана данная опция, вы также можете добавить визуализацию данных **Скорости**, **Пульса**, **Темпа**, **Температуры** и **Мощности** на профиле высоты. diff --git a/website/src/lib/docs/ru/menu/view.mdx b/website/src/lib/docs/ru/menu/view.mdx index 8471f72f9..476ac6057 100644 --- a/website/src/lib/docs/ru/menu/view.mdx +++ b/website/src/lib/docs/ru/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -18,7 +18,7 @@ Hide the elevation profile to make room for the map, or show it to inspect the c ### File tree Toggle the tree layout for the [file list](../files-and-stats). -This layout is ideal for managing a large number of open files, as it organizes them into a vertical list on the right side of the map. +Эта раскладка идеально подходит для управления большим количеством открытых файлов, так как она упорядочивает их в вертикальный список справа от карты. In addition, the file tree view enables you to inspect the [tracks, segments, and points of interest](../gpx) contained inside the files through collapsible sections. ### Switch to previous basemap @@ -47,3 +47,8 @@ Enter or exit the 3D map view. Чтобы управлять ориентацией и наклоном карты, вы также можете перетаскивать карту, удерживая Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/sr/faq.mdx b/website/src/lib/docs/sr/faq.mdx index 5975d0fc3..bd18c7ac3 100644 --- a/website/src/lib/docs/sr/faq.mdx +++ b/website/src/lib/docs/sr/faq.mdx @@ -1,5 +1,5 @@ --- -title: FAQ +title: Česta pitanja --- # { title } -This menu provides options to rearrange the interface and the map view. +Ovaj meni pruža opcije za promenu rasporeda interfejsa i prikaza mape. -### Elevation profile +### Visinski profil -Hide the elevation profile to make room for the map, or show it to inspect the current selection. +Sakrijte profil nadmorske visine da biste napravili mesta za mapu ili ga prikažite da biste pregledali trenutni izbor. -### File tree +### Stablo datoteka -Toggle the tree layout for the [file list](../files-and-stats). +Uključi/isključi raspored stabla za [listu datoteka](../files-and-stats). Ovaj raspored je idealan za upravljanje velikim brojem otvorenih datoteka, jer ih organizuje u vertikalnu listu na desnoj strani mape. -In addition, the file tree view enables you to inspect the [tracks, segments, and points of interest](../gpx) contained inside the files through collapsible sections. +Pored toga, prikaz stabla datoteka vam omogućava da pregledate [trase, segmente i tačke interesovanja](../gpx) sadržane unutar datoteka putem sklopivih odeljaka. -### Switch to previous basemap +### Vrati prethodnu osnovnu mapu -Change the basemap to the one previously selected through the [map layer control](../map-controls). +Promenite osnovnu mapu na onu koja je prethodno izabrana pomoću [kontrole sloja mape](../map-controls). -### Toggle overlays +### Uključi/isključi preklapanja -Toggle the visibility of the map overlays selected through the [map layer control](../map-controls). +Uključite/isključite vidljivost slojeva mape izabranih pomoću [kontrole sloja mape](../map-controls). -### Distance markers +### Označivači udaljenosti -Toggle the visibility of distance markers on the map. -They are displayed for the current selection, like the [elevation profile](../files-and-stats). +Uključite/isključite vidljivost markera udaljenosti na mapi. +Prikazuju se za trenutni izbor, kao što je [profil nadmorske visine](../datoteke-i-statistika). -### Direction arrows +### Strelice za smer -Toggle the visibility of direction arrows on the map. +Uključite/isključite vidljivost strelica za smer na mapi. -### Toggle 3D +### Uključi/isključi 3D -Enter or exit the 3D map view. +Uđite u 3D prikaz mape ili ga zatvorite. -To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. +Da biste kontrolisali orijentaciju i nagib mape, možete je prevlačiti dok držite pritisnut taster Ctrl. + +### Ceo ekran + +Uđite u režim celog ekrana ili ga izbacite. +Takođe možete pritisnuti F11 da biste prebacili ili Escape da biste izašli. diff --git a/website/src/lib/docs/sr/toolbar.mdx b/website/src/lib/docs/sr/toolbar.mdx index 47ed10300..769fd9d16 100644 --- a/website/src/lib/docs/sr/toolbar.mdx +++ b/website/src/lib/docs/sr/toolbar.mdx @@ -18,8 +18,8 @@ title: Traka sa alatkama # { 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. +Traka sa alatkama se nalazi na levoj strani mape i predstavlja srce aplikacije, jer omogućava pristup glavnim funkcijama **gpx.studio**. +Svaki alat je predstavljen ikonom i može se aktivirati klikom na nju.
@@ -27,6 +27,6 @@ Each tool is represented by an icon and can be activated by clicking on it.
-As with [edit actions](./menu/edit), most tools can be applied to multiple files at once and to [inner tracks and segments](./gpx). +Kao i kod [akcija uređivanja](./menu/edit), većina alata se može primeniti na više datoteka odjednom i na [unutrašnje tragove i segmente](./gpx). -The next sections describe each tool in detail. +Sledeći odeljci detaljno opisuju svaki alat. diff --git a/website/src/lib/docs/sr/toolbar/clean.mdx b/website/src/lib/docs/sr/toolbar/clean.mdx index 5b98149fb..fb1eb8592 100644 --- a/website/src/lib/docs/sr/toolbar/clean.mdx +++ b/website/src/lib/docs/sr/toolbar/clean.mdx @@ -1,5 +1,5 @@ --- -title: Clean +title: Očisti --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/th/menu/view.mdx b/website/src/lib/docs/th/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/th/menu/view.mdx +++ b/website/src/lib/docs/th/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/tr/menu/view.mdx b/website/src/lib/docs/tr/menu/view.mdx index 878c763d4..e776b8a53 100644 --- a/website/src/lib/docs/tr/menu/view.mdx +++ b/website/src/lib/docs/tr/menu/view.mdx @@ -3,7 +3,7 @@ title: Görünüm seçenekleri --- @@ -47,3 +47,8 @@ Yön işaretlerinin haritada görünürlülüğünü değiştir. Haritanın oryantasyonunu ve eğimini Ctrl basılı tutarken sürükleyerek de yapabilirsiniz. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/uk/menu/view.mdx b/website/src/lib/docs/uk/menu/view.mdx index b08abb195..b946d6c7b 100644 --- a/website/src/lib/docs/uk/menu/view.mdx +++ b/website/src/lib/docs/uk/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/vi/menu/view.mdx b/website/src/lib/docs/vi/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/vi/menu/view.mdx +++ b/website/src/lib/docs/vi/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/zh-HK/menu/view.mdx b/website/src/lib/docs/zh-HK/menu/view.mdx index 84bc48ed1..a3a5e7061 100644 --- a/website/src/lib/docs/zh-HK/menu/view.mdx +++ b/website/src/lib/docs/zh-HK/menu/view.mdx @@ -3,7 +3,7 @@ title: View options --- @@ -47,3 +47,8 @@ Enter or exit the 3D map view. To control the orientation and tilt of the map, you can also drag the map while holding Ctrl. + +### Full screen + +Enter or exit full screen mode. +You can also press F11 to toggle, or Escape to exit. diff --git a/website/src/lib/docs/zh/map-controls.mdx b/website/src/lib/docs/zh/map-controls.mdx index 3438b26d3..7d7a2c2b9 100644 --- a/website/src/lib/docs/zh/map-controls.mdx +++ b/website/src/lib/docs/zh/map-controls.mdx @@ -69,4 +69,4 @@ Hover over the map to show the WMTS, WMS, or MapLibre style JSON URLs. +本站还支持通过添加 WMTS, WMS, or MapLibre JSON 链接的方式来自定义底图和叠加层。 diff --git a/website/src/lib/docs/zh/menu/view.mdx b/website/src/lib/docs/zh/menu/view.mdx index 954976b91..465bde9f8 100644 --- a/website/src/lib/docs/zh/menu/view.mdx +++ b/website/src/lib/docs/zh/menu/view.mdx @@ -3,7 +3,7 @@ title: 显示 --- @@ -47,3 +47,8 @@ title: 显示 也可在按住 Ctrl 的同时用鼠标拖拽地图实现此功能。 + +### 全屏 + +进入或退出全屏模式。 +你也可以按 F11 来切换,也可以按 Escape 来退出。 diff --git a/website/src/locales/be.json b/website/src/locales/be.json index eba2ab292..af2c8bc41 100644 --- a/website/src/locales/be.json +++ b/website/src/locales/be.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Налады", "distance_units": "Адзінкі вымярэння адлегласці", "metric": "Метрычная", diff --git a/website/src/locales/ca.json b/website/src/locales/ca.json index 2cb12c83c..b4ff3fd59 100644 --- a/website/src/locales/ca.json +++ b/website/src/locales/ca.json @@ -36,6 +36,7 @@ "switch_basemap": "Canviar al mapa base anterior", "toggle_overlays": "Intercanvia capes", "toggle_3d": "Canvia a 3D", + "fullscreen": "Full screen", "settings": "Configuració", "distance_units": "Unitats de distancia", "metric": "Mètric", diff --git a/website/src/locales/cs.json b/website/src/locales/cs.json index 6ac4ae07e..e0173134e 100644 --- a/website/src/locales/cs.json +++ b/website/src/locales/cs.json @@ -36,6 +36,7 @@ "switch_basemap": "Přepnout na předchozí podkladovou mapu", "toggle_overlays": "Přepnout překryv", "toggle_3d": "Přepnout 3D", + "fullscreen": "Full screen", "settings": "Nastavení", "distance_units": "Jednotky vzdálenosti", "metric": "Metrické", diff --git a/website/src/locales/da.json b/website/src/locales/da.json index 921dcf332..46928ad64 100644 --- a/website/src/locales/da.json +++ b/website/src/locales/da.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Distance units", "metric": "Metric", diff --git a/website/src/locales/de.json b/website/src/locales/de.json index ac60058c0..1fae4f78c 100644 --- a/website/src/locales/de.json +++ b/website/src/locales/de.json @@ -36,6 +36,7 @@ "switch_basemap": "Zur vorherigen Basemap wechseln", "toggle_overlays": "Overlay umschalten", "toggle_3d": "3D umschalten", + "fullscreen": "Full screen", "settings": "Einstellungen", "distance_units": "Entfernungseinheiten", "metric": "Metrisch", diff --git a/website/src/locales/el.json b/website/src/locales/el.json index 1f2d38da0..7a5867ccb 100644 --- a/website/src/locales/el.json +++ b/website/src/locales/el.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Μονάδες απόστασης", "metric": "Μονάδες Μέτρησης", diff --git a/website/src/locales/en.json b/website/src/locales/en.json index a988f608d..a49f4f8d6 100644 --- a/website/src/locales/en.json +++ b/website/src/locales/en.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Distance units", "metric": "Metric", diff --git a/website/src/locales/es.json b/website/src/locales/es.json index b664bc166..ccb633ab3 100644 --- a/website/src/locales/es.json +++ b/website/src/locales/es.json @@ -36,6 +36,7 @@ "switch_basemap": "Cambiar al mapa base anterior", "toggle_overlays": "Alternar capas", "toggle_3d": "Alternar 3D", + "fullscreen": "Pantalla completa", "settings": "Configuración", "distance_units": "Unidades de distancia", "metric": "Métrico", diff --git a/website/src/locales/eu.json b/website/src/locales/eu.json index c66dd0c6d..f72282498 100644 --- a/website/src/locales/eu.json +++ b/website/src/locales/eu.json @@ -36,6 +36,7 @@ "switch_basemap": "Aldatu aurreko mapa erabiltzera", "toggle_overlays": "Txandakatu geruzak", "toggle_3d": "Txandakatu 3D", + "fullscreen": "Full screen", "settings": "Ezarpenak", "distance_units": "Distantzia unitateak", "metric": "Metrikoa", diff --git a/website/src/locales/fi.json b/website/src/locales/fi.json index 34df75b8a..ee2d16a79 100644 --- a/website/src/locales/fi.json +++ b/website/src/locales/fi.json @@ -36,6 +36,7 @@ "switch_basemap": "Vaihda edelliseen taustakarttaan", "toggle_overlays": "Peiteaineistot päälle/pois", "toggle_3d": "3D päälle/pois", + "fullscreen": "Full screen", "settings": "Asetukset", "distance_units": "Mittayksikkö", "metric": "Metri", diff --git a/website/src/locales/fr.json b/website/src/locales/fr.json index eeb645076..31367368f 100644 --- a/website/src/locales/fr.json +++ b/website/src/locales/fr.json @@ -36,6 +36,7 @@ "switch_basemap": "Basculer au fond de carte précédent", "toggle_overlays": "Afficher/cacher les surcouches", "toggle_3d": "Activer/désactiver la 3D", + "fullscreen": "Plein écran", "settings": "Réglages", "distance_units": "Unités de distance", "metric": "Métrique", diff --git a/website/src/locales/he.json b/website/src/locales/he.json index 30b52525b..fdc668222 100644 --- a/website/src/locales/he.json +++ b/website/src/locales/he.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "הגדרות", "distance_units": "יחידות מרחק", "metric": "מטרי", diff --git a/website/src/locales/hu.json b/website/src/locales/hu.json index 3f738542e..bc4df4437 100644 --- a/website/src/locales/hu.json +++ b/website/src/locales/hu.json @@ -36,6 +36,7 @@ "switch_basemap": "Váltás az előző alaptérképre", "toggle_overlays": "Átfedés váltása", "toggle_3d": "3D nézet bekapcsolása", + "fullscreen": "Full screen", "settings": "Beállítások", "distance_units": "Távolságmérés mértékegységei", "metric": "Metrikus", diff --git a/website/src/locales/id.json b/website/src/locales/id.json index a69139e10..3e0b11022 100644 --- a/website/src/locales/id.json +++ b/website/src/locales/id.json @@ -28,7 +28,7 @@ "undo": "Batalkan", "redo": "Ulangi", "delete": "Hapus", - "delete_all": "Delete all", + "delete_all": "Hapus Semua", "select_all": "Pilih Semua", "view": "Lihat", "elevation_profile": "Profil ketinggian", @@ -36,6 +36,7 @@ "switch_basemap": "Beralih ke peta dasar sebelumnya", "toggle_overlays": "Beralih lapisan", "toggle_3d": "Beralih 3D", + "fullscreen": "Layar Penuh", "settings": "Pengaturan", "distance_units": "Satuan jarak", "metric": "Metrik", @@ -63,7 +64,7 @@ "ctrl": "Ctrl", "click": "Klik", "drag": "Seret", - "right_click_drag": "Right-click drag", + "right_click_drag": "Klik kanan geser", "metadata": { "button": "Info...", "name": "Nama", @@ -81,7 +82,7 @@ "center": "Tengah", "open_in": "Buka di", "copy_coordinates": "Salin koordinat", - "edit_osm": "Edit in OpenStreetMap" + "edit_osm": "Ubah di OpenStreetMap" }, "toolbar": { "routing": { @@ -191,8 +192,8 @@ "from": "Titik awal terlalu jauh dari jalan terdekat", "via": "Titik via terlalu jauh dari jalan terdekat", "to": "Titik akhir terlalu jauh dari jalan terdekat", - "distance": "The end point is too far from the start point", - "connection": "No connection found between the points", + "distance": "Titik akhir terlalu jauh dari jalan terdekat", + "connection": "Tidak ditemukan koneksi antar titik-titik tersebut", "timeout": "Perhitungan rute memakan waktu terlalu lama, coba tambahkan titik-titik yang lebih dekat satu sama lain" } }, @@ -234,7 +235,7 @@ }, "elevation": { "button": "Minta data elevasi", - "help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from MapTiler.", + "help": "Meminta data elevasi akan menghapus data elevasi yang ada, jika ada, dan menggantinya dengan data dari MapTiler.", "help_no_selection": "Pilih item file untuk meminta data elevasi." }, "waypoint": { @@ -276,7 +277,7 @@ "new": "Lapisan kustom baru", "edit": "Edit lapisan kustom", "urls": "URL", - "url_placeholder": "WMTS, WMS or MapLibre style JSON", + "url_placeholder": "WMTS, WMS, atau JSON style MapLibre", "max_zoom": "Zoom maksimum", "layer_type": "Tipe lapisan", "basemap": "Peta dasar", @@ -285,7 +286,7 @@ "update": "Perbarui lapisan" }, "opacity": "Opasitas Overlay", - "terrain": "Terrain source", + "terrain": "Sumber medan", "label": { "basemaps": "Peta dasar", "overlays": "Overlay", @@ -362,7 +363,7 @@ "water": "Air", "shower": "Mandi", "shelter": "Penampungan", - "cemetery": "Cemetery", + "cemetery": "Pemakaman", "motorized": "Mobil dan Motor", "fuel-station": "Stasiun bahan bakar", "parking": "Parkir", @@ -476,55 +477,55 @@ "shelter": "Penampungan", "shopping_center": "Pusat Perbelanjaan", "shower": "Mandi", - "summit": "Summit", - "telephone": "Telephone", - "tunnel": "Tunnel", - "water_source": "Water Source" + "summit": "Puncak", + "telephone": "Telepon", + "tunnel": "Terowongan", + "water_source": "Sumber Air" } }, "homepage": { - "website": "Website", - "home": "Home", - "app": "App", - "contact": "Contact", + "website": "Situs Web", + "home": "Beranda", + "app": "Aplikasi", + "contact": "Kontak", "reddit": "Reddit", "facebook": "Facebook", "github": "GitHub", "crowdin": "Crowdin", "email": "Email", - "contribute": "Contribute", - "supported_by": "supported by", - "features": "Features", - "route_planning": "Route planning", - "route_planning_description": "An intuitive interface to create itineraries tailored to each sport, based on OpenStreetMap data.", + "contribute": "Kontribusi", + "supported_by": "didukung oleh", + "features": "Fitur", + "route_planning": "Perencanaan rute", + "route_planning_description": "Antarmuka intuitif untuk membuat rencana perjalanan yang disesuaikan dengan setiap olahraga, berdasarkan data OpenStreetMap.", "file_processing": "Pengolahan file lanjutan", - "file_processing_description": "A suite of tools for performing all common file processing tasks, and which can be applied to multiple files at once.", - "maps": "Global and local maps", - "maps_description": "A large collection of basemaps, overlays and points of interest to help you craft your next outdoor adventure, or visualize your latest achievement.", - "data_visualization": "Data visualization", - "data_visualization_description": "An interactive elevation profile with detailed statistics to analyze recorded activities and future objectives.", - "philosophy": "Philosophy", - "foss": "Free, ad-free and open source", - "foss_description": "The website is free to use, without ads, and the source code is publicly available on GitHub.", - "privacy": "Privacy-friendly", - "privacy_description": "Your GPX files never leave your browser. No tracking, no data collection.", - "community": "Made possible by the community", - "community_description": "gpx.studio has an amazing community that has covered its costs through donations for years, while shaping the project through feature suggestions, bug reports, and translations into many languages.", - "support_button": "Support gpx.studio on Open Collective", - "translate_button": "Help translate the website on Crowdin" + "file_processing_description": "Seperangkat alat untuk melakukan semua tugas pemrosesan file umum, dan yang dapat diterapkan pada banyak file sekaligus.", + "maps": "Peta global dan lokal", + "maps_description": "Koleksi besar peta dasar, lapisan peta, dan tempat menarik untuk membantu Anda merencanakan petualangan luar ruangan berikutnya, atau memvisualisasikan pencapaian terbaru Anda.", + "data_visualization": "Visualisasi data", + "data_visualization_description": "Profil ketinggian interaktif dengan statistik terperinci untuk menganalisis aktivitas yang tercatat dan tujuan di masa mendatang.", + "philosophy": "Filosofi", + "foss": "Gratis, tanpa iklan, dan open source", + "foss_description": "Situs web ini gratis untuk digunakan, tanpa iklan, dan kode sumbernya tersedia untuk umum di GitHub.", + "privacy": "Ramah privasi", + "privacy_description": "File GPX Anda tidak pernah meninggalkan browser Anda. Tidak ada pelacakan, tidak ada pengumpulan data.", + "community": "Terwujud berkat komunitas", + "community_description": "gpx.studio memiliki komunitas luar biasa yang telah menutupi biaya operasionalnya melalui donasi selama bertahun-tahun, sekaligus membentuk proyek ini melalui saran fitur, laporan bug, dan terjemahan ke dalam banyak bahasa.", + "support_button": "Dukung gpx.studio di Open Collective", + "translate_button": "Bantu menerjemahkan situs web di Crowdin" }, "docs": { - "translate": "Improve the translation on Crowdin", - "answer_not_found": "Did not find what you were looking for?", - "ask_on_reddit": "Ask the community on Reddit", + "translate": "Perbaiki kualitas terjemahan di Crowdin", + "answer_not_found": "Tidak menemukan apa yang Anda cari?", + "ask_on_reddit": "Tanyakan kepada komunitas di Reddit", "search": { - "search": "Search", - "clear": "Clear", - "cancel": "Cancel", - "recent": "Recent searches", - "no_recent": "No recent searches", - "save": "Save this search", - "remove": "Remove this search from history", + "search": "Cari", + "clear": "Bersihkan", + "cancel": "Batalkan", + "recent": "Pencarian terakhir", + "no_recent": "Tidak Ada Pencarian Baru", + "save": "Simpan pencarian ini", + "remove": "Hapus pencarian ini dari riwayat", "favorites": "Favorites", "remove_favorite": "Remove this search from favorites", "to_select": "to select", diff --git a/website/src/locales/it.json b/website/src/locales/it.json index 5194de43c..17f8e8038 100644 --- a/website/src/locales/it.json +++ b/website/src/locales/it.json @@ -36,6 +36,7 @@ "switch_basemap": "Passa alla mappa di base precedente", "toggle_overlays": "Attiva / disattiva le sovrapposizioni", "toggle_3d": "Attiva / disattiva 3D", + "fullscreen": "Full screen", "settings": "Impostazioni", "distance_units": "Unità distanza", "metric": "Metrico", diff --git a/website/src/locales/ko.json b/website/src/locales/ko.json index 6cb694e6b..2d7e9b3be 100644 --- a/website/src/locales/ko.json +++ b/website/src/locales/ko.json @@ -36,6 +36,7 @@ "switch_basemap": "이전 배경 지도로 전환", "toggle_overlays": "오버레이 전환", "toggle_3d": "3D 전환", + "fullscreen": "Full screen", "settings": "설정", "distance_units": "거리 단위", "metric": "미터법", diff --git a/website/src/locales/lt.json b/website/src/locales/lt.json index 6c3c66abf..83c7e7d04 100644 --- a/website/src/locales/lt.json +++ b/website/src/locales/lt.json @@ -36,6 +36,7 @@ "switch_basemap": "Grįžti į ankstesnį bazinį žemėlapį", "toggle_overlays": "Kaitalioti sluoksnius", "toggle_3d": "Kaitalioti rodymą 3D", + "fullscreen": "Full screen", "settings": "Nustatymai", "distance_units": "Atstumo vienetai", "metric": "Metriniai", diff --git a/website/src/locales/lv.json b/website/src/locales/lv.json index 42ede18e2..a37d38b5b 100644 --- a/website/src/locales/lv.json +++ b/website/src/locales/lv.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Distance units", "metric": "Metric", diff --git a/website/src/locales/nl.json b/website/src/locales/nl.json index 9c6dccb60..bd159629a 100644 --- a/website/src/locales/nl.json +++ b/website/src/locales/nl.json @@ -36,6 +36,7 @@ "switch_basemap": "Schakel over naar vorige basiskaart", "toggle_overlays": "Schermlagen in- of uitschakelen", "toggle_3d": "3D aan/uit", + "fullscreen": "Volledig scherm", "settings": "Instellingen", "distance_units": "Afstandseenheden", "metric": "Metrische eenheden", @@ -400,7 +401,7 @@ "elevation_gain_loss": "Stijging en daling", "temperature": "Temperatuur", "speed": "Snelheid", - "pace": "Snelheid", + "pace": "Tempo", "heartrate": "Hartslag", "cadence": "Cadans", "power": "Kracht", diff --git a/website/src/locales/no.json b/website/src/locales/no.json index 3213da794..5bfc044dc 100644 --- a/website/src/locales/no.json +++ b/website/src/locales/no.json @@ -36,6 +36,7 @@ "switch_basemap": "Bytt til forrige basekart", "toggle_overlays": "Vis eller skjul kartlag", "toggle_3d": "Skru av/på 3D", + "fullscreen": "Fullskjerm", "settings": "Innstillinger", "distance_units": "Avstandsenhet", "metric": "Metrisk", @@ -63,7 +64,7 @@ "ctrl": "Ctrl", "click": "Klikk", "drag": "Dra", - "right_click_drag": "Right-click drag", + "right_click_drag": "Høyreklikk dra", "metadata": { "button": "Informasjon...", "name": "Navn", @@ -191,8 +192,8 @@ "from": "Startpunktet er for langt unna nærmeste vei", "via": "Via-punktet er for langt fra nærmeste vei", "to": "Sluttpunktet er for langt unna nærmeste vei", - "distance": "The end point is too far from the start point", - "connection": "No connection found between the points", + "distance": "Sluttpunktet er for langt fra startpunktet", + "connection": "Ingen forbindelse mellom punktene funnet", "timeout": "Ruteberegning tok for lang tid, prøv å legge til flere punkter" } }, diff --git a/website/src/locales/pl.json b/website/src/locales/pl.json index 4edb6d568..f62ee7560 100644 --- a/website/src/locales/pl.json +++ b/website/src/locales/pl.json @@ -36,6 +36,7 @@ "switch_basemap": "Przełącz na poprzednią mapę", "toggle_overlays": "Przełącz nakładki", "toggle_3d": "Przełącz widok 3D", + "fullscreen": "Full screen", "settings": "Ustawienia", "distance_units": "Jednostki odległości", "metric": "Metryczne", diff --git a/website/src/locales/pt-BR.json b/website/src/locales/pt-BR.json index c70c79bff..cd777708b 100644 --- a/website/src/locales/pt-BR.json +++ b/website/src/locales/pt-BR.json @@ -36,6 +36,7 @@ "switch_basemap": "Trocar para mapa base anterior", "toggle_overlays": "Alternar sobreposições", "toggle_3d": "Alternar 3D", + "fullscreen": "Full screen", "settings": "Configurações", "distance_units": "Unidades de distância", "metric": "Métrico", diff --git a/website/src/locales/pt.json b/website/src/locales/pt.json index 2f696e105..619264344 100644 --- a/website/src/locales/pt.json +++ b/website/src/locales/pt.json @@ -36,6 +36,7 @@ "switch_basemap": "Trocar para mapa base anterior", "toggle_overlays": "Alternar sobreposições", "toggle_3d": "Alternar 3D", + "fullscreen": "Full screen", "settings": "Configurações", "distance_units": "Unidades de distância", "metric": "Métrico", diff --git a/website/src/locales/ro.json b/website/src/locales/ro.json index e92dd4c99..19f8cb030 100644 --- a/website/src/locales/ro.json +++ b/website/src/locales/ro.json @@ -36,6 +36,7 @@ "switch_basemap": "Comutați la harta de bază anterioară", "toggle_overlays": "Comută suprapunerile", "toggle_3d": "Comută 3D", + "fullscreen": "Full screen", "settings": "Setări", "distance_units": "Unități de distanță", "metric": "Metric", diff --git a/website/src/locales/ru.json b/website/src/locales/ru.json index b655b2dce..0d42fd75e 100644 --- a/website/src/locales/ru.json +++ b/website/src/locales/ru.json @@ -28,7 +28,7 @@ "undo": "Отменить", "redo": "Повторить", "delete": "Удалить", - "delete_all": "Delete all", + "delete_all": "Удалить всё", "select_all": "Выбрать все", "view": "Вид", "elevation_profile": "Профиль рельефа", @@ -36,6 +36,7 @@ "switch_basemap": "Переключиться на предыдущую базовую карту", "toggle_overlays": "Переключить слои", "toggle_3d": "Включить 3D", + "fullscreen": "Полный экран", "settings": "Настройки", "distance_units": "Единицы измерения расстояния", "metric": "Метрические", @@ -63,7 +64,7 @@ "ctrl": "Ctrl", "click": "Клик", "drag": "Перетащить", - "right_click_drag": "Right-click drag", + "right_click_drag": "Перетаскивание правой кнопкой мыши", "metadata": { "button": "Информация...", "name": "Название", @@ -81,7 +82,7 @@ "center": "По центру", "open_in": "Открыть в", "copy_coordinates": "Скопировать координаты", - "edit_osm": "Edit in OpenStreetMap" + "edit_osm": "Редактировать в OpenStreetMap" }, "toolbar": { "routing": { @@ -191,8 +192,8 @@ "from": "Начальная точка слишком далеко от ближайшей дороги", "via": "Точка маршрута слишком далеко от ближайшей дороги", "to": "Конечная точка слишком далеко от ближайшей дороги", - "distance": "The end point is too far from the start point", - "connection": "No connection found between the points", + "distance": "Конечная точка находится слишком далеко от начальной", + "connection": "Связь между точками не обнаружена", "timeout": "Расчет маршрута занял слишком много времени, попробуйте добавить точки ближе" } }, @@ -234,7 +235,7 @@ }, "elevation": { "button": "Запросить данные о высоте", - "help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from MapTiler.", + "help": "Запрос данных о высотах приведет к удалению существующих данных о высотах, если таковые имеются, и замене их данными из MapTiler.", "help_no_selection": "Выберите файл для запроса данных о высоте." }, "waypoint": { @@ -276,7 +277,7 @@ "new": "Новый пользовательский слой", "edit": "Редактировать пользовательский слой", "urls": "URL-адрес(а)", - "url_placeholder": "WMTS, WMS or MapLibre style JSON", + "url_placeholder": "WMTS, WMS или MapLibre стиль JSON", "max_zoom": "Максимальное приближение", "layer_type": "Тип слоя", "basemap": "Основная карта", @@ -285,7 +286,7 @@ "update": "Обновить слой" }, "opacity": "Прозрачность наложения", - "terrain": "Terrain source", + "terrain": "Источник рельефа местности", "label": { "basemaps": "Основные карты", "overlays": "Наложения", @@ -332,7 +333,7 @@ "usgs": "USGS", "bikerouterGravel": "bikerouter.de Gravel", "cyclOSMlite": "CyclOSM Lite", - "mapterhornHillshade": "Mapterhorn Hillshade", + "mapterhornHillshade": "Mapterhorn тень холма", "openRailwayMap": "OpenRailwayMap", "swisstopoSlope": "swisstopo Slope", "swisstopoHiking": "swisstopo Hiking", @@ -362,7 +363,7 @@ "water": "Вода", "shower": "Душ", "shelter": "Укрытие", - "cemetery": "Cemetery", + "cemetery": "Кладбище", "motorized": "Автомобили и мотоциклы", "fuel-station": "Заправочная станция", "parking": "Парковка", diff --git a/website/src/locales/sr.json b/website/src/locales/sr.json index ca89da647..63bc2460c 100644 --- a/website/src/locales/sr.json +++ b/website/src/locales/sr.json @@ -28,7 +28,7 @@ "undo": "Poništi", "redo": "Vrati poništeno", "delete": "Obriši", - "delete_all": "Delete all", + "delete_all": "Izbriši sve", "select_all": "Izaberi sve", "view": "Pogledaj", "elevation_profile": "Visinski profil", @@ -36,6 +36,7 @@ "switch_basemap": "Vrati prethodnu osnovnu mapu", "toggle_overlays": "Sakrij/Prikaži preklapanja", "toggle_3d": "Sakrij/Prikaži 3D", + "fullscreen": "Ceo ekran", "settings": "Podešavanja", "distance_units": "Jedinica razdaljine", "metric": "Metričke", @@ -63,7 +64,7 @@ "ctrl": "Ctrl", "click": "Klik", "drag": "Prevucite", - "right_click_drag": "Right-click drag", + "right_click_drag": "Prevlačenje desnim klikom", "metadata": { "button": "Informacije...", "name": "Naziv", @@ -81,7 +82,7 @@ "center": "Centar", "open_in": "Otvorite u", "copy_coordinates": "Kopiraj koordinate", - "edit_osm": "Edit in OpenStreetMap" + "edit_osm": "Uredi u OpenStreetMap-u" }, "toolbar": { "routing": { @@ -191,8 +192,8 @@ "from": "Početna tačka je predaleko od najbližeg puta", "via": "Putna tačka je predaleko od najbližeg puta", "to": "Krajnja tačka je predaleko od najbližeg puta", - "distance": "The end point is too far from the start point", - "connection": "No connection found between the points", + "distance": "Krajnja tačka je predaleko od najbližeg puta", + "connection": "Nije pronađena veza između tačaka", "timeout": "Računanje rute je trajalo predugo, pokušajte da dodate putne tačke bliže jednu drugoj" } }, @@ -234,7 +235,7 @@ }, "elevation": { "button": "Zatražite podatke o nadmorskoj visini", - "help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from MapTiler.", + "help": "Zahtevanje podataka o nadmorskoj visini će obrisati postojeće podatke o nadmorskoj visini, ako ih ima, i zameniti ih podacima iz MapTiler-a.", "help_no_selection": "Izaberite stavku datoteke da biste zatražili podatke o nadmorskoj visini." }, "waypoint": { @@ -276,7 +277,7 @@ "new": "Novi prilagođeni sloj", "edit": "Uredite prilagođeni sloj", "urls": "URL(s)", - "url_placeholder": "WMTS, WMS or MapLibre style JSON", + "url_placeholder": "JSON u stilu WMTS, WMS ili MapLibre", "max_zoom": "Maksimalno uvećanje", "layer_type": "Tip sloja", "basemap": "Osnovna mapa", @@ -285,7 +286,7 @@ "update": "Ažurirajte sloj" }, "opacity": "Providnost preklapanja", - "terrain": "Terrain source", + "terrain": "Izvor terena", "label": { "basemaps": "Osnovne mape", "overlays": "Preklapanja", @@ -332,7 +333,7 @@ "usgs": "USGS", "bikerouterGravel": "bikerouter.de Gravel", "cyclOSMlite": "CyclOSM Lite", - "mapterhornHillshade": "Mapterhorn Hillshade", + "mapterhornHillshade": "Mapterhorn Hilshejd", "openRailwayMap": "OpenRailwayMap", "swisstopoSlope": "swisstopo Slope", "swisstopoHiking": "swisstopo Hiking", @@ -362,7 +363,7 @@ "water": "Voda", "shower": "Tuš", "shelter": "Sklonište", - "cemetery": "Cemetery", + "cemetery": "Groblje", "motorized": "Automobili i motocikli", "fuel-station": "Benzinska stanica", "parking": "Parking", @@ -494,7 +495,7 @@ "email": "E-mail adresa", "contribute": "Doprinesi", "supported_by": "Podržan od strane", - "features": "Features", + "features": "Karakteristike", "route_planning": "Planiranje rute", "route_planning_description": "Intuitivan interfejs za kreiranje itinerera prilagođenih svakom sportu, na osnovu OpenStreetMap podataka.", "file_processing": "Napredno procesiranje datoteke", @@ -503,15 +504,15 @@ "maps_description": "Velika kolekcija osnovnih mapa, slojeva i tačaka interesovanja koje će vam pomoći da napravite sledeću avanturu na otvorenom ili da vizuelizujete svoje najnovije dostignuće.", "data_visualization": "Vizualizacija podataka", "data_visualization_description": "Interaktivni profil nadmorske visine sa detaljnom statistikom za analizu zabeleženih aktivnosti i budućih ciljeva.", - "philosophy": "Philosophy", - "foss": "Free, ad-free and open source", - "foss_description": "The website is free to use, without ads, and the source code is publicly available on GitHub.", - "privacy": "Privacy-friendly", - "privacy_description": "Your GPX files never leave your browser. No tracking, no data collection.", - "community": "Made possible by the community", - "community_description": "gpx.studio has an amazing community that has covered its costs through donations for years, while shaping the project through feature suggestions, bug reports, and translations into many languages.", - "support_button": "Support gpx.studio on Open Collective", - "translate_button": "Help translate the website on Crowdin" + "philosophy": "Filozofija", + "foss": "Besplatno, bez oglasa i otvorenog koda", + "foss_description": "Veb lokacija je besplatna za korišćenje, bez reklama, a izvorni kod je javno dostupan na GitHabu.", + "privacy": "Zaštita privatnosti", + "privacy_description": "Vaše GPX datoteke nikada ne napuštaju vaš pregledač. Nema praćenja, nema prikupljanja podataka.", + "community": "Omogućeno zahvaljujući zajednici", + "community_description": "gpx.studio ima neverovatnu zajednicu koja godinama pokriva svoje troškove donacijama, dok istovremeno oblikuje projekat kroz predloge funkcija, izveštaje o greškama i prevode na mnoge jezike.", + "support_button": "Podržite gpx.studio na Open Collective-u", + "translate_button": "Pomozite u prevodu veb stranice na Crowdin-u" }, "docs": { "translate": "Poboljšajte prevod na Crowdin-u", @@ -536,7 +537,7 @@ }, "embedding": { "title": "Napravi svoju mapu", - "maptiler_key": "MapTiler key (optional, only required for MapTiler maps)", + "maptiler_key": "Ključ MapTiler-a (opciono, potreban samo za MapTiler mape)", "file_urls": "URL-ovi datoteka (razdvojeni zarezima)", "drive_ids": "Id datoteke sa Google diska (razdvojeni zarezima)", "basemap": "Osnovna mapa", diff --git a/website/src/locales/sv.json b/website/src/locales/sv.json index a2ae35186..070269946 100644 --- a/website/src/locales/sv.json +++ b/website/src/locales/sv.json @@ -36,6 +36,7 @@ "switch_basemap": "Växla till föregående baskarta", "toggle_overlays": "Växla överlagring", "toggle_3d": "Växla 3D", + "fullscreen": "Full screen", "settings": "Inställningar", "distance_units": "Enhet för distans", "metric": "Metrisk", diff --git a/website/src/locales/th.json b/website/src/locales/th.json index f2e800d18..dc22ea690 100644 --- a/website/src/locales/th.json +++ b/website/src/locales/th.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Distance units", "metric": "Metric", diff --git a/website/src/locales/tr.json b/website/src/locales/tr.json index b130a5019..d2f2ca5f6 100644 --- a/website/src/locales/tr.json +++ b/website/src/locales/tr.json @@ -36,6 +36,7 @@ "switch_basemap": "Önceki temel haritaya geç", "toggle_overlays": "Katmanları Aç/Kapa", "toggle_3d": "3B'yi aç/kapat", + "fullscreen": "Full screen", "settings": "Ayarlar", "distance_units": "Mesafe birimleri", "metric": "Metrik", diff --git a/website/src/locales/uk.json b/website/src/locales/uk.json index 6450ce51d..97ea79733 100644 --- a/website/src/locales/uk.json +++ b/website/src/locales/uk.json @@ -36,6 +36,7 @@ "switch_basemap": "Перехід до попередньої базової карти", "toggle_overlays": "Перемикання накладок", "toggle_3d": "Перемикнути 3D", + "fullscreen": "Full screen", "settings": "Налаштування", "distance_units": "Одиниці виміру відстані", "metric": "Метричні", diff --git a/website/src/locales/vi.json b/website/src/locales/vi.json index 115abd732..6773126fb 100644 --- a/website/src/locales/vi.json +++ b/website/src/locales/vi.json @@ -36,6 +36,7 @@ "switch_basemap": "Quay lại bản đồ trước đó", "toggle_overlays": "Thay đổi lớp phủ", "toggle_3d": "Chuyển đổi 3D", + "fullscreen": "Full screen", "settings": "Cài đặt", "distance_units": "Đơn vị khoảng cách", "metric": "Hệ mét", diff --git a/website/src/locales/zh-HK.json b/website/src/locales/zh-HK.json index dec053ecf..0e44443a6 100644 --- a/website/src/locales/zh-HK.json +++ b/website/src/locales/zh-HK.json @@ -36,6 +36,7 @@ "switch_basemap": "Switch to previous basemap", "toggle_overlays": "Toggle overlays", "toggle_3d": "Toggle 3D", + "fullscreen": "Full screen", "settings": "Settings", "distance_units": "Distance units", "metric": "Metric", diff --git a/website/src/locales/zh.json b/website/src/locales/zh.json index e5f8652f1..7518e68ea 100644 --- a/website/src/locales/zh.json +++ b/website/src/locales/zh.json @@ -36,6 +36,7 @@ "switch_basemap": "切换到上一个底图", "toggle_overlays": "切换叠加层", "toggle_3d": "三维视图", + "fullscreen": "全屏", "settings": "设置", "distance_units": "距离单位", "metric": "公制",