Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

25 lignes
492 B

  1. using System;
  2. namespace CIG.Translation
  3. {
  4. public class RawCapitalizedString : ILocalizedString
  5. {
  6. public RawCapitalizedString(ILocalizedString original)
  7. {
  8. this._original = original;
  9. }
  10. public override string ToString()
  11. {
  12. return "[CapitalizedString=" + this._original.ToString() + "]";
  13. }
  14. public string Translate()
  15. {
  16. return this._original.Translate().ToUpper(Localization.CurrentCulture.Info);
  17. }
  18. private ILocalizedString _original;
  19. }
  20. }