diff --git a/out/main.js b/out/main.js index 37abf5a9eca4aa804d426ce86949622785fd68d3..ea944b5f8364ddbcaea941388a73b898bca1a40d 100644 --- a/out/main.js +++ b/out/main.js @@ -14878,7 +14878,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, @@ -14894,7 +14894,7 @@ var $author$project$DungeonMap$dungeonMapView = function (model) { ]), _List_fromArray( [ - $elm$html$Html$text('Clear Map') + $elm$html$Html$text('Karte leeren') ])) ])) ])), @@ -15065,7 +15065,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, @@ -15084,7 +15084,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 75d63fc8cb602d1c35cc4491bde93da5d9446a4e..cbbc1544b82f716befbee13fc3615867ab600ef7 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" ] + , Button.onClick ClearCharacterList ] + [ text "Karte leeren" ] ] ] , Grid.row [ ] diff --git a/src/Main.elm b/src/Main.elm index 2d0937fd1ffc3f08880b40ae6157eb60882fce82..73cd184f4b7c934f02734c1db1f97c07e45b0b61 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -315,14 +315,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