You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/TSMapEditor/Config/Translations/en/Translation_en.ini
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -738,9 +738,9 @@ HousesWindow.HouseExists.Description=Cannot generate standard because the map al
738
738
HousesWindow.NoHouseSelected.Title=No House Selected
739
739
HousesWindow.NoHouseSelected.Description=Select a house first.
740
740
HousesWindow.EnableAIRepairs.Title=Are you sure?
741
-
HousesWindow.EnableAIRepairs.Description=This enables the "AI Repairs" flag on all buildings of the house, which makes the AI repair them.@@No un-do is available. Do you wish to continue?
741
+
HousesWindow.EnableAIRepairs.Description.v2=This enables the "AI Repairable" flag on all buildings of the house, which makes the AI repair them.@@Additionally, this will cause the "AI Repairable" flag to be automatically enabled for all buildings you place for this house.@@No un-do is available. Do you wish to continue?
742
742
HousesWindow.DisableAIRepairs.Title=Are you sure?
743
-
HousesWindow.DisableAIRepairs.Description=This disables the "AI Repairs" flag on all buildings of the house, which makes the AI NOT repair them.@@No un-do is available. Do you wish to continue?
743
+
HousesWindow.DisableAIRepairs.Description.v2=This disables the "AI Repairable" flag on all buildings of the house, which makes the AI NOT repair them.@@Additionally, this will cause the "AI Repairable" flag to be automatically disabled for all buildings you place for this house.@@No un-do is available. Do you wish to continue?
Translate(this,"EnableAIRepairs.Title","Are you sure?"),
312
-
Translate(this,"EnableAIRepairs.Description","This enables the \"AI Repairs\" flag on all buildings of the house, which makes the AI repair them."+Environment.NewLine+Environment.NewLine+
312
+
Translate(this,"EnableAIRepairs.Description.v2","This enables the \"AI Repairable\" flag on all buildings of the house, which makes the AI repair them."+Environment.NewLine+
313
+
"Additionally, this will cause the \"AI Repairable\" flag to be automatically enabled for all buildings you place for this house."+Environment.NewLine+Environment.NewLine+
313
314
"No un-do is available. Do you wish to continue?"),
@@ -332,12 +334,14 @@ private void BtnMakeHouseNotRepairBuildings_LeftClick(object sender, EventArgs e
332
334
333
335
vardialog=EditorMessageBox.Show(WindowManager,
334
336
Translate(this,"DisableAIRepairs.Title","Are you sure?"),
335
-
Translate(this,"DisableAIRepairs.Description","This disables the \"AI Repairs\" flag on all buildings of the house, which makes the AI NOT repair them."+Environment.NewLine+Environment.NewLine+
337
+
Translate(this,"DisableAIRepairs.Description.v2","This disables the \"AI Repairable\" flag on all buildings of the house, which makes the AI NOT repair them."+Environment.NewLine+
338
+
"Additionally, this will cause the \"AI Repairable\" flag to be automatically disabled for all buildings you place for this house."+Environment.NewLine+Environment.NewLine+
336
339
"No un-do is available. Do you wish to continue?"),
objectCountStats+=Translate(this,"HouseStats.AIRepairable"," AI repairable: ")+map.Structures.Count(s =>s.Owner==editedHouse&&s.AIRepairable)+Environment.NewLine;
592
-
objectCountStats+=Translate(this,"HouseStats.NotAIRepairable"," not AI repairable: ")+map.Structures.Count(s =>s.Owner==editedHouse&&!s.AIRepairable);
595
+
objectCountStats+=Translate(this,"HouseStats.DefaultRepairable"," AI Repairable by default: ")+
objectCountStats+=Translate(this,"HouseStats.AIRepairable"," AI Repairable: ")+map.Structures.Count(s =>s.Owner==editedHouse&&s.AIRepairable)+Environment.NewLine;
600
+
objectCountStats+=Translate(this,"HouseStats.NotAIRepairable"," not AI Repairable: ")+map.Structures.Count(s =>s.Owner==editedHouse&&!s.AIRepairable)+Environment.NewLine;
0 commit comments