(value string)
| 342 | } |
| 343 | |
| 344 | func normalizeWeeklyNoteLocale(value string) string { |
| 345 | trimmed := strings.TrimSpace(value) |
| 346 | if trimmed == "" { |
| 347 | return DefaultWeeklyNoteLocale |
| 348 | } |
| 349 | return trimmed |
| 350 | } |
| 351 | |
| 352 | func normalizeDailyNoteLegacyPatterns(value []DateNotePatternSettings) []DateNotePatternSettings { |
| 353 | out := []DateNotePatternSettings{} |
no outgoing calls
no test coverage detected