Annosz / UIInfoSuite2

Ongoing maintenance for the original UI Info Suite mod for Stardew Valley.
1.33k stars 262 forks source link

[Bug]: Chinese translation was chosen, but the status of shrubs and trees was not translated into Chinese #515

Open 186-hungry-tiger opened 2 months ago

186-hungry-tiger commented 2 months ago

Mod Version

2.3.2

Multiplayer

Single Player

SMAPI Log

No response

Description

Chinese translation was chosen, but the status of shrubs and trees was not translated into Chinese

drewhoener commented 2 months ago

I don't believe anyone has updated these translation entries yet, I encourage you to open a PR if you speak the language!

186-hungry-tiger commented 2 months ago

我不相信有人更新了这些翻译条目,如果您会说这种语言,我鼓励您开设 PR!

If you have any plans to translate these, I am willing to provide you with assistance in translation work, but I do not know programming

53ndC0r30n1y commented 2 months ago

Go to code

  private static string GetTreeTypeName(string treeType)
  {
    switch (treeType)
    {
      case "1": return "Oak";
      case "2": return "Maple";
      case "3": return "Pine";
      case "6": return "Palm";
      case "7": return "Mushroom";
      case "8": return "Mahogany";
      case "9": return "Palm (Jungle)";
      case "10": return "Green Rain Type 1";
      case "11": return "Green Rain Type 2";
      case "12": return "Green Rain Type 3";
      case "13": return "Mystic";
      default: return $"Unknown (#{treeType})";
    }
  }

Looks like it can't be translated. 看起来没法直接翻译