translate

package
v0.0.0-...-6b231d8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 24, 2021 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 8 more Imports: 8 Imported by: 0

Documentation

Overview

* Tencent is pleased to support the open source community by making TKEStack * available. * * Copyright (C) 2012-2019 Tencent. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the “License”); you may not use * this file except in compliance with the License. You may obtain a copy of the * License at * * https://opensource.org/licenses/Apache-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an “AS IS” BASIS, WITHOUT * WARRANTIES OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License.

* Tencent is pleased to support the open source community by making TKEStack * available. * * Copyright (C) 2012-2019 Tencent. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the “License”); you may not use * this file except in compliance with the License. You may obtain a copy of the * License at * * https://opensource.org/licenses/Apache-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an “AS IS” BASIS, WITHOUT * WARRANTIES OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License.

* Tencent is pleased to support the open source community by making TKEStack * available. * * Copyright (C) 2012-2019 Tencent. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the “License”); you may not use * this file except in compliance with the License. You may obtain a copy of the * License at * * https://opensource.org/licenses/Apache-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an “AS IS” BASIS, WITHOUT * WARRANTIES OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Default

type Default struct {
	// contains filtered or unexported fields
}

Default translate string to target language

func (*Default) Message

func (d *Default) Message(ID string, templateData map[string]interface{}) Message

Message get translated message from Translator t.module will be add before ID example:

ID = "message"  and module = "diagnostics.example"
then real ID will be "diagnostics.example.message"

func (*Default) WithModule

func (d *Default) WithModule(module string) Translator

WithModule attach a module label to a Translator module will be add before ID when you call Translator.Message

type Fake

type Fake struct {
}

Fake is a Translator that just return ID as message directly

func (*Fake) Message

func (f *Fake) Message(ID string, templateData map[string]interface{}) Message

Message get translated message from Translator t.module will be add before ID example:

ID = "message"  and module = "diagnostics.example"
then real ID will be "diagnostics.example.message"

func (*Fake) WithModule

func (f *Fake) WithModule(module string) Translator

WithModule attach a module label to a Translator module will be add before ID when you call Translator.Message

type Message

type Message string

Message is a translated string

type Translator

type Translator interface {
	// WithModule attach a module label to a Translator
	// module will be add before ID when you call Translator.Message
	Message(ID string, templateData map[string]interface{}) Message
	// Message get translated message from Translator
	// t.module will be add before ID
	// example:
	//         ID = "message"  and module = "diagnostics.example"
	//         then real ID will be "diagnostics.example.message"
	WithModule(module string) Translator
}

Translator translate string to target language

func NewDefault

func NewDefault(dir string, defLang string, targetLang string) (Translator, error)

NewDefault create a new default Translator Translator will read translation message from "dir/defLang" and "dir/targetLang"

func NewFake

func NewFake() Translator

NewFake return a Fake Translator

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL