build(deps): bump github.com/leonelquinteros/gotext from 1.6.0 to 1.6.1

Bumps [github.com/leonelquinteros/gotext](https://github.com/leonelquinteros/gotext) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/leonelquinteros/gotext/releases)
- [Commits](https://github.com/leonelquinteros/gotext/compare/v1.6.0...v1.6.1)

---
updated-dependencies:
- dependency-name: github.com/leonelquinteros/gotext
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-06-19 07:01:24 +00:00
committed by Ralf Haferkamp
parent df33951b3f
commit 7f7e847f8e
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -242,7 +242,7 @@ func (do *Domain) Set(id, str string) {
trans = NewTranslation()
trans.ID = id
trans.Set(str)
do.translations[str] = trans
do.translations[id] = trans
}
}
@@ -278,7 +278,7 @@ func (do *Domain) SetN(id, plural string, n int, str string) {
trans.ID = id
trans.PluralID = plural
trans.SetN(pluralForm, str)
do.translations[str] = trans
do.translations[id] = trans
}
}