Skip to content

Commit

Permalink
quest clear localization
Browse files Browse the repository at this point in the history
  • Loading branch information
myangelkamikaze committed Aug 16, 2021
1 parent 7d06761 commit 0929fa1
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 66 deletions.
2 changes: 1 addition & 1 deletion ElectronicObserver/Data/QuestManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public override void LoadFromRequest(string apiname, Dictionary<string, string>
int id = int.Parse(data["api_quest_id"]);
var quest = Quests[id];

Utility.Logger.Add( 2, string.Format("Cleared quest 「{0}」.", quest.Name ) );
Utility.Logger.Add(2, string.Format(LoggerRes.ClearedQuest, quest.Name));

Quests.Remove(id);
Count--;
Expand Down
9 changes: 9 additions & 0 deletions ElectronicObserver/ElectronicObserver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@
<AutoGen>True</AutoGen>
<DependentUpon>QuestTracking.resx</DependentUpon>
</Compile>
<Compile Update="LoggerRes.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>LoggerRes.resx</DependentUpon>
</Compile>
<Compile Update="Notifier\NotifierRes.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
Expand Down Expand Up @@ -458,6 +463,10 @@
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>QuestTracking.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="LoggerRes.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>LoggerRes.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Notifier\NotifierRes.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>NotifierRes.Designer.cs</LastGenOutput>
Expand Down
Loading

0 comments on commit 0929fa1

Please sign in to comment.