修改包地址
This commit is contained in:
parent
1d60bf7f13
commit
f956bce255
|
@ -4,7 +4,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales/currency"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales/currency"
|
||||||
)
|
)
|
||||||
|
|
||||||
// // ErrBadNumberValue is returned when the number passed for
|
// // ErrBadNumberValue is returned when the number passed for
|
||||||
|
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales/currency"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales/currency"
|
||||||
)
|
)
|
||||||
|
|
||||||
type zh struct {
|
type zh struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
|
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
)
|
)
|
||||||
|
|
||||||
type translation struct {
|
type translation struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -3,7 +3,7 @@ package ut
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
)
|
)
|
||||||
|
|
||||||
// UniversalTranslator holds all locale & translation data
|
// UniversalTranslator holds all locale & translation data
|
||||||
|
|
|
@ -27,11 +27,11 @@ Installation
|
||||||
|
|
||||||
Use go get.
|
Use go get.
|
||||||
|
|
||||||
go get git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10
|
go get git.hpds.cc/Component/gin_valid/go-playground/validator/v10
|
||||||
|
|
||||||
Then import the validator package into your own code.
|
Then import the validator package into your own code.
|
||||||
|
|
||||||
import "git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
import "git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
|
|
||||||
Error Return Value
|
Error Return Value
|
||||||
-------
|
-------
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package validators
|
package validators
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package validators
|
package validators
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
"github.com/go-playground/assert/v2"
|
"github.com/go-playground/assert/v2"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package validator
|
package validator
|
||||||
|
|
||||||
import ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
import ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
|
|
||||||
// TranslationFunc is the function type used to register or override
|
// TranslationFunc is the function type used to register or override
|
||||||
// custom translations
|
// custom translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -8,9 +8,9 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/locales"
|
"git.hpds.cc/Component/gin_valid/go-playground/locales"
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
"git.ningdatech.com/ningda/gin_valid/go-playground/validator/v10"
|
"git.hpds.cc/Component/gin_valid/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RegisterDefaultTranslations registers a set of default translations
|
// RegisterDefaultTranslations registers a set of default translations
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
ut "git.hpds.cc/Component/gin_valid/go-playground/universal-translator"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in New Issue