Rev 13027 | Rev 13409 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
9729 | cbradney | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!DOCTYPE TS><TS version="1.1"> |
||
670 | cbradney | 3 | <context> |
12918 | cbradney | 4 | <name></name> |
1135 | cbradney | 5 | <message> |
12612 | cbradney | 6 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="21"/> |
1135 | cbradney | 7 | <source>getColorNames() -> list |
8 | |||
9 | Returns a list containing the names of all defined colors in the document. |
||
10 | If no document is open, returns a list of the default document colors. |
||
11 | </source> |
||
12612 | cbradney | 12 | <translation type="unfinished">getColorNames() -> list |
1575 | cbradney | 13 | |
14 | Përgjigjet me një listë që përmban emrat e tërë ngjyrave të përcaktuara për dokumentin. |
||
15 | Nëse nuk është hapur ndonjë dokument, përgjigjet me një listë ngjyrash për dokumentin parazgjedhje. |
||
16 | </translation> |
||
1135 | cbradney | 17 | </message> |
18 | <message> |
||
12918 | cbradney | 19 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="35"/> |
20 | <source>getColor("name") -> tuple |
||
21 | |||
22 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
23 | color "name" from the current document. If no document is open, returns |
||
24 | the value of the named color from the default document colors. |
||
25 | |||
26 | May raise NotFoundError if the named color wasn't found. |
||
27 | May raise ValueError if an invalid color name is specified. |
||
28 | </source> |
||
29 | <translation type="unfinished">getColor("emër") -> "tuple" |
||
30 | |||
31 | Përgjigjet me një "tuple" (C, M, Y, K) që përmban përbërësit në katër ngjyra të |
||
32 | ngjyrës "emër" prej dokumentit të çastit. Nëse nuk ka dokument të hapur, sillet |
||
33 | vlera e ngjyrës me atë emër prej ngjyrave të dokumentit parazgjedhje. |
||
34 | |||
35 | Mund të sjellë NotFoundError nëse nuk gjendet emri i ngjyrës. |
||
36 | Mund të sjellë ValueError nëse është dhënë emër i pavlefshëm ngjyre. |
||
37 | </translation> |
||
38 | </message> |
||
39 | <message> |
||
40 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="50"/> |
||
41 | <source>getColorAsRGB("name") -> tuple |
||
42 | |||
43 | Returns a tuple (R,G,B) containing the three color components of the |
||
44 | color "name" from the current document, converted to the RGB color |
||
45 | space. If no document is open, returns the value of the named color |
||
46 | from the default document colors. |
||
47 | |||
48 | May raise NotFoundError if the named color wasn't found. |
||
49 | May raise ValueError if an invalid color name is specified. |
||
50 | </source> |
||
51 | <translation type="unfinished"></translation> |
||
52 | </message> |
||
53 | <message> |
||
54 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="64"/> |
||
55 | <source>changeColor("name", c, m, y, k) |
||
56 | |||
57 | Changes the color "name" to the specified CMYK value. The color value is |
||
58 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
59 | Color components should be in the range from 0 to 255. |
||
60 | |||
61 | May raise NotFoundError if the named color wasn't found. |
||
62 | May raise ValueError if an invalid color name is specified. |
||
63 | </source> |
||
64 | <translation type="unfinished">changeColor("emër", c, m, y, k) |
||
65 | |||
66 | Ndryshon ngjyrën "emër" në vlerën e treguar CMYK. Vlera e ngjyrës përcaktohet |
||
67 | nga katër përbërs c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
68 | Përbërësit e ngjyrës do të duhej të ishin brenda intervalit nga 0 te 255. |
||
69 | |||
70 | Mund të sjellë NotFoundError nëse emri i ngjyrës nuk gjendet. |
||
71 | Mund të sjellë ValueError nëse është dhënë emër i pavlefshëm ngjyre.</translation> |
||
72 | </message> |
||
73 | <message> |
||
74 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="77"/> |
||
75 | <source>defineColor("name", c, m, y, k) |
||
76 | |||
77 | Defines a new color "name". The color Value is defined via four components: |
||
78 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
79 | the range from 0 to 255. |
||
80 | |||
81 | May raise ValueError if an invalid color name is specified. |
||
82 | </source> |
||
83 | <translation type="unfinished">defineColor("emër", c, m, y, k) |
||
84 | |||
85 | Përcakton një ngjyrë të re "emër". Vlera e ngjyrës përcaktohet nga katër përbërës: |
||
86 | c = Cyan, m = Magenta, y = Yellow and k = Black. Përbërësit e ngjyrës do të duhej |
||
87 | të ishin brenda intervalit nga 0 te 255. |
||
88 | |||
89 | Mund të sjellë ValueError nëse është dhënë emër i pavlefshëm ngjyre.</translation> |
||
90 | </message> |
||
91 | <message> |
||
92 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="94"/> |
||
93 | <source>deleteColor("name", "replace") |
||
94 | |||
95 | Deletes the color "name". Every occurence of that color is replaced by the |
||
96 | color "replace". If not specified, "replace" defaults to the color |
||
97 | "None" - transparent. |
||
98 | |||
99 | deleteColor works on the default document colors if there is no document open. |
||
100 | In that case, "replace", if specified, has no effect. |
||
101 | |||
102 | May raise NotFoundError if a named color wasn't found. |
||
103 | May raise ValueError if an invalid color name is specified. |
||
104 | </source> |
||
105 | <translation type="unfinished">deleteColor("emër", "zëvendëso") |
||
106 | |||
107 | Fshin ngjyrën "emër". Çdo hasje e asaj ngjyre zëvendësohet nga |
||
108 | ngjyra "zëvendëso". Nëse nuk jepet një, "zëvendëso" merr si vlerë ngjyrën e tejdukshme |
||
109 | "Asnjë". |
||
110 | |||
111 | deleteColor funksionon në ngjyra dokumenti parazgjedhje nëse nuk ka dokument të hapur. |
||
112 | Në atë rast, "zëvendëso", nëse është caktuar, nuk ka efekt. |
||
113 | |||
114 | Mund të sjellë NotFoundError nëse nuk gjendet emri i ngjyrës. |
||
115 | Mund të sjellë ValueError nëse është dhënë emër i pavlefshëm ngjyre.</translation> |
||
116 | </message> |
||
117 | <message> |
||
118 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="106"/> |
||
119 | <source>replaceColor("name", "replace") |
||
120 | |||
121 | Every occurence of the color "name" is replaced by the color "replace". |
||
122 | |||
123 | May raise NotFoundError if a named color wasn't found. |
||
124 | May raise ValueError if an invalid color name is specified. |
||
125 | </source> |
||
126 | <translation type="unfinished">replaceColor("emër", "zëvendëso") |
||
127 | |||
128 | Çdo hasje e ngjyrës "emër" zëvendësohet me ngjyrën "zëvendëso". |
||
129 | |||
130 | Mund të sjellë NotFoundError nëse nuk gjendet emri i ngjyrës. |
||
131 | Mund të sjellë ValueError nëse është dhënë emër i pavlefshëm ngjyre.</translation> |
||
132 | </message> |
||
133 | <message> |
||
12612 | cbradney | 134 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="22"/> |
1135 | cbradney | 135 | <source>newDocDialog() -> bool |
136 | |||
137 | Displays the "New Document" dialog box. Creates a new document if the user |
||
138 | accepts the settings. Does not create a document if the user presses cancel. |
||
139 | Returns true if a new document was created. |
||
140 | </source> |
||
12612 | cbradney | 141 | <translation type="unfinished">newDocDialog() -> bool |
1575 | cbradney | 142 | |
143 | Shfaq kutinë e Dialogut "Dokument i Ri". Krijon një dokument te ri nëse përdoruesi |
||
144 | pranon rregullimet. Nuk krijon dokument nëse përdoruesi shtyp Anulo. |
||
145 | Përgjigjet me "true" nëse dokumenti i ri u krijua. |
||
146 | </translation> |
||
1135 | cbradney | 147 | </message> |
148 | <message> |
||
12918 | cbradney | 149 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="46"/> |
150 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
||
151 | |||
152 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
153 | with the filter string "filter". A default filename or file path can also |
||
154 | supplied, leave this string empty when you don't want to use it. A value of |
||
155 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
156 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
157 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
158 | the dialog shows and returns only directories. The default for all of the |
||
159 | optional parameters is False. |
||
160 | |||
161 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
162 | For example 'Images (*.png *.xpm *.jpg)'. |
||
163 | |||
164 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
165 | |||
166 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
167 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
168 | </source> |
||
169 | <translation type="unfinished"></translation> |
||
170 | </message> |
||
171 | <message> |
||
172 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="88"/> |
||
173 | <source>messageBox("caption", "message", |
||
174 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
175 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
176 | |||
177 | Displays a message box with the title "caption", the message "message", and |
||
178 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
179 | button, OK, is displayed. Only the caption and message arguments are required, |
||
180 | though setting an icon and appropriate button(s) is strongly |
||
181 | recommended. The message text may contain simple HTML-like markup. |
||
182 | |||
183 | Returns the number of the button the user pressed. Button numbers start |
||
184 | at 1. |
||
185 | |||
186 | For the icon and the button parameters there are predefined constants available |
||
187 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
188 | ICON_* constants defined in the module. There are also two extra constants that |
||
189 | can be binary-ORed with button constants: |
||
190 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
191 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
192 | |||
193 | Usage examples: |
||
194 | result = messageBox('Script failed', |
||
195 | 'This script only works when you have a text frame selected.', |
||
196 | ICON_ERROR) |
||
197 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
198 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
199 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
200 | |||
201 | Defined button and icon constants: |
||
202 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
203 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
204 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
205 | </source> |
||
206 | <translation type="unfinished">messageBox("titull", "mesazh", |
||
207 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
208 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
209 | |||
210 | Shfaq një kuti mesazhesh me titullin "titullin", mesazhin "mesazh", dhe |
||
211 | një ikonë "ikonë" dhe deri në tre butona. Si parazgjedhje nuk përdoret ikonë |
||
212 | dhe shfaqet një buton i vetëm, OK. Lipsen vetëm argumentat titull dhe mesazh, |
||
213 | edhe pse vendosja e një ikone dhe butonit(ave) këshillohet me forcë. |
||
214 | Teksti i mesazhit mund të përmbajë shënime të thjeshtë tip HTML. |
||
215 | |||
216 | Përgjigjet me numrin e butonit që shtypi përdoruesi. Numrat e butonave fillojnë |
||
217 | nga 1. |
||
218 | |||
219 | Për parametrat e ikonës dhe butonit ka konstante të paracaktuara të mundshme |
||
220 | me emra të njëjtë si në Dokumentimin e Qt. Këto janë konstantet BUTTON_* dhe |
||
221 | ICON_* përcaktuar te moduli. Ka po ashtu dy konstante ekstra që |
||
222 | pranojnë binary-ORed me konstante butonash: |
||
223 | BUTTONOPT_DEFAULT Shtypja e Enter-it shtyp këtë buton. |
||
224 | BUTTONOPT_ESCAPE Shtypja e Esc-ut shtyp këtë buton. |
||
225 | |||
226 | Shembuj përdorimi: |
||
227 | result = messageBox('Script failed', |
||
228 | 'This script only works when you have a text frame selected.', |
||
229 | ICON_ERROR) |
||
230 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
231 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
232 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
233 | |||
234 | Konstante të përcaktuara butonash dhe ikonash: |
||
235 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
236 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
237 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
238 | </translation> |
||
239 | </message> |
||
240 | <message> |
||
241 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="101"/> |
||
242 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
243 | |||
244 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
245 | Parameters: window title, text in the window and optional 'default' value. |
||
246 | |||
247 | Example: valueDialog('title', 'text in the window', 'optional') |
||
248 | </source> |
||
249 | <translation type="unfinished">valueDialog(titull, mesazh [,defaultvalue]) -> string |
||
250 | |||
251 | Shfaq dialogun e zakonshëm 'Kërko për varg' dhe sjell vlerën e vargut |
||
252 | Parametra: titull dritareje, tekst në dritaren dhe vlerë opsionale 'parazgjedhje'. |
||
253 | |||
254 | Shembull: valueDialog('titull', 'tekst në dritaren', 'opsionale') |
||
255 | </translation> |
||
256 | </message> |
||
257 | <message> |
||
258 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="111"/> |
||
259 | <source>newStyleDialog() -> string |
||
260 | |||
261 | Shows 'Create new paragraph style' dialog. Function returns real |
||
262 | style name or None when user cancels the dialog. |
||
263 | </source> |
||
264 | <translation type="unfinished"></translation> |
||
265 | </message> |
||
266 | <message> |
||
267 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="55"/> |
||
268 | <source>newDocument(size, margins, orientation, firstPageNumber, |
||
269 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
270 | |||
271 | Creates a new document and returns true if successful. The parameters have the |
||
272 | following meaning: |
||
273 | |||
274 | size = A tuple (width, height) describing the size of the document. You can |
||
275 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
276 | |||
277 | margins = A tuple (left, right, top, bottom) describing the document |
||
278 | margins |
||
279 | |||
280 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
281 | |||
282 | firstPageNumer = is the number of the first page in the document used for |
||
283 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
284 | numbers if you're creating a document in several parts. |
||
285 | |||
286 | unit: this value sets the measurement units used by the document. Use a |
||
287 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
288 | UNIT_PICAS, UNIT_POINTS. |
||
289 | |||
290 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
291 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
292 | PAGE_4 is 4-fold. |
||
293 | |||
294 | firstPageOrder = What is position of first page in the document. |
||
295 | Indexed from 0 (0 = first). |
||
296 | |||
297 | numPage = Number of pages to be created. |
||
298 | |||
299 | The values for width, height and the margins are expressed in the given unit |
||
300 | for the document. PAPER_* constants are expressed in points. If your document |
||
301 | is not in points, make sure to account for this. |
||
302 | |||
303 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
304 | PAGE_4, 3, 1) |
||
305 | |||
306 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
307 | </source> |
||
308 | <translation type="unfinished"></translation> |
||
309 | </message> |
||
310 | <message> |
||
311 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="96"/> |
||
312 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
313 | unit, facingPages, firstSideLeft) -> bool |
||
314 | |||
315 | WARNING: Obsolete procedure! Use newDocument instead. |
||
316 | |||
317 | Creates a new document and returns true if successful. The parameters have the |
||
318 | following meaning: |
||
319 | |||
320 | size = A tuple (width, height) describing the size of the document. You can |
||
321 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
322 | |||
323 | margins = A tuple (left, right, top, bottom) describing the document |
||
324 | margins |
||
325 | |||
326 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
327 | |||
328 | firstPageNumer = is the number of the first page in the document used for |
||
329 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
330 | numbers if you're creating a document in several parts. |
||
331 | |||
332 | unit: this value sets the measurement units used by the document. Use a |
||
333 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
334 | UNIT_PICAS, UNIT_POINTS. |
||
335 | |||
336 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
337 | |||
338 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
339 | |||
340 | The values for width, height and the margins are expressed in the given unit |
||
341 | for the document. PAPER_* constants are expressed in points. If your document |
||
342 | is not in points, make sure to account for this. |
||
343 | |||
344 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
345 | FACINGPAGES, FIRSTPAGERIGHT) |
||
346 | </source> |
||
347 | <translation type="unfinished"></translation> |
||
348 | </message> |
||
349 | <message> |
||
350 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="108"/> |
||
351 | <source>closeDoc() |
||
352 | |||
353 | Closes the current document without prompting to save. |
||
354 | |||
355 | May throw NoDocOpenError if there is no document to close |
||
356 | </source> |
||
357 | <translation type="unfinished">closeDoc() |
||
358 | |||
359 | Mbyll dokumentin e çastit pa pyetur për ruajtje apo jo. |
||
360 | |||
361 | Mund të shfaqë NoDocOpenError nëse nuk ka dokument që të mbyllet</translation> |
||
362 | </message> |
||
363 | <message> |
||
364 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="117"/> |
||
365 | <source>haveDoc() -> bool |
||
366 | |||
367 | Returns true if there is a document open. |
||
368 | </source> |
||
369 | <translation type="unfinished">haveDoc() -> bool |
||
370 | |||
371 | Përgjigjet me true nëse ka një dokument të hapur. |
||
372 | </translation> |
||
373 | </message> |
||
374 | <message> |
||
375 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="128"/> |
||
376 | <source>openDoc("name") |
||
377 | |||
378 | Opens the document "name". |
||
379 | |||
380 | May raise ScribusError if the document could not be opened. |
||
381 | </source> |
||
382 | <translation type="unfinished">openDoc("name") |
||
383 | |||
384 | Hap dokumentin "emër". |
||
385 | |||
386 | Mund të sjellë ScribusError nëse dokumenti nuk hapet dot. |
||
387 | </translation> |
||
388 | </message> |
||
389 | <message> |
||
390 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="141"/> |
||
391 | <source>saveDoc() |
||
392 | |||
393 | Saves the current document with its current name, returns true if successful. |
||
394 | If the document has not already been saved, this may bring up an interactive |
||
395 | save file dialog. |
||
396 | |||
397 | If the save fails, there is currently no way to tell. |
||
398 | </source> |
||
399 | <translation type="unfinished">saveDoc() |
||
400 | |||
401 | Ruan dokumentin e çastit me emrin e çastit, përgjigjet me true nëse ka sukses. |
||
402 | Nëse dokumenti nuk është ruajtur ende, kjo mund të sjellë një dialog ruajtje. |
||
403 | |||
404 | Nëse ruajtja dështon, hëpërhë nuk ka rrugë se si të merret vesh. |
||
405 | </translation> |
||
406 | </message> |
||
407 | <message> |
||
408 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="152"/> |
||
409 | <source>saveDocAs("name") |
||
410 | |||
411 | Saves the current document under the new name "name" (which may be a full or |
||
412 | relative path). |
||
413 | |||
414 | May raise ScribusError if the save fails. |
||
415 | </source> |
||
416 | <translation type="unfinished">saveDocAs("name") |
||
417 | |||
418 | Ruan dokumentin e çastit nën një emër të ri "emër" (i cili mund të jepet me shteg |
||
419 | të plotë ose relativ). |
||
420 | |||
421 | Mund të sjellë ScribusError nëse ruajtja dështon. |
||
422 | </translation> |
||
423 | </message> |
||
424 | <message> |
||
425 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="162"/> |
||
426 | <source>setInfo("author", "info", "description") -> bool |
||
427 | |||
428 | Sets the document information. "Author", "Info", "Description" are |
||
429 | strings. |
||
430 | </source> |
||
431 | <translation type="unfinished"></translation> |
||
432 | </message> |
||
433 | <message> |
||
434 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="173"/> |
||
435 | <source>setMargins(lr, rr, tr, br) |
||
436 | |||
437 | Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
||
438 | margins are given in the measurement units of the document - see UNIT_<type> |
||
439 | constants. |
||
440 | </source> |
||
441 | <translation type="unfinished"></translation> |
||
442 | </message> |
||
443 | <message> |
||
444 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="185"/> |
||
445 | <source>setUnit(type) |
||
446 | |||
447 | Changes the measurement unit of the document. Possible values for "unit" are |
||
448 | defined as constants UNIT_<type>. |
||
449 | |||
450 | May raise ValueError if an invalid unit is passed. |
||
451 | </source> |
||
452 | <translation type="unfinished">setUnit(type) |
||
453 | |||
454 | Ndryshon njësinë matëse të dokumentit. Vlera të mundshme për "njësinë" përcaktohen |
||
455 | si konstante UNIT_<tip>. |
||
456 | |||
457 | Mund të sjellë ValueError nëse jepet një njësi e pavlefshme. |
||
458 | </translation> |
||
459 | </message> |
||
460 | <message> |
||
461 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="196"/> |
||
462 | <source>getUnit() -> integer (Scribus unit constant) |
||
463 | |||
464 | Returns the measurement units of the document. The returned value will be one |
||
465 | of the UNIT_* constants: |
||
466 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
467 | </source> |
||
468 | <translation type="unfinished">getUnit() -> integer (konstante Scribus për njësi) |
||
469 | |||
470 | Përgjigjet me njësitë marëse të dokumentit. Vlera e sjellë do të jetë ajo e |
||
471 | konstanteve UNIT_*: |
||
472 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
473 | </translation> |
||
474 | </message> |
||
475 | <message> |
||
476 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="206"/> |
||
477 | <source>loadStylesFromFile("filename") |
||
478 | |||
479 | Loads paragraph styles from the Scribus document at "filename" into the |
||
480 | current document. |
||
481 | </source> |
||
482 | <translation type="unfinished">loadStylesFromFile("emër kartele") |
||
483 | |||
484 | Ngarkon në dokumentin e çastit stile paragrafësh prej dokumentit Scribus |
||
485 | te "emër kartele". |
||
486 | </translation> |
||
487 | </message> |
||
488 | <message> |
||
489 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="218"/> |
||
490 | <source>setDocType(facingPages, firstPageLeft) |
||
491 | |||
492 | Sets the document type. To get facing pages set the first parameter to |
||
493 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
494 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
495 | a right page use FIRSTPAGERIGHT. |
||
496 | </source> |
||
497 | <translation type="unfinished">setDocType(facingPages, firstPageLeft) |
||
498 | |||
499 | Cakton tipin e dokumentit. Për të pasur faqe për karshi vëreni parametrin e parë si |
||
500 | FACINGPAGES, për të mos përdorur facingPages përdorni NOFACINGPAGES. Nëse doni |
||
501 | që faqja e parë të jetë faqe majtas vëreni parametrin e dytë si FIRSTPAGELEFT, për |
||
502 | faqe djathtas përdorni FIRSTPAGERIGHT. |
||
503 | </translation> |
||
504 | </message> |
||
505 | <message> |
||
506 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="226"/> |
||
507 | <source>closeMasterPage() |
||
508 | |||
509 | Closes the currently active master page, if any, and returns editing |
||
510 | to normal. Begin editing with editMasterPage(). |
||
511 | </source> |
||
512 | <translation type="unfinished"></translation> |
||
513 | </message> |
||
514 | <message> |
||
515 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="233"/> |
||
516 | <source>masterPageNames() |
||
517 | |||
518 | Returns a list of the names of all master pages in the document. |
||
519 | </source> |
||
520 | <translation type="unfinished"></translation> |
||
521 | </message> |
||
522 | <message> |
||
523 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="241"/> |
||
524 | <source>editMasterPage(pageName) |
||
525 | |||
526 | Enables master page editing and opens the named master page |
||
527 | for editing. Finish editing with closeMasterPage(). |
||
528 | </source> |
||
529 | <translation type="unfinished"></translation> |
||
530 | </message> |
||
531 | <message> |
||
532 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="249"/> |
||
533 | <source>createMasterPage(pageName) |
||
534 | |||
535 | Creates a new master page named pageName and opens it for |
||
536 | editing. |
||
537 | </source> |
||
538 | <translation type="unfinished"></translation> |
||
539 | </message> |
||
540 | <message> |
||
541 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="256"/> |
||
542 | <source>deleteMasterPage(pageName) |
||
543 | |||
544 | Delete the named master page. |
||
545 | </source> |
||
546 | <translation type="unfinished"></translation> |
||
547 | </message> |
||
548 | <message> |
||
549 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="21"/> |
||
550 | <source>getFillColor(["name"]) -> string |
||
551 | |||
552 | Returns the name of the fill color of the object "name". |
||
553 | If "name" is not given the currently selected item is used. |
||
554 | </source> |
||
555 | <translation type="unfinished">getFillColor(["name"]) -> string |
||
556 | |||
557 | Përgjigjet me emrin e ngjyrës së mbushjes për objektin "emër". |
||
558 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
559 | </translation> |
||
560 | </message> |
||
561 | <message> |
||
562 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="31"/> |
||
563 | <source>getFillTransparency(["name"]) -> float |
||
564 | |||
565 | Returns the fill transparency of the object "name". If "name" |
||
566 | is not given the currently selected Item is used. |
||
567 | </source> |
||
568 | <translation type="unfinished"></translation> |
||
569 | </message> |
||
570 | <message> |
||
571 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="41"/> |
||
572 | <source>getFillBlendmode(["name"]) -> integer |
||
573 | |||
574 | Returns the fill blendmode of the object "name". If "name" |
||
575 | is not given the currently selected Item is used. |
||
576 | </source> |
||
577 | <translation type="unfinished"></translation> |
||
578 | </message> |
||
579 | <message> |
||
580 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="51"/> |
||
581 | <source>getLineColor(["name"]) -> string |
||
582 | |||
583 | Returns the name of the line color of the object "name". |
||
584 | If "name" is not given the currently selected item is used. |
||
585 | </source> |
||
586 | <translation type="unfinished">getLineColor(["emër"]) -> string |
||
587 | |||
588 | Përgjigjet me emrin e ngjyrës për vijën e objektit "emër". |
||
589 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
590 | </translation> |
||
591 | </message> |
||
592 | <message> |
||
593 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="61"/> |
||
594 | <source>getLineTransparency(["name"]) -> float |
||
595 | |||
596 | Returns the line transparency of the object "name". If "name" |
||
597 | is not given the currently selected Item is used. |
||
598 | </source> |
||
599 | <translation type="unfinished"></translation> |
||
600 | </message> |
||
601 | <message> |
||
602 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="71"/> |
||
603 | <source>getLineBlendmode(["name"]) -> integer |
||
604 | |||
605 | Returns the line blendmode of the object "name". If "name" |
||
606 | is not given the currently selected Item is used. |
||
607 | </source> |
||
608 | <translation type="unfinished"></translation> |
||
609 | </message> |
||
610 | <message> |
||
611 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="81"/> |
||
612 | <source>getLineWidth(["name"]) -> integer |
||
613 | |||
614 | Returns the line width of the object "name". If "name" |
||
615 | is not given the currently selected Item is used. |
||
616 | </source> |
||
617 | <translation type="unfinished">getLineWidth(["emër"]) -> integer |
||
618 | |||
619 | Përgjigjet me gjerësinë e vijës për objektin "emër". |
||
620 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin.</translation> |
||
621 | </message> |
||
622 | <message> |
||
623 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="91"/> |
||
624 | <source>getLineShade(["name"]) -> integer |
||
625 | |||
626 | Returns the shading value of the line color of the object "name". |
||
627 | If "name" is not given the currently selected item is used. |
||
628 | </source> |
||
629 | <translation type="unfinished">getLineShade(["emër"]) -> integer |
||
630 | |||
631 | Përgjigjet me vlerën e hijes së ngjyrës për vijën e objektit "emër". |
||
632 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin.</translation> |
||
633 | </message> |
||
634 | <message> |
||
635 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="102"/> |
||
636 | <source>getLineJoin(["name"]) -> integer (see constants) |
||
637 | |||
638 | Returns the line join style of the object "name". If "name" is not given |
||
639 | the currently selected item is used. The join types are: |
||
640 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
641 | </source> |
||
642 | <translation type="unfinished"></translation> |
||
643 | </message> |
||
644 | <message> |
||
645 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="113"/> |
||
646 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
647 | |||
648 | Returns the line cap style of the object "name". If "name" is not given the |
||
649 | currently selected item is used. The cap types are: |
||
650 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
651 | </source> |
||
652 | <translation type="unfinished">getLineEnd(["emër"]) -> integer (shihni konstante) |
||
653 | |||
654 | Përgjigjet me stil kulmi për vijën e objektit "emër". Nëse nuk jepet "emër" |
||
655 | përdoret objekti i përzgjedhur për çastin. Tipet e kulmeve janë: |
||
656 | CAP_FLAT, CAP_ROUND, CAP_SQUARE</translation> |
||
657 | </message> |
||
658 | <message> |
||
659 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="124"/> |
||
660 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
661 | |||
662 | Returns the line style of the object "name". If "name" is not given the |
||
663 | currently selected item is used. Line style constants are: |
||
664 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
665 | </source> |
||
666 | <translation type="unfinished">getLineStyle(["emër"]) -> integer (shihni konstante) |
||
667 | |||
668 | Përgjigjet me stil vije për objektin "emër". Nëse nuk jepet "emër" përdoret |
||
669 | objekti i përzgjedhur për çastin. Konstante tipi vijash janë: |
||
670 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID</translation> |
||
671 | </message> |
||
672 | <message> |
||
673 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="134"/> |
||
674 | <source>getFillShade(["name"]) -> integer |
||
675 | |||
676 | Returns the shading value of the fill color of the object "name". |
||
677 | If "name" is not given the currently selected item is used. |
||
678 | </source> |
||
679 | <translation type="unfinished">getFillShade(["emër"]) -> integer |
||
680 | |||
681 | Përgjigjet me vlerën e hijes së ngjyrës së mbushjes për objektin "emër". |
||
682 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin.</translation> |
||
683 | </message> |
||
684 | <message> |
||
685 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="145"/> |
||
686 | <source>getCornerRadius(["name"]) -> integer |
||
687 | |||
688 | Returns the corner radius of the object "name". The radius is |
||
689 | expressed in points. If "name" is not given the currently |
||
690 | selected item is used. |
||
691 | </source> |
||
692 | <translation type="unfinished">getCornerRadius(["emër"]) -> integer |
||
693 | |||
694 | Përgjigjet me rrezen e kulmit për objektin "emër". Rrezja shprehet |
||
695 | në pikë. Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin.</translation> |
||
696 | </message> |
||
697 | <message> |
||
698 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="155"/> |
||
699 | <source>getImageScale(["name"]) -> (x,y) |
||
700 | |||
701 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
702 | "name". If "name" is not given the currently selected item is used. |
||
703 | </source> |
||
704 | <translation type="unfinished">getImageScale(["emër"]) -> (x,y) |
||
705 | |||
706 | Përgjigjet me një çift (x, y) që përmban vlera ripërmasimi për kornizën e pamjes |
||
707 | "emër". Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
708 | </translation> |
||
709 | </message> |
||
710 | <message> |
||
711 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="165"/> |
||
712 | <source>getImageName(["name"]) -> string |
||
713 | |||
714 | Returns the filename for the image in the image frame. If "name" is not |
||
715 | given the currently selected item is used. |
||
716 | </source> |
||
717 | <translation type="unfinished">getImageName(["emër"]) -> string |
||
718 | |||
719 | Përgjigjet me emrin e kartelës së pamjes në kornizën e pamjes. |
||
720 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin.</translation> |
||
721 | </message> |
||
722 | <message> |
||
723 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="177"/> |
||
724 | <source>getPosition(["name"]) -> (x,y) |
||
725 | |||
726 | Returns a (x, y) tuple with the position of the object "name". |
||
727 | If "name" is not given the currently selected item is used. |
||
728 | The position is expressed in the actual measurement unit of the document |
||
729 | - see UNIT_<type> for reference. |
||
730 | </source> |
||
731 | <translation type="unfinished">getPosition(["emër"]) -> (x,y) |
||
732 | |||
733 | Përgjigjet me një çift (x, y) për pozicionin e objektit "emër". |
||
734 | Nëse nuk tregohet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
735 | Pozicioni shprehet në njësinë matëse aktuale të dokumentit |
||
736 | - për sqarime shihni UNIT_<tip>. |
||
737 | </translation> |
||
738 | </message> |
||
739 | <message> |
||
740 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="189"/> |
||
741 | <source>getSize(["name"]) -> (width,height) |
||
742 | |||
743 | Returns a (width, height) tuple with the size of the object "name". |
||
744 | If "name" is not given the currently selected item is used. The size is |
||
745 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
746 | for reference. |
||
747 | </source> |
||
748 | <translation type="unfinished">getSize(["emër"]) -> (width,height) |
||
749 | |||
750 | Përgjigjet me një çift (gjerësi, lartësi) për madhësinë e objektit "emër". |
||
751 | Nëse nuk tregohet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
752 | Madhësia shprehet në njësinë matëse aktuale të dokumentit - për sqarime shihni UNIT_<tip>.</translation> |
||
753 | </message> |
||
754 | <message> |
||
755 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="200"/> |
||
756 | <source>getRotation(["name"]) -> integer |
||
757 | |||
758 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
759 | and clockwise is positive. If "name" is not given the currently selected item |
||
760 | is used. |
||
761 | </source> |
||
762 | <translation type="unfinished">getRotation(["emër"]) -> integer |
||
763 | |||
764 | Përgjigjet me rrotullimin e objektit "emër". Vlera shprehet në gradë, |
||
765 | dhe kahu orar merr vlera pozitive. Nëse nuk jepet "emër" përdoret |
||
766 | objekti i përzgjedhur për çastin. |
||
767 | </translation> |
||
768 | </message> |
||
769 | <message> |
||
770 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="209"/> |
||
771 | <source>getAllObjects() -> list |
||
772 | |||
773 | Returns a list containing the names of all objects on the current page. |
||
774 | </source> |
||
775 | <translation type="unfinished">getAllObjects() -> list |
||
776 | |||
777 | Përgjigjet me një listë që përmban emrat e tërë objekteve në faqen e çastit. |
||
778 | </translation> |
||
779 | </message> |
||
780 | <message> |
||
781 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="83"/> |
||
782 | <source>getPropertyCType(object, property, includesuper=True) |
||
783 | |||
784 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
785 | for details of arguments. |
||
786 | |||
787 | If `includesuper' is true, search inherited properties too. |
||
788 | </source> |
||
789 | <translation type="unfinished"></translation> |
||
790 | </message> |
||
791 | <message> |
||
792 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="101"/> |
||
793 | <source>getPropertyNames(object, includesuper=True) |
||
794 | |||
795 | Return a list of property names supported by `object'. |
||
796 | If `includesuper' is true, return properties supported |
||
797 | by parent classes as well. |
||
798 | </source> |
||
799 | <translation type="unfinished"></translation> |
||
800 | </message> |
||
801 | <message> |
||
802 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="135"/> |
||
803 | <source>getProperty(object, property) |
||
804 | |||
805 | Return the value of the property `property' of the passed `object'. |
||
806 | |||
807 | The `object' argument may be a string, in which case the named PageItem |
||
808 | is searched for. It may also be a PyCObject, which may point to any |
||
809 | C++ QObject instance. |
||
810 | |||
811 | The `property' argument must be a string, and is the name of the property |
||
812 | to look up on `object'. |
||
813 | |||
814 | The return value varies depending on the type of the property. |
||
815 | </source> |
||
816 | <translation type="unfinished"></translation> |
||
817 | </message> |
||
818 | <message> |
||
819 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="165"/> |
||
820 | <source>setProperty(object, property, value) |
||
821 | |||
822 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
823 | compatible with the type of `property', an exception is raised. An exception may |
||
824 | also be raised if the underlying setter fails. |
||
825 | |||
826 | See getProperty() for more information. |
||
827 | </source> |
||
828 | <translation type="unfinished"></translation> |
||
829 | </message> |
||
830 | <message> |
||
831 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="23"/> |
||
832 | <source>moveObject(dx, dy [, "name"]) |
||
833 | |||
834 | Moves the object "name" by dx and dy relative to its current position. The |
||
835 | distances are expressed in the current measurement unit of the document (see |
||
836 | UNIT constants). If "name" is not given the currently selected item is used. |
||
837 | If the object "name" belongs to a group, the whole group is moved. |
||
838 | </source> |
||
839 | <translation type="unfinished">moveObject(dx, dy [, "name"]) |
||
840 | |||
841 | Zhvendos objektin "emër" me dx dhe dy në lidhje me pozicionin e vet të çastit. |
||
842 | Hapësirat shprehen në njësinë matëse të çastit të dokumentit (shihni |
||
843 | konstantet UNIT). Nëse nuk është dhënë "emër" përdoret objekti i përzgjedhur për çastin. |
||
844 | Nëse objekti "emër" i përket një grupi, zhvendoset tërë grupi. |
||
845 | </translation> |
||
846 | </message> |
||
847 | <message> |
||
848 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="35"/> |
||
849 | <source>moveObjectAbs(x, y [, "name"]) |
||
850 | |||
851 | Moves the object "name" to a new location. The coordinates are expressed in |
||
852 | the current measurement unit of the document (see UNIT constants). If "name" |
||
853 | is not given the currently selected item is used. If the object "name" |
||
854 | belongs to a group, the whole group is moved. |
||
855 | </source> |
||
856 | <translation type="unfinished">moveObjectAbs(x, y [, "emër"]) |
||
857 | |||
858 | Zhvendos objektin "emër" te një vendndodhje e re. Koordinatat shprehen në |
||
859 | njësinë matëse të çastit për dokumentin (shihni konstante UNIT). Nëse nuk |
||
860 | është dhënë "emër" përdoret objekti i përzgjedhur për çastin. Nëse objekti |
||
861 | "emër" i përket një grupi, zhvendoset tërë grupi. |
||
862 | </translation> |
||
863 | </message> |
||
864 | <message> |
||
865 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="48"/> |
||
866 | <source>rotateObject(rot [, "name"]) |
||
867 | |||
868 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
869 | rotated by the vertex that is currently selected as the rotation point - by |
||
870 | default, the top left vertex at zero rotation. Positive values mean counter |
||
871 | clockwise rotation when the default rotation point is used. If "name" is not |
||
872 | given the currently selected item is used. |
||
873 | </source> |
||
874 | <translation type="unfinished"></translation> |
||
875 | </message> |
||
876 | <message> |
||
877 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="59"/> |
||
878 | <source>rotateObjectAbs(rot [, "name"]) |
||
879 | |||
880 | Sets the rotation of the object "name" to "rot". Positive values |
||
881 | mean counter clockwise rotation. If "name" is not given the currently |
||
882 | selected item is used. |
||
883 | </source> |
||
884 | <translation type="unfinished">rotateObjectAbs(rot [, "emër"]) |
||
885 | |||
886 | Cakton rrotullimin e objektit "emër" sa "rot". Vlerat pozitive |
||
887 | nënkuptojnë rrotullim në kah antiorar. Nëse nuk jepet "emër" përdoret |
||
888 | objekti i përzgjedhur për çastin. |
||
889 | </translation> |
||
890 | </message> |
||
891 | <message> |
||
892 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="69"/> |
||
893 | <source>sizeObject(width, height [, "name"]) |
||
894 | |||
895 | Resizes the object "name" to the given width and height. If "name" |
||
896 | is not given the currently selected item is used. |
||
897 | </source> |
||
898 | <translation type="unfinished">sizeObject(width, height [, "name"]) |
||
899 | |||
900 | Ripërmason objektin "emër" në gjerësinë dhe lartësinë e dhënë. Nëse nuk |
||
901 | jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
902 | </translation> |
||
903 | </message> |
||
904 | <message> |
||
905 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="80"/> |
||
906 | <source>getSelectedObject([nr]) -> string |
||
907 | |||
908 | Returns the name of the selected object. "nr" if given indicates the number |
||
909 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
910 | second selected Object and so on. |
||
911 | </source> |
||
912 | <translation type="unfinished">getSelectedObject([nr]) -> string |
||
913 | |||
914 | Përgjigjet me emrin e objektit të përzgjedhur. "nr", nëse jepet, tregon numrin |
||
915 | e objektit të përzgjedhur, p.sh. 0 do të thotë objekti i parë, 1 do të thotë |
||
916 | i dyti i përzgjedhur e me radhë. |
||
917 | </translation> |
||
918 | </message> |
||
919 | <message> |
||
920 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="89"/> |
||
921 | <source>selectionCount() -> integer |
||
922 | |||
923 | Returns the number of selected objects. |
||
924 | </source> |
||
925 | <translation type="unfinished">selectionCount() -> integer |
||
926 | |||
927 | Përgjigjet me numrin e objekteve të përzgjedhur. |
||
928 | </translation> |
||
929 | </message> |
||
930 | <message> |
||
931 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="98"/> |
||
932 | <source>selectObject("name") |
||
933 | |||
934 | Selects the object with the given "name". |
||
935 | </source> |
||
936 | <translation type="unfinished">selectObject("emër") |
||
937 | |||
938 | Përzgjedh objektin me "emrin" e dhënë. |
||
939 | </translation> |
||
940 | </message> |
||
941 | <message> |
||
942 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="107"/> |
||
943 | <source>deselectAll() |
||
944 | |||
945 | Deselects all objects in the whole document. |
||
946 | </source> |
||
947 | <translation type="unfinished">deselectAll() |
||
948 | |||
949 | Çpërzgjedh tërë objektet në tërë dokumentin. |
||
950 | </translation> |
||
951 | </message> |
||
952 | <message> |
||
953 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="118"/> |
||
954 | <source>groupObjects(list) |
||
955 | |||
956 | Groups the objects named in "list" together. "list" must contain the names |
||
957 | of the objects to be grouped. If "list" is not given the currently selected |
||
958 | items are used. |
||
959 | </source> |
||
960 | <translation type="unfinished">groupObjects(list) |
||
961 | |||
962 | Grupon bashkë objektet e përmendur në "listë". "Lista" duhet të përmbajë |
||
963 | emrat e objekteve që do të grupohen. Nëse nuk jepet "emër" përdoret objektet e |
||
964 | përzgjedhur për çastin. |
||
965 | </translation> |
||
966 | </message> |
||
967 | <message> |
||
968 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="126"/> |
||
969 | <source>unGroupObjects("name") |
||
970 | |||
971 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
972 | <translation type="unfinished">unGroupObjects("emër") |
||
973 | |||
974 | Shpërbën grupin te i cili bën pjesë objekti "emër". Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
975 | </translation> |
||
976 | </message> |
||
977 | <message> |
||
978 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="141"/> |
||
979 | <source>scaleGroup(factor [,"name"]) |
||
980 | |||
981 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
982 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
983 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
984 | to 150 % of its original size. The value for "factor" must be greater than |
||
985 | 0. If "name" is not given the currently selected item is used. |
||
986 | |||
987 | May raise ValueError if an invalid scale factor is passed. |
||
988 | </source> |
||
989 | <translation type="unfinished">scaleGroup(factor [,"emër"]) |
||
990 | |||
991 | Ripërmason grupin të cilit i përket objekti me "emër". Vlera më të mëdha se 1 e zgjerojnë |
||
992 | grupin, vlera më të vogla se 1 e bëjnë grupin më të vogël p.sh. një vlerë 0.5 |
||
993 | e ripërmason grupin në 50 % të madhësisë fillestare, një vlerë 1.5 e ripërmason grupin |
||
994 | sa 150 % e vlerës së tij fillestare. Vlera për "faktorin" duhet të jetë më e madhe se |
||
995 | 0. Nëse jepet "emër" do të përdoret ai i objektit të përzgjedhur për çastin. |
||
996 | |||
997 | Mund të sjellë ValueError nëse jepet një koeficient i pavlefshëm ripërmasimi. |
||
998 | </translation> |
||
999 | </message> |
||
1000 | <message> |
||
1001 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="153"/> |
||
1002 | <source>loadImage("filename" [, "name"]) |
||
1003 | |||
1004 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1005 | not given the currently selected item is used. |
||
1006 | |||
1007 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1008 | </source> |
||
1009 | <translation type="unfinished">loadImage("emër kartele" [, "emër"]) |
||
1010 | |||
1011 | Ngarkon pamjen "pamje" te korniza e pamjes "emër". Nëse nuk jepet |
||
1012 | "emër" përdoret objekti i përzgjedhur për çastin. |
||
1013 | |||
1014 | Mund të sjellë WrongFrameTypeError nëse korniza objektiv nuk është një kornizë pamjeje |
||
1015 | </translation> |
||
1016 | </message> |
||
1017 | <message> |
||
1018 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="166"/> |
||
1019 | <source>scaleImage(x, y [, "name"]) |
||
1020 | |||
1021 | Sets the scaling factors of the picture in the image frame "name". |
||
1022 | If "name" is not given the currently selected item is used. A number of 1 |
||
1023 | means 100 %. |
||
1024 | |||
1025 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1026 | </source> |
||
13279 | cbradney | 1027 | <translation type="obsolete">scaleImage(x, y [, "emër"]) |
12918 | cbradney | 1028 | |
1029 | Cakton koeficientët për ripërmasim pamjesh në kornizën e pamjeve "emër". |
||
1030 | Nëse nuk jepet emër "emër" përdoret objekti i përzgjedhur për çastin. Vlera 1 |
||
1031 | nënkupton 100 %. |
||
1032 | |||
1033 | Mund të sjellë WrongFrameTypeError nëse korniza objektiv nuk është kornizë pamjesh |
||
1034 | </translation> |
||
1035 | </message> |
||
1036 | <message> |
||
13279 | cbradney | 1037 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="191"/> |
12918 | cbradney | 1038 | <source>lockObject(["name"]) -> bool |
1039 | |||
1040 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
1041 | If "name" is not given the currently selected item is used. Returns true |
||
1042 | if locked. |
||
1043 | </source> |
||
1044 | <translation type="unfinished">lockObject(["emër"]) -> bool |
||
1045 | |||
1046 | Kyç objektin "emër" nëse është i çkyçur ose e çkyç në qoftë i kyçur. |
||
1047 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. Përgjigjet me "true" |
||
1048 | nëse gjen kyçje. |
||
1049 | </translation> |
||
1050 | </message> |
||
1051 | <message> |
||
13279 | cbradney | 1052 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="201"/> |
12918 | cbradney | 1053 | <source>isLocked(["name"]) -> bool |
1054 | |||
1055 | Returns true if is the object "name" locked. If "name" is not given the |
||
1056 | currently selected item is used. |
||
1057 | </source> |
||
1058 | <translation type="unfinished">isLocked(["emër"]) -> bool |
||
1059 | |||
1060 | Përgjigjet me "true" nëse objekti "emër" është i kyçur. Nëse nuk jepet "emër" |
||
1061 | përdoret objekti i përzgjedhur për çastin. |
||
1062 | </translation> |
||
1063 | </message> |
||
1064 | <message> |
||
13279 | cbradney | 1065 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="213"/> |
12918 | cbradney | 1066 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
1067 | |||
1068 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1069 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1070 | Both `scaletoframe' and `proportional' are boolean. |
||
1071 | |||
1072 | May raise WrongFrameTypeError. |
||
1073 | </source> |
||
1074 | <translation type="unfinished">setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
||
1075 | |||
1076 | Cakton ripërmasimin për kornizë në kornizën e përzgjedhur ose të treguar të |
||
1077 | pamjeve sa `scaletoframe'. Nëse tregohet `proportional', caktoni ripërmasim me koeficient të fiksuar si `proportional'. |
||
1078 | Si `scaletoframe' ashtu edhe `proportional' janë vlera buleane. |
||
1079 | |||
1080 | Mund të sjellë WrongFrameTypeError. |
||
1081 | </translation> |
||
1082 | </message> |
||
1083 | <message> |
||
1084 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="24"/> |
||
1085 | <source>setRedraw(bool) |
||
1086 | |||
1087 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
1088 | This change will persist even after the script exits, so make sure to call |
||
1089 | setRedraw(True) in a finally: clause at the top level of your script. |
||
1090 | </source> |
||
1091 | <translation type="unfinished">setRedraw(bool) |
||
1092 | |||
1093 | Çaktivizon rivizatimin e faqes kur bool = False, përndryshe rivizatimi është |
||
1094 | veprues. Ky ndryshim do të mbesë edhe pasi programthi të përfundojë, ndaj |
||
1095 | sigurohuni të thirret setRedraw(True) në një "finally: clause" te niveli sipëror |
||
1096 | i programthit tuaj. |
||
1097 | </translation> |
||
1098 | </message> |
||
1099 | <message> |
||
1100 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="33"/> |
||
1101 | <source>getFontNames() -> list |
||
1102 | |||
1103 | Returns a list with the names of all available fonts. |
||
1104 | </source> |
||
1105 | <translation type="unfinished">getFontNames() -> list |
||
1106 | |||
1107 | Përgjigjet me një listë me emrat e tërë gërmave të mundshme. |
||
1108 | </translation> |
||
1109 | </message> |
||
1110 | <message> |
||
1111 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="43"/> |
||
1112 | <source>getXFontNames() -> list of tuples |
||
1113 | |||
1114 | Returns a larger font info. It's a list of the tuples with: |
||
1115 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
1116 | </source> |
||
1117 | <translation type="unfinished">getXFontNames() -> listë vlerash |
||
1118 | |||
1119 | Përgjigjet me më tepër të dhëna gërmash. Është një listë vlerash me: |
||
1120 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
1121 | </translation> |
||
1122 | </message> |
||
1123 | <message> |
||
1124 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="62"/> |
||
1125 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1126 | |||
1127 | Creates an image preview of font "name" with given text "sample" and size. |
||
1128 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1129 | image data is returned as a string. The optional "format" argument |
||
1130 | specifies the image format to generate, and supports any format allowed |
||
1131 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1132 | |||
1133 | May raise NotFoundError if the specified font can't be found. |
||
1134 | May raise ValueError if an empty sample or filename is passed. |
||
1135 | </source> |
||
1136 | <translation type="unfinished"></translation> |
||
1137 | </message> |
||
1138 | <message> |
||
1139 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="71"/> |
||
1140 | <source>getLayers() -> list |
||
1141 | |||
1142 | Returns a list with the names of all defined layers. |
||
1143 | </source> |
||
1144 | <translation type="unfinished">getLayers() -> list |
||
1145 | |||
1146 | Përgjigjet me një listë me emrat e tërë shtresave të përcaktuara. |
||
1147 | </translation> |
||
1148 | </message> |
||
1149 | <message> |
||
1150 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="83"/> |
||
1151 | <source>setActiveLayer("name") |
||
1152 | |||
1153 | Sets the active layer to the layer named "name". |
||
1154 | |||
1155 | May raise NotFoundError if the layer can't be found. |
||
1156 | May raise ValueError if the layer name isn't acceptable. |
||
1157 | </source> |
||
1158 | <translation type="unfinished">setActiveLayer("emër") |
||
1159 | |||
1160 | Vë si shtresë vepruese shtresën e emërtuar "emër". |
||
1161 | |||
1162 | Mund të sjellë NotFoundError nëse nuk gjendet shtresa. |
||
1163 | Mund të sjellë ValueError nëse emri i shtresës është i papranueshëm. |
||
1164 | </translation> |
||
1165 | </message> |
||
1166 | <message> |
||
1167 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="92"/> |
||
1168 | <source>getActiveLayer() -> string |
||
1169 | |||
1170 | Returns the name of the current active layer. |
||
1171 | </source> |
||
1172 | <translation type="unfinished">getActiveLayer() -> string |
||
1173 | |||
1174 | Përgjigjet me emrin e shtresë vepruese për çastin. |
||
1175 | </translation> |
||
1176 | </message> |
||
1177 | <message> |
||
1178 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="105"/> |
||
1179 | <source>sentToLayer("layer" [, "name"]) |
||
1180 | |||
1181 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1182 | If "name" is not given the currently selected item is used. |
||
1183 | |||
1184 | May raise NotFoundError if the layer can't be found. |
||
1185 | May raise ValueError if the layer name isn't acceptable. |
||
1186 | </source> |
||
1187 | <translation type="unfinished">sentToLayer("shtresë" [, "emër"]) |
||
1188 | |||
1189 | Dërgon objektin "emër" te shtresa "shtresë". Shtresa duhet të ekzistojë. |
||
1190 | Nëse nuk gjendet "emër" përdoret objekti i përzgjedhur për çastin. |
||
1191 | |||
1192 | Mundet të sjellë NotFoundError nëse nuk gjendet shtresa. |
||
1193 | Mundet të sjellë ValueError nëse emri i shtresës është i papranueshëm. |
||
1194 | </translation> |
||
1195 | </message> |
||
1196 | <message> |
||
1197 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="118"/> |
||
1198 | <source>setLayerVisible("layer", visible) |
||
1199 | |||
1200 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1201 | the layer is invisible. |
||
1202 | |||
1203 | May raise NotFoundError if the layer can't be found. |
||
1204 | May raise ValueError if the layer name isn't acceptable. |
||
1205 | </source> |
||
1206 | <translation type="unfinished">setLayerVisible("shtresë", e dukshme) |
||
1207 | |||
1208 | Cakton nëse shtresa "shtresë" të jetë apo jo e dukshme. Në qoftë e dukshmja "false" |
||
1209 | shtresa është e padukshme. |
||
1210 | |||
1211 | Mund të sjellë NotFoundError nëse shtresa nuk gjendet. |
||
1212 | Mund të sjellë ValueError nëse emri i shtresës është i papranueshëm. |
||
1213 | </translation> |
||
1214 | </message> |
||
1215 | <message> |
||
1216 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="131"/> |
||
1217 | <source>setLayerPrintable("layer", printable) |
||
1218 | |||
1219 | Sets the layer "layer" to be printable or not. If is the |
||
1220 | printable set to false the layer won't be printed. |
||
1221 | |||
1222 | May raise NotFoundError if the layer can't be found. |
||
1223 | May raise ValueError if the layer name isn't acceptable. |
||
1224 | </source> |
||
1225 | <translation type="unfinished"></translation> |
||
1226 | </message> |
||
1227 | <message> |
||
1228 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="144"/> |
||
1229 | <source>setLayerLocked("layer", locked) |
||
1230 | |||
1231 | Sets the layer "layer" to be locked or not. If locked is set to |
||
1232 | true the layer will be locked. |
||
1233 | |||
1234 | May raise NotFoundError if the layer can't be found. |
||
1235 | May raise ValueError if the layer name isn't acceptable. |
||
1236 | </source> |
||
1237 | <translation type="unfinished"></translation> |
||
1238 | </message> |
||
1239 | <message> |
||
1240 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="157"/> |
||
1241 | <source>setLayerOutlined("layer", outline) |
||
1242 | |||
1243 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1244 | true the layer will be displayed outlined. |
||
1245 | |||
1246 | May raise NotFoundError if the layer can't be found. |
||
1247 | May raise ValueError if the layer name isn't acceptable. |
||
1248 | </source> |
||
1249 | <translation type="unfinished"></translation> |
||
1250 | </message> |
||
1251 | <message> |
||
1252 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="170"/> |
||
1253 | <source>setLayerFlow("layer", flow) |
||
1254 | |||
1255 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1256 | true text in layers above this one will flow around objects on this layer. |
||
1257 | |||
1258 | May raise NotFoundError if the layer can't be found. |
||
1259 | May raise ValueError if the layer name isn't acceptable. |
||
1260 | </source> |
||
1261 | <translation type="unfinished"></translation> |
||
1262 | </message> |
||
1263 | <message> |
||
1264 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="182"/> |
||
1265 | <source>setLayerBlendmode("layer", blend) |
||
1266 | |||
1267 | Sets the layers "layer" blendmode to blend. |
||
1268 | |||
1269 | May raise NotFoundError if the layer can't be found. |
||
1270 | May raise ValueError if the layer name isn't acceptable. |
||
1271 | </source> |
||
1272 | <translation type="unfinished"></translation> |
||
1273 | </message> |
||
1274 | <message> |
||
1275 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="194"/> |
||
1276 | <source>setLayerTransparency("layer", trans) |
||
1277 | |||
1278 | Sets the layers "layer" transparency to trans. |
||
1279 | |||
1280 | May raise NotFoundError if the layer can't be found. |
||
1281 | May raise ValueError if the layer name isn't acceptable. |
||
1282 | </source> |
||
1283 | <translation type="unfinished"></translation> |
||
1284 | </message> |
||
1285 | <message> |
||
1286 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="208"/> |
||
1287 | <source>isLayerVisible("layer") -> bool |
||
1288 | |||
1289 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1290 | that the layer "layer" is visible, a value of False means that the layer |
||
1291 | "layer" is invisible. |
||
1292 | |||
1293 | May raise NotFoundError if the layer can't be found. |
||
1294 | May raise ValueError if the layer name isn't acceptable. |
||
1295 | </source> |
||
1296 | <translation type="unfinished"></translation> |
||
1297 | </message> |
||
1298 | <message> |
||
1299 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="222"/> |
||
1300 | <source>isLayerPrintable("layer") -> bool |
||
1301 | |||
1302 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1303 | that the layer "layer" can be printed, a value of False means that printing |
||
1304 | the layer "layer" is disabled. |
||
1305 | |||
1306 | May raise NotFoundError if the layer can't be found. |
||
1307 | May raise ValueError if the layer name isn't acceptable. |
||
1308 | </source> |
||
1309 | <translation type="unfinished"></translation> |
||
1310 | </message> |
||
1311 | <message> |
||
1312 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="236"/> |
||
1313 | <source>isLayerLocked("layer") -> bool |
||
1314 | |||
1315 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1316 | that the layer "layer" is editable, a value of False means that the layer |
||
1317 | "layer" is locked. |
||
1318 | |||
1319 | May raise NotFoundError if the layer can't be found. |
||
1320 | May raise ValueError if the layer name isn't acceptable. |
||
1321 | </source> |
||
1322 | <translation type="unfinished"></translation> |
||
1323 | </message> |
||
1324 | <message> |
||
1325 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="250"/> |
||
1326 | <source>isLayerOutlined("layer") -> bool |
||
1327 | |||
1328 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1329 | that the layer "layer" is outlined, a value of False means that the layer |
||
1330 | "layer" is normal. |
||
1331 | |||
1332 | May raise NotFoundError if the layer can't be found. |
||
1333 | May raise ValueError if the layer name isn't acceptable. |
||
1334 | </source> |
||
1335 | <translation type="unfinished"></translation> |
||
1336 | </message> |
||
1337 | <message> |
||
1338 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="263"/> |
||
1339 | <source>isLayerFlow("layer") -> bool |
||
1340 | |||
1341 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1342 | that text flows around, a value of False means that the text does not flow around. |
||
1343 | |||
1344 | May raise NotFoundError if the layer can't be found. |
||
1345 | May raise ValueError if the layer name isn't acceptable. |
||
1346 | </source> |
||
1347 | <translation type="unfinished"></translation> |
||
1348 | </message> |
||
1349 | <message> |
||
1350 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="275"/> |
||
1351 | <source>getLayerBlendmode("layer") -> int |
||
1352 | |||
1353 | Returns the "layer" layer blendmode, |
||
1354 | |||
1355 | May raise NotFoundError if the layer can't be found. |
||
1356 | May raise ValueError if the layer name isn't acceptable. |
||
1357 | </source> |
||
1358 | <translation type="unfinished"></translation> |
||
1359 | </message> |
||
1360 | <message> |
||
1361 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="287"/> |
||
1362 | <source>getLayerTransparency("layer") -> float |
||
1363 | |||
1364 | Returns the "layer" layer transparency, |
||
1365 | |||
1366 | May raise NotFoundError if the layer can't be found. |
||
1367 | May raise ValueError if the layer name isn't acceptable. |
||
1368 | </source> |
||
1369 | <translation type="unfinished"></translation> |
||
1370 | </message> |
||
1371 | <message> |
||
1372 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="300"/> |
||
1373 | <source>deleteLayer("layer") |
||
1374 | |||
1375 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
1376 | exists or if it's the only layer in the document. |
||
1377 | |||
1378 | May raise NotFoundError if the layer can't be found. |
||
1379 | May raise ValueError if the layer name isn't acceptable. |
||
1380 | </source> |
||
1381 | <translation type="unfinished">deleteLayer("shtresë") |
||
1382 | |||
1383 | Fshin shtresën me emrin "shtresë". Nuk bën gjë nëse shtresa nuk |
||
1384 | ekziston ose nëse është shtresa e vetme në dokument. |
||
1385 | |||
1386 | Mund të sjellë NotFoundError nëse shtresa nuk gjendet. |
||
1387 | Mund të sjellë ValueError nëse emri i shtresës është i papranueshëm. |
||
1388 | </translation> |
||
1389 | </message> |
||
1390 | <message> |
||
1391 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="311"/> |
||
1392 | <source>createLayer(layer) |
||
1393 | |||
1394 | Creates a new layer with the name "name". |
||
1395 | |||
1396 | May raise ValueError if the layer name isn't acceptable. |
||
1397 | </source> |
||
1398 | <translation type="unfinished">createLayer(shtresë) |
||
1399 | |||
1400 | Krijon shtresë të re me emrin "shtresë". |
||
1401 | |||
1402 | Mund të sjellë ValueError nëse emri i shtresës është i papranueshëm. |
||
1403 | </translation> |
||
1404 | </message> |
||
1405 | <message> |
||
1406 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="320"/> |
||
1407 | <source>getGuiLanguage() -> string |
||
1408 | |||
1409 | Returns a string with the -lang value. |
||
1410 | </source> |
||
1411 | <translation type="unfinished">getGuiLanguage() -> string |
||
1412 | |||
1413 | Përgjigjet me një varg me vlerën -lang. |
||
1414 | </translation> |
||
1415 | </message> |
||
1416 | <message> |
||
1417 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="329"/> |
||
1418 | <source>moveSelectionToFront() |
||
1419 | |||
1420 | Moves current selection to front. |
||
1421 | </source> |
||
1422 | <translation type="unfinished"></translation> |
||
1423 | </message> |
||
1424 | <message> |
||
1425 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="338"/> |
||
1426 | <source>moveSelectionToFront() |
||
1427 | |||
1428 | Moves current selection to back. |
||
1429 | </source> |
||
1430 | <translation type="unfinished"></translation> |
||
1431 | </message> |
||
1432 | <message> |
||
1433 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="26"/> |
||
1434 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
1435 | |||
1436 | Creates a new rectangle on the current page and returns its name. The |
||
1437 | coordinates are given in the current measurement units of the document |
||
1438 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1439 | because you need this name to reference that object in future. If "name" |
||
1440 | is not given Scribus will create one for you. |
||
1441 | |||
1442 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1443 | </source> |
||
1444 | <translation type="unfinished">createRect(x, y, gjerësi, lartësi, ["emër"]) -> string |
||
1445 | |||
1446 | Krijon një drejtkëndësh të ri në faqen e çastit dhe jep emrin e tij. Koordinatat |
||
1447 | jepen në njësinë matëse të çastit për dokumentin (shihni konstantet UNIT). |
||
1448 | "emër" do të duhej të ishte një identifikues unik për objektin sepse |
||
1449 | keni nevojë që ky emër të lidhet në të ardhmen me këtë objekt. Nëse nuk |
||
1450 | jepet "emër" Scribus-i do të krijojë një për ju. |
||
1451 | |||
1452 | Mund të shfaqet NameExistsError nëse jepni shprehimisht një emër tashmë në përdorim. |
||
1453 | </translation> |
||
1454 | </message> |
||
1455 | <message> |
||
1456 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="43"/> |
||
1457 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
1458 | |||
1459 | Creates a new ellipse on the current page and returns its name. |
||
1460 | The coordinates are given in the current measurement units of the document |
||
1461 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1462 | because you need this name for further referencing of that object. If "name" |
||
1463 | is not given Scribus will create one for you. |
||
1464 | |||
1465 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1466 | </source> |
||
1467 | <translation type="unfinished">createEllipse(x, y, gjerësi, lartësi, ["emër"]) -> string |
||
1468 | |||
1469 | Krijon një elips të ri në faqen e çastit dhe jep edhe emrin e tij. |
||
1470 | Koordinatat jepen në njësinë matëse të çastit për dokumentin |
||
1471 | (shihni konstantet UNIT). "emri" duhet të jetë një identifikues i vetëm |
||
1472 | për objektin sepse ju duhet ky emër për përdorim të mëvonshëm të |
||
1473 | këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1474 | |||
1475 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1476 | është tashmë i përdorur. |
||
1477 | </translation> |
||
1478 | </message> |
||
1479 | <message> |
||
1480 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="60"/> |
||
1481 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
1482 | |||
1483 | Creates a new picture frame on the current page and returns its name. The |
||
1484 | coordinates are given in the current measurement units of the document. |
||
1485 | "name" should be a unique identifier for the object because you need this |
||
1486 | name for further access to that object. If "name" is not given Scribus will |
||
1487 | create one for you. |
||
1488 | |||
1489 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1490 | </source> |
||
1491 | <translation type="unfinished">createImage(x, y, gjerësi, lartësi, ["emër"]) -> string |
||
1492 | |||
1493 | Krijon një pamje të re në faqen e çastit dhe jep edhe emrin e saj. Koordinatat |
||
1494 | jepen në njësinë matëse të çastit për dokumentin. "emri" duhet të jetë |
||
1495 | një identifikues i vetëm për objektin sepse ju duhet ky emër për përdorim |
||
1496 | të mëvonshëm të këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1497 | |||
1498 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që është |
||
1499 | tashmë i përdorur. |
||
1500 | </translation> |
||
1501 | </message> |
||
1502 | <message> |
||
1503 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="75"/> |
||
1504 | <source>createText(x, y, width, height, ["name"]) -> string |
||
1505 | |||
1506 | Creates a new text frame on the actual page and returns its name. |
||
1507 | The coordinates are given in the actual measurement unit of the document (see |
||
1508 | UNIT constants). "name" should be a unique identifier for the object because |
||
1509 | you need this name for further referencing of that object. If "name" is not |
||
1510 | given Scribus will create one for you. |
||
1511 | |||
1512 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1513 | </source> |
||
1514 | <translation type="unfinished">createText(x, y, gjerësi, lartësi, ["emër"]) -> string |
||
1515 | |||
1516 | Krijon një kornizë të re teskti në faqen e çastit dhe jep edhe emrin e tij. |
||
1517 | Koordinatat jepen në njësinë matëse të çastit për dokumentin |
||
1518 | (shihni konstantet UNIT). "emri" duhet të jetë një identifikues i vetëm |
||
1519 | për objektin sepse ju duhet ky emër për përdorim të mëvonshëm të |
||
1520 | këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1521 | |||
1522 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1523 | është tashmë i përdorur. |
||
1524 | </translation> |
||
1525 | </message> |
||
1526 | <message> |
||
1527 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="90"/> |
||
1528 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
1529 | |||
1530 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1531 | its name. The coordinates are given in the current measurement unit of the |
||
1532 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1533 | object because you need this name for further access to that object. If |
||
1534 | "name" is not given Scribus will create one for you. |
||
1535 | |||
1536 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1537 | </source> |
||
1538 | <translation type="unfinished">createLine(x1, y1, x2, y2, ["emër"]) -> string |
||
1539 | |||
1540 | Krijon një vijë të re prej pikës(x1, y1) te pika(x2, y2) dhe jep edhe emrin e saj. |
||
1541 | Koordinatat jepen në njësinë matëse të çastit për dokumentin |
||
1542 | (shihni konstantet UNIT). "emri" duhet të jetë një identifikues i vetëm |
||
1543 | për objektin sepse ju duhet ky emër për përdorim të mëvonshëm të |
||
1544 | këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1545 | |||
1546 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1547 | është tashmë i përdorur. |
||
1548 | </translation> |
||
1549 | </message> |
||
1550 | <message> |
||
1551 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="108"/> |
||
1552 | <source>createPolyLine(list, ["name"]) -> string |
||
1553 | |||
1554 | Creates a new polyline and returns its name. The points for the polyline are |
||
1555 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1556 | The coordinates are given in the current measurement units of the document (see |
||
1557 | UNIT constants). "name" should be a unique identifier for the object because |
||
1558 | you need this name for further access to that object. If "name" is not given |
||
1559 | Scribus will create one for you. |
||
1560 | |||
1561 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1562 | May raise ValueError if an insufficient number of points is passed or if |
||
1563 | the number of values passed don't group into points without leftovers. |
||
1564 | </source> |
||
1565 | <translation type="unfinished">createPolyLine(listë, ["emër"]) -> string |
||
1566 | |||
1567 | Krijon një vijë të re të thyer dhe jep edhe emrin e saj. . Pikat për vijën e thyer |
||
1568 | paraqiten në listën "listë" në rendin vijues: [x1, y1, x2, y2...xn. yn]. |
||
1569 | Koordinatat jepen në njësinë matëse të çastit për dokumentin |
||
1570 | (shihni konstantet UNIT). "emri" duhet të jetë një identifikues i vetëm |
||
1571 | për objektin sepse ju duhet ky emër për përdorim të mëvonshëm të |
||
1572 | këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1573 | |||
1574 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1575 | është tashmë i përdorur. |
||
1576 | Mund të sjellë ValueError nëse jepet një numër i pamjaftueshëm pikash ose |
||
1577 | nëse numri i vlerave nuk përkon pa mbetje me pikat. |
||
1578 | |||
1579 | |||
1580 | |||
1581 | </translation> |
||
1582 | </message> |
||
1583 | <message> |
||
1584 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="128"/> |
||
1585 | <source>createPolygon(list, ["name"]) -> string |
||
1586 | |||
1587 | Creates a new polygon and returns its name. The points for the polygon are |
||
1588 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1589 | At least three points are required. There is no need to repeat the first point |
||
1590 | to close the polygon. The polygon is automatically closed by connecting the |
||
1591 | first and the last point. The coordinates are given in the current measurement |
||
1592 | units of the document (see UNIT constants). "name" should be a unique |
||
1593 | identifier for the object because you need this name for further access to that |
||
1594 | object. If "name" is not given Scribus will create one for you. |
||
1595 | |||
1596 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1597 | May raise ValueError if an insufficient number of points is passed or if |
||
1598 | the number of values passed don't group into points without leftovers. |
||
1599 | </source> |
||
1600 | <translation type="unfinished">createPolygon(listë, ["emër"]) -> string |
||
1601 | |||
1602 | Krijon një shumëkëndësh të ri dhe jep edhe emrin e tij. Pikat për shumëkëndëshin |
||
1603 | paraqiten në listën "listë" në rendin vijues: [x1, y1, x2, y2...xn. yn]. Lipsen të paktën |
||
1604 | tre pika. Nuk ka nevojë të rijepet pika e parë për të mbyllur shumëkëndëshin. |
||
1605 | Shumëkëndëshi mbyllet automatikisht duke lidhur pikën e parë me të fundit. |
||
1606 | Koordinatat jepen në njësinë matëse të çastit për dokumentin |
||
1607 | (shihni konstantet UNIT). "emri" duhet të jetë një identifikues i vetëm |
||
1608 | për objektin sepse ju duhet ky emër për përdorim të mëvonshëm të |
||
1609 | këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1610 | |||
1611 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1612 | është tashmë i përdorur. |
||
1613 | Mund të sjellë ValueError nëse jepet një numër i pamjaftueshëm pikash ose |
||
1614 | nëse numri i vlerave nuk përkon pa mbetje me pikat. |
||
1615 | </translation> |
||
1616 | </message> |
||
1617 | <message> |
||
1618 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="149"/> |
||
1619 | <source>createBezierLine(list, ["name"]) -> string |
||
1620 | |||
1621 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1622 | curve are stored in the list "list" in the following order: |
||
1623 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1624 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1625 | and ky meaning the control point for the curve. The coordinates are given in |
||
1626 | the current measurement units of the document (see UNIT constants). "name" |
||
1627 | should be a unique identifier for the object because you need this name for |
||
1628 | further access to that object. If "name" is not given Scribus will create one |
||
1629 | for you. |
||
1630 | |||
1631 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1632 | May raise ValueError if an insufficient number of points is passed or if |
||
1633 | the number of values passed don't group into points without leftovers. |
||
1634 | </source> |
||
1635 | <translation type="unfinished">createBezierLine(list, ["emër"]) -> string |
||
1636 | |||
1637 | Krijon një lakore të re Bezier dhe jep edhe emrin e saj. Pikat për lakoren Bezier |
||
1638 | paraqiten në listën "listë" në rendin vijues: |
||
1639 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1640 | Në listën e pikave, x dhe y nënkuptojnë koordinatat x dhe y të pikës dhe kx |
||
1641 | e ky nënkupton pikat e kontrollit të lakores. Koordinatat jepen në njësinë matëse |
||
1642 | të çastit për dokumentin (shihni konstantet UNIT). "emri" duhet të jetë një |
||
1643 | identifikues i vetëm për objektin sepse ju duhet ky emër për përdorim të |
||
1644 | mëvonshëm të këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1645 | |||
1646 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1647 | është tashmë i përdorur. |
||
1648 | Mund të sjellë ValueError nëse jepet një numër i pamjaftueshëm pikash ose |
||
1649 | nëse numri i vlerave nuk përkon pa mbetje me pikat. |
||
1650 | </translation> |
||
1651 | </message> |
||
1652 | <message> |
||
1653 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="165"/> |
||
1654 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
1655 | |||
1656 | Creates a new pathText by merging the two objects "textbox" and |
||
1657 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1658 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1659 | unique identifier for the object because you need this name for further access |
||
1660 | to that object. If "name" is not given Scribus will create one for you. |
||
1661 | |||
1662 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1663 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1664 | </source> |
||
1665 | <translation type="unfinished">createPathText(x, y, "textbox", "beziercurve", ["emër"]) -> string |
||
1666 | |||
1667 | Krijon një pathText të ri duke përzjerë dy objektet "textbox" dhe "beziercurve" |
||
1668 | dhe jep edhe emrin e tij. Koordinatat jepen në njësinë matëse të çastit për |
||
1669 | dokumentin (shihni konstantet UNIT). "emri" duhet të jetë një identifikues |
||
1670 | i vetëm për objektin sepse ju duhet ky emër për përdorim të mëvonshëm |
||
1671 | të këtij objekti. Nëse nuk jepet "emër" Scribus-i do të krijojë një për ju. |
||
1672 | |||
1673 | Mund të sjellë NameExistsError nëse jepni shprehimisht një emër që |
||
1674 | është tashmë i përdorur. |
||
1675 | Mund të sjellë NotFoundError nëse nuk gjenden një ose të dy objektet bazë të emërtuar. |
||
1676 | </translation> |
||
1677 | </message> |
||
1678 | <message> |
||
1679 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="177"/> |
||
1680 | <source>deleteObject(["name"]) |
||
1681 | |||
1682 | Deletes the item with the name "name". If "name" is not given the currently |
||
1683 | selected item is deleted. |
||
1684 | </source> |
||
1685 | <translation type="unfinished">deleteObject(["emër"]) |
||
1686 | |||
1687 | Fshin objektin me emrin "emër". Nëse nuk jepet "emër" fshihet objekti i |
||
1688 | përzgjedhur për çastin. |
||
1689 | </translation> |
||
1690 | </message> |
||
1691 | <message> |
||
1692 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="193"/> |
||
1693 | <source>textFlowMode("name" [, state]) |
||
1694 | |||
1695 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1696 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1697 | Setting "state" to 0 will disable text flow. |
||
1698 | Setting "state" to 1 will make text flow around object frame. |
||
1699 | Setting "state" to 2 will make text flow around bounding box. |
||
1700 | Setting "state" to 3 will make text flow around contour line. |
||
1701 | If "state" is not passed, text flow is toggled. |
||
1702 | </source> |
||
1703 | <translation type="unfinished"></translation> |
||
1704 | </message> |
||
1705 | <message> |
||
1706 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="211"/> |
||
1707 | <source>objectExists(["name"]) -> bool |
||
1708 | |||
1709 | Test if an object with specified name really exists in the document. |
||
1710 | The optional parameter is the object name. When no object name is given, |
||
1711 | returns True if there is something selected. |
||
1712 | </source> |
||
1713 | <translation type="unfinished">objectExists(["emër"]) -> bool |
||
1714 | |||
1715 | Sheh nëse një objekt me emrin e treguar gjendet vërtet në dokument. |
||
1716 | Parametri opsional është emri i objektit. Kur nuk tregohet emër objekti, |
||
1717 | përgjigjet me True nëse ka diçka të përzgjedhur. |
||
1718 | </translation> |
||
1719 | </message> |
||
1720 | <message> |
||
1721 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="227"/> |
||
1722 | <source>setStyle("style" [, "name"]) |
||
1723 | |||
1724 | Apply the named "style" to the object named "name". If is no object name |
||
1725 | given, it's applied on the selected object. |
||
1726 | </source> |
||
1727 | <translation type="unfinished">setStyle("stil" [, "emër"]) |
||
1728 | |||
1729 | Zbaton "stilin" e përmendur te objekti i quajtur "emër". Nëse nuk jepet emër |
||
1730 | objekti, zbatohet mbi objektin e përzgjedhur. |
||
1731 | </translation> |
||
1732 | </message> |
||
1733 | <message> |
||
1734 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="240"/> |
||
1735 | <source>getAllStyles() -> list |
||
1736 | |||
1737 | Return a list of the names of all paragraph styles in the current document. |
||
1738 | </source> |
||
1739 | <translation type="unfinished">getAllStyles() -> list |
||
1740 | |||
1741 | Përgjigjet me një listë emrash të tërë stileve të paragrafëve në dokumentin e përzgjedhur. |
||
1742 | </translation> |
||
1743 | </message> |
||
1744 | <message> |
||
1745 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="252"/> |
||
1746 | <source>duplicateObject(["name"]) -> string |
||
1747 | |||
1748 | creates a Duplicate of the selected Object (or Selection Group). |
||
1749 | </source> |
||
1750 | <translation type="unfinished"></translation> |
||
1751 | </message> |
||
1752 | <message> |
||
1753 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="26"/> |
||
1754 | <source>newPage(where [,"masterpage"]) |
||
1755 | |||
1756 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
1757 | document, otherwise the new page is inserted before "where". Page numbers are |
||
1758 | counted from 1 upwards, no matter what the displayed first page number of your |
||
1759 | document is. The optional parameter "masterpage" specifies the name of the |
||
1760 | master page for the new page. |
||
1761 | |||
1762 | May raise IndexError if the page number is out of range |
||
1763 | </source> |
||
1764 | <translation type="unfinished"></translation> |
||
1765 | </message> |
||
1766 | <message> |
||
1767 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="36"/> |
||
1768 | <source>currentPage() -> integer |
||
1769 | |||
1770 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1771 | upwards, no matter what the displayed first page number of your document is. |
||
1772 | </source> |
||
1773 | <translation type="unfinished">currentPage() -> integer |
||
1774 | |||
1775 | Përgjigjet me numrin e faqes ku punohet për çastin. Numrat e faqeve numërohen prej 1 |
||
1776 | e sipër, pa pyetur se cili është numri i faqes së parë në dokumentin tuaj. |
||
1777 | </translation> |
||
1778 | </message> |
||
1779 | <message> |
||
1780 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="45"/> |
||
1781 | <source>redrawAll() |
||
1782 | |||
1783 | Redraws all pages. |
||
1784 | </source> |
||
1785 | <translation type="unfinished">redrawAll() |
||
1786 | |||
1787 | Rivizaton tërë faqet. |
||
1788 | </translation> |
||
1789 | </message> |
||
1790 | <message> |
||
1791 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="54"/> |
||
1792 | <source>getPageType() -> integer |
||
1793 | |||
1794 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1795 | </source> |
||
1796 | <translation type="unfinished"></translation> |
||
1797 | </message> |
||
1798 | <message> |
||
1799 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="65"/> |
||
1800 | <source>savePageAsEPS("name") |
||
1801 | |||
1802 | Saves the current page as an EPS to the file "name". |
||
1803 | |||
1804 | May raise ScribusError if the save failed. |
||
1805 | </source> |
||
1806 | <translation type="unfinished">savePageAsEPS("emër") |
||
1807 | |||
1808 | Ruan faqen e çastit si një kartelë EPS me emrin "emër". |
||
1809 | |||
1810 | Mund të sjellë ScribusError nëse dështon ruajtja. |
||
1811 | </translation> |
||
1812 | </message> |
||
1813 | <message> |
||
1814 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="78"/> |
||
1815 | <source>deletePage(nr) |
||
1816 | |||
1817 | Deletes the given page. Does nothing if the document contains only one page. |
||
1818 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1819 | page number is. |
||
1820 | |||
1821 | May raise IndexError if the page number is out of range |
||
1822 | </source> |
||
1823 | <translation type="unfinished">deletePage(nr) |
||
1824 | |||
1825 | Fshin faqen e dhënë. Nuk bën gjë nëse dokumenti ka vetëm një faqe. |
||
1826 | Numrat e faqeve numërohen nga 1 e sipër, pa pyetur se cili është |
||
1827 | numri i shfaqur për faqen e parë. |
||
1828 | |||
1829 | Mund të sjellë IndexError nëse numri i faqes është jashtë intervali |
||
1830 | </translation> |
||
1831 | </message> |
||
1832 | <message> |
||
1833 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="91"/> |
||
1834 | <source>gotoPage(nr) |
||
1835 | |||
1836 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1837 | gotoPage doesn't (currently) change the page the user's view is displaying, it |
||
1838 | just sets the page that script commands will operates on. |
||
1839 | |||
1840 | May raise IndexError if the page number is out of range. |
||
1841 | </source> |
||
1842 | <translation type="unfinished"></translation> |
||
1843 | </message> |
||
1844 | <message> |
||
1845 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="100"/> |
||
1846 | <source>pageCount() -> integer |
||
1847 | |||
1848 | Returns the number of pages in the document. |
||
1849 | </source> |
||
1850 | <translation type="unfinished">pageCount() -> integer |
||
1851 | |||
1852 | Përgjigjet me numrin e faqeve të dokumentit. |
||
1853 | </translation> |
||
1854 | </message> |
||
1855 | <message> |
||
1856 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="110"/> |
||
1857 | <source>getHGuides() -> list |
||
1858 | |||
1859 | Returns a list containing positions of the horizontal guides. Values are in the |
||
1860 | document's current units - see UNIT_<type> constants. |
||
1861 | </source> |
||
1862 | <translation type="unfinished">getHGuides() -> list |
||
1863 | |||
1864 | Përgjigjet me një listë që përmban pozicionet e udhëzuesve horizontalë. Vlerat jepen |
||
1865 | njësitë e çastit për dokumentin - shihni konstante UNIT_<tip>. |
||
1866 | </translation> |
||
1867 | </message> |
||
1868 | <message> |
||
1869 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="123"/> |
||
1870 | <source>setHGuides(list) |
||
1871 | |||
1872 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
1873 | measured in the current document units - see UNIT_<type> constants. |
||
1874 | |||
1875 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1876 | setHGuides([90,250]) # replace current guides entirely |
||
1877 | </source> |
||
1878 | <translation type="unfinished">setHGuides(list) |
||
1879 | |||
1880 | Cakton udhëzuesat horizontalë. Parametri i dhënies duhet të jetë një listë pozicionesh |
||
1881 | udhëzuesish matur kundrejt njësisë së çastit të dokumentit - shih konstantet UNIT_<type>. |
||
1882 | |||
1883 | Shembull: setHGuides(getHGuides() + [200.0, 210.0] # shto udhëzues të rinj pa ndonjë humbje |
||
1884 | setHGuides([90,250]) # zëvendëso tërësisht udhëzuesa të çastit |
||
1885 | </translation> |
||
1886 | </message> |
||
1887 | <message> |
||
1888 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="132"/> |
||
1889 | <source>getVGuides() |
||
1890 | |||
1891 | See getHGuides. |
||
1892 | </source> |
||
1893 | <translation type="unfinished">getVGuides() |
||
1894 | |||
1895 | Shihni getHGuides. |
||
1896 | </translation> |
||
1897 | </message> |
||
1898 | <message> |
||
1899 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="141"/> |
||
1900 | <source>setVGuides() |
||
1901 | |||
1902 | See setHGuides. |
||
1903 | </source> |
||
1904 | <translation type="unfinished">setVGuides() |
||
1905 | |||
1906 | Shihni setHGuides. |
||
1907 | </translation> |
||
1908 | </message> |
||
1909 | <message> |
||
1910 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="151"/> |
||
1911 | <source>getPageSize() -> tuple |
||
1912 | |||
1913 | Returns a tuple with page dimensions measured in the document's current units. |
||
1914 | See UNIT_<type> constants and getPageMargins() |
||
1915 | </source> |
||
1916 | <translation type="unfinished">getPageSize() -> tuple |
||
1917 | |||
1918 | Përgjigjet me një dyshe me përmasat e faqes matur në njësitë e çastit për dokumentin. |
||
1919 | Shihni konstantet UNIT_<type> dhe getPageMargins() |
||
1920 | </translation> |
||
1921 | </message> |
||
1922 | <message> |
||
1923 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="167"/> |
||
1924 | <source>getPageItems() -> list |
||
1925 | |||
1926 | Returns a list of tuples with items on the current page. The tuple is: |
||
1927 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1928 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
1929 | the page... |
||
1930 | </source> |
||
1931 | <translation type="unfinished">getPageItems() -> list |
||
1932 | |||
1933 | Përgjigjet me një listë vargjesh objektesh të faqes së çastit. Vargu është: |
||
1934 | (emër, objectType, rend) P.sh. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1935 | do të thotë që objekti me emrin 'Text1' është një kornizë teksti (type 4) dhe është |
||
1936 | i pari në faqen... |
||
1937 | </translation> |
||
1938 | </message> |
||
1939 | <message> |
||
1940 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="181"/> |
||
1941 | <source>getPageMargins() |
||
1942 | |||
1943 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1944 | units. See UNIT_<type> constants and getPageSize(). |
||
1945 | </source> |
||
1946 | <translation type="unfinished"></translation> |
||
1947 | </message> |
||
1948 | <message> |
||
1949 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="198"/> |
||
1950 | <source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
||
1951 | |||
1952 | Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
||
1953 | fromDoc: string; the filename of the document to import pages from |
||
1954 | pageList: tuple with page numbers of pages to import |
||
1955 | create: number; 0 to replace existing pages, 1 (default) to insert new pages |
||
1956 | importWhere: number; the page number (of the current document) at which import the pages |
||
1957 | importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
||
1958 | </source> |
||
1959 | <translation type="unfinished"></translation> |
||
1960 | </message> |
||
1961 | <message> |
||
1962 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="22"/> |
||
1963 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
1964 | |||
1965 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
1966 | the same as for setFillColor() and setFillShade(). See the constants for |
||
1967 | available types (FILL_<type>). |
||
1968 | </source> |
||
1969 | <translation type="unfinished">setGradientFill(tip, "ngjyrë1", hije1, "ngjyrë2", hije2, ["emër"]) |
||
1970 | |||
1971 | Rregullon mbushjen e shkallëzuar të objektit "emër" sipas tipit. Përshkrimi i ngjyrave |
||
1972 | është i njëjtë si për setFillColor() dhe setFillShade(). Shihni konstantet për tipe të |
||
1973 | mundshëm (FILL_<type>). |
||
1974 | </translation> |
||
1975 | </message> |
||
1976 | <message> |
||
13279 | cbradney | 1977 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="44"/> |
12918 | cbradney | 1978 | <source>setFillColor("color", ["name"]) |
1979 | |||
1980 | Sets the fill color of the object "name" to the color "color". "color" |
||
1981 | is the name of one of the defined colors. If "name" is not given the |
||
1982 | currently selected item is used. |
||
1983 | </source> |
||
1984 | <translation type="unfinished">setFillColor("ngjyrë", ["emër"]) |
||
1985 | |||
1986 | Cakton si ngjyrën e mbushjes për objektin "emër" ngjyrën "ngjyrë". "ngjyra" |
||
1987 | është emri i njërës prej ngjyrave të përcaktuara. Nëse nuk jepet "ngjyrë" |
||
1988 | përdoret ajo e objektit të përzgjedhur për çastin. |
||
1989 | </translation> |
||
1990 | </message> |
||
1991 | <message> |
||
13279 | cbradney | 1992 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="54"/> |
12918 | cbradney | 1993 | <source>setFillTransparency(transparency, ["name"]) |
1994 | |||
1995 | Sets the fill transparency of the object "name" to transparency |
||
1996 | If "name" is not given the currently selected item is used. |
||
1997 | </source> |
||
1998 | <translation type="unfinished"></translation> |
||
1999 | </message> |
||
2000 | <message> |
||
13279 | cbradney | 2001 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="64"/> |
12918 | cbradney | 2002 | <source>setFillBlendmode(blendmode, ["name"]) |
2003 | |||
2004 | Sets the fill blendmode of the object "name" to blendmode |
||
2005 | If "name" is not given the currently selected item is used. |
||
2006 | </source> |
||
2007 | <translation type="unfinished"></translation> |
||
2008 | </message> |
||
2009 | <message> |
||
13279 | cbradney | 2010 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="74"/> |
12918 | cbradney | 2011 | <source>setLineColor("color", ["name"]) |
2012 | |||
2013 | Sets the line color of the object "name" to the color "color". If "name" |
||
2014 | is not given the currently selected item is used. |
||
2015 | </source> |
||
2016 | <translation type="unfinished">setLineColor("ngjyrë", ["emër"]) |
||
2017 | |||
2018 | Cakton si ngjyrën e vijës për objektin "emër" ngjyrën "ngjyrë". Nëse nuk jepet |
||
2019 | "ngjyrë" përdoret ajo e objektit të përzgjedhur për çastin. |
||
2020 | </translation> |
||
2021 | </message> |
||
2022 | <message> |
||
13279 | cbradney | 2023 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="84"/> |
12918 | cbradney | 2024 | <source>setLineTransparency(transparency, ["name"]) |
2025 | |||
2026 | Sets the line transparency of the object "name" to transparency |
||
2027 | If "name" is not given the currently selected item is used. |
||
2028 | </source> |
||
2029 | <translation type="unfinished"></translation> |
||
2030 | </message> |
||
2031 | <message> |
||
13279 | cbradney | 2032 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="94"/> |
12918 | cbradney | 2033 | <source>setLineBlendmode(blendmode, ["name"]) |
2034 | |||
2035 | Sets the line blendmode of the object "name" to blendmode |
||
2036 | If "name" is not given the currently selected item is used. |
||
2037 | </source> |
||
2038 | <translation type="unfinished"></translation> |
||
2039 | </message> |
||
2040 | <message> |
||
13279 | cbradney | 2041 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="107"/> |
12918 | cbradney | 2042 | <source>setLineWidth(width, ["name"]) |
2043 | |||
2044 | Sets line width of the object "name" to "width". "width" must be in the |
||
2045 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
2046 | given the currently selected item is used. |
||
2047 | |||
2048 | May raise ValueError if the line width is out of bounds. |
||
2049 | </source> |
||
2050 | <translation type="unfinished">setLineWidth(gjerësi, ["emër"]) |
||
2051 | |||
2052 | Cakton gjerësi vije për objektin "emër" sa "gjerësi". "gjerësia" duhet të jetë |
||
2053 | brenda segmentit nga 0.0 deri 12.0, dhe e matur në pikë. Nëse nuk jepet "ngjyrë" |
||
2054 | përdoret ajo e objektit të përzgjedhur për çastin. |
||
2055 | |||
2056 | Mund të sjellë ValueError nëse gjerësia e vijës është jashtë kufijsh. |
||
2057 | </translation> |
||
2058 | </message> |
||
2059 | <message> |
||
13279 | cbradney | 2060 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="121"/> |
12918 | cbradney | 2061 | <source>setLineShade(shade, ["name"]) |
2062 | |||
2063 | Sets the shading of the line color of the object "name" to "shade". |
||
2064 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2065 | (full color intensity). If "name" is not given the currently selected item |
||
2066 | is used. |
||
2067 | |||
2068 | May raise ValueError if the line shade is out of bounds. |
||
2069 | </source> |
||
2070 | <translation type="unfinished">setLineShade(hije, ["emër"]) |
||
2071 | |||
2072 | Cakton si hijëzimin e ngjyrës së vijës së objektit "emër" "hijen". |
||
2073 | "hija" duhet të jetë një numër i plotë brenda intervalit 0 (më e ndritshmja) |
||
2074 | deri 100 (intensitet i plotë ngjyre). Nëse nuk jepet "emër" përdoret ai |
||
2075 | i objektit të përzgjedhur për çastin. |
||
2076 | |||
2077 | Mund të sjellë ValueError nëse hija e vijës është jashtë kufijve. |
||
2078 | </translation> |
||
2079 | </message> |
||
2080 | <message> |
||
13279 | cbradney | 2081 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="132"/> |
12918 | cbradney | 2082 | <source>setLineJoin(join, ["name"]) |
2083 | |||
2084 | Sets the line join style of the object "name" to the style "join". |
||
2085 | If "name" is not given the currently selected item is used. There are |
||
2086 | predefined constants for join - JOIN_<type>. |
||
2087 | </source> |
||
2088 | <translation type="unfinished">setLineJoin(join, ["emër"]) |
||
2089 | |||
2090 | Cakton si stil bashkimi të vijës për objektin "emër" stilin "bashkim". |
||
2091 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. Ka |
||
2092 | konstante të parapërcaktuara për bashkim - JOIN_<tip>. |
||
2093 | </translation> |
||
2094 | </message> |
||
2095 | <message> |
||
13279 | cbradney | 2096 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="143"/> |
12918 | cbradney | 2097 | <source>setLineEnd(endtype, ["name"]) |
2098 | |||
2099 | Sets the line cap style of the object "name" to the style "cap". |
||
2100 | If "name" is not given the currently selected item is used. There are |
||
2101 | predefined constants for "cap" - CAP_<type>. |
||
2102 | </source> |
||
2103 | <translation type="unfinished">setLineEnd(endtype, ["emër"]) |
||
2104 | |||
2105 | Cakton si stil maje të vijës për objektin "emër" stilin "majë". |
||
2106 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. Ka |
||
2107 | konstante të parapërcaktuar për "majë" - CAP_<tip>. |
||
2108 | </translation> |
||
2109 | </message> |
||
2110 | <message> |
||
13279 | cbradney | 2111 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="154"/> |
12918 | cbradney | 2112 | <source>setLineStyle(style, ["name"]) |
2113 | |||
2114 | Sets the line style of the object "name" to the style "style". If "name" |
||
2115 | is not given the currently selected item is used. There are predefined |
||
2116 | constants for "style" - LINE_<style>. |
||
2117 | </source> |
||
2118 | <translation type="unfinished">setLineStyle(stil, ["emër"]) |
||
2119 | |||
2120 | Cakton si stil të vijës së objektit "emër" stilin "stil". Nëse nuk jepet |
||
2121 | "emër" përdoret ai i objektit të përzgjedhur për çastin. Ka konstante |
||
2122 | të parapërcaktuara për "stil" - LINE_<stil>. |
||
2123 | </translation> |
||
2124 | </message> |
||
2125 | <message> |
||
13279 | cbradney | 2126 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="168"/> |
12918 | cbradney | 2127 | <source>setFillShade(shade, ["name"]) |
2128 | |||
2129 | Sets the shading of the fill color of the object "name" to "shade". |
||
2130 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2131 | (full Color intensity). If "name" is not given the currently selected |
||
2132 | Item is used. |
||
2133 | |||
2134 | May raise ValueError if the fill shade is out of bounds. |
||
2135 | </source> |
||
2136 | <translation type="unfinished">setFillShade(hije, ["emër"]) |
||
2137 | |||
2138 | Cakton si hijëzimin e ngjyrës së mbushjes së objektit "emër" "hijen". |
||
2139 | "hija" duhet të jetë një numër i plotë brenda intervalit 0 (më e ndritshmja) |
||
2140 | deri 100 (intensitet i plotë ngjyre). Nëse nuk jepet "emër" përdoret ai |
||
2141 | i objektit të përzgjedhur për çastin. |
||
2142 | |||
2143 | Mund të sjellë ValueError nëse hija e mbushjes është jashtë kufijve. |
||
2144 | </translation> |
||
2145 | </message> |
||
2146 | <message> |
||
13279 | cbradney | 2147 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="180"/> |
12918 | cbradney | 2148 | <source>setCornerRadius(radius, ["name"]) |
2149 | |||
2150 | Sets the corner radius of the object "name". The radius is expressed |
||
2151 | in points. If "name" is not given the currently selected item is used. |
||
2152 | |||
2153 | May raise ValueError if the corner radius is negative. |
||
2154 | </source> |
||
2155 | <translation type="unfinished">setCornerRadius(rreze, ["emër"]) |
||
2156 | |||
2157 | Cakton rrezen e kulmit të objektit "emër". Rrezja matet në pikë. |
||
2158 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2159 | |||
2160 | Mund të sjellë ValueError nëse rrezja e kulmit është negative. |
||
2161 | </translation> |
||
2162 | </message> |
||
2163 | <message> |
||
13279 | cbradney | 2164 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="192"/> |
12918 | cbradney | 2165 | <source>setMultiLine("namedStyle", ["name"]) |
2166 | |||
2167 | Sets the line style of the object "name" to the named style "namedStyle". |
||
2168 | If "name" is not given the currently selected item is used. |
||
2169 | |||
2170 | May raise NotFoundError if the line style doesn't exist. |
||
2171 | </source> |
||
2172 | <translation type="unfinished">setMultiLine("namedStyle", ["emër"]) |
||
2173 | |||
2174 | Cakton si stil vije për objektin "emër" stil e emërtuar "namedStyle". |
||
2175 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2176 | |||
2177 | Mund të sjellë ValueError nëse stili i vijës nuk ekziston. |
||
2178 | </translation> |
||
2179 | </message> |
||
2180 | <message> |
||
2181 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="43"/> |
||
2182 | <source>createParagraphStyle(...) |
||
2183 | |||
2184 | Creates a paragraph style. This function takes the following keyword parameters: |
||
2185 | |||
2186 | "name" [required] -> specifies the name of the paragraphstyle to create |
||
2187 | |||
2188 | linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
||
2189 | |||
2190 | fixed linespacing: 0 |
||
2191 | |||
2192 | automatic linespacing: 1 |
||
2193 | |||
2194 | baseline grid linespacing: 2 |
||
2195 | |||
2196 | linespacing [optional] -> specifies the linespacing if using fixed linespacing |
||
2197 | |||
2198 | alignment [optional] -> specifies the alignment of the paragraph |
||
2199 | |||
2200 | -> left: 0 |
||
2201 | |||
2202 | -> center: 1 |
||
2203 | |||
2204 | -> right: 2 |
||
2205 | |||
2206 | -> justify: 3 |
||
2207 | |||
2208 | -> extend: 4 |
||
2209 | |||
2210 | leftmargin [optional], rightmargin [optional] -> specify the margin |
||
2211 | |||
2212 | gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
||
2213 | |||
2214 | firstindent [optional] -> the indent of the first line |
||
2215 | |||
2216 | hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
||
2217 | |||
2218 | dropcaplines [optional] -> height (in lines) of the caps if used |
||
2219 | |||
2220 | dropcapoffset [optional] -> offset of the caps if used |
||
2221 | |||
2222 | "charstyle" [optional] -> char style to use |
||
2223 | |||
2224 | </source> |
||
2225 | <translation type="unfinished"></translation> |
||
2226 | </message> |
||
2227 | <message> |
||
2228 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="80"/> |
||
2229 | <source>createCharStyle(...) |
||
2230 | |||
2231 | Creates a character style. This function takes the following keyword parameters: |
||
2232 | |||
2233 | "name" [required] -> name of the char style to create |
||
2234 | |||
2235 | "font" [optional] -> name of the font to use |
||
2236 | |||
2237 | fontsize [optional] -> font size to set (double) |
||
2238 | |||
2239 | "features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
||
2240 | |||
2241 | -> inherit |
||
2242 | |||
2243 | -> bold |
||
2244 | |||
2245 | -> italic |
||
2246 | |||
2247 | -> underline |
||
2248 | |||
2249 | -> underlinewords |
||
2250 | |||
2251 | -> strike |
||
2252 | |||
2253 | -> superscript |
||
2254 | |||
2255 | -> subscript |
||
2256 | |||
2257 | -> outline |
||
2258 | |||
2259 | -> shadowed |
||
2260 | |||
2261 | -> allcaps |
||
2262 | |||
2263 | -> smallcaps |
||
2264 | |||
2265 | "fillcolor" [optional], "fillshade" [optional] -> specify fill options |
||
2266 | |||
2267 | "strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
||
2268 | |||
2269 | baselineoffset [optional] -> offset of the baseline |
||
2270 | |||
2271 | shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
||
2272 | |||
2273 | outlinewidth [optional] -> width of the outline if used |
||
2274 | |||
2275 | underlineoffset [optional], underlinewidth [optional] -> underline options if used |
||
2276 | |||
2277 | strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
||
2278 | |||
2279 | scaleh [optional], scalev [optional] -> scale of the chars |
||
2280 | |||
2281 | tracking [optional] -> tracking of the text |
||
2282 | |||
2283 | "language" [optional] -> language code |
||
2284 | |||
2285 | </source> |
||
2286 | <translation type="unfinished"></translation> |
||
2287 | </message> |
||
2288 | <message> |
||
2289 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="23"/> |
||
2290 | <source>getFontSize(["name"]) -> float |
||
2291 | |||
2292 | Returns the font size in points for the text frame "name". If this text |
||
2293 | frame has some text selected the value assigned to the first character of |
||
2294 | the selection is returned. |
||
2295 | If "name" is not given the currently selected item is used. |
||
2296 | </source> |
||
2297 | <translation type="unfinished">getFontSize(["emër"]) -> float |
||
2298 | |||
2299 | Përgjigjet me madhësinë e gërmave për kornizën e teksti me "emër". Nëse kjo |
||
2300 | kornizë teksti ka tekst të përzgjedhur sillet vlera e dhënë gërmës së parë te |
||
2301 | përzgjedhja. |
||
2302 | Nëse nuk tregohet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2303 | </translation> |
||
2304 | </message> |
||
2305 | <message> |
||
2306 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="35"/> |
||
2307 | <source>getFont(["name"]) -> string |
||
2308 | |||
2309 | Returns the font name for the text frame "name". If this text frame |
||
2310 | has some text selected the value assigned to the first character |
||
2311 | of the selection is returned. If "name" is not given the currently |
||
2312 | selected item is used. |
||
2313 | </source> |
||
2314 | <translation type="unfinished">getFont(["emër"]) -> string |
||
2315 | |||
2316 | Përgjigjet me emrin e gërmave të kornizës së tekstit me "emër". |
||
2317 | Nëse korniza e tekstit ka ca tekst të përzgjedhur sillet vlera |
||
2318 | e caktuar për gërmën e parë të përzgjedhjes. Nëse nuk jepet "emër" |
||
2319 | përdoret ai i objektit të përzgjedhur të çastit. |
||
2320 | </translation> |
||
2321 | </message> |
||
2322 | <message> |
||
2323 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="45"/> |
||
2324 | <source>getTextLength(["name"]) -> integer |
||
2325 | |||
2326 | Returns the length of the text in the text frame "name". |
||
2327 | If "name" is not given the currently selected item is used. |
||
2328 | </source> |
||
2329 | <translation type="unfinished">getTextLength(["emër"]) -> integer |
||
2330 | |||
2331 | Përgjigjet me gjatësinë e tekstit të kornizës së teksit me "emër". |
||
2332 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
2333 | </translation> |
||
2334 | </message> |
||
2335 | <message> |
||
2336 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="55"/> |
||
2337 | <source>getTextLines(["name"]) -> integer |
||
2338 | |||
2339 | Returns the number of lines of the text in the text frame "name". |
||
2340 | If "name" is not given the currently selected item is used. |
||
2341 | </source> |
||
2342 | <translation type="unfinished"></translation> |
||
2343 | </message> |
||
2344 | <message> |
||
2345 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="67"/> |
||
2346 | <source>getText(["name"]) -> string |
||
2347 | |||
2348 | Returns the text of the text frame "name". If this text frame has some text |
||
2349 | selected, the selected text is returned. All text in the frame, not just |
||
2350 | currently visible text, is returned. If "name" is not given the currently |
||
2351 | selected item is used. |
||
2352 | </source> |
||
2353 | <translation type="unfinished">getText(["emër"]) -> string |
||
2354 | |||
2355 | Përgjigjet me tekstin e kornizës së tekstit "emër". Nëse kjo kornizë teksti |
||
2356 | ka ca tekst të përzgjedhur, sillet teksti i përzgjedhur. Sillet tërë teksti |
||
2357 | i kornizës, jo thjesht teksti i dukshëm për çastin. Nëse nuk jepet "ngjyrë" |
||
2358 | përdoret ajo e objektit të përzgjedhur për çastin. |
||
2359 | </translation> |
||
2360 | </message> |
||
2361 | <message> |
||
2362 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="79"/> |
||
2363 | <source>getAllText(["name"]) -> string |
||
2364 | |||
2365 | Returns the text of the text frame "name" and of all text frames which are |
||
2366 | linked with this frame. If this textframe has some text selected, the selected |
||
2367 | text is returned. If "name" is not given the currently selected item is |
||
2368 | used. |
||
2369 | </source> |
||
2370 | <translation type="unfinished">getAllText(["emër"]) -> string |
||
2371 | |||
2372 | Përgjigjet me tekstin e kornizës së tekstit "emër" dhe tërë kornizave të tekstit |
||
2373 | të cilat janë të lidhura te kjo kornizë. Nëse kjo kornizë teksti ka ca tekst |
||
2374 | të përzgjedhur, sillet teksti i përzgjedhur. Nëse nuk jepet "emër" përdoret |
||
2375 | ai i objektit të përzgjedhur për çastin. |
||
2376 | </translation> |
||
2377 | </message> |
||
2378 | <message> |
||
2379 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="89"/> |
||
2380 | <source>getLineSpacing(["name"]) -> float |
||
2381 | |||
2382 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2383 | points. If "name" is not given the currently selected item is used. |
||
2384 | </source> |
||
2385 | <translation type="unfinished">getLineSpacing(["emër"]) -> float |
||
2386 | |||
2387 | Përgjigjet me hapësirë vije ("leading") e kornizës së tekstit "emër" shprehur në |
||
2388 | pikë. Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
2389 | </translation> |
||
2390 | </message> |
||
2391 | <message> |
||
2392 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="100"/> |
||
2393 | <source>getTextDistances(["name"]) -> tuple |
||
2394 | |||
2395 | Returns the text distances of the text frame "name" expressed in points. The |
||
2396 | distances are returned as a tuple like (left, right, top, bottom). If "name" |
||
2397 | is not given the currently selected item is used. |
||
2398 | </source> |
||
2399 | <translation type="unfinished"></translation> |
||
2400 | </message> |
||
2401 | <message> |
||
2402 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="110"/> |
||
2403 | <source>getColumnGap(["name"]) -> float |
||
2404 | |||
2405 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2406 | "name" is not given the currently selected item is used. |
||
2407 | </source> |
||
2408 | <translation type="unfinished">getColumnGap(["emër"]) -> float |
||
2409 | |||
2410 | Përgjigjet me madhësinë e hapësirës së shtyllës së kornizës së tekstit "emër" |
||
2411 | shprehur në pikë. Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
2412 | </translation> |
||
2413 | </message> |
||
2414 | <message> |
||
2415 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="120"/> |
||
2416 | <source>getColumns(["name"]) -> integer |
||
2417 | |||
2418 | Gets the number of columns of the text frame "name". If "name" is not |
||
2419 | given the currently selected item is used. |
||
2420 | </source> |
||
2421 | <translation type="unfinished">getColumns(["emër"]) -> integer |
||
2422 | |||
2423 | Përgjigjet me numrin e shtyllave të kornizës së tekstit "emër". Nëse nuk jepet |
||
2424 | "emër" përdoret objekti i përzgjedhur për çastin. |
||
2425 | </translation> |
||
2426 | </message> |
||
2427 | <message> |
||
2428 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="132"/> |
||
2429 | <source>setText("text", ["name"]) |
||
2430 | |||
2431 | Sets the text of the text frame "name" to the text of the string "text". |
||
2432 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
2433 | for more details. If "name" is not given the currently selected item is |
||
2434 | used. |
||
2435 | </source> |
||
2436 | <translation type="unfinished">setText("tekst", ["emër"]) |
||
2437 | |||
2438 | Rregullon tekstin e kornizës së tekstit "emër" si tekst të llojit "tekst". Teksti |
||
2439 | duhet të jetë i koduar në UTF8 - përdorni p.sh. unikod (tekst, 'iso-8859-2'). |
||
2440 | Shihni FAQ për më tepër hollësi. Nëse nuk jepet "emër" përdoret ai i objektit |
||
2441 | të përzgjedhur për çastin. |
||
2442 | </translation> |
||
2443 | </message> |
||
2444 | <message> |
||
2445 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="146"/> |
||
2446 | <source>insertText("text", pos, ["name"]) |
||
2447 | |||
2448 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2449 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2450 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2451 | not given the currently selected Item is used. |
||
2452 | |||
2453 | May throw IndexError for an insertion out of bounds. |
||
2454 | </source> |
||
2455 | <translation type="unfinished"></translation> |
||
2456 | </message> |
||
2457 | <message> |
||
2458 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="159"/> |
||
2459 | <source>setFont("font", ["name"]) |
||
2460 | |||
2461 | Sets the font of the text frame "name" to "font". If there is some text |
||
2462 | selected only the selected text is changed. If "name" is not given the |
||
2463 | currently selected item is used. |
||
2464 | |||
2465 | May throw ValueError if the font cannot be found. |
||
2466 | </source> |
||
2467 | <translation type="unfinished">setFont("gërma", ["emër"]) |
||
2468 | |||
2469 | Rregullon gërmat e kornizës së tekstit "emër" si "gërmat". Nëse ka ca tekst |
||
2470 | të përzgjedhur, vetëm teksti i përzgjedhur ndryshohet. Nëse nuk jepet "emër" |
||
2471 | përdoret ai i objektit të përzgjedhur të çastit. |
||
2472 | |||
2473 | Mund të sjellë ValueError nëse gërmat në fjalë nuk gjenden dot. |
||
2474 | </translation> |
||
2475 | </message> |
||
2476 | <message> |
||
2477 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="173"/> |
||
2478 | <source>setFontSize(size, ["name"]) |
||
2479 | |||
2480 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2481 | as a value in points. If there is some text selected only the selected text is |
||
2482 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2483 | currently selected item is used. |
||
2484 | |||
2485 | May throw ValueError for a font size that's out of bounds. |
||
2486 | </source> |
||
2487 | <translation type="unfinished">setFontSize(size, ["emër"]) |
||
2488 | |||
2489 | Rregullon madhësinë e gërmave të kornizës së tekstit "emër" sa "madhësi". |
||
2490 | "size" trajtohet si vlerë në pikë. Nëse ka ca tekst të përzgjedhur, vetëm |
||
2491 | teksti i përzgjedhur ndryshohet. "madhësi" duhet të jetë brenda intervalit |
||
2492 | 1 deri 512. Nëse nuk jepet "emër" përdoret ai i emrit të objektit të përzgjedhur. |
||
2493 | |||
2494 | Mund të sjellë ValueError në rast madhësie gërmash që është |
||
2495 | jashtë kufijsh. |
||
2496 | </translation> |
||
2497 | </message> |
||
2498 | <message> |
||
2499 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="186"/> |
||
2500 | <source>setLineSpacing(size, ["name"]) |
||
2501 | |||
2502 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2503 | "size" is a value in points. If "name" is not given the currently selected |
||
2504 | item is used. |
||
2505 | |||
2506 | May throw ValueError if the line spacing is out of bounds. |
||
2507 | </source> |
||
2508 | <translation type="unfinished">setLineSpacing(size, ["emër"]) |
||
2509 | |||
2510 | Cakton si hapësirë vije ("leading") të kornizës së tekstit "emër" |
||
2511 | "madhësinë". "madhësia" është një vlerë në pikë. Nëse nuk jepet |
||
2512 | "emër" përdoret ai i objektit të përzgjedhur të çastit. |
||
2513 | |||
2514 | Mund të sjellë ValueError nëse hapësirë vijash është jashtë kufijsh. |
||
2515 | </translation> |
||
2516 | </message> |
||
2517 | <message> |
||
2518 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="199"/> |
||
2519 | <source>setTextDistances(left, right, top, bottom, ["name"]) |
||
2520 | |||
2521 | Sets the text distances of the text frame "name" to the values "left" |
||
2522 | "right", "top" and "bottom". If "name" is not given the currently |
||
2523 | selected item is used. |
||
2524 | |||
2525 | May throw ValueError if any of the distances are out of bounds (must be positive). |
||
2526 | </source> |
||
2527 | <translation type="unfinished"></translation> |
||
2528 | </message> |
||
2529 | <message> |
||
2530 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="211"/> |
||
2531 | <source>setColumnGap(size, ["name"]) |
||
2532 | |||
2533 | Sets the column gap of the text frame "name" to the value "size". If |
||
2534 | "name" is not given the currently selected item is used. |
||
2535 | |||
2536 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2537 | </source> |
||
2538 | <translation type="unfinished">setColumnGap(size, ["name"]) |
||
2539 | |||
2540 | Cakton boshllëk shtylle të kornizës së tekstit "emër" sa vlera "madhësi". |
||
2541 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2542 | |||
2543 | Mund të sjellë ValueError nëse boshllëku i shtyllës është jashtë kufijsh (duhet të jetë pozitiv). |
||
2544 | </translation> |
||
2545 | </message> |
||
2546 | <message> |
||
2547 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="223"/> |
||
2548 | <source>setColumns(nr, ["name"]) |
||
2549 | |||
2550 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2551 | If "name" is not given the currently selected item is used. |
||
2552 | |||
2553 | May throw ValueError if number of columns is not at least one. |
||
2554 | </source> |
||
2555 | <translation type="unfinished">setColumns(nr, ["emër"]) |
||
2556 | |||
2557 | Cakton numrin e shtyllave të kornizës së tekstit "emër" sa numri i plotë "nr". |
||
2558 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2559 | |||
2560 | Mund të sjellë ValueError nëse numri i shtyllave nuk është të paktën një. |
||
2561 | </translation> |
||
2562 | </message> |
||
2563 | <message> |
||
2564 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="236"/> |
||
2565 | <source>setTextAlignment(align, ["name"]) |
||
2566 | |||
2567 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2568 | If "name" is not given the currently selected item is used. "align" should |
||
2569 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2570 | |||
2571 | May throw ValueError for an invalid alignment constant. |
||
2572 | </source> |
||
2573 | <translation type="unfinished">setTextAlignment(drejtim, ["emër"]) |
||
2574 | |||
2575 | Rregullon drejtimin e tekstit të kornizës së tekstit "emër" sipas drejtimit të treguar. |
||
2576 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. "drejtimi" |
||
2577 | do të duhej të ishte një nga konstantet ALIGN_ përcaktuar në këtë modul - shihni dir(scribus). |
||
2578 | |||
2579 | Mund të sjellë ValueError në rast konstanteje të pavlefshme drejtimi. |
||
2580 | </translation> |
||
2581 | </message> |
||
2582 | <message> |
||
2583 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="250"/> |
||
2584 | <source>selectText(start, count, ["name"]) |
||
2585 | |||
2586 | Selects "count" characters of text in the text frame "name" starting from the |
||
2587 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2588 | text selection will be cleared. If "name" is not given the currently |
||
2589 | selected item is used. |
||
2590 | |||
2591 | May throw IndexError if the selection is outside the bounds of the text. |
||
2592 | </source> |
||
2593 | <translation type="unfinished"></translation> |
||
2594 | </message> |
||
2595 | <message> |
||
2596 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="261"/> |
||
2597 | <source>deleteText(["name"]) |
||
2598 | |||
2599 | Deletes any text in the text frame "name". If there is some text selected, |
||
2600 | only the selected text will be deleted. If "name" is not given the currently |
||
2601 | selected item is used. |
||
2602 | </source> |
||
2603 | <translation type="unfinished">deleteText(["emër"]) |
||
2604 | |||
2605 | Fshin çfarëdo teksti në kornizën e tekstit "emër". Nëse ka ca tekst të përzgjedhur, |
||
2606 | do të fshihet vetëm teksti i përzgjedhur. Nëse nuk jepet "emër" pëdore ai i objektit |
||
2607 | të përzgjedhur për çastin. |
||
2608 | </translation> |
||
2609 | </message> |
||
2610 | <message> |
||
2611 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="272"/> |
||
2612 | <source>setTextColor("color", ["name"]) |
||
2613 | |||
2614 | Sets the text color of the text frame "name" to the color "color". If there |
||
2615 | is some text selected only the selected text is changed. If "name" is not |
||
2616 | given the currently selected item is used. |
||
2617 | </source> |
||
2618 | <translation type="unfinished">setTextColor("ngjyrë", ["emër"]) |
||
2619 | |||
2620 | Cakton si ngjyrë teksti për kornizën e tekstit "emër" ngjyrën "ngjyrë". Nëse ka |
||
2621 | ca tekst të përzgjedhur ndryshohet vetëm teksti i përzgjedhur. |
||
2622 | Nëse nuk jepet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
2623 | </translation> |
||
2624 | </message> |
||
2625 | <message> |
||
2626 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="282"/> |
||
2627 | <source>setTextStroke("color", ["name"]) |
||
2628 | |||
2629 | Set "color" of the text stroke. If "name" is not given the currently |
||
2630 | selected item is used. |
||
2631 | </source> |
||
2632 | <translation type="unfinished"></translation> |
||
2633 | </message> |
||
2634 | <message> |
||
13279 | cbradney | 2635 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="315"/> |
12918 | cbradney | 2636 | <source>setTextShade(shade, ["name"]) |
2637 | |||
2638 | Sets the shading of the text color of the object "name" to "shade". If |
||
2639 | there is some text selected only the selected text is changed. "shade" must |
||
2640 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2641 | intensity). If "name" is not given the currently selected item is |
||
2642 | used. |
||
2643 | </source> |
||
2644 | <translation type="unfinished">setTextShade(hije, ["emër"]) |
||
2645 | |||
2646 | Cakton si hije të ngjyrës së tekstit të objektit "emër" "hijen". Nëse ka |
||
2647 | ndoca tekst të përzgjedhur ndryshohet vetëm teksti i përzgjedhur. |
||
2648 | "hija" duhet të jetë një vlerë e plotë brenda segmentit nga 0 (më e hapta) |
||
2649 | te 100 (intensitet i plotë ngjyre). Nëse nuk jepet "emër" përdoret ai i objektit |
||
2650 | të përzgjedhur. |
||
2651 | </translation> |
||
2652 | </message> |
||
2653 | <message> |
||
13279 | cbradney | 2654 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="328"/> |
12918 | cbradney | 2655 | <source>linkTextFrames("fromname", "toname") |
2656 | |||
2657 | Link two text frames. The frame named "fromname" is linked to the |
||
2658 | frame named "toname". The target frame must be an empty text frame |
||
2659 | and must not link to or be linked from any other frames already. |
||
2660 | |||
2661 | May throw ScribusException if linking rules are violated. |
||
2662 | </source> |
||
2663 | <translation type="unfinished">linkTextFrames("ngaemër", "teemër") |
||
2664 | |||
2665 | Lidh dy korniza tekstesh. Korniza e emërtuar "ngaemër" lidhet te |
||
2666 | korniza e emërtuar "teemër". Korniza objektiv duhet të jetë një kornizë |
||
2667 | teksti bosh dhe nuk duhet të ketë lidhje nisen apo përfundojnë në të |
||
2668 | prej kornizash të tjera. |
||
2669 | |||
2670 | Mund të sjellë ScribusException nëse dhunohen rregulla lidhjeje. |
||
2671 | </translation> |
||
2672 | </message> |
||
2673 | <message> |
||
13279 | cbradney | 2674 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="345"/> |
12918 | cbradney | 2675 | <source>unlinkTextFrames("name") |
2676 | |||
2677 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2678 | frame was in the middle of a chain, the previous and next frames will be |
||
2679 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
2680 | |||
2681 | May throw ScribusException if linking rules are violated. |
||
2682 | </source> |
||
2683 | <translation type="unfinished">unlinkTextFrames("emër") |
||
2684 | |||
2685 | Hiq objektin e treguar (me emër) prej kornize flow/linkage teksti. Nëse |
||
2686 | korniza qe në mes të një zinxhiri, do të lidhen kornizat paraardhëse dhe |
||
2687 | pasuese, p.sh. 'a->b->c' bëhet 'a->c' kur ju unlinkTextFrames(b)' |
||
2688 | |||
2689 | Mund të sjellë ScribusException nëse dhunohen rregulla lidhjeje. |
||
2690 | </translation> |
||
2691 | </message> |
||
2692 | <message> |
||
13279 | cbradney | 2693 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="358"/> |
12918 | cbradney | 2694 | <source>traceText(["name"]) |
2695 | |||
2696 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2697 | currently selected item is used.</source> |
||
2698 | <translation type="unfinished">traceText(["emër"]) |
||
2699 | |||
2700 | Shndërron kornizën e tekstit "emër" në vija të jashtme. Nëse nuk jepet "emër" |
||
2701 | përdoret ai i objektit të përzgjedhur për çastin.</translation> |
||
2702 | </message> |
||
2703 | <message> |
||
13279 | cbradney | 2704 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="372"/> |
12918 | cbradney | 2705 | <source>textOverflows(["name", nolinks]) -> integer |
2706 | |||
2707 | Returns the actual number of overflowing characters in text frame "name". |
||
2708 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2709 | use text frame linking. Without this parameter it search all linking chain. |
||
2710 | |||
2711 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2712 | </source> |
||
2713 | <translation type="unfinished"></translation> |
||
2714 | </message> |
||
2715 | <message> |
||
13279 | cbradney | 2716 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="385"/> |
12918 | cbradney | 2717 | <source>hyphenateText(["name"]) -> bool |
2718 | |||
2719 | Does hyphenation on text frame "name". |
||
2720 | If "name" is not given the currently selected item is used. |
||
2721 | |||
2722 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2723 | </source> |
||
2724 | <translation type="unfinished"></translation> |
||
2725 | </message> |
||
2726 | <message> |
||
13279 | cbradney | 2727 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="399"/> |
12918 | cbradney | 2728 | <source>dehyphenateText(["name"]) -> bool |
2729 | |||
2730 | Does dehyphenation on text frame "name". |
||
2731 | If "name" is not given the currently selected item is used. |
||
2732 | |||
2733 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2734 | </source> |
||
2735 | <translation type="unfinished"></translation> |
||
2736 | </message> |
||
2737 | <message> |
||
13279 | cbradney | 2738 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="414"/> |
12918 | cbradney | 2739 | <source>setPDFBookmark("toggle", ["name"]) |
2740 | |||
2741 | Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2742 | If "name" is not given the currently selected item is used. |
||
2743 | |||
2744 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2745 | </source> |
||
2746 | <translation type="unfinished"></translation> |
||
2747 | </message> |
||
2748 | <message> |
||
13279 | cbradney | 2749 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="426"/> |
12918 | cbradney | 2750 | <source>isPDFBookmark(["name"]) -> bool |
2751 | |||
2752 | Returns true if the text frame "name" is a PDF bookmark. |
||
2753 | If "name" is not given the currently selected item is used. |
||
2754 | |||
2755 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2756 | </source> |
||
2757 | <translation type="unfinished"></translation> |
||
2758 | </message> |
||
2759 | <message> |
||
2760 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="21"/> |
||
2761 | <source>messagebarText("string") |
||
2762 | |||
2763 | Writes the "string" into the Scribus message bar (status line). The text |
||
2764 | must be UTF8 encoded or 'unicode' string(recommended). |
||
2765 | </source> |
||
2766 | <translation type="unfinished">messagebarText("varg") |
||
2767 | |||
2768 | Shkruan "vargun" te shtyllë mesazhesh të Scribus-it (rresht gjendjeje). Teksti |
||
2769 | duhet të jetë i koduar si UTF8 ose varg 'unicode' (e këshillueshme). |
||
2770 | </translation> |
||
2771 | </message> |
||
2772 | <message> |
||
2773 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="34"/> |
||
2774 | <source>progressReset() |
||
2775 | |||
2776 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2777 | new progress bar use. See progressSet. |
||
2778 | </source> |
||
2779 | <translation type="unfinished">progressReset() |
||
2780 | |||
2781 | Heq rregullimet e mëparshmëm për shtyllë përparimi te Scribus. Thirret para |
||
2782 | përdorimit rishtas të shtyllës së përparimit. Shihni progressSet. |
||
2783 | </translation> |
||
2784 | </message> |
||
2785 | <message> |
||
2786 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="47"/> |
||
2787 | <source>progressTotal(max) |
||
2788 | |||
2789 | Sets the progress bar's maximum steps value to the specified number. |
||
2790 | See progressSet. |
||
2791 | </source> |
||
2792 | <translation type="unfinished">progressTotal(max) |
||
2793 | |||
2794 | Cakton vlerën më të madhe për hapat e shtyllës së përparimit sa vlera e dhënë. |
||
2795 | Shihni progressSet. |
||
2796 | </translation> |
||
2797 | </message> |
||
2798 | <message> |
||
2799 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="61"/> |
||
2800 | <source>progressSet(nr) |
||
2801 | |||
2802 | Set the progress bar position to "nr", a value relative to the previously set |
||
2803 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2804 | total number of steps and the number of steps completed so far and it will |
||
2805 | display the percentage of steps that have been completed. You can specify the |
||
2806 | total number of steps with progressTotal(). The current number of steps is set |
||
2807 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2808 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
2809 | </source> |
||
2810 | <translation type="unfinished">progressSet(nr) |
||
2811 | |||
2812 | Cakton venndodhjen e shtyllës së përparimit sa "nr", një vlerë relative ndaj |
||
2813 | asaj të rregulluar më parë për progressTotal. Shtylla e përparimit përdor |
||
2814 | konceptin e hapave; i jepni numrin gjithsej të hapave dhe atë të hapave të |
||
2815 | plotësuar deri tani dhe do t'ju shfaqë përqindjen e hapave që janë plotësuar. |
||
2816 | Mund të caktoni numrin gjithsej të hapave me progressTotal(). Numri i çastit |
||
2817 | për hapat caktohet nga progressSet(). Shtylla e përparimit mund të riniset nga |
||
2818 | fillimi me progressReset(). [bazuar në të dhëna marrë nga dokumente prej |
||
2819 | të Trolltech-ut mbi Qt-në] |
||
2820 | </translation> |
||
2821 | </message> |
||
2822 | <message> |
||
2823 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="69"/> |
||
2824 | <source>setCursor() |
||
2825 | |||
2826 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2827 | </source> |
||
2828 | <translation type="unfinished">setCursor() |
||
2829 | |||
2830 | [E PAMBULUAR!] Kjo mund t'i prishë gjërat, ndaj larg prej kësaj hëpërhë. |
||
2831 | </translation> |
||
2832 | </message> |
||
2833 | <message> |
||
2834 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="83"/> |
||
2835 | <source>docChanged(bool) |
||
2836 | |||
2837 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
2838 | useful to call this procedure when you're changing the document, because Scribus |
||
2839 | won't automatically notice when you change the document using a script. |
||
2840 | </source> |
||
2841 | <translation type="unfinished">docChanged(bool) |
||
2842 | |||
2843 | Aktivizon/çaktivizon ikonë ruajtjesh te shtyllë ikonash të Scribus-it dhe pjesën te menuja Ruaj. |
||
2844 | Është e dobishme për thirrjen e një procedure kur po ndryshoni dokumentin, ngaqë Scribus-i |
||
2845 | nuk do të vërë re automatikisht ndryshimin e dokumentit përmes përdorimit të një programthi. |
||
2846 | </translation> |
||
2847 | </message> |
||
2848 | <message> |
||
2849 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="95"/> |
||
2850 | <source>zoomDocument(double) |
||
2851 | |||
2852 | Zoom the document in main GUI window. Actions have whole number |
||
2853 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2854 | </source> |
||
2855 | <translation type="unfinished"></translation> |
||
2856 | </message> |
||
2857 | <message> |
||
2858 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="106"/> |
||
2859 | <source>scrollDocument(x,y) |
||
2860 | |||
2861 | Scroll the document in main GUI window by x and y. |
||
2862 | </source> |
||
2863 | <translation type="unfinished"></translation> |
||
2864 | </message> |
||
2865 | <message> |
||
2866 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="21"/> |
||
2867 | <source>placeSVG("filename", x, y) |
||
2868 | |||
2869 | Places the SVG "filename" onto the current page, |
||
2870 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
2871 | |||
2872 | If loading was successful, the selection contains the imported SVG |
||
2873 | </source> |
||
2874 | <translation type="unfinished"></translation> |
||
2875 | </message> |
||
2876 | <message> |
||
2877 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="33"/> |
||
2878 | <source>placeEPS("filename", x, y) |
||
2879 | |||
2880 | Places the EPS "filename" onto the current page, |
||
2881 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
2882 | |||
2883 | If loading was successful, the selection contains the imported EPS |
||
2884 | </source> |
||
2885 | <translation type="unfinished"></translation> |
||
2886 | </message> |
||
2887 | <message> |
||
2888 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="45"/> |
||
2889 | <source>placeSXD("filename", x, y) |
||
2890 | |||
2891 | Places the SXD "filename" onto the current page, |
||
2892 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
2893 | |||
2894 | If loading was successful, the selection contains the imported SXD |
||
2895 | </source> |
||
2896 | <translation type="unfinished"></translation> |
||
2897 | </message> |
||
2898 | <message> |
||
2899 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="57"/> |
||
2900 | <source>placeODG("filename", x, y) |
||
2901 | |||
2902 | Places the ODG "filename" onto the current page, |
||
2903 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
2904 | |||
2905 | If loading was successful, the selection contains the imported ODG |
||
2906 | </source> |
||
2907 | <translation type="unfinished"></translation> |
||
2908 | </message> |
||
13279 | cbradney | 2909 | <message> |
2910 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="120"/> |
||
2911 | <source>isSpotColor("name") -> bool |
||
2912 | |||
2913 | Returns True if the color "name" is a spot color. |
||
2914 | See also setSpotColor() |
||
2915 | |||
2916 | May raise NotFoundError if a named color wasn't found. |
||
2917 | May raise ValueError if an invalid color name is specified. |
||
2918 | </source> |
||
2919 | <translation type="unfinished"></translation> |
||
2920 | </message> |
||
2921 | <message> |
||
2922 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="135"/> |
||
2923 | <source>setSpotColor("name", spot) |
||
2924 | |||
2925 | Set the color "name" as a spot color if spot parameter is True. |
||
2926 | See also isSpotColor() |
||
2927 | |||
2928 | May raise NotFoundError if a named color wasn't found. |
||
2929 | May raise ValueError if an invalid color name is specified. |
||
2930 | </source> |
||
2931 | <translation type="unfinished"></translation> |
||
2932 | </message> |
||
2933 | <message> |
||
2934 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="167"/> |
||
2935 | <source>scaleImage(x, y [, "name"]) |
||
2936 | |||
2937 | Sets the internal scaling factors of the picture in the image frame "name". |
||
2938 | If "name" is not given the currently selected item is used. A number of 1 |
||
2939 | means 100 %. Internal scaling factors are different from the values shown on |
||
2940 | properties palette. Note : deprecated, use setImageScale() instead. |
||
2941 | |||
2942 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
2943 | </source> |
||
2944 | <translation type="unfinished"></translation> |
||
2945 | </message> |
||
2946 | <message> |
||
2947 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="180"/> |
||
2948 | <source>setImageScale(x, y [, "name"]) |
||
2949 | |||
2950 | Sets the scaling factors of the picture in the image frame "name". |
||
2951 | If "name" is not given the currently selected item is used. A number of 1 |
||
2952 | means 100 %. Scaling factors are equal to the values shown on properties palette. |
||
2953 | |||
2954 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
2955 | </source> |
||
2956 | <translation type="unfinished"></translation> |
||
2957 | </message> |
||
2958 | <message> |
||
2959 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="33"/> |
||
2960 | <source>setGradientStop("color", shade, opacity, ramppoint, ["name"]) |
||
2961 | |||
2962 | Set or add a gradient stop to the gradient fill of the object "name" at position ramppoint. |
||
2963 | Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill() |
||
2964 | must have been called previously for the gradient fill to be visible. |
||
2965 | </source> |
||
2966 | <translation type="unfinished"></translation> |
||
2967 | </message> |
||
2968 | <message> |
||
2969 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="292"/> |
||
2970 | <source>setTextScalingV(scale, ["name"]) |
||
2971 | |||
2972 | Sets the vertical character scaling of the object "name" to "scale" in percent. |
||
2973 | If "name" is not given the currently selected item is used. |
||
2974 | </source> |
||
2975 | <translation type="unfinished"></translation> |
||
2976 | </message> |
||
2977 | <message> |
||
2978 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="302"/> |
||
2979 | <source>setTextScalingH(scale, ["name"]) |
||
2980 | |||
2981 | Sets the horizontal character scaling of the object "name" to "scale" in percent. |
||
2982 | If "name" is not given the currently selected item is used. |
||
2983 | </source> |
||
2984 | <translation type="unfinished"></translation> |
||
2985 | </message> |
||
12918 | cbradney | 2986 | </context> |
2987 | <context> |
||
2988 | <name>@default</name> |
||
2989 | <message> |
||
2990 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="21"/> |
||
2991 | <source>getColorNames() -> list |
||
2992 | |||
2993 | Returns a list containing the names of all defined colors in the document. |
||
2994 | If no document is open, returns a list of the default document colors. |
||
2995 | </source> |
||
2996 | <translation type="obsolete">getColorNames() -> list |
||
2997 | |||
2998 | Përgjigjet me një listë që përmban emrat e tërë ngjyrave të përcaktuara për dokumentin. |
||
2999 | Nëse nuk është hapur ndonjë dokument, përgjigjet me një listë ngjyrash për dokumentin parazgjedhje. |
||
3000 | </translation> |
||
3001 | </message> |
||
3002 | <message> |
||
3003 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="22"/> |
||
3004 | <source>newDocDialog() -> bool |
||
3005 | |||
3006 | Displays the "New Document" dialog box. Creates a new document if the user |
||
3007 | accepts the settings. Does not create a document if the user presses cancel. |
||
3008 | Returns true if a new document was created. |
||
3009 | </source> |
||
3010 | <translation type="obsolete">newDocDialog() -> bool |
||
3011 | |||
3012 | Shfaq kutinë e Dialogut "Dokument i Ri". Krijon një dokument te ri nëse përdoruesi |
||
3013 | pranon rregullimet. Nuk krijon dokument nëse përdoruesi shtyp Anulo. |
||
3014 | Përgjigjet me "true" nëse dokumenti i ri u krijua. |
||
3015 | </translation> |
||
3016 | </message> |
||
3017 | <message> |
||
9729 | cbradney | 3018 | <location filename="" line="136965632"/> |
1575 | cbradney | 3019 | <source>newDoc(size, margins, orientation, firstPageNumber, |
3020 | unit, facingPages, firstSideLeft) -> bool |
||
3021 | |||
3022 | Creates a new document and returns true if successful. The parameters have the |
||
3023 | following meaning: |
||
3024 | |||
3025 | size = A tuple (width, height) describing the size of the document. You can |
||
3026 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
3027 | |||
3028 | margins = A tuple (left, right, top, bottom) describing the document |
||
3029 | margins |
||
3030 | |||
3031 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
3032 | |||
3033 | firstPageNumber = is the number of the first page in the document used for |
||
3034 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
3035 | numbers if you're creating a document in several parts. |
||
3036 | |||
3037 | unit: this value sets the measurement units used by the document. Use a |
||
3038 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
3039 | UNIT_PICAS, UNIT_POINTS. |
||
3040 | |||
3041 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
3042 | |||
3043 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
3044 | |||
3045 | The values for width, height and the margins are expressed in the given unit |
||
3046 | for the document. PAPER_* constants are expressed in points. If your document |
||
3047 | is not in points, make sure to account for this. |
||
3048 | |||
3049 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
3050 | FACINGPAGES, FIRSTPAGERIGHT) |
||
3051 | </source> |
||
3064 | cbradney | 3052 | <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber, |
1575 | cbradney | 3053 | unit, facingPages, firstSideLeft) -> bool |
3054 | |||
3055 | Krijon një dokument të ri dhe përgjigjet me një "true" nëse ka sukses. Parametrat kanë |
||
3056 | domethënien vijuese: |
||
3057 | |||
3058 | size = Një "tuple" (gjerësi, lartësi) që përshkruan madhësinë e dokumentit. Mund |
||
3059 | të përdorni konstante të paracaktuara të emërtuara PAPER_<lloj_letre> p.sh. PAPER_A4 etj. |
||
3060 | |||
3061 | margins = Një "tuple" (majtas, djathtas, sipër, poshtë) që përshkruan mënjanat |
||
3062 | e dokumentit |
||
3063 | |||
3064 | orientation = drejtimi i faqes - constants PORTRET, SË GJERI |
||
3065 | |||
3066 | firstPageNumber = është numri i faqes së parë te dokumenti përdorur për |
||
3067 | numërim faqesh. Edhe pse do ta donit zakonisht 1, është e dobishme të keni vlera |
||
3068 | më të mëdha nëse krijoni një dokument me disa pjesë. |
||
3069 | |||
3070 | unit: kjo vlerë cakton njësitë matëse të përdorura nga dokumenti. Përdorni për |
||
3071 | këtë një konstante të paracaktuar, një prej: UNIT_INCHES, UNIT_MILLIMETERS, |
||
3072 | UNIT_PICAS, UNIT_POINTS. |
||
3073 | |||
3074 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
3075 | |||
3076 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
3077 | |||
3078 | Vlerat për gjerësi, lartësi dhe mënjana shprehen në njësinë e dhënë për |
||
3079 | dokumentin. Konstantet PAPER_* shprehen në pikë. Nëse dokumenti juaj |
||
3080 | nuk është në pikë, bëni ndryshimin përkatës. |
||
3081 | |||
3082 | shembull: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
3083 | FACINGPAGES, FIRSTPAGERIGHT) |
||
3084 | </translation> |
||
3085 | </message> |
||
3086 | <message> |
||
12612 | cbradney | 3087 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="21"/> |
1135 | cbradney | 3088 | <source>getFillColor(["name"]) -> string |
3089 | |||
3090 | Returns the name of the fill color of the object "name". |
||
3091 | If "name" is not given the currently selected item is used. |
||
3092 | </source> |
||
12918 | cbradney | 3093 | <translation type="obsolete">getFillColor(["name"]) -> string |
1575 | cbradney | 3094 | |
3095 | Përgjigjet me emrin e ngjyrës së mbushjes për objektin "emër". |
||
3096 | Nëse nuk jepet "emër" përdoret objekti i përzgjedhur për çastin. |
||
3097 | </translation> |
||
1135 | cbradney | 3098 | </message> |
3099 | <message> |
||
12612 | cbradney | 3100 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="23"/> |
1135 | cbradney | 3101 | <source>moveObject(dx, dy [, "name"]) |
3102 | |||
3103 | Moves the object "name" by dx and dy relative to its current position. The |
||
3104 | distances are expressed in the current measurement unit of the document (see |
||
3105 | UNIT constants). If "name" is not given the currently selected item is used. |
||
3106 | If the object "name" belongs to a group, the whole group is moved. |
||
3107 | </source> |
||
12918 | cbradney | 3108 | <translation type="obsolete">moveObject(dx, dy [, "name"]) |
1575 | cbradney | 3109 | |
3110 | Zhvendos objektin "emër" me dx dhe dy në lidhje me pozicionin e vet të çastit. |
||
3111 | Hapësirat shprehen në njësinë matëse të çastit të dokumentit (shihni |
||
3112 | konstantet UNIT). Nëse nuk është dhënë "emër" përdoret objekti i përzgjedhur për çastin. |
||
3113 | Nëse objekti "emër" i përket një grupi, zhvendoset tërë grupi. |
||
3114 | </translation> |
||
1135 | cbradney | 3115 | </message> |
3116 | <message> |
||
12612 | cbradney | 3117 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="24"/> |
1135 | cbradney | 3118 | <source>setRedraw(bool) |
3119 | |||
3120 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
3121 | This change will persist even after the script exits, so make sure to call |
||
3122 | setRedraw(True) in a finally: clause at the top level of your script. |
||
3123 | </source> |
||
12918 | cbradney | 3124 | <translation type="obsolete">setRedraw(bool) |
1575 | cbradney | 3125 | |
3126 | Çaktivizon rivizatimin e faqes kur bool = False, përndryshe rivizatimi është |
||
3127 | veprues. Ky ndryshim do të mbesë edhe pasi programthi të përfundojë, ndaj |
||
3128 | sigurohuni të thirret setRedraw(True) në një "finally: clause" te niveli sipëror |
||
3129 | i programthit tuaj. |
||
3130 | </translation> |
||
1135 | cbradney | 3131 | </message> |
3132 | <message> |
||
12612 | cbradney | 3133 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="26"/> |
1135 | cbradney | 3134 | <source>createRect(x, y, width, height, ["name"]) -> string |
3135 | |||
3136 | Creates a new rectangle on the current page and returns its name. The |
||
3137 | coordinates are given in the current measurement units of the document |
||
3138 | (see UNIT constants). "name" should be a unique identifier for the object |
||
3139 | because you need this name to reference that object in future. If "name" |
||
3140 | is not given Scribus will create one for you. |
||
3141 | |||
3142 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3143 | </source> |
||
12918 | cbradney | 3144 | <translation type="obsolete">createRect(x, y, gjerësi, lartësi, ["emër"]) -> string |
1575 | cbradney | 3145 | |
3146 | Krijon një drejtkëndësh të ri në faqen e çastit dhe jep emrin e tij. Koordinatat |
||
3147 | jepen në njësinë matëse të çastit për dokumentin (shihni konstantet UNIT). |
||
3148 | "emër" do të duhej të ishte një identifikues unik për objektin sepse |
||
3149 | keni nevojë që ky emër të lidhet në të ardhmen me këtë objekt. Nëse nuk |
||
3150 | jepet "emër" Scribus-i do të krijojë një për ju. |
||
3151 | |||
3152 | Mund të shfaqet NameExistsError nëse jepni shprehimisht një emër tashmë në përdorim. |
||
3153 | </translation> |
||
1135 | cbradney | 3154 | </message> |
3155 | <message> |
||
9729 | cbradney | 3156 | <location filename="" line="136965632"/> |
1135 | cbradney | 3157 | <source>newPage(where [,"template"]) |
3158 | |||
3159 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
3160 | document, otherwise the new page is inserted before "where". Page numbers are |
||
3161 | counted from 1 upwards, no matter what the displayed first page number of your |
||
3162 | document is. The optional parameter "template" specifies the name of the |
||
3163 | template page for the new page. |
||
3164 | |||
3165 | May raise IndexError if the page number is out of range |
||
3166 | </source> |
||
3064 | cbradney | 3167 | <translation type="obsolete">newPage(ku [,"stampë"]) |
1575 | cbradney | 3168 | |
3169 | Krijon një faqe të re. Nëse "ku" është -1 faqja e re shtohet te dokumenti, |
||
3170 | përndryshe faqja e re futet përpara "ku". Numrat e faqeve numërohen |
||
3171 | prej 1 e sipër, pa pyetur se çfarë numri tregon faqja e parë e dokumentit tuaj. |
||
3172 | Parametri opsional "stampë" përcakton emrin e faqes stampë për faqen e re. |
||
3173 | |||
3174 | Mund të shfaqë IndexError nëse numri i faqes zgjidhet është jashtë intervalit |
||
3175 | </translation> |
||
1135 | cbradney | 3176 | </message> |
3177 | <message> |
||
12612 | cbradney | 3178 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="22"/> |
1135 | cbradney | 3179 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
3180 | |||
3181 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
3182 | the same as for setFillColor() and setFillShade(). See the constants for |
||
3183 | available types (FILL_<type>). |
||
3184 | </source> |
||
12918 | cbradney | 3185 | <translation type="obsolete">setGradientFill(tip, "ngjyrë1", hije1, "ngjyrë2", hije2, ["emër"]) |
1575 | cbradney | 3186 | |
3187 | Rregullon mbushjen e shkallëzuar të objektit "emër" sipas tipit. Përshkrimi i ngjyrave |
||
3188 | është i njëjtë si për setFillColor() dhe setFillShade(). Shihni konstantet për tipe të |
||
3189 | mundshëm (FILL_<type>). |
||
3190 | </translation> |
||
1135 | cbradney | 3191 | </message> |
3192 | <message> |
||
12612 | cbradney | 3193 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="23"/> |
1525 | cbradney | 3194 | <source>getFontSize(["name"]) -> float |
3195 | |||
3196 | Returns the font size in points for the text frame "name". If this text |
||
3197 | frame has some text selected the value assigned to the first character of |
||
3198 | the selection is returned. |
||
3199 | If "name" is not given the currently selected item is used. |
||
3200 | </source> |
||
12918 | cbradney | 3201 | <translation type="obsolete">getFontSize(["emër"]) -> float |
1575 | cbradney | 3202 | |
3203 | Përgjigjet me madhësinë e gërmave për kornizën e teksti me "emër". Nëse kjo |
||
3204 | kornizë teksti ka tekst të përzgjedhur sillet vlera e dhënë gërmës së parë te |
||
3205 | përzgjedhja. |
||
3206 | Nëse nuk tregohet "emër" përdoret ai i objektit të përzgjedhur për çastin. |
||
3207 | </translation> |
||
1525 | cbradney | 3208 | </message> |
3209 | <message> |
||
9729 | cbradney | 3210 | <location filename="" line="136965632"/> |
1575 | cbradney | 3211 | <source>register_macro_callable(name, callable, accel='') |
3212 | |||
3213 | Create a macro called "name" with the existing callable object "callable". |
||
3214 | The passed callable must not require any arguments when called (it may take |
||
3215 | optional arguments, but will not be given any). |
||
3216 | If provided, the string "accel" will be used to set a keyboard shortcut |
||
3217 | for the macro. |
||
3218 | If the passed callable is a class, it will be rejected. Functions and bound |
||
3219 | methods are quite acceptable, as are instances of classes that provide a |
||
3220 | __call__ method with no arguments. There is no problem with registering |
||
3221 | a callable more than once, nor with registering multiple bound methods |
||
3222 | of a single instance. |
||
3223 | </source> |
||
3064 | cbradney | 3224 | <translation type="obsolete">register_macro_callable(emër, callable, përshpejt='') |
1575 | cbradney | 3225 | |
3226 | Krijon një makro të quajtur "emër" me objekt të thirrshëm ekzistues "callable". |
||
3227 | I thirrshmi që jepet duhet të mos kërkojë ndonjë argument kur thirret (mund |
||
3228 | të marrë argumente opsionalë, por nuk do t'i jepet ndonjë). |
||
3229 | Nëse jepet një, vargu "përshpejt" do të përdoret për të caktuar një shkurtprerje |
||
3230 | tastiere për makron. |
||
3231 | Nëse i thirrshmi i dhënë është një klasë, nuk do të pranohet. Funksionet dhe |
||
3232 | metoda "bound" janë goxha të pranueshëm, siç janë edhe instanca klasash që |
||
3233 | ofrojnë një __call__ method pa argumente. Nuk ka problem nëse regjistrohet |
||
3234 | një i thirrshëm më shumë se një herë, as nëse regjistrohen metoda "bound" |
||
3235 | të shumëfishta brenda një instance të vetme.</translation> |
||
3236 | </message> |
||
3237 | <message> |
||
12612 | cbradney | 3238 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="21"/> |
1135 | cbradney | 3239 | <source>messagebarText("string") |
3240 | |||
3241 | Writes the "string" into the Scribus message bar (status line). The text |
||
3242 | must be UTF8 encoded or 'unicode' string(recommended). |
||
3243 | </source> |
||
12918 | cbradney | 3244 | <translation type="obsolete">messagebarText("varg") |
1135 | cbradney | 3245 | |
1575 | cbradney | 3246 | Shkruan "vargun" te shtyllë mesazhesh të Scribus-it (rresht gjendjeje). Teksti |
3247 | duhet të jetë i koduar si UTF8 ose varg 'unicode' (e këshillueshme). |
||
3248 | </translation> |
||
1135 | cbradney | 3249 | </message> |
3250 | <message> |
||
9729 | cbradney | 3251 | <location filename="" line="136965632"/> |
1135 | cbradney | 3252 | <source>?</source> |
3253 | <translation type="obsolete">?</translation> |
||
3254 | </message> |
||
3255 | <message> |
||
9729 | cbradney | 3256 | <location filename="" line="136965632"/> |
1135 | cbradney | 3257 | <source> %</source> |
3258 | <translation type="obsolete"> %</translation> |
||
3259 | </message> |
||
3260 | <message> |
||
9729 | cbradney | 3261 | <location filename="" line="136965632"/> |
1135 | cbradney | 3262 | <source>B:</source> |
3263 | <translation type="obsolete">B:</translation> |
||
3264 | </message> |
||
3265 | <message> |
||
9729 | cbradney | 3266 | <location filename="" line="136965632"/> |
1135 | cbradney | 3267 | <source>C:</source> |
3268 | <translation type="obsolete">C:</translation> |
||
3269 | </message> |
||
3270 | <message> |
||
9729 | cbradney | 3271 | <location filename="" line="136965632"/> |
1135 | cbradney | 3272 | <source>G:</source> |
3273 | <translation type="obsolete">G:</translation> |
||
3274 | </message> |
||
3275 | <message> |
||
9729 | cbradney | 3276 | <location filename="" line="136965632"/> |
1135 | cbradney | 3277 | <source>K:</source> |
3278 | <translation type="obsolete">K:</translation> |
||
3279 | </message> |
||
3280 | <message> |
||
9729 | cbradney | 3281 | <location filename="" line="136965632"/> |
1135 | cbradney | 3282 | <source>M:</source> |
3283 | <translation type="obsolete">M:</translation> |
||
3284 | </message> |
||
3285 | <message> |
||
9729 | cbradney | 3286 | <location filename="" line="136965632"/> |
1135 | cbradney | 3287 | <source>OK</source> |
3288 | <translation type="obsolete">OK</translation> |
||
3289 | </message> |
||
3290 | <message> |
||
9729 | cbradney | 3291 | <location filename="" line="136965632"/> |
1135 | cbradney | 3292 | <source>No</source> |
3293 | <translation type="obsolete">Jo</translation> |
||
3294 | </message> |
||
3295 | <message> |
||
9729 | cbradney | 3296 | <location filename="" line="136965632"/> |
1135 | cbradney | 3297 | <source>R:</source> |
3298 | <translation type="obsolete">R:</translation> |
||
3299 | </message> |
||
3300 | <message> |
||
9729 | cbradney | 3301 | <location filename="" line="136965632"/> |
1135 | cbradney | 3302 | <source>Y:</source> |
3303 | <translation type="obsolete">Y:</translation> |
||
3304 | </message> |
||
3305 | <message> |
||
9729 | cbradney | 3306 | <location filename="" line="136965632"/> |
1135 | cbradney | 3307 | <source>in</source> |
3308 | <translation type="obsolete">inç</translation> |
||
3309 | </message> |
||
3310 | <message> |
||
9729 | cbradney | 3311 | <location filename="" line="136965632"/> |
1135 | cbradney | 3312 | <source>mm</source> |
3313 | <translation type="obsolete">mm</translation> |
||
3314 | </message> |
||
3315 | <message> |
||
9729 | cbradney | 3316 | <location filename="" line="136965632"/> |
1135 | cbradney | 3317 | <source>pt</source> |
3318 | <translation type="obsolete">pt</translation> |
||
3319 | </message> |
||
3320 | <message> |
||
9729 | cbradney | 3321 | <location filename="" line="136965632"/> |
1135 | cbradney | 3322 | <source> in</source> |
3323 | <translation type="obsolete">inç</translation> |
||
3324 | </message> |
||
3325 | <message> |
||
9729 | cbradney | 3326 | <location filename="" line="136965632"/> |
1135 | cbradney | 3327 | <source> mm</source> |
3328 | <translation type="obsolete">mm</translation> |
||
3329 | </message> |
||
3330 | <message> |
||
9729 | cbradney | 3331 | <location filename="" line="136965632"/> |
1135 | cbradney | 3332 | <source> pt</source> |
3333 | <translation type="obsolete">pt</translation> |
||
3334 | </message> |
||
3335 | <message> |
||
9729 | cbradney | 3336 | <location filename="" line="136965632"/> |
1135 | cbradney | 3337 | <source>&<<</source> |
3338 | <translation type="obsolete">&<<</translation> |
||
3339 | </message> |
||
3340 | <message> |
||
9729 | cbradney | 3341 | <location filename="" line="136965632"/> |
1135 | cbradney | 3342 | <source>&>></source> |
3343 | <translation type="obsolete">&>></translation> |
||
3344 | </message> |
||
3345 | <message> |
||
9729 | cbradney | 3346 | <location filename="" line="136965632"/> |
1135 | cbradney | 3347 | <source>&OK</source> |
3348 | <translation type="obsolete">&OK</translation> |
||
3349 | </message> |
||
3350 | <message> |
||
9729 | cbradney | 3351 | <location filename="" line="136965632"/> |
1135 | cbradney | 3352 | <source>&No</source> |
3353 | <translation type="obsolete">&Jo</translation> |
||
3354 | </message> |
||
3355 | <message> |
||
9729 | cbradney | 3356 | <location filename="" line="136965632"/> |
1135 | cbradney | 3357 | <source>50%</source> |
3358 | <translation type="obsolete">50%</translation> |
||
3359 | </message> |
||
3360 | <message> |
||
9729 | cbradney | 3361 | <location filename="" line="136965632"/> |
1135 | cbradney | 3362 | <source>75%</source> |
3363 | <translation type="obsolete">75%</translation> |
||
3364 | </message> |
||
3365 | <message> |
||
9729 | cbradney | 3366 | <location filename="" line="136965632"/> |
1135 | cbradney | 3367 | <source>All</source> |
3368 | <translation type="obsolete">Tërë</translation> |
||
3369 | </message> |
||
3370 | <message> |
||
9729 | cbradney | 3371 | <location filename="" line="136965632"/> |
1135 | cbradney | 3372 | <source>Alt</source> |
3373 | <translation type="obsolete">Alt</translation> |
||
3374 | </message> |
||
3375 | <message> |
||
9729 | cbradney | 3376 | <location filename="" line="136965632"/> |
1135 | cbradney | 3377 | <source>Box</source> |
3378 | <translation type="obsolete">Kuti</translation> |
||
3379 | </message> |
||
3380 | <message> |
||
9729 | cbradney | 3381 | <location filename="" line="136965632"/> |
1135 | cbradney | 3382 | <source>Cut</source> |
3383 | <translation type="obsolete">Pri</translation> |
||
3384 | </message> |
||
3385 | <message> |
||
9729 | cbradney | 3386 | <location filename="" line="136965632"/> |
1135 | cbradney | 3387 | <source>Dir</source> |
3388 | <translation type="obsolete">Dre</translation> |
||
3389 | </message> |
||
3390 | <message> |
||
9729 | cbradney | 3391 | <location filename="" line="136965632"/> |
1135 | cbradney | 3392 | <source>GUI</source> |
3393 | <translation type="obsolete">GUI</translation> |
||
3394 | </message> |
||
3395 | <message> |
||
9729 | cbradney | 3396 | <location filename="" line="136965632"/> |
1135 | cbradney | 3397 | <source>Low</source> |
3398 | <translation type="obsolete">Ulët</translation> |
||
3399 | </message> |
||
3400 | <message> |
||
9729 | cbradney | 3401 | <location filename="" line="136965632"/> |
1135 | cbradney | 3402 | <source>New</source> |
3403 | <translation type="obsolete">e Re</translation> |
||
3404 | </message> |
||
3405 | <message> |
||
9729 | cbradney | 3406 | <location filename="" line="136965632"/> |
1135 | cbradney | 3407 | <source>Old</source> |
3408 | <translation type="obsolete">I vjetër</translation> |
||
3409 | </message> |
||
3410 | <message> |
||
9729 | cbradney | 3411 | <location filename="" line="136965632"/> |
1135 | cbradney | 3412 | <source>RGB</source> |
3413 | <translation type="obsolete">RGB</translation> |
||
3414 | </message> |
||
3415 | <message> |
||
9729 | cbradney | 3416 | <location filename="" line="136965632"/> |
1135 | cbradney | 3417 | <source>To:</source> |
3418 | <translation type="obsolete">Për:</translation> |
||
3419 | </message> |
||
3420 | <message> |
||
9729 | cbradney | 3421 | <location filename="" line="136965632"/> |
1135 | cbradney | 3422 | <source>X1:</source> |
3423 | <translation type="obsolete">X1:</translation> |
||
3424 | </message> |
||
3425 | <message> |
||
9729 | cbradney | 3426 | <location filename="" line="136965632"/> |
1135 | cbradney | 3427 | <source>X2:</source> |
3428 | <translation type="obsolete">X2:</translation> |
||
3429 | </message> |
||
3430 | <message> |
||
9729 | cbradney | 3431 | <location filename="" line="136965632"/> |
1135 | cbradney | 3432 | <source>Y1:</source> |
3433 | <translation type="obsolete">Y1:</translation> |
||
3434 | </message> |
||
3435 | <message> |
||
9729 | cbradney | 3436 | <location filename="" line="136965632"/> |
1135 | cbradney | 3437 | <source>Y2:</source> |
3438 | <translation type="obsolete">Y2:</translation> |
||
3439 | </message> |
||
3440 | <message> |
||
9729 | cbradney | 3441 | <location filename="" line="136965632"/> |
1135 | cbradney | 3442 | <source>Use</source> |
3443 | <translation type="obsolete">Përdor</translation> |
||
3444 | </message> |
||
3445 | <message> |
||
9729 | cbradney | 3446 | <location filename="" line="136965632"/> |
1135 | cbradney | 3447 | <source>Yes</source> |
3448 | <translation type="obsolete">Po</translation> |
||
3449 | </message> |
||
3450 | <message> |
||
9729 | cbradney | 3451 | <location filename="" line="136965632"/> |
1135 | cbradney | 3452 | <source>Zip</source> |
3453 | <translation type="obsolete">Zip</translation> |
||
3454 | </message> |
||
3455 | <message> |
||
9729 | cbradney | 3456 | <location filename="" line="136965632"/> |
1135 | cbradney | 3457 | <source>min</source> |
3458 | <translation type="obsolete">min</translation> |
||
3459 | </message> |
||
3460 | <message> |
||
9729 | cbradney | 3461 | <location filename="" line="136965632"/> |
1135 | cbradney | 3462 | <source>sum</source> |
3463 | <translation type="obsolete">mbledhje</translation> |
||
3464 | </message> |
||
3465 | <message> |
||
9729 | cbradney | 3466 | <location filename="" line="136965632"/> |
1135 | cbradney | 3467 | <source>to:</source> |
3468 | <translation type="obsolete">për:</translation> |
||
3469 | </message> |
||
3470 | <message> |
||
9729 | cbradney | 3471 | <location filename="" line="136965632"/> |
1135 | cbradney | 3472 | <source>Destination</source> |
3473 | <translation type="obsolete">Vendmbrritje</translation> |
||
3474 | </message> |
||
3475 | <message> |
||
9729 | cbradney | 3476 | <location filename="" line="136965632"/> |
1135 | cbradney | 3477 | <source> dpi</source> |
3478 | <translation type="obsolete"> dpi</translation> |
||
3479 | </message> |
||
3480 | <message> |
||
9729 | cbradney | 3481 | <location filename="" line="136965632"/> |
1135 | cbradney | 3482 | <source> pt </source> |
3483 | <translation type="obsolete"> pt </translation> |
||
3484 | </message> |
||
3485 | <message> |
||
9729 | cbradney | 3486 | <location filename="" line="136965632"/> |
1135 | cbradney | 3487 | <source> sec</source> |
3488 | <translation type="obsolete">sek</translation> |
||
3489 | </message> |
||
3490 | <message> |
||
9729 | cbradney | 3491 | <location filename="" line="136965632"/> |
1135 | cbradney | 3492 | <source>&Add</source> |
3493 | <translation type="obsolete">&Shto</translation> |
||
3494 | </message> |
||
3495 | <message> |
||
9729 | cbradney | 3496 | <location filename="" line="136965632"/> |
1135 | cbradney | 3497 | <source>&New</source> |
3498 | <translation type="obsolete">&I Ri</translation> |
||
3499 | </message> |
||
3500 | <message> |
||
9729 | cbradney | 3501 | <location filename="" line="136965632"/> |
1135 | cbradney | 3502 | <source>&X1:</source> |
3503 | <translation type="obsolete">&X1:</translation> |
||
3504 | </message> |
||
3505 | <message> |
||
9729 | cbradney | 3506 | <location filename="" line="136965632"/> |
1135 | cbradney | 3507 | <source>&Y2:</source> |
3508 | <translation type="obsolete">&Y2:</translation> |
||
3509 | </message> |
||
3510 | <message> |
||
9729 | cbradney | 3511 | <location filename="" line="136965632"/> |
1135 | cbradney | 3512 | <source>&Yes</source> |
3513 | <translation type="obsolete">&Po</translation> |
||
3514 | </message> |
||
3515 | <message> |
||
9729 | cbradney | 3516 | <location filename="" line="136965632"/> |
1135 | cbradney | 3517 | <source>100%</source> |
3518 | <translation type="obsolete">100%</translation> |
||
3519 | </message> |
||
3520 | <message> |
||
9729 | cbradney | 3521 | <location filename="" line="136965632"/> |
1135 | cbradney | 3522 | <source>200%</source> |
3523 | <translation type="obsolete">200%</translation> |
||
3524 | </message> |
||
3525 | <message> |
||
9729 | cbradney | 3526 | <location filename="" line="136965632"/> |
1135 | cbradney | 3527 | <source>A&dd</source> |
3528 | <translation type="obsolete">Sht&o</translation> |
||
3529 | </message> |
||
3530 | <message> |
||
9729 | cbradney | 3531 | <location filename="" line="136965632"/> |
1135 | cbradney | 3532 | <source>CMYK</source> |
3533 | <translation type="obsolete">CMYK</translation> |
||
3534 | </message> |
||
3535 | <message> |
||
9729 | cbradney | 3536 | <location filename="" line="136965632"/> |
1135 | cbradney | 3537 | <source>Alt+</source> |
3538 | <translation type="obsolete">Alt+</translation> |
||
3539 | </message> |
||
3540 | <message> |
||
9729 | cbradney | 3541 | <location filename="" line="136965632"/> |
1135 | cbradney | 3542 | <source>Back</source> |
3543 | <translation type="obsolete">Prapa</translation> |
||
3544 | </message> |
||
3545 | <message> |
||
9729 | cbradney | 3546 | <location filename="" line="136965632"/> |
1135 | cbradney | 3547 | <source>Copy</source> |
3548 | <translation type="obsolete">Kopjo</translation> |
||
3549 | </message> |
||
3550 | <message> |
||
9729 | cbradney | 3551 | <location filename="" line="136965632"/> |
1135 | cbradney | 3552 | <source>Cu&t</source> |
3553 | <translation type="obsolete">P&rij</translation> |
||
3554 | </message> |
||
3555 | <message> |
||
9729 | cbradney | 3556 | <location filename="" line="136965632"/> |
1135 | cbradney | 3557 | <source>Date</source> |
3558 | <translation type="obsolete">Datë</translation> |
||
3559 | </message> |
||
3560 | <message> |
||
9729 | cbradney | 3561 | <location filename="" line="136965632"/> |
1135 | cbradney | 3562 | <source>Ctrl</source> |
3563 | <translation type="obsolete">Ctrl</translation> |
||
3564 | </message> |
||
3565 | <message> |
||
9729 | cbradney | 3566 | <location filename="" line="136965632"/> |
1135 | cbradney | 3567 | <source>Cyan</source> |
3568 | <translation type="obsolete">Cyan</translation> |
||
3569 | </message> |
||
3570 | <message> |
||
9729 | cbradney | 3571 | <location filename="" line="136965632"/> |
1135 | cbradney | 3572 | <source>File</source> |
3573 | <translation type="obsolete">Kartelë</translation> |
||
3574 | </message> |
||
3575 | <message> |
||
9729 | cbradney | 3576 | <location filename="" line="136965632"/> |
1135 | cbradney | 3577 | <source>Font</source> |
3578 | <translation type="obsolete">Gërma</translation> |
||
3579 | </message> |
||
3580 | <message> |
||
9729 | cbradney | 3581 | <location filename="" line="136965632"/> |
1135 | cbradney | 3582 | <source>Goto</source> |
3583 | <translation type="obsolete">Shko te</translation> |
||
3584 | </message> |
||
3585 | <message> |
||
9729 | cbradney | 3586 | <location filename="" line="136965632"/> |
1135 | cbradney | 3587 | <source>High</source> |
3588 | <translation type="obsolete">Lartë</translation> |
||
3589 | </message> |
||
3590 | <message> |
||
9729 | cbradney | 3591 | <location filename="" line="136965632"/> |
1135 | cbradney | 3592 | <source>JPEG</source> |
3593 | <translation type="obsolete">JPEG</translation> |
||
3594 | </message> |
||
3595 | <message> |
||
9729 | cbradney | 3596 | <location filename="" line="136965632"/> |
1135 | cbradney | 3597 | <source>Icon</source> |
3598 | <translation type="obsolete">Ikonë</translation> |
||
3599 | </message> |
||
3600 | <message> |
||
9729 | cbradney | 3601 | <location filename="" line="136965632"/> |
1135 | cbradney | 3602 | <source>O&ff</source> |
3603 | <translation type="obsolete">O&ff</translation> |
||
3604 | </message> |
||
3605 | <message> |
||
9729 | cbradney | 3606 | <location filename="" line="136965632"/> |
1135 | cbradney | 3607 | <source>Left</source> |
3608 | <translation type="obsolete">Majtas</translation> |
||
3609 | </message> |
||
3610 | <message> |
||
9729 | cbradney | 3611 | <location filename="" line="136965632"/> |
1135 | cbradney | 3612 | <source>Line</source> |
3613 | <translation type="obsolete">Rresht</translation> |
||
3614 | </message> |
||
3615 | <message> |
||
9729 | cbradney | 3616 | <location filename="" line="136965632"/> |
1135 | cbradney | 3617 | <source>Link</source> |
3618 | <translation type="obsolete">Lidhje</translation> |
||
3619 | </message> |
||
3620 | <message> |
||
9729 | cbradney | 3621 | <location filename="" line="136965632"/> |
1135 | cbradney | 3622 | <source>Lock</source> |
3623 | <translation type="obsolete">Kyç</translation> |
||
3624 | </message> |
||
3625 | <message> |
||
9729 | cbradney | 3626 | <location filename="" line="136965632"/> |
1135 | cbradney | 3627 | <source>Name</source> |
3628 | <translation type="obsolete">Emër</translation> |
||
3629 | </message> |
||
3630 | <message> |
||
9729 | cbradney | 3631 | <location filename="" line="136965632"/> |
1135 | cbradney | 3632 | <source>None</source> |
3633 | <translation type="obsolete">Asnjë</translation> |
||
3634 | </message> |
||
3635 | <message> |
||
9729 | cbradney | 3636 | <location filename="" line="136965632"/> |
1135 | cbradney | 3637 | <source>Open</source> |
3638 | <translation type="obsolete">Hap</translation> |
||
3639 | </message> |
||
3640 | <message> |
||
9729 | cbradney | 3641 | <location filename="" line="136965632"/> |
1135 | cbradney | 3642 | <source>Page</source> |
3643 | <translation type="obsolete">Faqe</translation> |
||
3644 | </message> |
||
3645 | <message> |
||
9729 | cbradney | 3646 | <location filename="" line="136965632"/> |
1135 | cbradney | 3647 | <source>Path</source> |
3648 | <translation type="obsolete">Shteg</translation> |
||
3649 | </message> |
||
3650 | <message> |
||
9729 | cbradney | 3651 | <location filename="" line="136965632"/> |
1135 | cbradney | 3652 | <source>Quit</source> |
3653 | <translation type="obsolete">Lër</translation> |
||
3654 | </message> |
||
3655 | <message> |
||
9729 | cbradney | 3656 | <location filename="" line="136965632"/> |
1135 | cbradney | 3657 | <source>Save</source> |
3658 | <translation type="obsolete">Ruaj</translation> |
||
3659 | </message> |
||
3660 | <message> |
||
9729 | cbradney | 3661 | <location filename="" line="136965632"/> |
1135 | cbradney | 3662 | <source>Size</source> |
3663 | <translation type="obsolete">Madhësi</translation> |
||
3664 | </message> |
||
3665 | <message> |
||
9729 | cbradney | 3666 | <location filename="" line="136965632"/> |
1135 | cbradney | 3667 | <source>Skip</source> |
3668 | <translation type="obsolete">Anashkalo</translation> |
||
3669 | </message> |
||
3670 | <message> |
||
9729 | cbradney | 3671 | <location filename="" line="136965632"/> |
1135 | cbradney | 3672 | <source>Exiting now</source> |
3673 | <translation type="obsolete">Po dal tani</translation> |
||
3674 | </message> |
||
3675 | <message> |
||
9729 | cbradney | 3676 | <location filename="" line="136965632"/> |
1135 | cbradney | 3677 | <source>Sort</source> |
3678 | <translation type="obsolete">Rendit</translation> |
||
3679 | </message> |
||
3680 | <message> |
||
9729 | cbradney | 3681 | <location filename="" line="136965632"/> |
1135 | cbradney | 3682 | <source>X&2:</source> |
3683 | <translation type="obsolete">X&2:</translation> |
||
3684 | </message> |
||
3685 | <message> |
||
9729 | cbradney | 3686 | <location filename="" line="136965632"/> |
1135 | cbradney | 3687 | <source>Star</source> |
3688 | <translation type="obsolete">Yllkë</translation> |
||
3689 | </message> |
||
3690 | <message> |
||
9729 | cbradney | 3691 | <location filename="" line="136965632"/> |
1135 | cbradney | 3692 | <source>Text</source> |
3693 | <translation type="obsolete">Tekst</translation> |
||
3694 | </message> |
||
3695 | <message> |
||
9729 | cbradney | 3696 | <location filename="" line="136965632"/> |
1135 | cbradney | 3697 | <source>Thin</source> |
3698 | <translation type="obsolete">E ngushtë</translation> |
||
3699 | </message> |
||
3700 | <message> |
||
9729 | cbradney | 3701 | <location filename="" line="136965632"/> |
1135 | cbradney | 3702 | <source>Time</source> |
3703 | <translation type="obsolete">Kohë</translation> |
||
3704 | </message> |
||
3705 | <message> |
||
9729 | cbradney | 3706 | <location filename="" line="136965632"/> |
1135 | cbradney | 3707 | <source>Y&1:</source> |
3708 | <translation type="obsolete">Y&1:</translation> |
||
3709 | </message> |
||
3710 | <message> |
||
9729 | cbradney | 3711 | <location filename="" line="136965632"/> |
1135 | cbradney | 3712 | <source>Type</source> |
3713 | <translation type="obsolete">Tip</translation> |
||
3714 | </message> |
||
3715 | <message> |
||
9729 | cbradney | 3716 | <location filename="" line="136965632"/> |
1135 | cbradney | 3717 | <source>Undo</source> |
3718 | <translation type="obsolete">Zhbëj</translation> |
||
3719 | </message> |
||
3720 | <message> |
||
9729 | cbradney | 3721 | <location filename="" line="136965632"/> |
1135 | cbradney | 3722 | <source>Wide</source> |
3723 | <translation type="obsolete">E gjerë</translation> |
||
3724 | </message> |
||
3725 | <message> |
||
9729 | cbradney | 3726 | <location filename="" line="136965632"/> |
1135 | cbradney | 3727 | <source>html</source> |
3728 | <translation type="obsolete">html</translation> |
||
3729 | </message> |
||
3730 | <message> |
||
9729 | cbradney | 3731 | <location filename="" line="136965632"/> |
1135 | cbradney | 3732 | <source>Align Right</source> |
3733 | <translation type="obsolete">Vendos Djathtas</translation> |
||
3734 | </message> |
||
3735 | <message> |
||
9729 | cbradney | 3736 | <location filename="" line="136965632"/> |
1135 | cbradney | 3737 | <source>Close the current Document</source> |
3738 | <translation type="obsolete">Mbyll Dokumentin e çastit</translation> |
||
3739 | </message> |
||
3740 | <message> |
||
9729 | cbradney | 3741 | <location filename="" line="136965632"/> |
1135 | cbradney | 3742 | <source>Strike Out</source> |
3743 | <translation type="obsolete">Line out</translation> |
||
3744 | </message> |
||
3745 | <message> |
||
9729 | cbradney | 3746 | <location filename="" line="136965632"/> |
1135 | cbradney | 3747 | <source>Moves to your Document Directory. |
3748 | This can be set in the Preferences.</source> |
||
3749 | <translation type="obsolete">Shkon te Drejtori juaja Dokumentesh. |
||
3750 | Kjo mund të rregullohet te Parapëlqimet.</translation> |
||
3751 | </message> |
||
3752 | <message> |
||
9729 | cbradney | 3753 | <location filename="" line="136965632"/> |
1135 | cbradney | 3754 | <source>A&lternative Printer Command</source> |
3755 | <translation type="obsolete">Urdhër &Alternativ Shtypësi</translation> |
||
3756 | </message> |
||
3757 | <message> |
||
9729 | cbradney | 3758 | <location filename="" line="136965632"/> |
1135 | cbradney | 3759 | <source>Strikethru</source> |
3760 | <translation type="obsolete">Hequrvije</translation> |
||
3761 | </message> |
||
3762 | <message> |
||
9729 | cbradney | 3763 | <location filename="" line="136965632"/> |
1135 | cbradney | 3764 | <source>&Get Field Names</source> |
3765 | <translation type="obsolete">&Merr Emra Fushe</translation> |
||
3766 | </message> |
||
3767 | <message> |
||
9729 | cbradney | 3768 | <location filename="" line="136965632"/> |
1135 | cbradney | 3769 | <source>Align Center</source> |
3770 | <translation type="obsolete">Vendos në Qendër</translation> |
||
3771 | </message> |
||
3772 | <message> |
||
9729 | cbradney | 3773 | <location filename="" line="136965632"/> |
1135 | cbradney | 3774 | <source>Print Preview</source> |
3775 | <translation type="obsolete">Paraparje Shtypjeje</translation> |
||
3776 | </message> |
||
3777 | <message> |
||
9729 | cbradney | 3778 | <location filename="" line="136965632"/> |
1135 | cbradney | 3779 | <source>Build-ID:</source> |
3780 | <translation type="obsolete">Build-ID:</translation> |
||
3781 | </message> |
||
3782 | <message> |
||
9729 | cbradney | 3783 | <location filename="" line="136965632"/> |
1135 | cbradney | 3784 | <source>F&ill Color:</source> |
1525 | cbradney | 3785 | <translation type="obsolete">Ngjyrë M&bushje:</translation> |
1135 | cbradney | 3786 | </message> |
3787 | <message> |
||
9729 | cbradney | 3788 | <location filename="" line="136965632"/> |
1135 | cbradney | 3789 | <source>&100%</source> |
3790 | <translation type="obsolete">&100%</translation> |
||
3791 | </message> |
||
3792 | <message> |
||
9729 | cbradney | 3793 | <location filename="" line="136965632"/> |
1135 | cbradney | 3794 | <source>&Copy</source> |
3795 | <translation type="obsolete">&Kopjo</translation> |
||
3796 | </message> |
||
3797 | <message> |
||
9729 | cbradney | 3798 | <location filename="" line="136965632"/> |
1135 | cbradney | 3799 | <source>&Edit</source> |
3800 | <translation type="obsolete">&Përpunoni</translation> |
||
3801 | </message> |
||
3802 | <message> |
||
9729 | cbradney | 3803 | <location filename="" line="136965632"/> |
1135 | cbradney | 3804 | <source>&File</source> |
3805 | <translation type="obsolete">&Kartelë</translation> |
||
3806 | </message> |
||
3807 | <message> |
||
9729 | cbradney | 3808 | <location filename="" line="136965632"/> |
1135 | cbradney | 3809 | <source>&Font</source> |
3810 | <translation type="obsolete">&Gërma</translation> |
||
3811 | </message> |
||
3812 | <message> |
||
9729 | cbradney | 3813 | <location filename="" line="136965632"/> |
1135 | cbradney | 3814 | <source>&Gap:</source> |
3815 | <translation type="obsolete">&Boshllëk</translation> |
||
3816 | </message> |
||
3817 | <message> |
||
9729 | cbradney | 3818 | <location filename="" line="136965632"/> |
1135 | cbradney | 3819 | <source>&Help</source> |
3820 | <translation type="obsolete">&Ndihmë</translation> |
||
3821 | </message> |
||
3822 | <message> |
||
9729 | cbradney | 3823 | <location filename="" line="136965632"/> |
1135 | cbradney | 3824 | <source>&Item</source> |
3825 | <translation type="obsolete">&Objekt</translation> |
||
3826 | </message> |
||
3827 | <message> |
||
9729 | cbradney | 3828 | <location filename="" line="136965632"/> |
1135 | cbradney | 3829 | <source>&Left</source> |
3830 | <translation type="obsolete">&Majtas</translation> |
||
3831 | </message> |
||
3832 | <message> |
||
9729 | cbradney | 3833 | <location filename="" line="136965632"/> |
1135 | cbradney | 3834 | <source>&Line</source> |
3835 | <translation type="obsolete">&Rresht</translation> |
||
3836 | </message> |
||
3837 | <message> |
||
9729 | cbradney | 3838 | <location filename="" line="136965632"/> |
1135 | cbradney | 3839 | <source>&Lock</source> |
3840 | <translation type="obsolete">&Blloko</translation> |
||
3841 | </message> |
||
3842 | <message> |
||
9729 | cbradney | 3843 | <location filename="" line="136965632"/> |
1135 | cbradney | 3844 | <source>&Move</source> |
3845 | <translation type="obsolete">&Zhvendos</translation> |
||
3846 | </message> |
||
3847 | <message> |
||
9729 | cbradney | 3848 | <location filename="" line="136965632"/> |
1135 | cbradney | 3849 | <source>&Open</source> |
3850 | <translation type="obsolete">&Hap</translation> |
||
3851 | </message> |
||
3852 | <message> |
||
9729 | cbradney | 3853 | <location filename="" line="136965632"/> |
1135 | cbradney | 3854 | <source>&Page</source> |
3855 | <translation type="obsolete">&Faqe</translation> |
||
3856 | </message> |
||
3857 | <message> |
||
9729 | cbradney | 3858 | <location filename="" line="136965632"/> |
1135 | cbradney | 3859 | <source>&Red:</source> |
3860 | <translation type="obsolete">E &kuqe:</translation> |
||
3861 | </message> |
||
3862 | <message> |
||
9729 | cbradney | 3863 | <location filename="" line="136965632"/> |
1135 | cbradney | 3864 | <source>&Redo</source> |
3865 | <translation type="obsolete">&Ribëj</translation> |
||
3866 | </message> |
||
3867 | <message> |
||
9729 | cbradney | 3868 | <location filename="" line="136965632"/> |
1135 | cbradney | 3869 | <source>&Quit</source> |
3870 | <translation type="obsolete">&Lër</translation> |
||
3871 | </message> |
||
3872 | <message> |
||
9729 | cbradney | 3873 | <location filename="" line="136965632"/> |
1135 | cbradney | 3874 | <source>&Save</source> |
3875 | <translation type="obsolete">&Ruaj</translation> |
||
3876 | </message> |
||
3877 | <message> |
||
9729 | cbradney | 3878 | <location filename="" line="136965632"/> |
1135 | cbradney | 3879 | <source>&Size</source> |
3880 | <translation type="obsolete">&Madhësi</translation> |
||
3881 | </message> |
||
3882 | <message> |
||
9729 | cbradney | 3883 | <location filename="" line="136965632"/> |
1135 | cbradney | 3884 | <source>&Text</source> |
3885 | <translation type="obsolete">&Tekst</translation> |
||
3886 | </message> |
||
3887 | <message> |
||
9729 | cbradney | 3888 | <location filename="" line="136965632"/> |
1135 | cbradney | 3889 | <source>&Top:</source> |
3890 | <translation type="obsolete">&Krye:</translation> |
||
3891 | </message> |
||
3892 | <message> |
||
9729 | cbradney | 3893 | <location filename="" line="136965632"/> |
1135 | cbradney | 3894 | <source>&Undo</source> |
3895 | <translation type="obsolete">&Zhbëj</translation> |
||
3896 | </message> |
||
3897 | <message> |
||
9729 | cbradney | 3898 | <location filename="" line="136965632"/> |
1135 | cbradney | 3899 | <source>&View</source> |
3900 | <translation type="obsolete">&Parje</translation> |
||
3901 | </message> |
||
3902 | <message> |
||
9729 | cbradney | 3903 | <location filename="" line="136965632"/> |
1135 | cbradney | 3904 | <source>Styles...</source> |
3905 | <translation type="obsolete">Stile...</translation> |
||
3906 | </message> |
||
3907 | <message> |
||
9729 | cbradney | 3908 | <location filename="" line="136965632"/> |
1135 | cbradney | 3909 | <source>(TAB)</source> |
3910 | <translation type="obsolete">(TAB)</translation> |
||
3911 | </message> |
||
3912 | <message> |
||
9729 | cbradney | 3913 | <location filename="" line="136965632"/> |
1135 | cbradney | 3914 | <source>&Compress File</source> |
3915 | <translation type="obsolete">&Ngjesh Kartelë:</translation> |
||
3916 | </message> |
||
3917 | <message> |
||
9729 | cbradney | 3918 | <location filename="" line="136965632"/> |
1135 | cbradney | 3919 | <source>Prepend Currency Symbol</source> |
3920 | <translation type="obsolete">Përdor Simbol Paraje</translation> |
||
3921 | </message> |
||
3922 | <message> |
||
9729 | cbradney | 3923 | <location filename="" line="136965632"/> |
1135 | cbradney | 3924 | <source>Annotation P&roperties</source> |
3925 | <translation type="obsolete">V&eti Shënimesh...</translation> |
||
3926 | </message> |
||
3927 | <message> |
||
9729 | cbradney | 3928 | <location filename="" line="136965632"/> |
1135 | cbradney | 3929 | <source>Images:</source> |
3930 | <translation type="obsolete">Pamje:</translation> |
||
3931 | </message> |
||
3932 | <message> |
||
9729 | cbradney | 3933 | <location filename="" line="136965632"/> |
1135 | cbradney | 3934 | <source>Submit Form</source> |
3935 | <translation type="obsolete">Parashtro Formular</translation> |
||
3936 | </message> |
||
3937 | <message> |
||
9729 | cbradney | 3938 | <location filename="" line="136965632"/> |
1135 | cbradney | 3939 | <source>Distribute/Align...</source> |
3940 | <translation type="obsolete">Shpërnda/Drejto...</translation> |
||
3941 | </message> |
||
3942 | <message> |
||
9729 | cbradney | 3943 | <location filename="" line="136965632"/> |
1135 | cbradney | 3944 | <source>&Update Text Frame and Exit</source> |
3945 | <translation type="obsolete">&Përditëso Kornizë Teksti dhe Dil</translation> |
||
3946 | </message> |
||
3947 | <message> |
||
9729 | cbradney | 3948 | <location filename="" line="136965632"/> |
1135 | cbradney | 3949 | <source>Limit of</source> |
1525 | cbradney | 3950 | <translation type="obsolete">Kufi i </translation> |
1135 | cbradney | 3951 | </message> |
3952 | <message> |
||
9729 | cbradney | 3953 | <location filename="" line="136965632"/> |
1135 | cbradney | 3954 | <source>Update Text Frame and Exit</source> |
3955 | <translation type="obsolete">Përditëso Kornizë Teksti dhe Dil</translation> |
||
3956 | </message> |
||
3957 | <message> |
||
9729 | cbradney | 3958 | <location filename="" line="136965632"/> |
1135 | cbradney | 3959 | <source>Align</source> |
3960 | <translation type="obsolete">Drejto</translation> |
||
3961 | </message> |
||
3962 | <message> |
||
9729 | cbradney | 3963 | <location filename="" line="136965632"/> |
1135 | cbradney | 3964 | <source>Alt+C</source> |
3965 | <translation type="obsolete">Alt+C</translation> |
||
3966 | </message> |
||
3967 | <message> |
||
9729 | cbradney | 3968 | <location filename="" line="136965632"/> |
1135 | cbradney | 3969 | <source>Alt+O</source> |
3970 | <translation type="obsolete">Alt+O</translation> |
||
3971 | </message> |
||
3972 | <message> |
||
9729 | cbradney | 3973 | <location filename="" line="136965632"/> |
1135 | cbradney | 3974 | <source>Apply</source> |
3975 | <translation type="obsolete">Zbato</translation> |
||
3976 | </message> |
||
3977 | <message> |
||
9729 | cbradney | 3978 | <location filename="" line="136965632"/> |
1135 | cbradney | 3979 | <source>Black</source> |
3980 | <translation type="obsolete">Zi</translation> |
||
3981 | </message> |
||
3982 | <message> |
||
9729 | cbradney | 3983 | <location filename="" line="136965632"/> |
1135 | cbradney | 3984 | <source>Block</source> |
3985 | <translation type="obsolete">Blloko</translation> |
||
3986 | </message> |
||
3987 | <message> |
||
9729 | cbradney | 3988 | <location filename="" line="136965632"/> |
1135 | cbradney | 3989 | <source>Cards</source> |
3990 | <translation type="obsolete">Kartolina</translation> |
||
3991 | </message> |
||
3992 | <message> |
||
9729 | cbradney | 3993 | <location filename="" line="136965632"/> |
1135 | cbradney | 3994 | <source>Check</source> |
3995 | <translation type="obsolete">Kontrollo</translation> |
||
3996 | </message> |
||
3997 | <message> |
||
9729 | cbradney | 3998 | <location filename="" line="136965632"/> |
1135 | cbradney | 3999 | <source>Clear</source> |
4000 | <translation type="obsolete">Fshij</translation> |
||
4001 | </message> |
||
4002 | <message> |
||
9729 | cbradney | 4003 | <location filename="" line="136965632"/> |
1135 | cbradney | 4004 | <source>Close</source> |
4005 | <translation type="obsolete">Mbyll</translation> |
||
4006 | </message> |
||
4007 | <message> |
||
9729 | cbradney | 4008 | <location filename="" line="136965632"/> |
1135 | cbradney | 4009 | <source>Color</source> |
4010 | <translation type="obsolete">Ngjyrë</translation> |
||
4011 | </message> |
||
4012 | <message> |
||
9729 | cbradney | 4013 | <location filename="" line="136965632"/> |
1135 | cbradney | 4014 | <source>Comma</source> |
4015 | <translation type="obsolete">Presje</translation> |
||
4016 | </message> |
||
4017 | <message> |
||
9729 | cbradney | 4018 | <location filename="" line="136965632"/> |
1135 | cbradney | 4019 | <source>Cross</source> |
1525 | cbradney | 4020 | <translation type="obsolete">Kryq</translation> |
1135 | cbradney | 4021 | </message> |
4022 | <message> |
||
9729 | cbradney | 4023 | <location filename="" line="136965632"/> |
1135 | cbradney | 4024 | <source>Ctrl+</source> |
4025 | <translation type="obsolete">Ctrl+</translation> |
||
4026 | </message> |
||
4027 | <message> |
||
9729 | cbradney | 4028 | <location filename="" line="136965632"/> |
1135 | cbradney | 4029 | <source>Czech</source> |
4030 | <translation type="obsolete">Çeke</translation> |
||
4031 | </message> |
||
4032 | <message> |
||
9729 | cbradney | 4033 | <location filename="" line="136965632"/> |
1135 | cbradney | 4034 | <source>Dutch</source> |
4035 | <translation type="obsolete">Holandeze:</translation> |
||
4036 | </message> |
||
4037 | <message> |
||
9729 | cbradney | 4038 | <location filename="" line="136965632"/> |
1135 | cbradney | 4039 | <source>Email</source> |
4040 | <translation type="obsolete">Email</translation> |
||
4041 | </message> |
||
4042 | <message> |
||
9729 | cbradney | 4043 | <location filename="" line="136965632"/> |
1135 | cbradney | 4044 | <source>Error</source> |
4045 | <translation type="obsolete">Gabim</translation> |
||
4046 | </message> |
||
4047 | <message> |
||
9729 | cbradney | 4048 | <location filename="" line="136965632"/> |
1135 | cbradney | 4049 | <source>On Focus</source> |
4050 | <translation type="obsolete">Në Fokus</translation> |
||
4051 | </message> |
||
4052 | <message> |
||
9729 | cbradney | 4053 | <location filename="" line="136965632"/> |
1135 | cbradney | 4054 | <source>Folds</source> |
4055 | <translation type="obsolete">Fletëpalosje</translation> |
||
4056 | </message> |
||
4057 | <message> |
||
9729 | cbradney | 4058 | <location filename="" line="136965632"/> |
1135 | cbradney | 4059 | <source>Font:</source> |
4060 | <translation type="obsolete">Gërma:</translation> |
||
4061 | </message> |
||
4062 | <message> |
||
9729 | cbradney | 4063 | <location filename="" line="136965632"/> |
1135 | cbradney | 4064 | <source>Go To</source> |
4065 | <translation type="obsolete">Shko Tek</translation> |
||
4066 | </message> |
||
4067 | <message> |
||
9729 | cbradney | 4068 | <location filename="" line="136965632"/> |
1135 | cbradney | 4069 | <source>Greek</source> |
4070 | <translation type="obsolete">Greke</translation> |
||
4071 | </message> |
||
4072 | <message> |
||
9729 | cbradney | 4073 | <location filename="" line="136965632"/> |
1135 | cbradney | 4074 | <source>Group</source> |
4075 | <translation type="obsolete">Grup</translation> |
||
4076 | </message> |
||
4077 | <message> |
||
9729 | cbradney | 4078 | <location filename="" line="136965632"/> |
1135 | cbradney | 4079 | <source>Icons</source> |
4080 | <translation type="obsolete">Ikona</translation> |
||
4081 | </message> |
||
4082 | <message> |
||
9729 | cbradney | 4083 | <location filename="" line="136965632"/> |
1135 | cbradney | 4084 | <source>In&fo</source> |
4085 | <translation type="obsolete">Të dhë&na</translation> |
||
4086 | </message> |
||
4087 | <message> |
||
9729 | cbradney | 4088 | <location filename="" line="136965632"/> |
1135 | cbradney | 4089 | <source>Image</source> |
4090 | <translation type="obsolete">Pamje</translation> |
||
4091 | </message> |
||
4092 | <message> |
||
9729 | cbradney | 4093 | <location filename="" line="136965632"/> |
1135 | cbradney | 4094 | <source>Move to back</source> |
4095 | <translation type="obsolete">Zhvendos prapa</translation> |
||
4096 | </message> |
||
4097 | <message> |
||
9729 | cbradney | 4098 | <location filename="" line="136965632"/> |
1135 | cbradney | 4099 | <source>Minimize</source> |
4100 | <translation type="obsolete">Minimizo</translation> |
||
4101 | </message> |
||
4102 | <message> |
||
9729 | cbradney | 4103 | <location filename="" line="136965632"/> |
1135 | cbradney | 4104 | <source>Irish</source> |
4105 | <translation type="obsolete">Irlandeze</translation> |
||
4106 | </message> |
||
4107 | <message> |
||
9729 | cbradney | 4108 | <location filename="" line="136965632"/> |
1135 | cbradney | 4109 | <source>R&ound |
4110 | Corners:</source> |
||
4111 | <translation type="obsolete">K&ulme |
||
4112 | të Rrumbullakët:</translation> |
||
4113 | </message> |
||
4114 | <message> |
||
9729 | cbradney | 4115 | <location filename="" line="136965632"/> |
1135 | cbradney | 4116 | <source>&Update Picture</source> |
4117 | <translation type="obsolete">&Përditëso Pamje</translation> |
||
4118 | </message> |
||
4119 | <message> |
||
9729 | cbradney | 4120 | <location filename="" line="136965632"/> |
1135 | cbradney | 4121 | <source>Layer</source> |
4122 | <translation type="obsolete">Shtresë</translation> |
||
4123 | </message> |
||
4124 | <message> |
||
9729 | cbradney | 4125 | <location filename="" line="136965632"/> |
1135 | cbradney | 4126 | <source>Legal</source> |
4127 | <translation type="obsolete">Legal</translation> |
||
4128 | </message> |
||
4129 | <message> |
||
9729 | cbradney | 4130 | <location filename="" line="136965632"/> |
1135 | cbradney | 4131 | <source>Level</source> |
4132 | <translation type="obsolete">Nivel</translation> |
||
4133 | </message> |
||
4134 | <message> |
||
9729 | cbradney | 4135 | <location filename="" line="136965632"/> |
1135 | cbradney | 4136 | <source>Lower</source> |
4137 | <translation type="obsolete">I poshtëm</translation> |
||
4138 | </message> |
||
4139 | <message> |
||
9729 | cbradney | 4140 | <location filename="" line="136965632"/> |
1135 | cbradney | 4141 | <source>Menus</source> |
4142 | <translation type="obsolete">Menu</translation> |
||
4143 | </message> |
||
4144 | <message> |
||
9729 | cbradney | 4145 | <location filename="" line="136965632"/> |
1135 | cbradney | 4146 | <source>Misc.</source> |
4147 | <translation type="obsolete">Të ndryshme</translation> |
||
4148 | </message> |
||
4149 | <message> |
||
9729 | cbradney | 4150 | <location filename="" line="136965632"/> |
1135 | cbradney | 4151 | <source>Name:</source> |
4152 | <translation type="obsolete">Emër:</translation> |
||
4153 | </message> |
||
4154 | <message> |
||
9729 | cbradney | 4155 | <location filename="" line="136965632"/> |
1135 | cbradney | 4156 | <source>Even Pages only</source> |
4157 | <translation type="obsolete">Vetëm Faqe Çift</translation> |
||
4158 | </message> |
||
4159 | <message> |
||
9729 | cbradney | 4160 | <location filename="" line="136965632"/> |
1135 | cbradney | 4161 | <source>Never</source> |
4162 | <translation type="obsolete">Kurrë</translation> |
||
4163 | </message> |
||
4164 | <message> |
||
9729 | cbradney | 4165 | <location filename="" line="136965632"/> |
1135 | cbradney | 4166 | <source>Finnish:</source> |
4167 | <translation type="obsolete">Finlandeze:</translation> |
||
4168 | </message> |
||
4169 | <message> |
||
9729 | cbradney | 4170 | <location filename="" line="136965632"/> |
1135 | cbradney | 4171 | <source>Nodes</source> |
4172 | <translation type="obsolete">Nyje</translation> |
||
4173 | </message> |
||
4174 | <message> |
||
9729 | cbradney | 4175 | <location filename="" line="136965632"/> |
1135 | cbradney | 4176 | <source>Page </source> |
4177 | <translation type="obsolete">Faqe</translation> |
||
4178 | </message> |
||
4179 | <message> |
||
9729 | cbradney | 4180 | <location filename="" line="136965632"/> |
1135 | cbradney | 4181 | <source>Page:</source> |
4182 | <translation type="obsolete">Faqe:</translation> |
||
4183 | </message> |
||
4184 | <message> |
||
9729 | cbradney | 4185 | <location filename="" line="136965632"/> |
1135 | cbradney | 4186 | <source>Paste</source> |
4187 | <translation type="obsolete">Ngjit</translation> |
||