From 5cda0092bac0b1f57b6f921385ac1e9a857aa773 Mon Sep 17 00:00:00 2001
From: Bill Kendrick
+ Copyright © 2007-2024 by various contributors; see AUTHORS.txt.
+ janar 26, 2024
+ Beginning with version 0.9.18, Tux Paint's 'Magic' tools were converted from routines that lived within the application itself, to a set of 'plugins' that are loaded when Tux Paint starts up.
+ This division allows more rapid development of 'Magic' tools, and allows programmers to create and test new tools without needing to integrate them within the main Tux Paint source code. (Users of more professional graphics tools, such as GIMP, should be familiar with this plugin concept.)
+ Tux Paint is written in the C programming language, and uses the Simple DirectMedia Layer library ('libSDL', or simply 'SDL'; available from https://www.libsdl.org/). Therefore, for the moment at least, one must understand the C language and how to compile C-based programs. Familiarity with the SDL API is highly recommended, but some basic SDL concepts will be covered in this document.
+ Those who create 'Magic' tool plugins for Tux Paint must provide some interfaces (C functions) that Tux Paint may invoke.
+ Tux Paint utilizes SDL's "SDL_LoadObject()" and "SDL_LoadFunction()" routines to load plugins (shared objects files; e.g., "
+ In turn, Tux Paint provides a number of helper functions that the plugin may (or sometimes is required to) use. This is exposed as a C structure (or "
+ Plugins should
+ The C header file and command-line tool mentioned above are included with Tux Paint — or in some cases, as part of a "Tux Paint 'Magic' Tool Plugin Development package".
+ 'Magic' tool plugins must contain the functions listed below. Note: To avoid 'namespace' collisions, each function's name must start with the shared object's filename (e.g., "blur.so" or "blur.dll" would have functions whose names begin with "
+ Here is a description of arguments that many of your plugin's functions will need to accept.
+ Pointer to a C structure containing pointers to Tux Paint functions and other data that the plugin can (and sometimes should) use. The contents of this struct are described below.
+ Note: The
+
+
+ 
+ version 0.9.32
+ Magic Tool Plugin API Documentation
+
+
+ https://tuxpaint.org/
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+ Overview
+
+ Prerequisites
+
+ Interfaces
+ .so" files on Linux or ".dll" files on Windows) and find the functions within. struct") which contains pointers to functions and other data inside Tux Paint. A pointer to this structure gets passed along to the plugin's functions as an argument when Tux Paint invokes them. #include the C header file "tp_magic_api.h", which exposes the 'Magic' tool plugin API. Also, when you run the C compiler to build a plugin, you should use the command-line tool "tp-magic-config" to get the appropriate compiler flags (such as where the compiler can find the Tux Paint plugin header file, as well as SDL's header files) for building a plugin. (See "Compiling", below.)
+ 'Magic' tool plugin functions
+ blur_"). This includes private functions (ones not used by Tux Paint directly), unless you declare those as 'static'.
+ Common arguments to plugin functions
+
+
magic_api * apimagic_api struct is defined in the C header file "tp_magic_api.h", which you should include at the top of your plugin's C source file:
+
+ #include "tp_magic_api.h"
+
int whichSDL_Surface * snapshotsnapshot" and write to "canvas", below.) SDL_Surface * canvasSDL_Rect * update_rect
+ update_rect->x = x - 16;
+ update_rect->y = y - 16;
+ update_rect->w = 32;
+ update_rect->h = 32;
+
+ Or, if your effect changes the entire canvas (e.g., flips it upside-down), you'd fill it as follows:
+ update_rect->x = 0;
+ update_rect->y = 0;
+ update_rect->w = canvas->w;
+ update_rect->h = canvas->h;
+
+ Note: "update_rect" is a C pointer (an "SDL_Rect *" rather than just an "SDL_Rect") because you need to fill in its contents. Since it is a pointer, you access its elements via "->" (arrow) rather than "." (dot). + Your plugin is required to contain, at the least, all of the following functions.
+ +
+ Note: Remember, your plugin's function names must be preceded by your plugin's filename. That is, if your plugin is called "zoom.so" (on Linux) or "zoom.dll" (on Windows), then the names of your functions must begin with "zoom_" (e.g., "zoom_get_name(...)").
Uint32 api_version(void)
+ The plugin should return an integer value representing the version of the Tux Paint 'Magic' tool plugin API the plugin was built against. The safest thing to do is return the value of TP_MAGIC_API_VERSION, which is defined in "tp_magic_api.h". If Tux Paint deems your plugin to be compatible, it will go ahead and use it.
+ Note: Called once by Tux Paint, at startup. It is called first.
+int init(magic_api * api, Uint8 disabled_features, Uint8 complexity_level)+ The plugin should do any initialization here. Return '1' if initialization was successful, or '0' if not (and Tux Paint will not present any 'Magic' tools from the plugin).
+
+ Note: Called once by Tux Paint, at startup. It is called after "api_version()", if Tux Paint believes your plugin to be compatible.
+ The disabled_features value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '&'. The features are defined in tp_magic_api.h:
MAGIC_FEATURE_CONTROL: Magic tool controls (paint vs fullscreen) (--nomagiccontrols) MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
+ The complexity_level variable contains the "complexity level" that Tux Paint magic tools may offer — that is, the expertise level of the user. The levels are defined in tp_magic_api.h:
MAGIC_COMPLEXITY_NOVICE (0): Novice (--complexity=novice) MAGIC_COMPLEXITY_BEGINNER (1): Beginner (--complexity=beginner) MAGIC_COMPLEXITY_ADVANCED (2): Advanced (default) (--complexity=advanced) + Note: Changed most recently in Tux Paint 0.9.32; Magic API version 0x00000009.
+int get_tool_count(magic_api * api)+ This should return the number of Magic tools this plugin provides to Tux Paint.
+
+ Note: Called once by Tux Paint, at startup. It is called after your "init()", if it succeeded.
+ Note: You may wish to resond differently, based on whether certain features have been disabled (e.g., 'paint' versus 'entire picture' controls, or 'Magic sizes' controls).
+int modes(magic_api * api, int which)+ This lets you tell Tux Paint what modes your tool can be used in; either as a tool the user can paint with, or a tool that affects the entire drawing at once.
++ You must return a value that's some combination of one or more of available modes:
MODE_PAINT - freehand paint (click and drag) MODE_FULLSCREEN - applies to full image with one click MODE_PAINT_WITH_PREVIEW - freehand paint, with preview (click and drag) MODE_ONECLICK - applies to an area around the mouse, with one click MODE_PAINT". If the user can do both, return "MODE_PAINT | MODE_FULLSCREEN" to tell Tux Paint it can do both.
+
+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").
+ Note: Added to Tux Paint 0.9.21; Magic API version 0x00000002.
+char * get_name(magic_api * api, int which)+ This should return a string containing the name of a magic tool. This will appear on the button in the 'Magic' selector within Tux Paint.
+
+ Tux Paint will free() the string upon exit, so you should wrap it in a C strdup() call.
+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").
int get_group(magic_api * api, int which)
+ Use this to group tools together within sections of the 'Magic' selector. A number of groups are pre-defined within an enum found in "tp_magic_api.h":
MAGIC_TYPE_DISTORTS — Tools that distort the shape of the image, like Blur, Emboss, and Ripples MAGIC_TYPE_COLOR_FILTERS — Tools that mostly affect the colors of the image without distortion, like Darken, Negative, and Tint MAGIC_TYPE_PICTURE_WARPS — Tools that warp or move the entire picture, like Shift, Flip, and Waves MAGIC_TYPE_PAINTING — Tools that generally paint new content at the cursor position, like Grass, Bricks, and Rails MAGIC_TYPE_PATTERN_PAINTING — Tools that paint in multiple places at once, like Kaleidoscope and the Symmetry tools MAGIC_TYPE_PICTURE_DECORATIONS — Tools that apply decorations to the entire picture, like Blinds and Checkboard MAGIC_TYPE_ARTISTIC — Special-purpose artistic tools, like Flower, the String tools, and the Rainbow-arc-drawing tools.
+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").
+ Note: Added to Tux Paint 0.9.27; Magic API version 0x00000005.
+SDL_Surface * get_icon(magic_api * api, int which)+ This should return an SDL_Surface containing the icon representing the tool. (A greyscale image with alpha, no larger than 40x40.) This will appear on the button in the 'Magic' selector within Tux Paint.
+
+ Tux Paint will free ("SDL_FreeSurface()") the surface upon exit.
+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").
+
char * get_description(magic_api * api, int which, int mode)+ This should return a string containing the description of how to use a particular magic tool. This will appear as a help tip, explained by Tux the Penguin, within Tux Paint.
+
+ Tux Paint will free() the string upon exit, so you should wrap it in a C strdup() call.
+ Note: For each Magic tool your plugin claims to contain (reported by your "get_tool_count()" function), this function will be called for each mode the tool claims to support (reported by your "modes()" function).
+ In other words, if your plugin contains two tools, one which works in paint mode only, and the other that works in both paint mode and full-image mode, your plugin's "get_description()" will be called three times.
int requires_colors(magic_api * api, int which)+ Return a '1' if the 'Magic' tool accepts colors (the 'Colors' palette in Tux Paint will be available), or '0' if not.
+
+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").
Uint8 accepted_sizes(magic_api * api, int which, int mode)
+ Return how many size variations the 'Magic' tool accepts, in the given mode (i.e., 'MODE_PAINT' or 'MODE_FULLSCREEN). Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.
+ Note: For each Magic tool your plugin claims to contain (reported by your "get_tool_count()" function), this function will be called for each mode the tool claims to support (reported by your "modes()" function).
+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.
+Uint8 default_size(magic_api * api, int which, int mode)
+ Return the default size the 'Magic' tool should start out with, in the given mode. This will be the default setting for the tool the first time it is used during a Tux Paint session. If Tux Paint is being invoked with the sizing option disabled, this will be the only size requested by Tux Paint. Return a number between '1' and the amount you returned in accepted_sizes().
+ Note: For each Magic tool your plugin claims to contain (reported by your "get_tool_count()" function), this function will be called for each mode the tool claims to support (reported by your "modes()" function).
+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.
+void shutdown(magic_api * api)
+ The plugin should do any cleanup here. If you allocated any memory or used SDL_Mixer to load any sounds during init(), for example, you should free() the allocated memory and Mix_FreeChunk() the sounds here.
+ Note: This function is called once, when Tux Paint exits.
+void switchin(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas) void switchout(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas)
+
+ switchin() is called whenever one of the plugin's Magic tools becomes active, and switchout() is called whenever one becomes inactive. This can be because the user just clicked a specific Magic tool (the current one is switched-out, and a new one is switched-in).
+ It can also happen when user leaves/returns from the selection of "Magic" tools when doing some other activity (i.e., using a different tool, such as "Text" or "Brush", activating a momentary tool, such as "Undo" and "Redo", or returning from a dialog — possibly with a new picture when it switches back — such as "Open", "New" or "Quit"). In this case, the same Magic tool is first 'switched-out', and then 'switched-back-in', usually moments later.
+
+ Finally, it can also happen when the user changes the 'mode' of a tool (i.e., from paint mode to full-image mode). First switchout() is called for the old mode, then switchin() is called for the new mode.
+ These functions allow users to interact in complicated was with Magic tools (for example, a tool that lets the user draw multiple freehand strokes, and then uses that as input such as handwriting — normally, the user could click somewhere in the canvas to tell the Magic tool they are 'finished', but if they switch to another tool, the Magic tool may want to undo any temporary changes to the canvas).
++ These functions could also be used to streamline certain effects; a behind-the-scenes copy of the entire canvas could be altered in some way when the user first switches to the canvas, and then pieces of that copy could be drawn on the canvas when they draw with the Magic tool.
++ Note: Added to Tux Paint 0.9.21; Magic API version 0x00000002.
+void set_color(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect) + Tux Paint will call this function to inform the plugin of the RGB values of the currently-selected color in Tux Paint's 'Colors' palette. (It will be called whenever one of the plugin's Magic tools that accept colors becomes active, and whenever the user picks a new color while such a tool is currently active.)
++ Generally, Magic tools will not alter the canvas in any way when receiving an updated color, but it is possible. (For example, the "Zoom" and "Perspective" tools apply effects which uses the current color choice as a solid background. The effects may be adjusted with subsequent click/drag operations, but you may also adjust the background color, without altering the zoom level or perspective, by simply picking a new color.)
++ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.
+void set_size(magic_api * api, int which, int mode, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)
++ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.
++ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.
+void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)
+ The plugin should apply the appropriate 'Magic' tool on the 'canvas' surface. The (x,y) coordinates are where the mouse was (within the canvas) when the mouse button was clicked, and you are told which 'mode' your tool is in (i.e., 'MODE_PAINT' or 'MODE_FULLSCREEN).
+ The plugin should report back what part of the canvas was affected, by filling in the (x,y) and (w,h) elements of 'update_rect'.
+ The contents of the drawing canvas immediately prior to the mouse button click is stored within the 'snapshot' canvas.
void drag(magic_api * api, int which, SDL_Surface * snapshot, SDL_Surface * canvas, int ox, int oy, int x, int y, SDL_Rect * update_rect)
+ The plugin should apply the appropriate 'Magic' tool on the 'canvas' surface. The (ox,oy) and (x,y) coordinates are the location of the mouse at the beginning and end of the stroke.
+ Typically, plugins that let the user "draw" effects onto the canvas utilize Tux Paint's "line()" 'Magic' tool plugin helper function to calculate the points of the line between (ox,oy) and (x,y), and call another function within the plugin to apply the effect at each point. (See "Tux Paint Functions and Data," below).
+ The plugin should report back what part of the canvas was affected, by filling in the (x,y) and (w,h) elements of 'update_rect'.
+ Note: The contents of the drawing canvas immediately prior to the mouse button click remains as it was (when the plugin's "click()" function was called), and is still available in the 'snapshot' canvas.
+
void release(magic_api * api, int which, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)
+ The plugin should apply the appropriate 'Magic' tool on the 'canvas' surface. The (x,y) coordinates are where the mouse was (within the canvas) when the mouse button was released.
+ The plugin should report back what part of the canvas was affected, by filling in the (x,y) and (w,h) elements of 'update_rect'.
+
+ Note: The contents of the drawing canvas immediately prior to the mouse button click remains as it was (when the plugin's "click()" function was called), and is still available in the 'snapshot' canvas.
+ Tux Paint provides a number of helper functions that plugins may access via the "magic_api" structure, sent to all of the plugin's functions. (See "Required Plugin Functions," above.)
Uint32 getpixel(SDL_Surface * surf, int x, int y)void putpixel(SDL_Surface * surf, int x, int y, Uint32 pixel)Uint32 xorpixel(SDL_Surface * surf, int x, int y)SDL_Surface * scale(SDL_Surface * surf, int w, int h, int keep_aspect)+ This accepts an existing SDL surface and creates a new one scaled to an arbitrary size. (The original surface remains untouched.)
+
+ The "keep_aspect" flag can be set to '1' to force the new surface to stay the same shape (aspect ratio) as the original, meaning it may not be the same width and height you requested. (Check the "->w" and "->h" elements of the output "SDL_Surface *" to determine the actual size.)
int in_circle(int x, int y, int radius)void line(void * api, int which, SDL_Surface * canvas, SDL_Surface * snapshot, int x1, int y1, int x2, int y2, int step, FUNC callback)+ This function calculates all points on a line between the coordinates (x1,y1) and (x2,y2). Every 'step' iterations, it calls the 'callback' function.
+
+ It sends the 'callback' function the (x,y) coordinates on the line, Tux Paint's "magic_api" struct (as a "void *" pointer which you need to send to it), a 'which' value, represening which of the plugin's 'Magic' tool is being used, and the current and snapshot canvases.
+ Example prototype of a callback function that may be sent to Tux Paint's "line()" 'Magic' tool plugin helper function:
+ void exampleCallBack(void * ptr_to_api, int which_tool, SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y);
+
+
+
+ Example use of the "line()" helper (e.g., within a plugin's draw() function):
+ api->line((void *) api, which, canvas, snapshot, ox, oy, x, y, 1, exampleCallBack);
+
+
+ Uint8 touched(int x, int y)+ This function allows you to avoid re-processing the same pixels multiple times when the user drags the mouse across an area of the canvas, thus increasing Tux Paint's response time, especially with math-heavy effects.
+
+ If your effect's "click()", "drag()" and/or "release()" functions take the contents of the source surface ("snapshot") and always create the same results in the desintation surface ("canvas"), you should wrap the effect in a call to "api->touched()".
+ This function simply returns whether or not it had already been called for the same (x,y) coordinates, since the user first clicked the mouse. In other words, the first time you call it for a particular (x,y) coordinate, it returns '0'. Future calls will return '1' until the user releases the mouse button.
+
+ Note: Magic effects that continuously affect the destination surface ("canvas") (ignoring the "snapshot surface) have no reason to use this function. The "Blur" and "Smudge" tools that ship with Tux Paint are examples of such effects.
char * tp_versionint canvas_wint canvas_h
+ canvas_w) and height (canvas_h) of the drawing canvas (in pixels). int button_down(void)char * data_directory
+ This string contains the directory where Tux Paint's data files are stored. For example, on Linux, this may be "/usr/share/tuxpaint/".
+ Magic tools should include an icon (see "get_icon()", above) and are encouraged to include sound effects, it's useful for plugins to know where such things are located.
+ When compiling and installing a plugin, the "tp-magic-config" command-line tool should be used to determine where such data should be placed for the installed version of Tux Paint to find them. (See "Installing," below.)
+ Note: If your plugin is installed locally (e.g., in your "~/.tuxpaint/plugins/" directory), rather than globally (system-wide), the "data_directory" value will be different. (e.g., "/home/username/.tuxpaint/plugins/data/").
+
void update_progress_bar(void)void playsound(Mix_Chunk * snd, int pan, int dist)
+ This function plays a sound (one loaded by the SDL helper library "SDL_mixer"). It uses SDL_mixer's "Mix_SetPanning()" to set the volume of the sound on the left and right speakers, based on the 'pan' and 'dist' values sent to it.
+ A 'pan' of 128 causes the sound to be played at equal volume on the left and right speakers. A 'pan' of 0 causes it to be played completely on the left, and 255 completely on the right.
+ The 'dist' value affects overall volume. 255 is loudest, and 0 is silent.
+ The 'pan' and 'dist' values can be used to simulate location and distance of the 'Magic' tool effect.
void stopsound(void)playsound(). It is useful to silence effects when the user stops using the tool (in your 'release' function). void special_notify(int flag)tp_magic_api.h" can be 'or'ed together (using C's boolean 'or': "|") and sent to this function. SPECIAL_FLIP+ The contents of the canvas has been flipped vertically.
++ If a 'Starter' image was used as the basis of this image, it should be flipped too, and a record of the flip should be stored as part of Tux Paint's undo buffer stack. Additionally, the fact that the starter has been flipped (or unflipped) should be recorded on disk when the current drawing is saved.
+SPECIAL_MIRRORSPECIAL_FLIP, but for magic tools that mirror the contents of the canvas horizontally. float sRGB_to_linear(Uint8 srbg)uint8 linear_to_sRGB(float linear)void rgbtohsv(Uint8 r, Uint8 g, Uint8 b, float * h, float * s, float * v)void hsvtorgb(float h, float s, float v, Uint8 * r, Uint8 * g, Uint8 * b)+ For more information, refer to the sRGB article at Wikipedia and the HSV Color Space article at Wikipedia.
+tp_magic_api.h"
+ Along with the "magic_api" C structure containing functions and data described above, the tp_magic_api.h C header file also contains some helper macros that you may use.
min(x, y)max(x, y)
+ min) or maxinum (max) of 'x' and 'y'. For example, min() will return the value of 'x' if it is less than or equal to 'y', otherwise it will return 'y'. clamp(lo, value, hi)+ A value, clamped to be no smaller than 'lo', and no higher than 'hi'. (That is, if 'value' is less than 'lo', then 'lo' will be used; if 'value' is greater than 'hi', then 'hi' will be used; otherwise, 'value' will be used.)
+
+ Example: red = clamp(0, n, 255); will set the variable 'red' to be the value of the variable 'n', but without allowing it to become less than 0 or greater than 255.
+ Note: This macro is simply a #define of: "(min(max(value,lo),hi))".
tp_magic_api.h"
+ The following is a summary of constant values that are set (via "#define") within the 'Magic' tool API header file.
TP_MAGIC_API_VERSION+ This integer value represents which version of the Tux Paint 'Magic' tool API the header corresponds to.
+
+ It should be referenced by your magic tool's "api_version()" function, to inform the running copy of Tux Paint whether or not your plugin is compatible.
+ Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.32"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.
+SPECIAL_MIRRORSPECIAL_FLIP
+ special_notify()" helper function. They are described above.
+ Use the C compiler's "-shared" command-line option to generate a shared object file (".so") based on your 'Magic' tool plugin's C source code.
+ Use the "tp-magic-config --cflags" command, supplied as part of Tux Paint — or in some cases, as part of a "Tux Paint 'Magic' Tool Plugin Development package" — to provide additional command-line flags to your C compiler that will help it build your plugin.
+ As a stand-alone command, using the GNU C Compiler and BASH shell, for example: +
++ + ++
+ $ gcc -shared -fpic `tp-magic-config --cflags` my_plugin.c -o my_plugin.so +
+ Note: The characters around the "tp-magic-config" command are a grave/backtick/backquote ("`"), and not an apostrophe/single-quote ("'"). They tell the shell to execute the command within (in this case, "tp-magic-config ..."), and use its output as an argument to the command being executed (in this case, "gcc ...").
+ A snippet from a Makefile to compile a Tux Paint "Magic" tool plugin might look like this: +
+ CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags)
+
+ my_plugin.so: my_plugin.c
+ gcc -shared $(CFLAGS) -o my_plugin.so my_plugin.c
+
+
+
+
+ The first line sets up Makefile variable ("CFLAGS") that contains flags for the compiler. "-Wall" asks for all compiler warnings to be shown. "-O2" asks for level 2 optimization. "($shell tp-magic-config --cflags)" runs "tp-magic-config" to retrieve additional compiler flags that "Magic" tool plugins require. (The "$(shell ...)" directive is similar to the ` ("grave") character in the BASH shell examples, above.)
+ The next line defines a Makefile target, "my_plugin.so", and states that it depends on the C source file "my_plugin.c". (Any time the C file changes, "make" will know to recompile it and produce an updated ".so" file. If the C file hadn't changed, it won't bother recompiling.)
+ The last line defines the command "make" should run when it determines that it needs to (re)compile the ".so" file. Here, we're using "gcc", with "-shared and "$(CFLAGS)" command-line arguments, like above. "-o my_plugin.so" tells the C compiler that the output file should be "my_plugin.so". The last argument is the C file to compile, in this case "my_plugin.c".
+ Note: Commands listed below a Makefile target should be intented using a single tab character.
++ An even more generalized Makefile might look like this:
+ CFLAGS=-Wall -O2 $(shell tp-magic-config --cflags)
+
+ my_plugin_1.so: my_plugin_1.c
+ $(CC) -shared $(CFLAGS) -o $@ $<
+
+ my_plugin_2.so: my_plugin_2.c
+ $(CC) -shared $(CFLAGS) -o $@ $<
+
+
+
+
+ As before, there are lines that define the command "make" should run when it determines that it needs to (re)compile the ".so" file(s). However, more general terms are used...
+ "$(CC)" gets expanded to your default C compiler (e.g., "gcc"). "-shared" and "$(CFLAGS)" are command-line arguments to the compiler, like above. "-o $@" tells the C compiler what the output file should be; "make" replaces "$@" with the name of the target, in this case "my_plugin_1.so" or "my_plugin_2.so". And finally, the last argument is the C file to compile; "make" replaces "$<" with the target's dependency, in this case "my_plugin_1.c" or "my_plugin_2.c".
TBD
+TBD
+
+ Use the "tp-magic-config" command-line tool, supplied as part of Tux Paint — or in some cases, as part of a "Tux Paint 'Magic' Tool Plugin Development package" — to determine where your plugins' files should go.
+ Use "tp-magic-config --pluginprefix" to determine where the plugin shared object (".so") files should be installed. The value returned by this command will be the global location where the installed copy of Tux Paint looks for plugins (e.g., "/usr/lib/tuxpaint/plugins").
+ Alternatively, you may use "tp-magic-config --localpluginprefix" to find out where Tux Paint expects to find local plugins for the current user (e.g., "/home/username/.tuxpaint/plugins").
+ As stand-alone commands, using the BASH shell, for example: +
+ # cp my_plugin.so `tp-magic-config --pluginprefix`
+ # chmod 644 `tp-magic-config --pluginprefix`/my_plugin.so
+
+
+
+ + Note: See the note above regarding the "`" (grave) character.
+
+ Use the "tp-magic-config --plugindocprefix" command to determine where documentation for your "Magic" tools should go. The value returned by this command will be the location where the documentation to the installed copy of Tux Paint is stored. The main documentation includes a link to a folder where "Magic" tools' documentation is expected to be installed
/usr/share/doc/tuxpaint/magic-docs").
+
+
+ Note: It's best to include both HTML and plain-text versions of your documentation. An "html" subdirectory exists within the "magic-docs" directory, and is where the HTML versions should go.
+ As stand-alone commands, using the BASH shell, for example:
+ # cp my_plugin.html `tp-magic-config --plugindocprefix`/html
+ # cp my_plugin.txt `tp-magic-config --plugindocprefix`
+
+
+
+ + Note: See the note above regarding the "`" (grave) character.
+ +
+ Note: Currently, there is no "--localplugindocprefix" option.
+ Use the "tp-magic-config --dataprefix" command, supplied as part of Tux Paint, to determine where data files (PNG icon, Ogg Vorbis sound effects, etc.) should be installed. The value returned by this command will be the same as the value of the "data_directory" string stored within the "magic_api" structure that your plugin's functions receive (e.g., "/usr/share/tuxpaint/").
+ For locally-installed plugins (for the current user only), use "tp-magic-config --localdataprefix". It will return the value of "data_directory" string that locally-installed plugins will see within their "magic_api" structure (e.g., "/home/username/.tuxpaint/plugins/data/").
+ Note: Tux Paint's default Magic tool plugins install their data within "magic" subdirectories of Tux Paint's "images" and "sounds" data directories (e.g., "/usr/share/tuxpaint/images/magic/"). You are encouraged to do the same.
+ As stand-alone commands, using the BASH shell, for example:
+ # cp my_plugin_icon.png `tp-magic-config --dataprefix`/images/magic/
+ # chmod 644 `tp-magic-config --dataprefix`/images/magic/my_plugin_icon.png
+
+
+
+ + Note: See the note above regarding the "`" (grave) character.
++ A snippet from a more generalized Makefile might look like this:
+ PLUGINPREFIX=$(shell tp-magic-config --pluginprefix)
+ PLUGINDOCPREFIX=$(shell tp-magic-config --plugindocprefix)
+ DATAPREFIX=$(shell tp-magic-config --dataprefix)
+
+ install:
+ #
+ # Install plugin
+ mkdir -p $(PLUGINPREFIX)
+ cp *.so $(PLUGINPREFIX)/
+ chmod 644 $(PLUGINPREFIX)/*.so
+ #
+ # Install icons
+ mkdir -p $(DATAPREFIX)/images/magic
+ cp icons/*.png $(DATAPREFIX)/images/magic/
+ chmod 644 $(DATAPREFIX)/images/magic/*.png
+ #
+ # Install sound effects
+ mkdir -p $(DATAPREFIX)/sounds/magic
+ cp sounds/*.ogg $(DATAPREFIX)/sounds/magic/
+ chmod 644 $(DATAPREFIX)/sounds/magic/*.ogg
+ #
+ # Install docs
+ mkdir -p $(PLUGINDOCPREFIX)/html
+ cp docs/*.html $(PLUGINDOCPREFIX)/html/
+ cp docs/*.txt $(PLUGINDOCPREFIX)/
+ chmod 644 $(PLUGINDOCPREFIX)/html/*.html
+ chmod 644 $(PLUGINDOCPREFIX)/*.txt
+
+
+
+
+ The first three lines set up Makefile variables that contain the paths returned by the "tp-magic-config" command-line tool. (The "$(shell ...)" directive is similar to the ` ("grave") character in the BASH shell examples, above.)
+ Below that is an "install" target in the Makefile. (Invoked by, for example, "$ sudo make install" or "# make install".)
+ The "install" target uses "mkdir -p" to make sure that the plugin directory exists, then uses "cp" to copy all plugin (".so") files into it, and invokes "chmod" to make sure they are readable.
+ It then does a similar series of commands to install icon files (".png" images) and sound effects (".ogg" files) into subdirectories within Tux Paint's data directory, and to install documentation (".html" and ".txt" files) within Tux Paint's documentation directory.
+ Note: The above Makefile example assumes the user will have priveleges to install Tux Paint plugins system-wide.
+TBD
+TBD
++ Plugins for Tux Paint may contain more than one effect. If you have multiple effects that are similar, it may make sense to place them in one plugin file, to reduce overhead and share code.
+ ++ These following suggestions can help you create plugins that contain multiple effects: +
enum" to enumerate the effects, and count them.
+ enum {
+ ONE_TOOL,
+ ANOTHER_TOOL,
+ AND_YET_ANOTHER_TOOL,
+ NUM_TOOLS };
+
+ NUM_TOOLS" when "get_tool_count()" is called, and compare "which" values sent to other functions with the other enumerated values. NUM_TOOLS" length to contain effect-specific data.
+ char * my_plugin_snd_filenames[NUM_TOOLS] = {
+ "one.ogg", "another.ogg", "yet_another.ogg" };
+ Mix_Chunk * my_plugin_snds[NUM_TOOLS]");
+
+ for"-loop to load or create the effect-specific data (such as loading sound effects during your "init()").
+ int i;
+ char fname[1024];
+
+ for (i = 0; i < NUM_TOOLS; i++)
+ {
+ /* Becomes, for example, "/usr/share/tuxpaint/sounds/magic/one.ogg" */
+
+ snprintf(fname, sizeof(fname), "%s/sounds/magic/%s",
+ api->data_prefix, my_plugin_snd_filenames[i]);
+
+ my_plugin_snds[i] = Mix_LoadWAV(fname);
+ }
+
+ shutdown()").
+ int i;
+
+ for (i = 0; i < NUM_TOOLS; i++)
+ Mix_FreeChunk(my_plugin_snds[i]);
+
+ which" values sent to your functions as an index into those arrays (e.g., for playing the appropriate sound effect for a tool).
+ Note: Even if your plugin currently contains only one effect, it may be useful to follow the steps above so that you can add a new variation of an effect with little effort. ("NUM_TOOLS" will simply be '1', your arrays will be of length '1', etc.)
+ The C source file "tp_magic_example.c" contains a complete example of a plugin with multiple simple effects.
+
+ For more information, check the Tux Paint website: https://tuxpaint.org/, and the Simple DirectMedia Layer library website: http://www.libsdl.org/.
+ +
+ Additionally, other Tux Paint developers and users can be found on the "tuxpaint-devel" and "tuxpaint-users" mailing lists: https://tuxpaint.org/lists/.
&:
+ See "ampersand" &". A symbol in C that allows you to refer to the memory address of a variable; that is, a pointer. (For example, consider "int i;". Later, "&i" refers to the memory where "i" is stored, not the value of "i" itself; it is a 'pointer to "i"'.) See also: "star" &". A symbol in C that acts as a bitwise "and" operator. Only bits set in both values will be returned. For example, "11 & 6" compares the binary values '1011' to '0110'. Only the bit in the 2's place is set, so the result is 2 ('0010'). See also: "bit" ->". A symbol in C that references an element within a pointer to a struct. |:
+ See "boolean 'or'" .:
+ See "dot" `:
+ See "grave" *:
+ See "star" enum { ONE, TWO, THREE };" rgbtohsv()" and "hsvtorgb()".) SDL_Rect" contains four integer values, the coordinates of the rectangle (X,Y), and its dimensions (width and height). #define:
+ A C statement that defines a substitution that can occur later in the code. Generally used for constant values (e.g., "#define RADIUS 16"; all instances of "RADIUS" will be replaced with "16"), but can also be used to create macros. Typically placed within C header files. .dll:
+ See "Shared Object" .". A symbol in C that references an element within a struct. w" and "h" elements of SDL_Surface store the surface's width and height, respectively.) enum:
+ See "C enumeration" float:
+ See "floating point" format:
+ An SDL_Surface element (a pointer to an SDL_PixelFormat structure) that contains information about a surface; for example, the number of bits used to represent each pixel). See also the "SDL_PixelFormat(3)" man page) free():
+ A C function that frees (deallocates) memory allocated by other C functions (such as "strdup()"). gcc:
+ The GNU C compiler, a portable Open Source compiler. See also the "gcc(1)" man page) `" character; used by the BASH shell to use the output of a command as the command-line arguments to another. ->:
+ See "arrow" .h:
+ See "C header file" HSV:
+ Hue, Saturation and Value. TBD
+ IMG_Load():
+ An SDL_image function that loads an image file (e.g., a PNG) and returns it as an "SDL_Surface *". #include:
+ A C statement that asks the compiler to read the contents of another file (usually a header file). int:
+ See "integer" libSDL:
+ See "Simple DirectMedia Layer" #define ADD(A,B) ((A)+(B))", and then used it with "c = ADD(1,2);", that line of code would literally expand to "c = ((1) + (2));", or more simply, "c = 1 + 2;". magic_api:
+ A C structure that is passed along to a plugin's functions that exposes data and functions within the running copy of Tux Paint. make:
+ A utility that automatically determines which pieces of a larger program need to be recompiled, and issues the commands to recompile them. See also: "Makefile" Makefile:
+ A text file used by the "make" utility; it describes the relationships among files in your program, and the commands for updating each file. (For example, to compile a human-readable source-code file into a computer-readable executable program file.) Mix_Chunk *:
+ (A pointer to) a C structure defined by SDL_mixer that contains a sound. Mix_FreeChunk():
+ An SDL_mixer function that frees (deallocates) memory allocated for an SDL_mixer sound 'chunk' ("Mix_Chunk *"). Mix_LoadWAV():
+ An SDL_mixer function that loads a sound file (WAV, Ogg Vorbis, etc.) and returns it as a "Mix_Chunk *". .ogg:
+ See "Ogg Vorbis" png(5)" man page) RGBA:
+ "Red, Green, Blue, Alpha." TBD
+ RGB:
+ See "RGBA" SDL_FreeSurface():
+ An libSDL function that frees (deallocates) memory allocated for an SDL surface ("SDL_Surface *"). See also the "SDL_FreeSurface(3)" man page) SDL_GetRGB():
+ A libSDL function that, given a Uint32 pixel value (e.g., one returned from the Tux Paint's Magic tool API helper function "getpixel()"), the format of the surface the pixel was taken from, and pointers to three Uint8 variables, will place the Red, Green and Blue (RGB) values of the pixel into the three Uint8 variables. (Example: "SDL_GetRGB(getpixel(surf, x, y), surf->format, &r, &g, &b);".) See also the "SDL_GetRGB(3)" man page) SDL_MapRGB():
+ A libSDL function that, given the format of a surface and Uint8 values representing Red, Green and Blue values for a pixel, returns a Uint32 pixel value that can be placed in the surface (e.g., using Tux Paint's Magic tool API helper function "putpixel()"). (Example: "putpixel(surf, x, y, SDL_MapRGB(surf->format, r, g, b));".) See also the "SDL_MapRGB(3)" man page) SDL_Surface *". SDL_Rect:
+ A C structure defined by libSDL that represents a rectangular area. It contains elements representing the coordinates of the top left corner of the rectange (x,y) and the dimensions of the rectangle (w,h). See also the "SDL_Rect(3)" man page) SDL_Surface *:
+ (A pointer to) a C structure defined by libSDL that contains a drawing surface.
+ See also the "SDL_Surface(3)" man page) snprintf():
+ A C function, related to "printf()", which takes a 'format' string and one or more additional arguments, and puts them together. "snprintf()" takes the resulting output and stores it into a string, making sure not to go beyond the string's buffer size (which must also be supplied). For example, assume a string "char str[20];" has been declared; "snprintf(str, 20, "Name: %s, Age: %d", "Bill", "32");" will store "Name: Bill, Age: 32" into 'str'. See also the "snprintf(3)" man page) .so:
+ See "Shared Object" sRBG:
+ See "RGBA" *". A symbol in C that, when used in the declaration of variables (e.g., arguments to a function), denotes that the variable is a pointer. (For example, "int * p;" means that "p" is a pointer to an integer.) When used next to a pointer, it 'dereferences' the variable. (For example, later "*p = 50;" assigns the value of 50 to the memory that "p" points to; it does not change the value of "p", which is still a pointer to an integer. In essence, it changed the integer that's being pointed to.) See also: "ampersand" strdup():
+ A C function that allocates enough memory to store a copy of a string, copies the string to it, and returns a "char *" pointer to the new copy. See also the "strdup(3)" man page) struct:
+ See "C structure" tp_magic_api.h:
+ A header file that defines Tux Paint's Magic tool API. Plugins must '#include' it. tp-magic-config:
+ A command-line program that provides information about the installed version of Tux Paint to plugin developers (such as what C compiler flags they should compile with, and where plugin shared objects and data files should be installed). See also the "tp-magic-config(3)" man page) Uint32:
+ A 32-bit, unsigned integer (defined by libSDL). In other words, four bytes that can represent 0 through 4294967295. (Typically used to hold enough information to store three or four bytes representing a pixel's color; i.e., RBGA value). Uint8:
+ An 8-bit, unsigned integer (defined by libSDL). In other words, a byte that can represent 0 through 255. .wav:
+ See also: "Ogg Vorbis" (w,h):
+ See "Dimensions" (x,y):
+ See "Coordinates" Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 1 qendër projeksioni. Vijat do të shkojnë drejt qendrës tuaj të projeksionit, ose do të jenë horizontale, ose vertikale. Përdorni “Përzgjedhje e 1 Qendre” që të zgjidhni qendrën tuaj të projeksionit (e mundshme vetëm nën mënyrën “e thelluar”).
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).
+Shihni edhe: Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/1pt_perspective_select.html b/magic/magic-docs/sq_AL.UTF-8/html/1pt_perspective_select.html new file mode 100644 index 000000000..5e5ba96e6 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/1pt_perspective_select.html @@ -0,0 +1,16 @@ + +Klikoni (dhe tërhiqeni) për të vendosur diku qendrën e projeksionit që do të përdoret me mjetin “Vizatim me 1 Qendër”.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective.html b/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective.html new file mode 100644 index 000000000..5ba5600ae --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective.html @@ -0,0 +1,19 @@ + +Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 2 qendra projeksioni. Vijat do të shkojnë drejt dy qendrave tuaja të projeksionit, ose do të jenë drejtohen ose nga “horizonti” i përcaktuar nga dy qendrat e projeksionit, ose me një vijë pingule me atë “horizont”. Përdorni “Përzgjedhje e 2 Qendrash” që të zgjidhni qendrat tuaja të projeksionit (e mundshme vetëm nën mënyrën “e thelluar”).
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective_select.html b/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective_select.html new file mode 100644 index 000000000..0f181ef67 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/2pt_perspective_select.html @@ -0,0 +1,16 @@ + +Klikoni (dhe tërhiqeni) për të vendosur diku dy qendra projeksioni që do të përdoret me mjetin “Vizatim me 2 Qendra”.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/3dglasses.html b/magic/magic-docs/sq_AL.UTF-8/html/3dglasses.html new file mode 100644 index 000000000..5913af4bb --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/3dglasses.html @@ -0,0 +1,16 @@ + +This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Ndarje Ngjyrash & Pamje e Dyfishtë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective.html b/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective.html new file mode 100644 index 000000000..2e6c8778b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective.html @@ -0,0 +1,19 @@ + +Klikoni (dhe tërhiqeni) për të vizatuar me 3 qendra projeksioni. Vijat do të shkojnë vetëm drejt tre qendrave tuaja të projeksionit, ose do të drejtohen me “horizontin” e përcaktuar nga dy prej qendrave të projeksionit. Përdorni “Përzgjedhje 3 Qendrash”, për të zgjedhur qendrat tuaja të projeksionit (mund të kihet vetëm nën mënyrën “e thelluar”). Nën mënyrën “fillestar”, do të ketë dy mjete “Vizatimi me 3 Qendra”, një me qendra projeksioni që shohin përsipër dhe një me qendra projeksioni që shohin për poshtë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective_select.html b/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective_select.html new file mode 100644 index 000000000..48314bda6 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/3pt_perspective_select.html @@ -0,0 +1,16 @@ + +Klikoni (dhe tërhiqeni) për të vendosur diku tre qendra projeksioni që do të përdoret me mjetin “Vizatim me 3 Qendra”.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/blinds.html b/magic/magic-docs/sq_AL.UTF-8/html/blinds.html new file mode 100644 index 000000000..7a3708508 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/blinds.html @@ -0,0 +1,16 @@ + +Klikoni afër skajit të vizatimit tuaj për të ulur grila dritareje përmbi të. Lëvizni pingulthi për të hapur ose mbyllur grilat.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/blocks.html b/magic/magic-docs/sq_AL.UTF-8/html/blocks.html new file mode 100644 index 000000000..665f6030c --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/blocks.html @@ -0,0 +1,18 @@ + +This makes the picture blocky looking ("pixelated") wherever you drag the mouse.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/bloom.html b/magic/magic-docs/sq_AL.UTF-8/html/bloom.html new file mode 100644 index 000000000..9b2a910b2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/bloom.html @@ -0,0 +1,16 @@ + +Shtoni një efekt “çeljeje” rrezatues.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/blur.html b/magic/magic-docs/sq_AL.UTF-8/html/blur.html new file mode 100644 index 000000000..641c9c1ba --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/blur.html @@ -0,0 +1,19 @@ + +This makes the picture fuzzy wherever you drag the mouse.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Mprehe & Njollose.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/bricks.html b/magic/magic-docs/sq_AL.UTF-8/html/bricks.html new file mode 100644 index 000000000..2c8773b36 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/bricks.html @@ -0,0 +1,18 @@ + +This tool intelligently paints brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette. (If the Magic size feature is disabled, multiple "Bricks" tools will be made available.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Pikselë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/calligraphy.html b/magic/magic-docs/sq_AL.UTF-8/html/calligraphy.html new file mode 100644 index 000000000..651c0b14d --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/calligraphy.html @@ -0,0 +1,17 @@ + +Ky vizaton në kanavacë me një penë bukurshkrimi. Sa më shpejt ta lëvizni, aq më të holla vijat.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/cartoon.html b/magic/magic-docs/sq_AL.UTF-8/html/cartoon.html new file mode 100644 index 000000000..3c1102bd2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/cartoon.html @@ -0,0 +1,16 @@ + +Ky e bën figurën të duket si një karikaturë — me përvijime të trasha dhe ngjyra të ndezura, të plota — kurdo që lëvizni miun.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/chalk.html b/magic/magic-docs/sq_AL.UTF-8/html/chalk.html new file mode 100644 index 000000000..5109ff8f7 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/chalk.html @@ -0,0 +1,16 @@ + +This makes parts of the picture (where you move the mouse) look like a chalk drawing.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/checkerboard.html b/magic/magic-docs/sq_AL.UTF-8/html/checkerboard.html new file mode 100644 index 000000000..10d72adff --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/checkerboard.html @@ -0,0 +1,16 @@ + +Kjo mbulon krejt kanavacën me një model fushe shahu, duke përdorur ngjyrën e çastit. Tërhiqeni, që të ndryshojë madhësia e kuadrateve.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/circles.html b/magic/magic-docs/sq_AL.UTF-8/html/circles.html new file mode 100644 index 000000000..b24943d5e --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/circles.html @@ -0,0 +1,16 @@ + +This transforms the picture into circular brush strokes around where you clicked.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Shihni edhe: Rreze.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/clone.html b/magic/magic-docs/sq_AL.UTF-8/html/clone.html new file mode 100644 index 000000000..1f3cc5752 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/clone.html @@ -0,0 +1,17 @@ + +Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/color_and_white.html b/magic/magic-docs/sq_AL.UTF-8/html/color_and_white.html new file mode 100644 index 000000000..e40218310 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/color_and_white.html @@ -0,0 +1,17 @@ + +This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/color_shift.html b/magic/magic-docs/sq_AL.UTF-8/html/color_shift.html new file mode 100644 index 000000000..7069459e5 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/color_shift.html @@ -0,0 +1,16 @@ + +Kjo ndërron ngjyrat në foton tuaj.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/colorsep.html b/magic/magic-docs/sq_AL.UTF-8/html/colorsep.html new file mode 100644 index 000000000..6913d812f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/colorsep.html @@ -0,0 +1,17 @@ + +This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Syze 3D & Pamje e Dyfishtë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/confetti.html b/magic/magic-docs/sq_AL.UTF-8/html/confetti.html new file mode 100644 index 000000000..fce7e54f5 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/confetti.html @@ -0,0 +1,17 @@ + +Hidhni bonbone mbi vizatimin tuaj!
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/darken.html b/magic/magic-docs/sq_AL.UTF-8/html/darken.html new file mode 100644 index 000000000..07194c01f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/darken.html @@ -0,0 +1,17 @@ + +Ky i errëson ngjyrat, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend shumë herë dhe më në fund do të bëhet e zezë.)
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Ndriçoje, Ngjyrosje, Ngope, & Çngope.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/desaturate.html b/magic/magic-docs/sq_AL.UTF-8/html/desaturate.html new file mode 100644 index 000000000..a8c477035 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/desaturate.html @@ -0,0 +1,17 @@ + +Ky heq ngopjen prej ngjyrash, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend shumë herë dhe më në fund do të bëhet diçka si gri.)
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Ngope, Errësoje, Ndriçoje, Ngjyrosje, Hiqe Ngjyrën, & Mbaje Ngjyrën.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/dimetric_draw.html b/magic/magic-docs/sq_AL.UTF-8/html/dimetric_draw.html new file mode 100644 index 000000000..571c48ff4 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/dimetric_draw.html @@ -0,0 +1,19 @@ + +Click and drag to draw in a dimetric projection. Lines will only go vertically, or at a chosen angle and its mirror. Use "Dimetric Select" to adjust the angle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/dimetric_select.html b/magic/magic-docs/sq_AL.UTF-8/html/dimetric_select.html new file mode 100644 index 000000000..e41d1a9a4 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/dimetric_select.html @@ -0,0 +1,16 @@ + +Click (and drag) to position the pair of angles that will be used with the "Dimetric Draw" tool.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/distortion.html b/magic/magic-docs/sq_AL.UTF-8/html/distortion.html new file mode 100644 index 000000000..30ccce834 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/distortion.html @@ -0,0 +1,16 @@ + +This slightly distorts the picture wherever you move the mouse.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/doublevision.html b/magic/magic-docs/sq_AL.UTF-8/html/doublevision.html new file mode 100644 index 000000000..aa9b4d147 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/doublevision.html @@ -0,0 +1,16 @@ + +Kjo përzien figurën me vetveten, për të simuluar pamje të dyfishtë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Syze 3D & Ndarje Ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/drip.html b/magic/magic-docs/sq_AL.UTF-8/html/drip.html new file mode 100644 index 000000000..8e7931a6f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/drip.html @@ -0,0 +1,16 @@ + +This makes the paint "drip" wherever you move the mouse.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/edges.html b/magic/magic-docs/sq_AL.UTF-8/html/edges.html new file mode 100644 index 000000000..823736421 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/edges.html @@ -0,0 +1,17 @@ + +Trace the edges in your picture, over a white background.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Me reliev & Siluetë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/emboss.html b/magic/magic-docs/sq_AL.UTF-8/html/emboss.html new file mode 100644 index 000000000..ab4fe6be3 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/emboss.html @@ -0,0 +1,17 @@ + +This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+ +Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid.html b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid.html new file mode 100644 index 000000000..376a1d995 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid.html @@ -0,0 +1,18 @@ + +Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The size options allow positioning the "pen" that paints the curve relative to the rolling circle. (If the Magic size feature is disabled, multiple "Epitrochoid" tools will be made available.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_edge.html b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_edge.html new file mode 100644 index 000000000..26d6e3188 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_edge.html @@ -0,0 +1,17 @@ + +Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the edge of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_inside.html b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_inside.html new file mode 100644 index 000000000..b5dff29d2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_inside.html @@ -0,0 +1,17 @@ + +Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the inside of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_outside.html b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_outside.html new file mode 100644 index 000000000..b33a316e2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/epitrochoid_outside.html @@ -0,0 +1,17 @@ + +Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the outside of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/fisheye.html b/magic/magic-docs/sq_AL.UTF-8/html/fisheye.html new file mode 100644 index 000000000..827995eba --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/fisheye.html @@ -0,0 +1,17 @@ + +Warp parts of your picture like it's being seen through a fisheye lens.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Valëzim.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/flip.html b/magic/magic-docs/sq_AL.UTF-8/html/flip.html new file mode 100644 index 000000000..05931b60b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/flip.html @@ -0,0 +1,16 @@ + +Similar to "Mirror." Click and the entire image will be turned upside-down.
+
Ky mjet përdoret me klikim njësh.
+Shihni edhe: Pasqyroje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/flower.html b/magic/magic-docs/sq_AL.UTF-8/html/flower.html new file mode 100644 index 000000000..818e5df36 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/flower.html @@ -0,0 +1,18 @@ + +This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Bar.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/foam.html b/magic/magic-docs/sq_AL.UTF-8/html/foam.html new file mode 100644 index 000000000..c38c1a5d0 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/foam.html @@ -0,0 +1,15 @@ + +Klikoni dhe tërhiqeni miun që të vizatoni flluska të shkumëzuara. Sa më shumë që e tërhiqni miun në një vend të caktuar, aq më shumë flluska të vockla do të ndërthuren për të prodhuar flluska më të mëdha.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/fold.html b/magic/magic-docs/sq_AL.UTF-8/html/fold.html new file mode 100644 index 000000000..c6975240a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/fold.html @@ -0,0 +1,19 @@ + +Click a corner of your picture and drag towards the center to fold it up like a piece of paper.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/fretwork.html b/magic/magic-docs/sq_AL.UTF-8/html/fretwork.html new file mode 100644 index 000000000..02eba82ae --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/fretwork.html @@ -0,0 +1,16 @@ + +Vizatoni një skemë zbukuruese me ndërthurje që duket si një gdhendje në dru.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/fur.html b/magic/magic-docs/sq_AL.UTF-8/html/fur.html new file mode 100644 index 000000000..d34469ded --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/fur.html @@ -0,0 +1,16 @@ + +Shtoni gëzof te vizatimi juaj.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/glass_tile.html b/magic/magic-docs/sq_AL.UTF-8/html/glass_tile.html new file mode 100644 index 000000000..2ebe579a2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/glass_tile.html @@ -0,0 +1,15 @@ + +Click and drag over your picture to make it look like it's being seen through glass tiles.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/googlyeyes.html b/magic/magic-docs/sq_AL.UTF-8/html/googlyeyes.html new file mode 100644 index 000000000..84de8881c --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/googlyeyes.html @@ -0,0 +1,16 @@ + +Draws a googly eye where you click. Drag to position the pupil. (If the Magic size feature is disabled, multiple "Googly Eyes" tools will be made available.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/grass.html b/magic/magic-docs/sq_AL.UTF-8/html/grass.html new file mode 100644 index 000000000..eeb4ea323 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/grass.html @@ -0,0 +1,17 @@ + +Ky vizaton bar te figura. Sa më lart te kanavaca, aq më i vogël vizatohet bari, duke dhënë një iluzion perspektive. Bari mund të vizatohet me ngjyrime të ndryshme të të gjelbrës duke përzgjedhur ngjyra të ndryshme te paleta e ngjyrave.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Lule.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/halftone.html b/magic/magic-docs/sq_AL.UTF-8/html/halftone.html new file mode 100644 index 000000000..48c2cb861 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/halftone.html @@ -0,0 +1,15 @@ + +This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/sq_AL.UTF-8/html/hexagon_mosaic.html new file mode 100644 index 000000000..74df4891a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/hexagon_mosaic.html @@ -0,0 +1,17 @@ + +Shndërron pjesë të fotos tuaj në një një mozaik kutish gjashtëkëndore.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Mozaik i Parregullt, Mozaik Katror, & Mozaik.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid.html b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid.html new file mode 100644 index 000000000..1c3cb8c15 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid.html @@ -0,0 +1,18 @@ + +Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The size options allow positioning the "pen" that paints the curve relative to the rolling circle. (If the Magic size feature is disabled, multiple "Hypotrochoid" tools will be made available.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_edge.html b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_edge.html new file mode 100644 index 000000000..268a62882 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_edge.html @@ -0,0 +1,18 @@ + +Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The "pen" that paints the curve will be on the edge of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_inside.html b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_inside.html new file mode 100644 index 000000000..ec57a67c0 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_inside.html @@ -0,0 +1,18 @@ + +Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The "pen" that paints the curve will be on the inside of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_outside.html b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_outside.html new file mode 100644 index 000000000..3754ec727 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/hypotrochoid_outside.html @@ -0,0 +1,18 @@ + +Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The "pen" that paints the curve will be on the outside of the rolling circle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Cep me Thurje, Skaje me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/index.html b/magic/magic-docs/sq_AL.UTF-8/html/index.html new file mode 100644 index 000000000..5d24b7ace --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/index.html @@ -0,0 +1,152 @@ + +Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/sq_AL.UTF-8/html/irregular_mosaic.html new file mode 100644 index 000000000..9de76a6fd --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/irregular_mosaic.html @@ -0,0 +1,17 @@ + +Shndërron pjesë të fotos tuaj në një një mozaik kutish me forma të parregullta.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Mozaik Gjashtëkëndor, Mozaik Katror, & Mozaik.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/isometric_line.html b/magic/magic-docs/sq_AL.UTF-8/html/isometric_line.html new file mode 100644 index 000000000..c4da63f8f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/isometric_line.html @@ -0,0 +1,19 @@ + +Click and drag to draw in an isometric projection. Lines will only go vertically, or at two mirrored angles. (The angles are preset and evenly spaced at 120-degree intervals.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope.html b/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope.html new file mode 100644 index 000000000..3e09c9c63 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope.html @@ -0,0 +1,18 @@ + +Ky penel vizaton në katër vende në të njëjtën kohë, duke pasqyruar simetrikisht, si horizontalisht, ashtu edhe vertikalisht. Përdor ngjyrën aktuale të përzgjedhur.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Pikaso, Rozetë, & Kaleido-4, Kaleido-6 dhe Kaleido-8.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope_lens.html new file mode 100644 index 000000000..fdb54df53 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/kaleidoscope_lens.html @@ -0,0 +1,16 @@ + +These three tools make it look like your picture is being viewed through a kaleidoscope.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Kaleidoskop.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/keep_color.html b/magic/magic-docs/sq_AL.UTF-8/html/keep_color.html new file mode 100644 index 000000000..8c63046f2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/keep_color.html @@ -0,0 +1,18 @@ + +This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Hiqe Ngjyrën, Ngope, Çngope, Errësoje, Ndriçoje, & Ngjyrosje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/light.html b/magic/magic-docs/sq_AL.UTF-8/html/light.html new file mode 100644 index 000000000..e3c684c65 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/light.html @@ -0,0 +1,17 @@ + +Ky vizaton në kanavacë një rreze të ndritshme, me ngjyrën e përzgjedhur aktualisht. Sa më shumë që ta përdorni mbi një vend, aq më e bardhë bëhet.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/lighten.html b/magic/magic-docs/sq_AL.UTF-8/html/lighten.html new file mode 100644 index 000000000..4dcf7ec19 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/lighten.html @@ -0,0 +1,17 @@ + +Ky zbeh ngjyrat, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend shumë herë dhe më në fund do të bëhet e bardhë.)
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Errësoje, Ngjyrosje, Ngope, & Çngope.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/lightning.html b/magic/magic-docs/sq_AL.UTF-8/html/lightning.html new file mode 100644 index 000000000..6906f1dd4 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/lightning.html @@ -0,0 +1,16 @@ + +Vizatoni një rrufe mes dy pikash te vizatimi.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/loops.html b/magic/magic-docs/sq_AL.UTF-8/html/loops.html new file mode 100644 index 000000000..0f0662a4c --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/loops.html @@ -0,0 +1,18 @@ + +Draw loop-the-loops on the canvas, in the currently-selected color.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Lëmim & Shkarravina.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/maze.html b/magic/magic-docs/sq_AL.UTF-8/html/maze.html new file mode 100644 index 000000000..84e44a772 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/maze.html @@ -0,0 +1,16 @@ + +Klikoni dhe tërhiqeni që në vizatimit tuaj të vizatohet një labirint.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/metal_paint.html b/magic/magic-docs/sq_AL.UTF-8/html/metal_paint.html new file mode 100644 index 000000000..d9439bc9a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/metal_paint.html @@ -0,0 +1,17 @@ + +Klikoni dhe tërhiqeni për të vizatuar metal të ndritshëm në ngjyrën e përzgjedhur atë çast.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/mirror.html b/magic/magic-docs/sq_AL.UTF-8/html/mirror.html new file mode 100644 index 000000000..8062b5460 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/mirror.html @@ -0,0 +1,16 @@ + +When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.
+
Ky mjet përdoret me klikim njësh.
+Shihni edhe: Ktheje në anë tjetër.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/mosaic.html b/magic/magic-docs/sq_AL.UTF-8/html/mosaic.html new file mode 100644 index 000000000..b4c0b6d14 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/mosaic.html @@ -0,0 +1,19 @@ + +Shton në vizatimin tuaj një efekt mozaiku të qelqtë.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Mozaik Gjashtëkëndor, Mozaik i Parregullt, & Mozaik Katror.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/negative.html b/magic/magic-docs/sq_AL.UTF-8/html/negative.html new file mode 100644 index 000000000..793bcbb1d --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/negative.html @@ -0,0 +1,16 @@ + +Kjo përmbys ngjyrat, kurdo që tërhiqni miun. (P.sh., e bardha bëhet e zezë dhe anasjelltas.) Përmbys vlerat e përbërësve Të kuqe, Të gjelbrë dhe Blu të pikselave.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/noise.html b/magic/magic-docs/sq_AL.UTF-8/html/noise.html new file mode 100644 index 000000000..ba659fc5a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/noise.html @@ -0,0 +1,16 @@ + +Shtoni te vizatimi juaj zhurmë kuturu dhe statike.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/oblique_draw.html b/magic/magic-docs/sq_AL.UTF-8/html/oblique_draw.html new file mode 100644 index 000000000..0a3e1f426 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/oblique_draw.html @@ -0,0 +1,19 @@ + +Click and drag to draw in an oblique projection. Lines will only go vertically, horizontally, and at a chosen angle. Use "Oblique Select" to adjust the angle. In "beginner" mode, two "Oblique Draw" tools will be available, one with with the receding axis angle going right, and one with it going left.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/oblique_select.html b/magic/magic-docs/sq_AL.UTF-8/html/oblique_select.html new file mode 100644 index 000000000..66b2024b8 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/oblique_select.html @@ -0,0 +1,16 @@ + +Click (and drag) to position the angle that will be used with the "Oblique Draw" tool.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/opposite.html b/magic/magic-docs/sq_AL.UTF-8/html/opposite.html new file mode 100644 index 000000000..ae6fcf1f3 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/opposite.html @@ -0,0 +1,16 @@ + +This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/panels.html b/magic/magic-docs/sq_AL.UTF-8/html/panels.html new file mode 100644 index 000000000..488e8b8fe --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/panels.html @@ -0,0 +1,16 @@ + +Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.
+
Ky mjet përdoret me klikim njësh.
+Shihni edhe: Zvogëlim Me Kuadrate.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/pattern.html b/magic/magic-docs/sq_AL.UTF-8/html/pattern.html new file mode 100644 index 000000000..f6c11739b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/pattern.html @@ -0,0 +1,18 @@ + +Vizaton një rregullsi me kuadrate përqark anëve të vizatimit.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Kuadrate.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/perspective.html b/magic/magic-docs/sq_AL.UTF-8/html/perspective.html new file mode 100644 index 000000000..d27c860d7 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/perspective.html @@ -0,0 +1,17 @@ + +Klikoni dhe tërhiqeni prej cepash për të ndryshuar perspektivën e figurës tuaj.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, & Përzgjedhje e 3 Qendrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/picasso.html b/magic/magic-docs/sq_AL.UTF-8/html/picasso.html new file mode 100644 index 000000000..ac0509662 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/picasso.html @@ -0,0 +1,18 @@ + +Draw three swirling brushes at once, in a Picasso style.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Rozetë & Kaleidoskop.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/pixels.html b/magic/magic-docs/sq_AL.UTF-8/html/pixels.html new file mode 100644 index 000000000..0ab9515cc --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/pixels.html @@ -0,0 +1,18 @@ + +Klikoni dhe tërhiqeni që në kanavacë të vizatohen “piksela” katrorë të mëdhenj.
+![]()
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Tulla.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/puzzle.html b/magic/magic-docs/sq_AL.UTF-8/html/puzzle.html new file mode 100644 index 000000000..34693d467 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/puzzle.html @@ -0,0 +1,16 @@ + +Lëvizni pjesë të vizatimit tuaj përreth, si të ishin copa puzzle-i.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rails.html b/magic/magic-docs/sq_AL.UTF-8/html/rails.html new file mode 100644 index 000000000..6fc7ba7a5 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rails.html @@ -0,0 +1,18 @@ + +Draw connecting locomotive train rails on your picture.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rain.html b/magic/magic-docs/sq_AL.UTF-8/html/rain.html new file mode 100644 index 000000000..3e6f33817 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rain.html @@ -0,0 +1,17 @@ + +Shhtoni pika shiu te vizatimi juaj.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Top Dëbore & Flokë Bore.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rainbow.html b/magic/magic-docs/sq_AL.UTF-8/html/rainbow.html new file mode 100644 index 000000000..76639b6f1 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rainbow.html @@ -0,0 +1,17 @@ + +Ky është i ngjashëm me penelin e bojatisjes, por teksa lëvizni miun përreth, ai kalon nëpër një spektër ngjyrash të ndritshme.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Ylber i Butë & Cikël Ylberi.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rainbow_cycle.html b/magic/magic-docs/sq_AL.UTF-8/html/rainbow_cycle.html new file mode 100644 index 000000000..43119d10b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rainbow_cycle.html @@ -0,0 +1,17 @@ + +Ky është i ngjashëm me mjetet magjike Ylber dhe Ylber i Rrjedhshëm — kalon nëpër një spektër ngjyrash të ndritshme, por ndryshon vetëm mes penelatash (pasi e lëshoni butonin dhe klikoni, apo prekni sërish).
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Ylber & Ylber i Butë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rays.html b/magic/magic-docs/sq_AL.UTF-8/html/rays.html new file mode 100644 index 000000000..dba71d3c1 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rays.html @@ -0,0 +1,16 @@ + +This transforms the picture into brush strokes that point towards where you clicked.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Shihni edhe: Rrathë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/real_rainbow.html b/magic/magic-docs/sq_AL.UTF-8/html/real_rainbow.html new file mode 100644 index 000000000..ea291b827 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/real_rainbow.html @@ -0,0 +1,16 @@ + +Vizatoni një hark të tejdukshëm, që duket si një ylber i njëmendtë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Ylber ROYGBIV.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/reflection.html b/magic/magic-docs/sq_AL.UTF-8/html/reflection.html new file mode 100644 index 000000000..44e7cd109 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/reflection.html @@ -0,0 +1,15 @@ + +Klikoni dhe tërhiqeni poshtë, sipër, majtas, ose djathtas, për të shtuar te figura juaj një pasqyrim.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/remove_color.html b/magic/magic-docs/sq_AL.UTF-8/html/remove_color.html new file mode 100644 index 000000000..4ba152026 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/remove_color.html @@ -0,0 +1,18 @@ + +This completely desaturates (turns greyscale) parts of the image that match the selected color.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Mbaje Ngjyrën, Ngope, Çngope, Errësoje, Ndriçoje, & Ngjyrosje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/ribbon.html b/magic/magic-docs/sq_AL.UTF-8/html/ribbon.html new file mode 100644 index 000000000..de53e5f5f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/ribbon.html @@ -0,0 +1,17 @@ + +Ky vizaton një shirit flutures pas miut, teksa e lëvizni.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/ripples.html b/magic/magic-docs/sq_AL.UTF-8/html/ripples.html new file mode 100644 index 000000000..62ddce4f4 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/ripples.html @@ -0,0 +1,17 @@ + +Click in your picture to make water ripple distortions appear over it.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Sy peshku.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rosette.html b/magic/magic-docs/sq_AL.UTF-8/html/rosette.html new file mode 100644 index 000000000..909c09ba4 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rosette.html @@ -0,0 +1,18 @@ + +Vizatoni me tre penela njëherësh, në formë rozete.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Kaleidoskop & Pikaso.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/sq_AL.UTF-8/html/roygbiv_rainbow.html new file mode 100644 index 000000000..c628bf497 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/roygbiv_rainbow.html @@ -0,0 +1,16 @@ + +Vizatoni një hark ylberi me të kuqe, portokalli, të verdhë, të gjelbër, blu, indigo dhe vjollcë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Ylber i Njëmendtë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/rush.html b/magic/magic-docs/sq_AL.UTF-8/html/rush.html new file mode 100644 index 000000000..727defb18 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/rush.html @@ -0,0 +1,18 @@ + +Klikoni dhe tërhiqeni sipër për zmadhim, ose tërhiqeni poshtë për zvogëlim. Përfundimet do të jenë të turbullta/të njollosura.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Zvogëlim Me Kuadrate & Zoom.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/saturate.html b/magic/magic-docs/sq_AL.UTF-8/html/saturate.html new file mode 100644 index 000000000..7623d78c2 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/saturate.html @@ -0,0 +1,17 @@ + +Kjo shton ngopjen e ngjyrave, kurdo që tërhiqni miun.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Çngope, Errësoje, Ndriçoje, Ngjyrosje, Hiqe Ngjyrën, & Mbaje Ngjyrën.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/sharpen.html b/magic/magic-docs/sq_AL.UTF-8/html/sharpen.html new file mode 100644 index 000000000..22496119b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/sharpen.html @@ -0,0 +1,17 @@ + +Mprehni fokusin e vizatimit tuaj.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Turbulloje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/shift.html b/magic/magic-docs/sq_AL.UTF-8/html/shift.html new file mode 100644 index 000000000..eed46b447 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/shift.html @@ -0,0 +1,15 @@ + +Ky e zhvendos figurën tuaj nëpër kanavacë. Çfarëdo që del jashtë njërës anë, rishfaqet në anën e kundërt.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/silhouette.html b/magic/magic-docs/sq_AL.UTF-8/html/silhouette.html new file mode 100644 index 000000000..c7ac7b2e9 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/silhouette.html @@ -0,0 +1,17 @@ + +Trace the edges in your picture, over a black background.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Skaje & Me reliev.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/smooth.html b/magic/magic-docs/sq_AL.UTF-8/html/smooth.html new file mode 100644 index 000000000..1aa9f946a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/smooth.html @@ -0,0 +1,18 @@ + +Vizatoni një formë me dorë të lirë, lakoret e të cilës do të zbuten, kur të lëshoni miun. Vizaton duke përdorur ngjyrën që keni zgjedhur atë çast.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Qerthuj & Shkarravina.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/sq_AL.UTF-8/html/smooth_rainbow.html new file mode 100644 index 000000000..fc53bbf0d --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/smooth_rainbow.html @@ -0,0 +1,17 @@ + +Ky është i ngjashëm me mjetin magjik Ylber — teksa lëvizni miun përqark, kalon nëpër një spektër ngjyrash — vetëm se ngjyrat përzihen rrjedhshëm teksa vizatoni.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Ylber & Cikël Ylberi.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/smudge.html b/magic/magic-docs/sq_AL.UTF-8/html/smudge.html new file mode 100644 index 000000000..4cf0196cb --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/smudge.html @@ -0,0 +1,17 @@ + +This pushes the colors around under the mouse, like finger painting with wet paint.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: Turbulloje & Bojë e Njomë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/snow_ball.html b/magic/magic-docs/sq_AL.UTF-8/html/snow_ball.html new file mode 100644 index 000000000..1c2b7bda9 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/snow_ball.html @@ -0,0 +1,16 @@ + +Mbusheni vizatimin me topa bore.
+
Ky mjet përdoret me klikim njësh.
+Shihni edhe: Shi & Flokë Bore.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/snow_flake.html b/magic/magic-docs/sq_AL.UTF-8/html/snow_flake.html new file mode 100644 index 000000000..7c2eca241 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/snow_flake.html @@ -0,0 +1,16 @@ + +Mbusheni vizatimin me flokë dëbore.
+
Ky mjet përdoret me klikim njësh.
+Shihni edhe: Shi & Top Dëbore.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/square_mosaic.html b/magic/magic-docs/sq_AL.UTF-8/html/square_mosaic.html new file mode 100644 index 000000000..30fc27c9b --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/square_mosaic.html @@ -0,0 +1,17 @@ + +Shndërron pjesë të fotos tuaj në një një mozaik kutish katrore.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Mozaik Gjashtëkëndor, Mozaik i Parregullt, & Mozaik.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/squiggles.html b/magic/magic-docs/sq_AL.UTF-8/html/squiggles.html new file mode 100644 index 000000000..c0a44dca3 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/squiggles.html @@ -0,0 +1,18 @@ + +This draws random squiggly loops, using the currently-selected color, as you move the mouse around.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+ +Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/stretch.html b/magic/magic-docs/sq_AL.UTF-8/html/stretch.html new file mode 100644 index 000000000..e1dbde41e --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/stretch.html @@ -0,0 +1,15 @@ + +Klikoni dhe tërhiqeni përreth për të tërhequr dhe shtypur pjesë të figurës.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/string_corner.html b/magic/magic-docs/sq_AL.UTF-8/html/string_corner.html new file mode 100644 index 000000000..754f69f87 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/string_corner.html @@ -0,0 +1,17 @@ + +Vizatoni art në formë V-je me thurje me kënde të drejtë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, V me Thurje, & Skaje me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/string_edges.html b/magic/magic-docs/sq_AL.UTF-8/html/string_edges.html new file mode 100644 index 000000000..8cd252b4a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/string_edges.html @@ -0,0 +1,17 @@ + +Vizatoni me thurje përqark anëve të vizatimit tuaj.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, & V me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/string_v.html b/magic/magic-docs/sq_AL.UTF-8/html/string_v.html new file mode 100644 index 000000000..5b2f4ccda --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/string_v.html @@ -0,0 +1,17 @@ + +Vizatoni art në formë V-je me thurje në çfarëdo këndi.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje, & Skaje me Thurje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/sq_AL.UTF-8/html/symmetry_left_right.html new file mode 100644 index 000000000..ebf2788df --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/symmetry_left_right.html @@ -0,0 +1,18 @@ + +Paint with reflective symmetry across the horizontal center of the image.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Kaleidoskop, Mostër, Simetri Sipër/Poshtë, & Kuadrate.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/sq_AL.UTF-8/html/symmetry_up_down.html new file mode 100644 index 000000000..bcba6b7bc --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/symmetry_up_down.html @@ -0,0 +1,18 @@ + +Paint with reflective symmetry across the vertical center of the image.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Kaleidoskop, Mostër, Simetri Majtas/Djathtas, & Kuadrate.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tiles.html b/magic/magic-docs/sq_AL.UTF-8/html/tiles.html new file mode 100644 index 000000000..1c3ac3198 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tiles.html @@ -0,0 +1,18 @@ + +Vizaton një rregullsi simetrike përqark anëve të vizatimit.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Mostër.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tilezoom.html b/magic/magic-docs/sq_AL.UTF-8/html/tilezoom.html new file mode 100644 index 000000000..49eeae074 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tilezoom.html @@ -0,0 +1,18 @@ + +Klikoni dhe tërhiqeni sipër për zmadhim, ose tërhiqeni poshtë për zvogëlim. Kur bëhet zvogëlim, figura juaj do të riprodhohet në kuadrate nëpër kanavacë.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Panele, Ngut, & Zoom.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tint.html b/magic/magic-docs/sq_AL.UTF-8/html/tint.html new file mode 100644 index 000000000..0d756031f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tint.html @@ -0,0 +1,18 @@ + +This changes the color (or hue) of the parts of the picture to the selected color.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Ndriçoje & Errësoje.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/toothpaste.html b/magic/magic-docs/sq_AL.UTF-8/html/toothpaste.html new file mode 100644 index 000000000..06cc1991f --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/toothpaste.html @@ -0,0 +1,17 @@ + +Vizatoni copa të trasha ngjyre në vizatimin tuaj, që duken si pastë dhëmbësh.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tornado.html b/magic/magic-docs/sq_AL.UTF-8/html/tornado.html new file mode 100644 index 000000000..b88a6ecda --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tornado.html @@ -0,0 +1,16 @@ + +Vizaton në figurë një efekt shtjelle.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/trimetric_draw.html b/magic/magic-docs/sq_AL.UTF-8/html/trimetric_draw.html new file mode 100644 index 000000000..d27f35fb0 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/trimetric_draw.html @@ -0,0 +1,19 @@ + +Click and drag to draw in a trimetric projection. Lines will only go vertically, or at two chosen angles. Use "Trimetric Select" to adjust the two angles.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+This tool is not available with "complexity" (expertise level) set to 'Novice'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Select, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/trimetric_select.html b/magic/magic-docs/sq_AL.UTF-8/html/trimetric_select.html new file mode 100644 index 000000000..050beb2fa --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/trimetric_select.html @@ -0,0 +1,16 @@ + +Click (and drag) to position the pair of angles that will be used with the "Trimetric Draw" tool.
+Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+This tool is only available with "complexity" (expertise level) set to 'Advanced'.
+Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select, Dimetric Draw, Trimetric Draw, Oblique Select, Oblique Draw, & Perspektivë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tv.html b/magic/magic-docs/sq_AL.UTF-8/html/tv.html new file mode 100644 index 000000000..00167b2cb --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tv.html @@ -0,0 +1,19 @@ + +Distort your picture so it looks like it's on a television (TV).
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: TV (I ndriçuar).
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/tv_bright.html b/magic/magic-docs/sq_AL.UTF-8/html/tv_bright.html new file mode 100644 index 000000000..41c96ae09 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/tv_bright.html @@ -0,0 +1,19 @@ + +Distort your picture so it looks like it's on a television (TV). (Brighter version of "TV".)
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Shihni edhe: TV.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/wavelets.html b/magic/magic-docs/sq_AL.UTF-8/html/wavelets.html new file mode 100644 index 000000000..ae51edd04 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/wavelets.html @@ -0,0 +1,18 @@ + +Klikoni mbi krejt figurën, për ta bërë me valëzime, lart e poshtë. Tërhiqeni miun sipër dhe poshtë, për të ndryshuar lartësinë e valëzimeve dhe majtas djathtas për të ndryshua gjerësinë. Kur të duket si ju pëlqen, lëshojeni butonin e miut.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Valë.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/waves.html b/magic/magic-docs/sq_AL.UTF-8/html/waves.html new file mode 100644 index 000000000..92b96911a --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/waves.html @@ -0,0 +1,16 @@ + +Klikoni mbi krejt figurën, për ta bërë me valëzime, nga ana në anë. Tërhiqeni miun sipër dhe poshtë, për të ndryshuar lartësinë e valëzimeve dhe majtas-djathtas për të ndryshua gjerësinë. Kur të duket si ju pëlqen, lëshojeni butonin e miut.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Shihni edhe: Valëza.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/wet_paint.html b/magic/magic-docs/sq_AL.UTF-8/html/wet_paint.html new file mode 100644 index 000000000..07828335d --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/wet_paint.html @@ -0,0 +1,20 @@ + +This draws a light, smudgy coat of paint on the picture.
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron rregullime të shumta madhësie.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Njollose.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/xor_colors.html b/magic/magic-docs/sq_AL.UTF-8/html/xor_colors.html new file mode 100644 index 000000000..24fa4987e --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/xor_colors.html @@ -0,0 +1,16 @@ + +Ngjyra ngjyra të bazuara në pozicionin ku po vizatohet.
+
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
+Ky mjet ofron rregullime të shumta madhësie.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/html/zoom.html b/magic/magic-docs/sq_AL.UTF-8/html/zoom.html new file mode 100644 index 000000000..2705eceab --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/html/zoom.html @@ -0,0 +1,17 @@ + +Klikoni dhe tërhiqeni për sipër, për ta zmadhuar, ose për poshtë, për ta zvogëluar. (Kur e zvogëloni, ngjyra e zgjedhur nga ju do të përdoret si ngjyrë sfond.)
+
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
+Ky mjet ofron zgjedhje ngjyrash.
+Shihni edhe: Ngut & Zvogëlim Me Kuadrate.
+Tux Paint 0.9.32
+ \ No newline at end of file diff --git a/magic/magic-docs/sq_AL.UTF-8/hypotrochoid.txt b/magic/magic-docs/sq_AL.UTF-8/hypotrochoid.txt new file mode 100644 index 000000000..ce28bac40 --- /dev/null +++ b/magic/magic-docs/sq_AL.UTF-8/hypotrochoid.txt @@ -0,0 +1,27 @@ + Mjeti “Magjik” i Tux Paint-it: Hypotrochoid + + Grup: Artistike + + Autor: Bill Kendrick