...

Source file src/golang.org/x/text/message/catalog/go19.go

Documentation: golang.org/x/text/message/catalog

     1  // Copyright 2017 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build go1.9
     6  
     7  package catalog
     8  
     9  import "golang.org/x/text/internal/catmsg"
    10  
    11  // A Message holds a collection of translations for the same phrase that may
    12  // vary based on the values of substitution arguments.
    13  type Message = catmsg.Message
    14  
    15  type firstInSequence = catmsg.FirstOf
    16  

View as plain text