Esempio n. 1
0
 // Translates a string using the key created by combining the translation key pieces.
 // Each piece is connected with an underscore.
 public string Translate(params string[] translationKeyPieces)
 {
     return(Translate(UtilString.Connect("_", translationKeyPieces)));
 }
Esempio n. 2
0
 // Returns a list of all callback descriptions.
 public string GetDescriptionList(string connector)
 {
     return(UtilString.Connect(connector, descriptions.ToArray()));
 }