type File … // Load loads po file format data. func Load(data []byte) (*File, error) { … } // LoadFile loads a named po file. func LoadFile(path string) (*File, error) { … } func loadData(data []byte) (*File, error) { … } // Save saves a po file. func (f *File) Save(name string) error { … } // Save returns a po file format data. func (f *File) Data() []byte { … } // String returns the po format file string. func (f *File) String() string { … }