8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
export const Messages = {
|
|
'en-US': {
|
|
notify_end_transfer: (botName) => `Now talking to ${botName} again.`
|
|
},
|
|
'pt-BR': {
|
|
notify_end_transfer: (botName) => `Falando com o bot ${botName} novamente.`
|
|
}
|
|
};
|