* Utility functions for getting localized slugs
| 3 | */ |
| 4 | |
| 5 | interface SlugData { |
| 6 | slug: string; |
| 7 | slugEn: string; |
| 8 | slugEs: string; |
| 9 | slugPt: string; |
| 10 | slugRu: string; |
| 11 | slugZhCn: string; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Gets the appropriate slug for the given locale |
nothing calls this directly
no outgoing calls
no test coverage detected