mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
|
<!-- ase -- allegro-sprite-editor: the ultimate sprites factory -->
|
||
|
<!-- Copyright (C) 2001-2005 by David A. Capello -->
|
||
|
|
||
|
<!-- Read "LEGAL.txt" for more information. -->
|
||
|
|
||
|
<window text=_("New Image Layer") name="new_layer">
|
||
|
<box vertical>
|
||
|
<box horizontal>
|
||
|
<box vertical homogeneous>
|
||
|
<label text=_("Name:") />
|
||
|
<label text=_("Width:") />
|
||
|
<label text=_("Height:") />
|
||
|
</box>
|
||
|
<box vertical homogeneous>
|
||
|
<entry maxsize=256 text=_("New Layer") name="name" />
|
||
|
<entry maxsize=4 name="width" />
|
||
|
<entry maxsize=4 name="height" />
|
||
|
</box>
|
||
|
</box>
|
||
|
<box horizontal homogeneous>
|
||
|
<button text=_("&OK") name="ok" magnetic />
|
||
|
<button text=_("&Cancel") />
|
||
|
</box>
|
||
|
</box>
|
||
|
</window>
|
||
|
|
||
|
<window text=_("New Layer Set") name="new_layer_set">
|
||
|
<box vertical>
|
||
|
<box horizontal>
|
||
|
<label text=_("Name:") />
|
||
|
<entry maxsize=256 text=_("New Set") name="name" />
|
||
|
</box>
|
||
|
<box horizontal homogeneous>
|
||
|
<button text=_("&OK") name="ok" magnetic />
|
||
|
<button text=_("&Cancel") />
|
||
|
</box>
|
||
|
</box>
|
||
|
</window>
|