1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace DynamicTranslationLoader
- {
- public static class Hooks
- {
- public static void LabelTextHook(ref string value)
- {
- value = DynamicTranslator.Translate(value);
- }
- public static void SetTextHook(ref string text)
- {
- text = DynamicTranslator.Translate(text);
- }
- }
- }
|