- Add int32 and float32 handling to toInt() for consistency with toInt64() and toFloat64() - Remove unusable _() function (can't be called as i18n._()) - SetLanguage() now returns ErrServiceNotInitialized when service is nil instead of silently succeeding Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
71 lines
1.1 KiB
Go
71 lines
1.1 KiB
Go
// Package i18n provides internationalization for the CLI.
|
|
package i18n
|
|
|
|
// getCount extracts a Count value from template data.
|
|
func getCount(data any) int {
|
|
if data == nil {
|
|
return 0
|
|
}
|
|
switch d := data.(type) {
|
|
case map[string]any:
|
|
if c, ok := d["Count"]; ok {
|
|
return toInt(c)
|
|
}
|
|
case map[string]int:
|
|
if c, ok := d["Count"]; ok {
|
|
return c
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// toInt converts any numeric type to int.
|
|
func toInt(v any) int {
|
|
switch n := v.(type) {
|
|
case int:
|
|
return n
|
|
case int64:
|
|
return int(n)
|
|
case int32:
|
|
return int(n)
|
|
case float64:
|
|
return int(n)
|
|
case float32:
|
|
return int(n)
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// toInt64 converts any numeric type to int64.
|
|
func toInt64(v any) int64 {
|
|
switch n := v.(type) {
|
|
case int:
|
|
return int64(n)
|
|
case int64:
|
|
return n
|
|
case int32:
|
|
return int64(n)
|
|
case float64:
|
|
return int64(n)
|
|
case float32:
|
|
return int64(n)
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// toFloat64 converts any numeric type to float64.
|
|
func toFloat64(v any) float64 {
|
|
switch n := v.(type) {
|
|
case float64:
|
|
return n
|
|
case float32:
|
|
return float64(n)
|
|
case int:
|
|
return float64(n)
|
|
case int64:
|
|
return float64(n)
|
|
case int32:
|
|
return float64(n)
|
|
}
|
|
return 0
|
|
}
|