more fixes and update of translations database

This commit is contained in:
Daniel Goc
2026-03-11 15:24:00 +01:00
parent 4450468145
commit 6f00e7f784
11 changed files with 287 additions and 289 deletions

View File

@@ -25,7 +25,7 @@ type Translation struct {
}
func (Translation) TableName() string {
return "translations"
return "b2b_translations"
}
type Language struct {
@@ -45,7 +45,7 @@ type Language struct {
}
func (Language) TableName() string {
return "language"
return "b2b_language"
}
type Component struct {
@@ -54,7 +54,7 @@ type Component struct {
}
func (Component) TableName() string {
return "components"
return "b2b_components"
}
type Scope struct {
@@ -63,5 +63,5 @@ type Scope struct {
}
func (Scope) TableName() string {
return "scopes"
return "b2b_scopes"
}