View Feature Request
string for other languages
Feature #: 1583
File: Lionas's Food & Drink Reminder
Date: 01/16/17 10:41 AM
By: Scootworks
Status: Under Review
it doesn't work proper for example german. if you add a zo_strformat it works fine:

lua Code:
  1. -- 通知
  2. local function notify(message, buffName, icon)
  3.  
  4.     local LiobuffName = zo_strformat("<<1>>", buffName)
  5.  
  6.     -- 通知メッセージの保存
  7.     LioFADR.notifyMessage = message
  8.  
  9.     -- アイコン非表示フラグをOFF
  10.     LioFADR.isNeverNotify = false
  11.  
  12.     -- チャット欄に通知
  13.     outputChat(message)
  14.  
  15.     -- Vanilla UIに通知
  16.     CENTER_SCREEN_ANNOUNCE:AddMessage(999, CSA_EVENT_COMBINED_TEXT, SOUNDS.AVA_GATE_OPENED, message, LiobuffName, icon, nil, nil, nil, nil, 4420)
  17.  
  18.     -- 通知時間を保存
  19.     LioFADR.savedVariables.lastNotifyTime = GetTimeStamp()
  20.  
  21. end