Skip to content

Commit

Permalink
Fix #326
Browse files Browse the repository at this point in the history
Explicitly set genetive in English localization to preven `'s`
expansion.
  • Loading branch information
ihsoft committed May 4, 2019
1 parent dc01f27 commit 0458f3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 1.20 (pre-release):
* [Fix #326] Text formating in PAW menu.

# 1.19 (May 2nd, 2019):
* [Change] `KSP 1.7.*` compatibility.
Expand Down
2 changes: 1 addition & 1 deletion Lang/en-us.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ Localization
#kisLOC_00029 = Seat <<1>> inventory
// The name of the part's menu item that opens the inventory of a specific kerbal.
// Argument <<1>> is the first name of the kerbal.
#kisLOC_00030 = <<1>>'s inventory
#kisLOC_00030 = <<gen:1>>'s inventory
// The name of the part's menu item that opens the associated inventory. The "part"
// can be a kerbal.
#kisLOC_00031 = Inventory
Expand Down
2 changes: 1 addition & 1 deletion Source/ModuleKISInventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public class ModuleKISInventory : PartModule,

static readonly Message<string> PersonalInventoryMenuTxt = new Message<string>(
"#kisLOC_00030",
defaultTemplate: "<<1>>`s inventory",
defaultTemplate: "<<gen:1>>\'s inventory",
description: "The name of the part's menu item that opens the inventory of a specific kerbal."
+ "\nArgument <<1>> is the first name of the kerbal.");

Expand Down

0 comments on commit 0458f3b

Please sign in to comment.