[gimp] Fixed procedure name and internationalisation.
- From: Sven Neumann <neo src gnome org>
- To: svn-commits-list gnome org
- Subject: [gimp] Fixed procedure name and internationalisation.
- Date: Mon, 11 May 2009 10:26:45 -0400 (EDT)
commit 259f3bd2ba74a19cd9ac5316e6d2a34fef3b09b5
Author: Sven Neumann <s neumann raumfeld com>
Date: Fri May 8 16:24:15 2009 +0200
Fixed procedure name and internationalisation.
Use a spin-button for the font-size.
---
plug-ins/pygimp/plug-ins/text-brush.py | 13 ++++++-------
1 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/plug-ins/pygimp/plug-ins/text-brush.py b/plug-ins/pygimp/plug-ins/text-brush.py
index 0f8adf2..0070a3e 100755
--- a/plug-ins/pygimp/plug-ins/text-brush.py
+++ b/plug-ins/pygimp/plug-ins/text-brush.py
@@ -71,20 +71,19 @@ def text_brush(font_name, font_size, text):
pdb.gimp_context_pop()
register(
- "text_brush",
- N_("New brush with characters from a text sequence"),
+ "brush-from-text",
+ N_("Create a new brush with characters from a text sequence"),
"""New dynamic brush where each cell is a character from
the input text in the chosen font """,
"Joao S. O. Bueno",
"Copyright Joao S.O. Bueno 2009. GPL v3.0",
"2009",
- N_("New _Brush from Text..."),
+ N_("New Brush from _Text..."),
"",
[
- (PF_FONT, "font", "Font","Sans"),
- (PF_INT, "size", "Pixel Size", 50),
- (PF_STRING, "text", "text",
- "The GNU Image Manipulation Program")
+ (PF_FONT, "font", _("Font"), "Sans"),
+ (PF_SPINNER, "size", _("Pixel Size"), 50, (1, 8000, 1)),
+ (PF_STRING, "text", _("Text"), "GNU Image Manipulation Program")
],
[],
text_brush,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]