(key: string, defaultValue: string)
| 11 | "Roo Code Cloud sign-in is currently unavailable. Configure another provider to continue." |
| 12 | |
| 13 | function getLocalizedMessage(key: string, defaultValue: string) { |
| 14 | const translated = t(key, { defaultValue }) |
| 15 | return translated === key ? defaultValue : translated |
| 16 | } |
| 17 | |
| 18 | export const getRouterRemovalMessage = () => |
| 19 | getLocalizedMessage(ROUTER_REMOVAL_I18N_KEY, ROUTER_REMOVAL_DEFAULT_MESSAGE) |
no test coverage detected