-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Webphone.vue and ConversationCard.vue components
- Fix typo in listernSockets method - Add error handling in startCall method - Update active call status in outcomingCall method - Improve handling of status messages in ConversationCard.vue component - Update translations in webphone.json file in en, es, pt, and pt_BR - Improve connection to Wavoip in webphone.js file
- Loading branch information
1 parent
0c1eafd
commit 22719fc
Showing
8 changed files
with
96 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
{ | ||
"WEBPHONE": { | ||
"CALL": "Llamar", | ||
"TERMINATE": "Finalizada", | ||
"ACCEPT_ELSEWHERE": "Aceptada por otro usuario", | ||
"REJECT_ELSEWHERE": "Rechazada por otro usuario", | ||
"TERMINATE": "Terminado", | ||
"ACCEPT_ELSEWHERE": "Aceptado por otro usuario", | ||
"REJECT_ELSEWHERE": "Rechazado por otro usuario", | ||
"CONNECT_CALLING": "Conectando", | ||
"CALLING": "Llamando", | ||
"VOICE_CALL": "Llamada de voz", | ||
"IN_PROGRESS": "En progreso", | ||
"ACTIVE": "Activa", | ||
"ACTIVE": "Activo", | ||
"MUTE": "Silenciar micrófono", | ||
"UNMUTE": "Activar micrófono", | ||
"TURN_ON_VIDEO": "Activar video", | ||
"TURN_OFF_VIDEO": "Desactivar video", | ||
"TURN_ON_VIDEO": "Encender video", | ||
"TURN_OFF_VIDEO": "Apagar video", | ||
"NUMPAD": "Teclado", | ||
"TRANSFER": "Transferir", | ||
"UNKNOWN": "Desconocido", | ||
"ALL_INSTANCE_BUSY": "Todas las líneas están ocupadas", | ||
"CONTACT_INVALID": "El contacto no existe en WhatsApp", | ||
"CALL_LIMIT": "Límite diario de llamadas alcanzado", | ||
"ERROR_TO_MADE_CALL": "Ocurrió un error al intentar llamar" | ||
"CALL_LIMIT": "Se ha alcanzado el límite diario de llamadas", | ||
"ERROR_TO_MADE_CALL": "Ocurrió un error al intentar llamar", | ||
"CONTACT_NOT_FOUND": "Contacto no encontrado", | ||
"NUMBER_NOT_FOUND": "Número no encontrado", | ||
"DAILY_LIMIT_REACHED": "Límite diario alcanzado", | ||
"LINE_BUSY_TRY_AGAIN": "Línea ocupada, inténtalo de nuevo", | ||
"NO_AVAILABLE_INSTANCES": "No hay instancias disponibles", | ||
"CONNECTION_FAILED": "Fallo de conexión" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
{ | ||
"WEBPHONE": { | ||
"CALL": "Ligar", | ||
"TERMINATE": "Finalizada", | ||
"TERMINATE": "Terminada", | ||
"ACCEPT_ELSEWHERE": "Aceito por outro usuário", | ||
"REJECT_ELSEWHERE": "Rejeitado por outro usuário", | ||
"CONNECT_CALLING": "Ligando", | ||
"CONNECT_CALLING": "Conectando", | ||
"CALLING": "Chamando", | ||
"VOICE_CALL": "Chamada de voz", | ||
"IN_PROGRESS": "Em progresso", | ||
"ACTIVE": "Ativa", | ||
"MUTE": "Desativar microphone", | ||
"UNMUTE": "Ativar microphone", | ||
"TURN_ON_VIDEO": "Ativar video", | ||
"TURN_OFF_VIDEO": "Desativar video", | ||
"ACTIVE": "Ativo", | ||
"MUTE": "Silenciar microfone", | ||
"UNMUTE": "Ativar microfone", | ||
"TURN_ON_VIDEO": "Ligar vídeo", | ||
"TURN_OFF_VIDEO": "Desligar vídeo", | ||
"NUMPAD": "Teclado", | ||
"TRANSFER": "Transferir", | ||
"UNKNOWN": "Desconhecido", | ||
"ALL_INSTANCE_BUSY": "Todas as linhas estão ocupadas", | ||
"CONTACT_INVALID": "Contato não existe no Whatsapp", | ||
"CALL_LIMIT": "Limite de ligações diários atingido", | ||
"ERROR_TO_MADE_CALL": "Ocorreu um erro ao tentar ligar" | ||
"CONTACT_INVALID": "O contato não existe no WhatsApp", | ||
"CALL_LIMIT": "Limite diário de chamadas atingido", | ||
"ERROR_TO_MADE_CALL": "Ocorreu um erro ao tentar fazer a chamada", | ||
"CONTACT_NOT_FOUND": "Contato não encontrado", | ||
"NUMBER_NOT_FOUND": "Número não encontrado", | ||
"DAILY_LIMIT_REACHED": "Limite diário atingido", | ||
"LINE_BUSY_TRY_AGAIN": "Linha ocupada, tente novamente", | ||
"NO_AVAILABLE_INSTANCES": "Não há instâncias disponíveis", | ||
"CONNECTION_FAILED": "Falha na conexão" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters