Sha256: 406dee09a81518982a4b8aa05b5e2f8e89f36bd521bf662b50126894def4b777
Contents?: true
Size: 623 Bytes
Versions: 42
Compression:
Stored size: 623 Bytes
Contents
module Fox # # A translator translates a message to another language. # class FXTranslator # The application associated with this translator [FXApp] attr_reader :app # # Return a new translator for the application _a_ (an FXApp instance). # def initialize(a); end # # Translate a message. # def tr(context, message, hint=nil); end # # Change the text codec used to decode the messages embedded in the # source. # def textCodec=(codec); end # # Return a reference to the text codec. # def textCodec; end end end
Version data entries
42 entries across 42 versions & 2 rubygems