View Bug Report
Can you please correct the Japanese language file?
Bug #: 2170
File: Dolgubon's Lazy Writ Crafter
Date: 02/05/18 05:11 PM
By: Marify
Status: Unconfirmed
Sorry to trouble you,
Can you please correct the Japanese language file? :(
(Part of alchemy and cooks)

1. Examine the request(依頼を調べる) --> Examine the request(依頼を調べる) or See request(依頼を見る)
2. Cookery bag(調理師のック) --> Cookery pack(調理師のック)

Lua Code:
  1. function WritCreater.langWritNames()
  2.     local names = {
  3.     ["G"] = "依頼を(.+)る",
  4.     [CRAFTING_TYPE_ENCHANTING] = "付呪",
  5.     [CRAFTING_TYPE_BLACKSMITHING] = "鍛冶",
  6.     [CRAFTING_TYPE_CLOTHIER] = "仕立",
  7.     [CRAFTING_TYPE_PROVISIONING] = "調理",
  8.     [CRAFTING_TYPE_WOODWORKING] = "木工",
  9.     [CRAFTING_TYPE_ALCHEMY] = "錬金術",
  10.     }
  11.     return names
  12. end
  13.  
  14.  
  15. function WritCreater.langWritRewardBoxes ()
  16. local WritRewardNames = { -- these are the containers you receive as writ rewards
  17.     [1] = "錬金術師の器",
  18.     [2] = "付呪師の貴品箱",
  19.     [3] = "仕立師のかばん",
  20.     [4] = "鍛冶師の木枠箱",
  21.     [5] = "調理師のパック",
  22.     [6] = "木工師のケース",
  23.     [7] = "箱",
  24. }