From 444776123bb3ce52fec8ec3e2e85ecac3dcd8fdb Mon Sep 17 00:00:00 2001 From: skranz <kranz.stefan99@tutanota.com> Date: Mon, 13 Jul 2020 16:46:38 +0200 Subject: [PATCH] translation --- out/main.js | 8 ++++---- src/DungeonMap.elm | 4 ++-- src/Main.elm | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/out/main.js b/out/main.js index badd00e..7af8fed 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 a77a72e..eb7f0f3 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 2d2f9e0..1c957a2 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 -- GitLab