2016-08-01 00:26:52 +02:00
|
|
|
const messages = [
|
|
|
|
{
|
|
|
|
id: "app.api.invalidResponse",
|
|
|
|
defaultMessage: "Invalid response text.",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Invalid response from the API",
|
2016-08-01 00:26:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.api.emptyResponse",
|
|
|
|
defaultMessage: "Empty response text.",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Empty response from the API",
|
2016-08-01 00:26:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.api.error",
|
|
|
|
defaultMessage: "Unknown API error.",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "An unknown error occurred from the API",
|
|
|
|
},
|
2016-08-01 00:26:52 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|