aseprite/data/gui-en.xml

235 lines
9.7 KiB
XML
Raw Normal View History

<!-- Allegro Sprite Editor menus & keyboard shortcuts -->
<!-- Copyright (C) 2001-2008 by David A. Capello -->
2007-09-26 19:41:01 +00:00
<gui>
<!-- keyboard shortcuts -->
2007-09-26 19:41:01 +00:00
<keyboard>
<commands>
<!-- file -->
<key command="new_file" shortcut="Ctrl+N" />
<key command="open_file" shortcut="Ctrl+O" />
<key command="save_file" shortcut="Ctrl+S" />
<key command="save_file_as" shortcut="Shift+Ctrl+S" />
<key command="close_file" shortcut="Ctrl+W" />
<key command="close_all_files" shortcut="Shift+Ctrl+W" />
<key command="screen_shot" shortcut="F12" />
<key command="exit" shortcut="Ctrl+Q" />
<key command="exit" shortcut="Esc" />
<!-- edit -->
<key command="undo" shortcut="Ctrl+Z" /> <key command="undo" shortcut="Ctrl+U" />
<key command="redo" shortcut="Ctrl+R" />
<key command="cut" shortcut="Ctrl+X" /> <key command="cut" shortcut="Shift+Del" />
<key command="copy" shortcut="Ctrl+C" /> <key command="copy" shortcut="Ctrl+Ins" />
<key command="paste" shortcut="Ctrl+V" /> <key command="paste" shortcut="Shift+Ins" />
<key command="clear" shortcut="Ctrl+B" /> <key command="clear" shortcut="Ctrl+Del" />
<key command="flip_horizontal" shortcut="Shift+H" />
<key command="flip_vertical" shortcut="Shift+V" />
<key command="replace_color" shortcut="Shift+R" />
<key command="invert_color" shortcut="Ctrl+I" />
<!-- sprite -->
<key command="sprite_properties" shortcut="Ctrl+P" />
<!-- layer -->
<key command="layer_properties" shortcut="Shift+P" />
<key command="new_layer" shortcut="Shift+N" />
<!-- frame -->
<key command="new_frame" shortcut="N" />
<key command="goto_first_frame" shortcut="Home" />
<key command="goto_previous_frame" shortcut="Left" />
<key command="goto_next_frame" shortcut="Right" />
<key command="goto_last_frame" shortcut="End" />
<key command="play_animation" shortcut="Enter" />
<!-- cel -->
<key command="cel_properties" shortcut="Shift+Ctrl+P" />
<key command="new_cel" shortcut="Shift+Ctrl+N" />
<!-- mask -->
<key command="mask_all" shortcut="Ctrl+A" />
<key command="deselect_mask" shortcut="Ctrl+D" />
<key command="reselect_mask" shortcut="Shift+Ctrl+D" />
<key command="invert_mask" shortcut="Shift+Ctrl+I" />
<!-- view -->
<key command="refresh" shortcut="F5" />
<key command="advanced_mode" shortcut="A" />
<key command="make_unique_editor" shortcut="Ctrl+1" />
<key command="split_editor_vertically" shortcut="Ctrl+2" />
<key command="split_editor_horizontally" shortcut="Ctrl+3" />
<key command="close_editor" shortcut="Ctrl+4" />
<key command="preview_fit_to_screen" shortcut="F6" />
<key command="preview_normal" shortcut="F7" />
<key command="preview_tiled" shortcut="F8" />
<key command="show_grid" shortcut="Shift+G" />
<key command="snap_to_grid" shortcut="Shift+S" />
<!-- tools -->
<key command="configure_tools" shortcut="C" />
<key command="film_editor" shortcut="Tab" />
<key command="convolution_matrix" shortcut="F9" />
<key command="color_curve" shortcut="Ctrl+M" />
<key command="color_curve" shortcut="F10" />
<!-- <key command="run_script" shortcut="Ctrl+0" /> -->
<key command="tips" shortcut="F1" />
<key command="options" shortcut="Shift+Ctrl+O" />
<!-- others -->
<key command="eyedropper" shortcut="I" />
<key command="switch_colors" shortcut="X" />
</commands>
<tools>
<key tool="rectangular_marquee" shortcut="M" />
<key tool="eraser" shortcut="E" />
<key tool="pencil" shortcut="B" />
<key tool="brush" shortcut="B" />
<key tool="spray" shortcut="S" />
<key tool="paint_bucket" shortcut="G" />
<key tool="line" shortcut="L" />
<key tool="rectangle" shortcut="U" />
<key tool="ellipse" shortcut="U" />
<key tool="blur" shortcut="R" />
</tools>
2007-09-26 19:41:01 +00:00
</keyboard>
<!-- main bar menu -->
2007-09-26 19:41:01 +00:00
<menu id="main_menu">
<menu name="&File">
<item command="new_file" name="&New..." />
<item command="open_file" name="&Open..." />
2007-09-26 19:41:01 +00:00
<item id="recent_list" name="Open &Recent" />
<separator />
<item command="save_file" name="&Save" />
<item command="save_file_as" name="Save &As..." />
<item command="close_file" name="&Close" />
<item command="close_all_files" name="Close All" />
<separator />
<menu name="Ca&pture">
<item command="screen_shot" name="Screen Shot" />
<item command="record_screen" name="Record Screen" />
</menu>
<separator />
<item command="exit" name="E&xit" />
</menu>
<menu name="&Edit">
<item command="undo" name="&Undo" />
<item command="redo" name="&Redo" />
<separator />
<item command="cut" name="Cu&t" />
<item command="copy" name="&Copy" />
<item command="paste" name="&Paste" />
<item command="clear" name="C&lear" />
<separator />
<item command="flip_horizontal" name="Flip &Horizontal" />
<item command="flip_vertical" name="Flip &Vertical" />
<separator />
<item command="replace_color" name="R&eplace Color..." />
2007-09-26 19:41:01 +00:00
<item command="invert_color" name="&Invert" />
</menu>
2007-11-16 20:49:40 +00:00
<menu name="&Sprite">
<item command="sprite_properties" name="&Properties..." />
2007-09-26 19:41:01 +00:00
<separator />
<item command="change_image_type" name="&Color Mode..." />
2007-09-26 19:41:01 +00:00
<separator />
<item command="duplicate_sprite" name="&Duplicate..." />
2007-09-26 19:41:01 +00:00
<item command="crop_sprite" name="Cr&op" />
2007-10-04 02:44:09 +00:00
<item command="autocrop_sprite" name="&Auto Crop" />
2007-09-26 19:41:01 +00:00
</menu>
<menu name="&Layer" id="layer_popup">
<item command="layer_properties" name="&Properties..." />
2007-09-26 19:41:01 +00:00
<separator />
<item command="new_layer" name="&New..." />
<!-- <item command="new_layer_set" name="New &Set" /> -->
2007-09-26 19:41:01 +00:00
<item command="remove_layer" name="&Remove" />
<item command="background_from_layer" name="&Background from Layer" />
2008-03-27 16:58:14 +00:00
<item command="layer_from_background" name="&Layer from Background" />
2007-09-26 19:41:01 +00:00
<separator />
<item command="duplicate_layer" name="&Duplicate..." />
2007-09-26 19:41:01 +00:00
<item command="merge_down_layer" name="&Merge Down" />
<item command="flatten_layers" name="&Flatten" />
<item command="crop_layer" name="Cr&op" />
</menu>
<menu name="F&rame" id="frame_popup">
<item command="frame_properties" name="&Properties..." />
<separator />
<item command="new_frame" name="&New" />
<item command="remove_frame" name="&Remove" />
<separator />
<menu name="&Go to">
<item command="goto_first_frame" name="&First" />
<item command="goto_previous_frame" name="&Previous" />
<item command="goto_next_frame" name="&Next" />
<item command="goto_last_frame" name="&Last" />
</menu>
<item command="play_animation" name="&Play" />
</menu>
2007-11-16 20:49:40 +00:00
<menu name="&Cel" id="cel_popup">
<item command="cel_properties" name="&Properties..." />
2007-09-26 19:41:01 +00:00
<separator />
2008-03-27 16:58:14 +00:00
<!-- <item command="new_cel" name="&New" /> -->
2007-11-16 20:49:40 +00:00
<item command="move_cel" name="&Move" />
<item command="copy_cel" name="&Copy" />
<!-- <item command="link_cel" name="&Link" /> -->
2008-03-27 16:58:14 +00:00
<!-- <item command="remove_cel" name="&Remove" /> -->
<!-- <separator /> -->
<!-- <item command="crop_cel" name="Cr&op" /> -->
2007-09-26 19:41:01 +00:00
</menu>
2007-11-16 20:49:40 +00:00
<menu name="&Mask">
2007-09-26 19:41:01 +00:00
<item command="mask_all" name="&All" />
<item command="deselect_mask" name="&Deselect" />
<item command="reselect_mask" name="&Reselect" />
<item command="invert_mask" name="&Inverse" />
<separator />
<item command="mask_by_color" name="&Color Range" />
<separator />
<item command="load_mask" name="&Load from MSK file" />
<item command="save_mask" name="&Save to MSK file" />
2007-09-26 19:41:01 +00:00
</menu>
<menu name="&View">
<item command="advanced_mode" name="&Advanced Mode" />
<menu name="&Editor">
<item command="make_unique_editor" name="Make &Unique" />
<separator />
<item command="split_editor_vertically" name="Split &Vertically" />
<item command="split_editor_horizontally" name="Split &Horizontally" />
<separator />
<item command="close_editor" name="&Close" />
</menu>
<separator />
<menu name="&Grid">
<item command="show_grid" name="Show &Grid" />
<item command="snap_to_grid" name="&Snap to Grid" />
</menu>
<menu name="&Preview">
<item command="preview_fit_to_screen" name="&Fit to screen" />
<item command="preview_normal" name="&Normal" />
<item command="preview_tiled" name="&Tiled" />
</menu>
<separator />
<item command="refresh" name="&Refresh" />
<item command="configure_screen" name="Configure &Screen" />
</menu>
2007-09-26 19:41:01 +00:00
<menu name="&Tools">
<item command="configure_tools" name="&Configure" />
<separator />
2008-03-29 03:44:24 +00:00
<item command="film_editor" name="&Animation Editor" />
2007-09-26 19:41:01 +00:00
<item command="palette_editor" name="&Palette Editor" />
<separator />
<menu name="F&X" id="fx_popup">
<item command="convolution_matrix" name="Convolution &Matrix" />
<item command="color_curve" name="&Color Curve" />
<separator />
<item command="despeckle" name="&Despeckle (median filter)" />
</menu>
<!-- <item command="draw_text" name="Draw &Text" /> -->
<!-- <menu name="Scripting"> -->
<!-- <item command="run_script" name="Run &Script" /> -->
<!-- </menu> -->
<!-- <menu name="Extras"> -->
<!-- <item command="play_flic" name="Pla&y FLI/FLC File" /> -->
<!-- </menu> -->
2007-09-26 19:41:01 +00:00
<separator />
<item command="options" name="&Options" />
</menu>
<menu name="&Help">
<item command="tips" name="&Tips" />
<separator />
<item command="about" name="&About" />
</menu>
2007-09-26 19:41:01 +00:00
</menu>
2007-09-26 19:41:01 +00:00
</gui>