Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,7 @@ CopyCustomShapedTerrainCursorAction.Name=复制地形 (自定义形状)
CopyCustomShapedTerrainCursorAction.LeftClickText=左键单击地图格标记要复制的区域。
CopyCustomShapedTerrainCursorAction.ShiftText=按住 SHIFT 点击以移除地图格。
CopyCustomShapedTerrainCursorAction.EnterText=按 ENTER 确认并复制所选地图格到剪切板。
CopyCustomShapedTerrainCursorAction.ClearText=按 ESC 清除选区。

CopyRectangularTerrainCursorAction.Name=复制地形 (矩形)

Expand Down
2 changes: 1 addition & 1 deletion src/TSMapEditor/UI/Sidebar/ObjectListPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ protected void InitObjectsBase<T>(List<T> objectTypeList, ShapeImage[] textures,

if (string.IsNullOrWhiteSpace(categoriesString))
{
categories.Add(new ObjectCategory("Uncategorized", Color.White));
categories.Add(new ObjectCategory(Translate(this, "Uncategorized", "Uncategorized"), Color.White));
}
else
{
Expand Down
Loading