Includes scratch-gui, scratch-vm, scratch-blocks, scratch-render, scratch-l10n, and deployment config. Co-authored-by: Cursor <cursoragent@cursor.com>
35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
import {defineMessages} from 'react-intl';
|
|
|
|
export default defineMessages({
|
|
backdrop: {
|
|
defaultMessage: 'backdrop{index}',
|
|
description: 'Default name for a new backdrop, scratch will automatically adjust the number if necessary',
|
|
id: 'gui.sharedMessages.backdrop'
|
|
},
|
|
costume: {
|
|
defaultMessage: 'costume{index}',
|
|
description: 'Default name for a new costume, scratch will automatically adjust the number if necessary',
|
|
id: 'gui.sharedMessages.costume'
|
|
},
|
|
sprite: {
|
|
defaultMessage: 'Sprite{index}',
|
|
description: 'Default name for a new sprite, scratch will automatically adjust the number if necessary',
|
|
id: 'gui.sharedMessages.sprite'
|
|
},
|
|
pop: {
|
|
defaultMessage: 'pop',
|
|
description: 'Name of the pop sound, the default sound added to a sprite',
|
|
id: 'gui.sharedMessages.pop'
|
|
},
|
|
replaceProjectWarning: {
|
|
id: 'gui.sharedMessages.replaceProjectWarning',
|
|
defaultMessage: 'Replace contents of the current project?',
|
|
description: 'Confirmation that user wants to overwrite the current project contents'
|
|
},
|
|
loadFromComputerTitle: {
|
|
id: 'gui.sharedMessages.loadFromComputerTitle',
|
|
defaultMessage: 'Load from your computer',
|
|
description: 'Title for uploading a project from your computer'
|
|
}
|
|
});
|