Skip to content

Commit

Permalink
poi submission details
Browse files Browse the repository at this point in the history
  • Loading branch information
myangelkamikaze committed Nov 26, 2024
1 parent 1813a84 commit 27d6552
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,7 @@
<data name="Error" xml:space="preserve">
<value>PoiDB error</value>
</data>
<data name="Details" xml:space="preserve">
<value>Details</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,7 @@
<data name="Error" xml:space="preserve">
<value>PoiDBエラー</value>
</data>
<data name="Details" xml:space="preserve">
<value>詳細</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ public class ConfigurationDataSubmissionTranslationViewModel : TranslationBaseVi

public string EnableTsunDbSubmission => ConfigurationResources.Control_EnableTsunDbSubmission;
public string PrivacyPolicy => ConfigurationResources.DataSubmission_PrivacyPolicy;

public string Details => PoiDbSubmissionResources.Details;
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@
</TextBlock>
</StackPanel>

<CheckBox Content="PoiDB" IsChecked="{Binding SendDataToPoi}" />
<StackPanel Orientation="Horizontal">
<CheckBox Content="PoiDB" IsChecked="{Binding SendDataToPoi}" />

<TextBlock>
<Hyperlink Command="{Binding OpenHyperlinkCommand}" CommandParameter="https://github.com/ElectronicObserverEN/ElectronicObserver/wiki/PoiDB">
<Run Text="{Binding Translation.Details, Mode=OneWay}" />
</Hyperlink>
</TextBlock>
</StackPanel>

<StackPanel Orientation="Horizontal">
<CheckBox Content="{Binding Translation.BonodereIntegration, Mode=OneWay}" IsChecked="{Binding BonodereIntegrationEnabled}" />
Expand Down

0 comments on commit 27d6552

Please sign in to comment.