Sha256: 66180b30813bae29775df24322736d2e476a939e0c0f227813b69d73f834312d

Contents?: true

Size: 603 Bytes

Versions: 6

Compression:

Stored size: 603 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

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.6.22-x86-mingw32 rdoc-sources/FXTranslator.rb
fxruby-1.6.22 rdoc-sources/FXTranslator.rb
fxruby-1.6.22.pre4-x86-mingw32 rdoc-sources/FXTranslator.rb
fxruby-1.6.22.pre4 rdoc-sources/FXTranslator.rb
fxruby-1.6.22.pre3-x86-mingw32 rdoc-sources/FXTranslator.rb
fxruby-1.6.22.pre3 rdoc-sources/FXTranslator.rb