mirror of
https://github.com/miniflux/v2.git
synced 2025-08-11 17:51:01 +00:00
Remove superfluous parenthesis
This commit is contained in:
parent
736f8b4dac
commit
8c5f88ac62
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ package locale // import "miniflux.app/v2/internal/locale"
|
||||||
|
|
||||||
// See https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
|
// See https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
|
||||||
// And http://www.unicode.org/cldr/charts/29/supplemental/language_plural_rules.html
|
// And http://www.unicode.org/cldr/charts/29/supplemental/language_plural_rules.html
|
||||||
var pluralForms = map[string](func(n int) int){
|
var pluralForms = map[string]func(n int) int{
|
||||||
// nplurals=2; plural=(n != 1);
|
// nplurals=2; plural=(n != 1);
|
||||||
"default": func(n int) int {
|
"default": func(n int) int {
|
||||||
if n != 1 {
|
if n != 1 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue