diff --git a/client/coral-plugin-flags/FlagButton.js b/client/coral-plugin-flags/FlagButton.js
index 94cc02d5f..4f90dfb7c 100644
--- a/client/coral-plugin-flags/FlagButton.js
+++ b/client/coral-plugin-flags/FlagButton.js
@@ -12,7 +12,7 @@ const FlagButton = ({flag, id, postAction, addItem, updateItem, addNotification}
addItem({...action, current_user:true}, 'actions');
updateItem(action.item_id, action.action_type, action.id, 'comments');
});
- addNotification('success', 'Thank you for reporting this comment. Our moderation team has been notified and will review it shortly.');
+ addNotification('success', lang.t('flag-notif'));
};
return
diff --git a/client/coral-plugin-flags/translations.json b/client/coral-plugin-flags/translations.json
index 0721d3e00..28eb9f8cb 100644
--- a/client/coral-plugin-flags/translations.json
+++ b/client/coral-plugin-flags/translations.json
@@ -5,8 +5,8 @@
"flag-notif": "Thank you for reporting this comment. Our moderation team has been notified and will review it shortly."
},
"es": {
- "flag": "¡traduceme!",
- "flagged": "¡traduceme!",
- "flag-notif": "¡traduceme!"
+ "flag": "Marcar",
+ "flagged": "Marcado",
+ "flag-notif": "Gracias por marcar este comentario. Nuestro equipo de moderación ha sido notificado y muy pronto lo va a revisar."
}
}
diff --git a/client/coral-plugin-replies/translations.json b/client/coral-plugin-replies/translations.json
index b54e2b398..b4d820c44 100644
--- a/client/coral-plugin-replies/translations.json
+++ b/client/coral-plugin-replies/translations.json
@@ -3,6 +3,6 @@
"reply": "Reply"
},
"es": {
- "reply": "Respuesta"
+ "reply": "Responder"
}
}