Skip to content

Commit

Permalink
Update locstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuubari committed Jul 6, 2016
1 parent 74ed04b commit f7fc8a6
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 6 deletions.
36 changes: 36 additions & 0 deletions source/Grabacr07.KanColleViewer/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion source/Grabacr07.KanColleViewer/Properties/Resources.en.resx
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ GPU: Slow! GPU optimization for tablets.</value>
<value>Give a notification for ships in critical condition</value>
</data>
<data name="Settings_Operation_LoSCalculation" xml:space="preserve">
<value>Settings_Plugins_PluginInfo_Features</value>
<value>LoS Calculation</value>
</data>
<data name="Settings_Operation_LoS_CarrierBasedRecon" xml:space="preserve">
<value>Carrier-based Recon Aircraft</value>
Expand Down Expand Up @@ -1432,4 +1432,16 @@ HTTP proxy settings are applied immediately. Settings for all other protocols ar
<data name="ShipCatalog_Filter_Misc_ConditionBelow50" xml:space="preserve">
<value>Below 50</value>
</data>
<data name="Settings_Operation_LoS_UseFleets" xml:space="preserve">
<value>In a combined fleet setting, use these fleets to calculate LoS:</value>
</data>
<data name="Settings_Operation_LoS_UseFleets_Fleet1" xml:space="preserve">
<value>Fleet #1</value>
</data>
<data name="Settings_Operation_LoS_UseFleets_Fleet2" xml:space="preserve">
<value>Fleet #2</value>
</data>
<data name="ShipCatalog_Column_ASW_Tooltip" xml:space="preserve">
<value>Includes stat bonuses from the equipment</value>
</data>
</root>
12 changes: 12 additions & 0 deletions source/Grabacr07.KanColleViewer/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1424,4 +1424,16 @@ HTTP プロトコルの通信は自動構成も含め「インターネット
<data name="ShipCatalog_Filter_Misc_ConditionBelow50" xml:space="preserve">
<value>50 未満</value>
</data>
<data name="Settings_Operation_LoS_UseFleets" xml:space="preserve">
<value>連合艦隊時、以下の艦隊を索敵値計算の対象として使用する</value>
</data>
<data name="Settings_Operation_LoS_UseFleets_Fleet1" xml:space="preserve">
<value>第1艦隊</value>
</data>
<data name="Settings_Operation_LoS_UseFleets_Fleet2" xml:space="preserve">
<value>第2艦隊</value>
</data>
<data name="ShipCatalog_Column_ASW_Tooltip" xml:space="preserve">
<value>装備によるステータス上昇を含んだ値です</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -841,8 +841,8 @@
<GridViewColumn.Header>
<metro2:SortButton MethodName="Sort"
MethodParameter="{x:Static viewModels:ShipCatalogSortWorker.ASWColumn}">
<TextBlock Text="対潜"
ToolTip="装備によるステータス上昇を含んだ値です" />
<TextBlock Text="{Binding Resources.ShipCatalog_Column_ASW, Source={x:Static models:ResourceService.Current}, Mode=OneWay}"
ToolTip="{Binding Resources.ShipCatalog_Column_ASW_Tooltip, Source={x:Static models:ResourceService.Current}, Mode=OneWay}" />
</metro2:SortButton>
</GridViewColumn.Header>
<GridViewColumn.CellTemplate>
Expand Down
6 changes: 3 additions & 3 deletions source/Grabacr07.KanColleViewer/Views/Settings/Operation.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@
Style="{DynamicResource DetailTextStyleKey}"/>


<TextBlock Text="連合艦隊時、以下の艦隊を索敵値計算の対象として使用する"
<TextBlock Text="{Binding Resources.Settings_Operation_LoS_UseFleets, Source={x:Static models:ResourceService.Current}, Mode=OneWay}"
Margin="0,12,0,5"
Visibility="{Binding SelectedViewRangeCalcType.HasCombinedSettings, Converter={StaticResource BooleanToVisibilityConverter}}"/>

<StackPanel Orientation="Horizontal"
Visibility="{Binding SelectedViewRangeCalcType.HasCombinedSettings, Converter={StaticResource BooleanToVisibilityConverter}}">
<CheckBox Content="第1艦隊"
<CheckBox Content="{Binding Resources.Settings_Operation_LoS_UseFleets_Fleet1, Source={x:Static models:ResourceService.Current}, Mode=OneWay}"
IsChecked="{Binding Source={x:Static ms:KanColleSettings.IsViewRangeCalcIncludeFirstFleet}, Path=Value}"
Margin="0,0,20,0"/>
<CheckBox Content="第2艦隊"
<CheckBox Content="{Binding Resources.Settings_Operation_LoS_UseFleets_Fleet2, Source={x:Static models:ResourceService.Current}, Mode=OneWay}"
IsChecked="{Binding Source={x:Static ms:KanColleSettings.IsViewRangeCalcIncludeSecondFleet}, Path=Value}"/>
</StackPanel>

Expand Down

0 comments on commit f7fc8a6

Please sign in to comment.