-
Notifications
You must be signed in to change notification settings - Fork 0
/
walk.go
41 lines (30 loc) · 754 Bytes
/
walk.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2011 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package walk
func LogErrors() bool {
return logErrors
}
func SetLogErrors(v bool) {
logErrors = v
}
func PanicOnError() bool {
return panicOnError
}
func SetPanicOnError(v bool) {
panicOnError = v
}
func TranslationFunc() TranslationFunction {
return translation
}
func SetTranslationFunc(f TranslationFunction) {
translation = f
}
type TranslationFunction func(source string, context ...string) string
var translation TranslationFunction
func tr(source string, context ...string) string {
if translation == nil {
return source
}
return translation(source, context...)
}