Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UX changes and map layer visualization #12

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?

# Visual Studio stuff, generated files, run script
/.vs
/bin
/obj/Debug
/src/**/*.js*
/npm_run_serve.bat
39 changes: 39 additions & 0 deletions locales/cs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ menu:
view_options: Možnosti pohledu
hidden_nodes: Skryté uzly
layout: Nastavení layoutu
map_layers: Nastavení mapové vrstvy
load: Načíst ze souboru
save: Uložit do souboru
new_graph: Nový graf
Expand Down Expand Up @@ -174,6 +175,32 @@ view_options:
full: Vše
hide_text: Skrýt text
hide: Skrýt
map_layer:
title: Nastavení mapové vrstvy
standard:
title: Standardní (OpenStreetMap)
satellite:
title: Satelitní (MapBox)
close: Zavřít
map_configuration:
base_map:
name: Podkladová mapa
title: Vyberte podkladovou mapu pod graf
geo_iris:
name: Vlastnosti vrcholů pro polohu
title: Seznam všech vlastností se souřadnicemi. Vybrané budou zobrazeny na mapě
classes_for_positions:
name: Typy vrcholů k pozicování
title: Seznam všech typů vrcholů s vrcholy se souřadnicemi. Vybrané budou zobrazeny na mapě
no_position_nodes_style:
name: Vrcholy bez polohy
title: Jak se budou zobrazovat vrcholy bez pozice
hide: Skrýt
layout: Podle původního layoutu (not implemented yet)
aside: Zobrazit v pravém horním rohu (not implemented yet)
current_configuration:
name: Současná konfigurace
no_position_nodes: V grafu není žádný vrchol s informací o poloze
save_dialog:
title: Uložit graf?
text: >-
Expand Down Expand Up @@ -306,3 +333,15 @@ load_dialog:
cancel: Zrušit
any_data_value:
open_node: Zobrazit vrchol
button_tooltip:
zoom_in: Přiblížit
zoom_out: Oddálit
fit_to_graph: Výchozí zobrazení
continue_layout: Pokračovat v rozmísťování
default_layout: Původní rozložení
compact_enable: Kompaktní mód
compact_disable: Zrušit kompaktní mód
edge_style_enable: Původní styl hran
edge_style_disable: Zrušit styl hran
map_enable: Zobrazit graf na mapě
map_disable: Zrušit mapové zobrazení
42 changes: 42 additions & 0 deletions locales/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ menu:
view_options: View options
hidden_nodes: Hidden nodes
layout: Layout options
map_layers: Map layer options
load: Load graph
save: Save graph
new_graph: New graph
Expand Down Expand Up @@ -160,6 +161,34 @@ view_options:
hide_text: Hide text
hide: Hide

map_layer:
title: Map layer options
standard:
title: Standard (OpenStreetMap)
satellite:
title: Satellite (MapBox)
close: Close

map_configuration:
base_map:
name: Base map layer
title: Choose what base layer will be under graph
geo_iris:
name: Node properties for position
title: List of all properties with coordinates. Checked will be shown on the map
classes_for_positions:
name: Node classes to position
title: List of all classes with nodes with coordinates. Checked will be shown on the map
no_position_nodes_style:
name: Nodes without position
title: How nodes with no position will be shown
hide: Hide
layout: Layout by original layout (not implemented yet)
aside: Show in upper right edge (not implemented yet)
current_configuration:
name: Current configuration
no_position_nodes: There is no node with position to be shown on a map

save_dialog:
title: Save graph?
text: Would you like to save current graph to a local file on your computer? You would be able to access it later.
Expand Down Expand Up @@ -272,3 +301,16 @@ load_dialog:

any_data_value:
open_node: Show node

button_tooltip:
zoom_in: Zoom in
zoom_out: Zoom out
fit_to_graph: Fit to graph
continue_layout: Layout more
default_layout: Default layout
compact_enable: Compact mode
compact_disable: Disable compact mode
edge_style_enable: Default edge style
edge_style_disable: Disable edge style
map_enable: Show graph on map
map_disable: Disable map mode
Loading