@orfeas126/box-ui-elements
Version:
Box UI Elements
61 lines • 2.26 kB
JavaScript
import { defineMessages } from 'react-intl';
const messages = defineMessages({
success: {
"id": "boxui.securityCloudGame.success",
"defaultMessage": "Success!"
},
instructions: {
"id": "boxui.securityCloudGame.instructions",
"defaultMessage": "For security purposes, please drag the white cloud onto the dark cloud. Keyboard users: Press spacebar to grab the cloud, arrow keys to move, and spacebar to drop."
},
accessibilityInstructions: {
"id": "boxui.securityCloudGame.accessibilityInstructions",
"defaultMessage": "For security purposes, please drag the cloud object onto the target. You are on a {row} by {column} grid with a movable cloud object and a target area. Press spacebar to grab the cloud object, arrow keys to move, and spacebar to drop on the target."
},
cloudObject: {
"id": "boxui.securityCloudGame.cloudObject",
"defaultMessage": "Cloud object"
},
target: {
"id": "boxui.securityCloudGame.target",
"defaultMessage": "Target"
},
currentPosition: {
"id": "boxui.securityCloudGame.currentPosition",
"defaultMessage": "Current position: Row {row}, Column {column}."
},
targetPosition: {
"id": "boxui.securityCloudGame.targetPosition",
"defaultMessage": "Target position: Row {row}, Column {column}."
},
cloudGrabbed: {
"id": "boxui.securityCloudGame.cloudGrabbed",
"defaultMessage": "Cloud object grabbed."
},
cloudDropped: {
"id": "boxui.securityCloudGame.cloudDropped",
"defaultMessage": "Cloud object dropped."
},
reachLeftEdge: {
"id": "boxui.securityCloudGame.reachLeftEdge",
"defaultMessage": "Reached left edge of grid."
},
reachRightEdge: {
"id": "boxui.securityCloudGame.reachRightEdge",
"defaultMessage": "Reached right edge of grid."
},
reachTopEdge: {
"id": "boxui.securityCloudGame.reachTopEdge",
"defaultMessage": "Reached top edge of grid."
},
reachBottomEdge: {
"id": "boxui.securityCloudGame.reachBottomEdge",
"defaultMessage": "Reached bottom edge of grid."
},
targetInRange: {
"id": "boxui.securityCloudGame.targetInRange",
"defaultMessage": "Target in range, you can drop the cloud object."
}
});
export default messages;
//# sourceMappingURL=messages.js.map