diff --git a/out/main.js b/out/main.js index badd00e41c32cb16db5ca10bacb37b4521e7c003..7af8fed5a6feb7424f9016a22795b81ee8ab44a9 100644 --- a/out/main.js +++ b/out/main.js @@ -14862,7 +14862,7 @@ var $author$project$DungeonMap$dungeonMapView = function (model) { ]), _List_fromArray( [ - $elm$html$Html$text('Upload Map') + $elm$html$Html$text('Karte hochladen') ])), A2( $rundis$elm_bootstrap$Bootstrap$Button$button, @@ -14878,7 +14878,7 @@ var $author$project$DungeonMap$dungeonMapView = function (model) { ]), _List_fromArray( [ - $elm$html$Html$text('Clear Map') + $elm$html$Html$text('Karte leeren') ])) ])) ])), @@ -15049,7 +15049,7 @@ var $author$project$Main$view = function (model) { [$rundis$elm_bootstrap$Bootstrap$Utilities$Spacing$mt3]), _List_fromArray( [ - $elm$html$Html$text('Overview') + $elm$html$Html$text('Übersicht') ])), pane: A2( $rundis$elm_bootstrap$Bootstrap$Tab$pane, @@ -15068,7 +15068,7 @@ var $author$project$Main$view = function (model) { [$rundis$elm_bootstrap$Bootstrap$Utilities$Spacing$mt3]), _List_fromArray( [ - $elm$html$Html$text('Map') + $elm$html$Html$text('Karte') ])), pane: A2( $rundis$elm_bootstrap$Bootstrap$Tab$pane, diff --git a/src/DungeonMap.elm b/src/DungeonMap.elm index a77a72ebd06c7994525b6c9816c832f8b3a91ae8..eb7f0f3a25effbaf00b1068fc33b69e15b9b7a9b 100644 --- a/src/DungeonMap.elm +++ b/src/DungeonMap.elm @@ -43,11 +43,11 @@ dungeonMapView model = [ Button.button [ Button.attrs [ class "metalButton", style "height" "52px", style "margin-right" "2%" ] , Button.onClick Pick ] - [ text "Upload Map" ] + [ text "Karte hochladen" ] , Button.button [ Button.attrs [ class "metalButton", style "height" "52px" ] , Button.onClick ClearCharacterList ] - [ text "Clear Map" ] + [ text "Karte leeren" ] ] ] , Grid.row [ ] diff --git a/src/Main.elm b/src/Main.elm index 2d2f9e07c8a667be3a9a20a72a514adf952c9ed5..1c957a202f3f0b3c081be477fd58c641548baa57 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -312,14 +312,14 @@ view model = |> Tab.items [ Tab.item { id = "tabOverview" - , link = Tab.link [ Spacing.mt3 ] [ text "Overview" ] + , link = Tab.link [ Spacing.mt3 ] [ text "Übersicht" ] , pane = Tab.pane [] [ body model ] } , Tab.item { id = "tabMap" - , link = Tab.link [ Spacing.mt3 ] [ text "Map" ] + , link = Tab.link [ Spacing.mt3 ] [ text "Karte" ] , pane = Tab.pane [] [ dungeonMapView model ] -- Map