Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
20 lines
505 B
JavaScript
20 lines
505 B
JavaScript
const messages = [
|
|
{
|
|
id: "app.api.invalidResponse",
|
|
defaultMessage: "Invalid response text.",
|
|
description: "Invalid response from the API",
|
|
},
|
|
{
|
|
id: "app.api.emptyResponse",
|
|
defaultMessage: "Empty response text.",
|
|
description: "Empty response from the API",
|
|
},
|
|
{
|
|
id: "app.api.error",
|
|
defaultMessage: "Unknown API error.",
|
|
description: "An unknown error occurred from the API",
|
|
},
|
|
];
|
|
|
|
export default messages;
|