themes/Default/images/Makefile.am
2002-10-09 Sven Neumann <sven@gimp.org> * themes/Default/images/Makefile.am * themes/Default/images/stock-char-picker-22.png * themes/Default/images/stock-letter-spacing-22.png * themes/Default/images/stock-line-spacing-22.png: new icons taken from #84151. * libgimpwidgets/gimpstock.[ch]: added the new icons.
This commit is contained in:

committed by
Sven Neumann

parent
7b99dbac51
commit
9370ced6c7
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2002-10-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* themes/Default/images/Makefile.am
|
||||
* themes/Default/images/stock-char-picker-22.png
|
||||
* themes/Default/images/stock-letter-spacing-22.png
|
||||
* themes/Default/images/stock-line-spacing-22.png: new icons taken
|
||||
from #84151.
|
||||
|
||||
* libgimpwidgets/gimpstock.[ch]: added the new icons.
|
||||
|
||||
2002-10-09 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpcontainermenu.c
|
||||
|
18
NEWS
18
NEWS
@ -8,13 +8,29 @@ development takes place on the road to the next stable release
|
||||
dubbed GIMP 1.4.
|
||||
|
||||
|
||||
Overview of Changes in GIMP 1.3.9
|
||||
=================================
|
||||
- Started to cleanup DND code [Mitch]
|
||||
- Added GimpViewableDialog [Mitch]
|
||||
- Improved UI of color adjustment tools [Mitch]
|
||||
- Added new icons [Jimmac, Mitch]
|
||||
- Added GimpSelectionEditor, a view on the current selection [Mitch]
|
||||
- Improved imagemap plug-in [Maurits]
|
||||
- GUI cleanups [Mitch, Sven, Maurits]
|
||||
- Build fixes [Hans, Yosh, Sven]
|
||||
- Lots of bug fixes
|
||||
|
||||
Other contributors:
|
||||
James Henstridge, Dave Neary, Simon Budig
|
||||
|
||||
|
||||
Overview of Changes in GIMP 1.3.8
|
||||
=================================
|
||||
- Lots of plug-ins cleaned up and improved [Maurits]
|
||||
- More work on the help browser [Sven]
|
||||
- Core code cleanup [Mitch, Sven]
|
||||
- Improved icons [Jimmac]
|
||||
- Fixed permissions of shared memory segments.
|
||||
- Fixed permissions of shared memory segments
|
||||
- Build fixes [Yosh, Sven]
|
||||
- Bug fixes
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-10-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpwidgets/libgimpwidgets-sections.txt
|
||||
* libgimpwidgets/tmpl/gimpstock.sgml: updated.
|
||||
|
||||
2002-10-08 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpwidgets/libgimpwidgets-sections.txt
|
||||
|
@ -250,6 +250,7 @@ GIMP_QUERY_BOX_VBOX
|
||||
gimp_stock_init
|
||||
GIMP_STOCK_ALL
|
||||
GIMP_STOCK_ANCHOR
|
||||
GIMP_STOCK_CHAR_PICKER
|
||||
GIMP_STOCK_CONVERT_GRAYSCALE
|
||||
GIMP_STOCK_CONVERT_INDEXED
|
||||
GIMP_STOCK_CONVERT_RGB
|
||||
@ -262,6 +263,8 @@ GIMP_STOCK_HCHAIN_BROKEN
|
||||
GIMP_STOCK_INFO
|
||||
GIMP_STOCK_INVERT
|
||||
GIMP_STOCK_LAYER_TO_IMAGESIZE
|
||||
GIMP_STOCK_LETTER_SPACING
|
||||
GIMP_STOCK_LINE_SPACING
|
||||
GIMP_STOCK_LINKED
|
||||
GIMP_STOCK_MERGE_DOWN
|
||||
GIMP_STOCK_NAVIGATION
|
||||
|
@ -35,6 +35,13 @@ Prebuilt common menu/toolbar items and corresponding icons
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_CHAR_PICKER ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_CONVERT_GRAYSCALE ##### -->
|
||||
<para>
|
||||
|
||||
@ -119,6 +126,20 @@ Prebuilt common menu/toolbar items and corresponding icons
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_LETTER_SPACING ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_LINE_SPACING ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_LINKED ##### -->
|
||||
<para>
|
||||
|
||||
|
@ -124,8 +124,12 @@ static GtkStockItem gimp_stock_items[] =
|
||||
{ GIMP_STOCK_ROTATE_90, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_ROTATE_180, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_ROTATE_270, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_RESIZE, N_("Resize"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_SCALE, N_("Scale"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_RESIZE, N_("_Resize"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_SCALE, N_("_Scale"), 0, 0, "gimp14-libgimp" },
|
||||
|
||||
{ GIMP_STOCK_CHAR_PICKER, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_LETTER_SPACING, N_("L_etter Spacing"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_LINE_SPACING, N_("L_ine Spacing"), 0, 0, "gimp14-libgimp" },
|
||||
|
||||
{ GIMP_STOCK_NAVIGATION, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_QMASK_OFF, NULL, 0, 0, "gimp14-libgimp" },
|
||||
@ -164,12 +168,12 @@ static GtkStockItem gimp_stock_items[] =
|
||||
{ GIMP_STOCK_TOOL_PAINTBRUSH, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_PATH, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_PENCIL, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_PERSPECTIVE, N_("Transform"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_PERSPECTIVE, N_("_Transform"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_POSTERIZE, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_RECT_SELECT, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_ROTATE, N_("Rotate"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_SCALE, N_("Scale"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_SHEAR, N_("Shear"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_ROTATE, N_("_Rotate"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_SCALE, N_("_Scale"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_SHEAR, N_("_Shear"), 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_SMUDGE, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_TEXT, NULL, 0, 0, "gimp14-libgimp" },
|
||||
{ GIMP_STOCK_TOOL_THRESHOLD, NULL, 0, 0, "gimp14-libgimp" },
|
||||
@ -197,6 +201,10 @@ gimp_stock_button_pixbufs[] =
|
||||
{ GIMP_STOCK_VCHAIN, stock_vchain_24 },
|
||||
{ GIMP_STOCK_VCHAIN_BROKEN, stock_vchain_broken_24 },
|
||||
|
||||
{ GIMP_STOCK_CHAR_PICKER, stock_char_picker_22 },
|
||||
{ GIMP_STOCK_LETTER_SPACING, stock_letter_spacing_22 },
|
||||
{ GIMP_STOCK_LINE_SPACING, stock_line_spacing_22 },
|
||||
|
||||
{ GIMP_STOCK_SELECTION_REPLACE, stock_selection_replace_16 },
|
||||
{ GIMP_STOCK_SELECTION_ADD, stock_selection_add_16 },
|
||||
{ GIMP_STOCK_SELECTION_SUBTRACT, stock_selection_subtract_16 },
|
||||
|
@ -53,6 +53,9 @@ G_BEGIN_DECLS
|
||||
|
||||
#define GIMP_STOCK_PATH_STROKE "gimp-path-stroke"
|
||||
|
||||
#define GIMP_STOCK_CHAR_PICKER "gimp-char-picker"
|
||||
#define GIMP_STOCK_LETTER_SPACING "gimp-letter-spacing"
|
||||
#define GIMP_STOCK_LINE_SPACING "gimp-line-spacing"
|
||||
|
||||
/* only in menu size: */
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2002-10-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* de.po: updated german translation.
|
||||
|
||||
2002-09-23 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* no.po: Updated Norwegian (bokm<6B>l) translation.
|
||||
|
144
po-libgimp/de.po
144
po-libgimp/de.po
@ -6,23 +6,20 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GIMP 1.3.7\n"
|
||||
"POT-Creation-Date: 2002-09-05 20:18+0200\n"
|
||||
"PO-Revision-Date: 2002-09-05 20:19+0100\n"
|
||||
"Project-Id-Version: GIMP 1.3.9\n"
|
||||
"POT-Creation-Date: 2002-10-09 13:55+0200\n"
|
||||
"PO-Revision-Date: 2002-10-09 13:56+0200\n"
|
||||
"Last-Translator: Christian Neumair <christian-neumair@web.de>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: libgimp/gimpexport.c:170
|
||||
#: libgimp/gimpexport.c:206
|
||||
#: libgimp/gimpexport.c:170 libgimp/gimpexport.c:206
|
||||
msgid "can't handle layers"
|
||||
msgstr "kennt keine Ebenen"
|
||||
|
||||
#: libgimp/gimpexport.c:171
|
||||
#: libgimp/gimpexport.c:180
|
||||
#: libgimp/gimpexport.c:189
|
||||
#: libgimp/gimpexport.c:171 libgimp/gimpexport.c:180 libgimp/gimpexport.c:189
|
||||
msgid "Merge Visible Layers"
|
||||
msgstr "Sichtbare Ebenen vereinen"
|
||||
|
||||
@ -30,19 +27,15 @@ msgstr "Sichtbare Ebenen vereinen"
|
||||
msgid "can't handle layer offsets, size or opacity"
|
||||
msgstr "kennt keine Ebeneneigenschaften wie Versatz, Grösse und Transparenz"
|
||||
|
||||
#: libgimp/gimpexport.c:188
|
||||
#: libgimp/gimpexport.c:197
|
||||
#: libgimp/gimpexport.c:188 libgimp/gimpexport.c:197
|
||||
msgid "can only handle layers as animation frames"
|
||||
msgstr "kann Ebenen nur als Animation abspeichern"
|
||||
|
||||
#: libgimp/gimpexport.c:189
|
||||
#: libgimp/gimpexport.c:198
|
||||
#: libgimp/gimpexport.c:189 libgimp/gimpexport.c:198
|
||||
msgid "Save as Animation"
|
||||
msgstr "Als Animation speichern"
|
||||
|
||||
#: libgimp/gimpexport.c:198
|
||||
#: libgimp/gimpexport.c:207
|
||||
#: libgimp/gimpexport.c:216
|
||||
#: libgimp/gimpexport.c:198 libgimp/gimpexport.c:207 libgimp/gimpexport.c:216
|
||||
msgid "Flatten Image"
|
||||
msgstr "Bild zusammenfügen"
|
||||
|
||||
@ -54,9 +47,7 @@ msgstr "kennt keine Transparenz"
|
||||
msgid "can only handle RGB images"
|
||||
msgstr "kennt nur RGB"
|
||||
|
||||
#: libgimp/gimpexport.c:225
|
||||
#: libgimp/gimpexport.c:253
|
||||
#: libgimp/gimpexport.c:262
|
||||
#: libgimp/gimpexport.c:225 libgimp/gimpexport.c:253 libgimp/gimpexport.c:262
|
||||
msgid "Convert to RGB"
|
||||
msgstr "In RGB umwandeln"
|
||||
|
||||
@ -64,9 +55,7 @@ msgstr "In RGB umwandeln"
|
||||
msgid "can only handle grayscale images"
|
||||
msgstr "kennt nur Graustufen"
|
||||
|
||||
#: libgimp/gimpexport.c:234
|
||||
#: libgimp/gimpexport.c:253
|
||||
#: libgimp/gimpexport.c:274
|
||||
#: libgimp/gimpexport.c:234 libgimp/gimpexport.c:253 libgimp/gimpexport.c:274
|
||||
msgid "Convert to Grayscale"
|
||||
msgstr "In Graustufen umwandeln"
|
||||
|
||||
@ -74,12 +63,12 @@ msgstr "In Graustufen umwandeln"
|
||||
msgid "can only handle indexed images"
|
||||
msgstr "kennt nur indizierte Paletten"
|
||||
|
||||
#: libgimp/gimpexport.c:243
|
||||
#: libgimp/gimpexport.c:262
|
||||
#: libgimp/gimpexport.c:272
|
||||
msgid "Convert to Indexed using default settings\n"
|
||||
#: libgimp/gimpexport.c:243 libgimp/gimpexport.c:262 libgimp/gimpexport.c:272
|
||||
msgid ""
|
||||
"Convert to Indexed using default settings\n"
|
||||
"(Do it manually to tune the result)"
|
||||
msgstr "Mit Standardeinstellungen in indiziertes Format umwandeln\n"
|
||||
msgstr ""
|
||||
"Mit Standardeinstellungen in indiziertes Format umwandeln\n"
|
||||
"(Für bessere Resultate, diesen Schritt manuell durchführen)"
|
||||
|
||||
#: libgimp/gimpexport.c:252
|
||||
@ -121,9 +110,11 @@ msgstr "Abbrechen"
|
||||
|
||||
#: libgimp/gimpexport.c:376
|
||||
#, c-format
|
||||
msgid "You are about to save %s as %s.\n"
|
||||
msgid ""
|
||||
"You are about to save %s as %s.\n"
|
||||
"This will not save the visible layers."
|
||||
msgstr "Sie sichern %s als %s.\n"
|
||||
msgstr ""
|
||||
"Sie sichern %s als %s.\n"
|
||||
"Die sichtbaren Ebenen werden dabei nicht gesichert."
|
||||
|
||||
#.
|
||||
@ -131,38 +122,38 @@ msgstr "Sie sichern %s als %s.\n"
|
||||
#. * Otherwise bad things will happen now!!
|
||||
#.
|
||||
#. the dialog
|
||||
#: libgimp/gimpexport.c:414
|
||||
#: libgimp/gimpexport.c:416
|
||||
msgid "Export File"
|
||||
msgstr "Datei exportieren"
|
||||
|
||||
#: libgimp/gimpexport.c:419
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
|
||||
#: libgimp/gimpexport.c:421
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
#: libgimp/gimpexport.c:438
|
||||
msgid "Your image should be exported before it can be saved for the following reasons:"
|
||||
#: libgimp/gimpexport.c:427
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
|
||||
#: libgimp/gimpexport.c:453
|
||||
msgid ""
|
||||
"Your image should be exported before it can be saved for the following "
|
||||
"reasons:"
|
||||
msgstr "Das Bild sollte vor dem Abspeichern exportiert werden, denn:"
|
||||
|
||||
#. the footline
|
||||
#: libgimp/gimpexport.c:503
|
||||
#: libgimp/gimpexport.c:527
|
||||
msgid "The export conversion won't modify your original image."
|
||||
msgstr "Dieser Vorgang wird das Originalbild nicht verändern."
|
||||
|
||||
#: libgimp/gimpexport.c:571
|
||||
#: libgimp/gimpexport.c:595
|
||||
msgid "a layer mask"
|
||||
msgstr "eine Ebenenmaske"
|
||||
|
||||
#: libgimp/gimpexport.c:573
|
||||
#: libgimp/gimpexport.c:597
|
||||
msgid "a channel (saved selection)"
|
||||
msgstr "einen Kanal (gesicherte Selektion)"
|
||||
|
||||
#: libgimp/gimpmenu.c:163
|
||||
#: libgimp/gimpmenu.c:283
|
||||
#: libgimp/gimpmenu.c:398
|
||||
#: libgimp/gimpmenu.c:163 libgimp/gimpmenu.c:283 libgimp/gimpmenu.c:398
|
||||
#: libgimp/gimpmenu.c:580
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
@ -228,29 +219,36 @@ msgid "Visible"
|
||||
msgstr "Sichtbar"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:127
|
||||
msgid "Resize"
|
||||
msgstr "Größe ändern"
|
||||
msgid "_Resize"
|
||||
msgstr "_Größe ändern"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:128
|
||||
#: libgimpwidgets/gimpstock.c:171
|
||||
msgid "Scale"
|
||||
msgstr "Skalieren"
|
||||
#: libgimpwidgets/gimpstock.c:128 libgimpwidgets/gimpstock.c:175
|
||||
msgid "_Scale"
|
||||
msgstr "_Skalieren"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:149
|
||||
#: libgimpwidgets/gimpstock.c:131
|
||||
msgid "L_etter Spacing"
|
||||
msgstr "L_aufweite"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:132
|
||||
msgid "L_ine Spacing"
|
||||
msgstr "Z_eilenabstand"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:153
|
||||
msgid "Crop"
|
||||
msgstr "Zuschneiden"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:167
|
||||
msgid "Transform"
|
||||
msgstr "Transformation"
|
||||
#: libgimpwidgets/gimpstock.c:171
|
||||
msgid "_Transform"
|
||||
msgstr "_Transformation"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:170
|
||||
msgid "Rotate"
|
||||
msgstr "Rotieren"
|
||||
#: libgimpwidgets/gimpstock.c:174
|
||||
msgid "_Rotate"
|
||||
msgstr "_Rotieren"
|
||||
|
||||
#: libgimpwidgets/gimpstock.c:172
|
||||
msgid "Shear"
|
||||
msgstr "Scheren"
|
||||
#: libgimpwidgets/gimpstock.c:176
|
||||
msgid "_Shear"
|
||||
msgstr "_Scheren"
|
||||
|
||||
#: libgimpwidgets/gimpunitmenu.c:265
|
||||
msgid "More..."
|
||||
@ -268,31 +266,39 @@ msgstr "Einheit"
|
||||
msgid "Factor"
|
||||
msgstr "Faktor"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:845
|
||||
msgid "If the \"Time\" button is not pressed, use this value for random number generator seed - this allows you to repeat a given \"random\" operation"
|
||||
msgstr "Wenn der \"Zeit\"-Knopf nicht aktiviert ist, nimm diesen Wert für den Zufallsgenerator - dies ermgöglicht es \"zufällige\" Funktionen zu wiederholen"
|
||||
#: libgimpwidgets/gimpwidgets.c:879
|
||||
msgid ""
|
||||
"If the \"Time\" button is not pressed, use this value for random number "
|
||||
"generator seed - this allows you to repeat a given \"random\" operation"
|
||||
msgstr ""
|
||||
"Wenn der \"Zeit\"-Knopf nicht aktiviert ist, nimm diesen Wert für den "
|
||||
"Zufallsgenerator - dies ermgöglicht es \"zufällige\" Funktionen zu "
|
||||
"wiederholen"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:850
|
||||
#: libgimpwidgets/gimpwidgets.c:884
|
||||
msgid "_Time"
|
||||
msgstr "_Zeit"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:859
|
||||
msgid "Seed random number generator from the current time - this guarantees a reasonable randomization"
|
||||
msgstr "Speise Zufallsgenerator mit der aktuellen Zeit - dies garantiert eine vernünftige Wahrscheinlichkeit"
|
||||
#: libgimpwidgets/gimpwidgets.c:893
|
||||
msgid ""
|
||||
"Seed random number generator from the current time - this guarantees a "
|
||||
"reasonable randomization"
|
||||
msgstr ""
|
||||
"Speise Zufallsgenerator mit der aktuellen Zeit - dies garantiert eine "
|
||||
"vernünftige Wahrscheinlichkeit"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:1175
|
||||
#: libgimpwidgets/gimpwidgets.c:1219
|
||||
msgid "Bytes"
|
||||
msgstr "Byte"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:1176
|
||||
#: libgimpwidgets/gimpwidgets.c:1220
|
||||
msgid "KiloBytes"
|
||||
msgstr "KiloByte"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:1177
|
||||
#: libgimpwidgets/gimpwidgets.c:1221
|
||||
msgid "MegaBytes"
|
||||
msgstr "MegaByte"
|
||||
|
||||
#: libgimpwidgets/gimpwidgets.c:1178
|
||||
#: libgimpwidgets/gimpwidgets.c:1222
|
||||
msgid "GigaBytes"
|
||||
msgstr "GigaByte"
|
||||
|
||||
|
@ -41,10 +41,13 @@ WILBER_VARIABLES = \
|
||||
|
||||
STOCK_BUTTON_IMAGES = \
|
||||
stock-anchor-16.png \
|
||||
stock-char-picker-22.png \
|
||||
stock-duplicate-16.png \
|
||||
stock-edit-16.png \
|
||||
stock-eye-20.png \
|
||||
stock-line-spacing-22.png \
|
||||
stock-linked-20.png \
|
||||
stock-letter-spacing-22.png \
|
||||
stock-paste-as-new-16.png \
|
||||
stock-paste-into-16.png \
|
||||
stock-reset-16.png \
|
||||
|
BIN
themes/Default/images/stock-char-picker-22.png
Normal file
BIN
themes/Default/images/stock-char-picker-22.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 653 B |
BIN
themes/Default/images/stock-letter-spacing-22.png
Normal file
BIN
themes/Default/images/stock-letter-spacing-22.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 372 B |
BIN
themes/Default/images/stock-line-spacing-22.png
Normal file
BIN
themes/Default/images/stock-line-spacing-22.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 314 B |
Reference in New Issue
Block a user