Rev 13027 | 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"> |
||
6769 | cbradney | 3 | <context> |
12918 | cbradney | 4 | <name></name> |
5 | <message> |
||
6 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="21"/> |
||
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> |
||
12 | <translation type="unfinished">getColorNames() -> zerrenda |
||
13 | |||
14 | Dokumentuan definitutako kolore guztien izenen zerrenda itzultzen du. |
||
15 | Dokumenturik ez balego irekita, dokumentu lehenetsiaren koloreen zerrenda |
||
16 | itzuliko luke.</translation> |
||
17 | </message> |
||
18 | <message> |
||
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("izena") -> tupla |
||
30 | |||
31 | Uneko dokumentuko "izena" kolorearen lau kolore-osagaien (C, M, H, B) tupla |
||
32 | itzultzen du. Dokumenturik ez balego irekita, dokumentu lehenetsiaren |
||
33 | koloreetatik izendatutako kolorearen balioa itzultzen du. |
||
34 | |||
35 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
36 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
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">getColorAsRGB("izena") -> tupla |
||
52 | |||
53 | Uneko dokumentuko "izena" kolorearen (GBU kolore-gunera bihurtuta) hiru kolore |
||
54 | osagaien tupla (G, B, U) itzultzen du. Ez badago dokumenturik irekita, |
||
55 | dokumentu lehenetsiko "izena" kolorearen balioa itzuliko du. |
||
56 | |||
57 | NotFoundError abiaraziko da ezin bada kolorearen izena aurkitu. |
||
58 | ValueError abiaraziko da kolorearen izena baliogabea bada. |
||
59 | </translation> |
||
60 | </message> |
||
61 | <message> |
||
62 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="64"/> |
||
63 | <source>changeColor("name", c, m, y, k) |
||
64 | |||
65 | Changes the color "name" to the specified CMYK value. The color value is |
||
66 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
67 | Color components should be in the range from 0 to 255. |
||
68 | |||
69 | May raise NotFoundError if the named color wasn't found. |
||
70 | May raise ValueError if an invalid color name is specified. |
||
71 | </source> |
||
72 | <translation type="unfinished">changeColor("izena", c, m, h, b) |
||
73 | |||
74 | "izena" kolorea CMHB balioarekin aldatzen du. Kolorearen balioa lau osagaien |
||
75 | bidez zehazten da (c=cyana, m=magenta, h=horia, b=beltza). Kolorearen |
||
76 | osagaiek 0 eta 255 arteko balio izan dezakete. |
||
77 | |||
78 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
79 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
80 | </translation> |
||
81 | </message> |
||
82 | <message> |
||
83 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="77"/> |
||
84 | <source>defineColor("name", c, m, y, k) |
||
85 | |||
86 | Defines a new color "name". The color Value is defined via four components: |
||
87 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
88 | the range from 0 to 255. |
||
89 | |||
90 | May raise ValueError if an invalid color name is specified. |
||
91 | </source> |
||
92 | <translation type="unfinished"></translation> |
||
93 | </message> |
||
94 | <message> |
||
95 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="94"/> |
||
96 | <source>deleteColor("name", "replace") |
||
97 | |||
98 | Deletes the color "name". Every occurence of that color is replaced by the |
||
99 | color "replace". If not specified, "replace" defaults to the color |
||
100 | "None" - transparent. |
||
101 | |||
102 | deleteColor works on the default document colors if there is no document open. |
||
103 | In that case, "replace", if specified, has no effect. |
||
104 | |||
105 | May raise NotFoundError if a named color wasn't found. |
||
106 | May raise ValueError if an invalid color name is specified. |
||
107 | </source> |
||
108 | <translation type="unfinished">deleteColor("izena", "ordezkoa") |
||
109 | |||
110 | "izena" kolorea ezabatzen du. Izendatutako kolorearen agerpen bakoitza |
||
111 | "ordezkoa"rekin ordeztuko da. Ez bada zehazten, "ordezkoa" lehenetsi egingo da |
||
112 | "Bat ere ez" kolorearekin (gardena). |
||
113 | |||
114 | Dokumenturik ez balego irekita deleteColor dokumentu lehenetsiko koloreetan |
||
115 | funtzionatuko luke. Kasu horretan, "ordezkoa" zehaztuko balitz, ez luke eraginik |
||
116 | izango. |
||
117 | |||
118 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
119 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada.</translation> |
||
120 | </message> |
||
121 | <message> |
||
122 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="106"/> |
||
123 | <source>replaceColor("name", "replace") |
||
124 | |||
125 | Every occurence of the color "name" is replaced by the color "replace". |
||
126 | |||
127 | May raise NotFoundError if a named color wasn't found. |
||
128 | May raise ValueError if an invalid color name is specified. |
||
129 | </source> |
||
130 | <translation type="unfinished">replaceColor("izena", "ordezkoa") |
||
131 | |||
132 | "izena" kolorearen agerpen bakoitza "ordezkoa" kolorearekin ordetuko da. |
||
133 | |||
134 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
135 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
136 | |||
137 | </translation> |
||
138 | </message> |
||
139 | <message> |
||
140 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="22"/> |
||
141 | <source>newDocDialog() -> bool |
||
142 | |||
143 | Displays the "New Document" dialog box. Creates a new document if the user |
||
144 | accepts the settings. Does not create a document if the user presses cancel. |
||
145 | Returns true if a new document was created. |
||
146 | </source> |
||
147 | <translation type="unfinished">newDocDialog() -> boolearra |
||
148 | |||
149 | "Dokumentu berria" elkarrizketa-koadroa bistaratzen du. Dokumentu berria sortuko du erabiltzaileak ezarpenak onartuz gero. Ez du dokumenturik sortuko |
||
150 | erabiltzaileak bertan behera uzteko botoia sakatzen badu. EGIA itzultzen du |
||
151 | dokumentu bat sortzean.</translation> |
||
152 | </message> |
||
153 | <message> |
||
154 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="46"/> |
||
155 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
||
156 | |||
157 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
158 | with the filter string "filter". A default filename or file path can also |
||
159 | supplied, leave this string empty when you don't want to use it. A value of |
||
160 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
161 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
162 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
163 | the dialog shows and returns only directories. The default for all of the |
||
164 | optional parameters is False. |
||
165 | |||
166 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
167 | For example 'Images (*.png *.xpm *.jpg)'. |
||
168 | |||
169 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
170 | |||
171 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
172 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
173 | </source> |
||
174 | <translation type="unfinished"></translation> |
||
175 | </message> |
||
176 | <message> |
||
177 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="88"/> |
||
178 | <source>messageBox("caption", "message", |
||
179 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
180 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
181 | |||
182 | Displays a message box with the title "caption", the message "message", and |
||
183 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
184 | button, OK, is displayed. Only the caption and message arguments are required, |
||
185 | though setting an icon and appropriate button(s) is strongly |
||
186 | recommended. The message text may contain simple HTML-like markup. |
||
187 | |||
188 | Returns the number of the button the user pressed. Button numbers start |
||
189 | at 1. |
||
190 | |||
191 | For the icon and the button parameters there are predefined constants available |
||
192 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
193 | ICON_* constants defined in the module. There are also two extra constants that |
||
194 | can be binary-ORed with button constants: |
||
195 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
196 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
197 | |||
198 | Usage examples: |
||
199 | result = messageBox('Script failed', |
||
200 | 'This script only works when you have a text frame selected.', |
||
201 | ICON_ERROR) |
||
202 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
203 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
204 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
205 | |||
206 | Defined button and icon constants: |
||
207 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
208 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
209 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
210 | </source> |
||
211 | <translation type="unfinished">messageBox("epigrafea", "mezua", |
||
212 | ikonoa=ICON_NONE, botoi1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
213 | botoi2=BUTTON_NONE, botoi3=BUTTON_NONE) -> osokoa |
||
214 | |||
215 | "epigrafea" titulua duen elkarrizketa-koadroa bistaratzen du, "mezua" |
||
216 | mezuarekin eta "ikonoa" ikonoarekin, eta gehienez 3 botoirekin. Lehenetsi gisa |
||
217 | ez da ikonorik erabiltzen eta botoi bakarrak, ADOS, bistaratzen da. Epigrafea eta |
||
218 | mezua soilik dira beharrezkoak, nahiz eta dagokion ikonoa eta botoia(k) |
||
219 | ezartzea gomendatzen den. Mezuaren testuak HTML motako etiketa |
||
220 | sinpleak eduki ditzake. |
||
221 | |||
222 | Erabiltzaileak sakatutako botoiaren zenbakia itzultzen du. Botoien zenbakiak |
||
223 | 1 balioarekin hasten dira. |
||
224 | |||
225 | Ikonoaren eta botoien parametroak aurrez definitutako konstante erabilgarriak |
||
226 | dira, Qt dokumentazioan agertzen diren izenekin. Hauek BUTTON_* eta ICON_* |
||
227 | konstanteak dira, moduloan definitutakoak. Beste bi konstante gehigarri daude |
||
228 | bit mailan OR (EDO) eragiketa egin dezaketena: |
||
229 | |||
230 | BUTTONOPT_DEFAULT Sartu tekla sakatuz botoi hau sakatzen da. |
||
231 | BUTTONOPT_ESCAPE Ihes tekla sakatuz botoi hau sakatzen da. |
||
232 | |||
233 | Adibideak: |
||
234 | emaitza = messageBox('Script-ak huts egin du', |
||
235 | 'Script honek testu-markoa hautatuta duzunean soilik funtzionatzen du.', |
||
236 | ICON_ERROR) |
||
237 | emaitza = messageBox('Zoratu gara!', 'Zerbait oker dabil! <i>Mozkorren bat agian?</i>', |
||
238 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
239 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
240 | |||
241 | Definitutako botoien eta ikonoen konstanteak: |
||
242 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
243 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
244 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
245 | </translation> |
||
246 | </message> |
||
247 | <message> |
||
248 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="101"/> |
||
249 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
250 | |||
251 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
252 | Parameters: window title, text in the window and optional 'default' value. |
||
253 | |||
254 | Example: valueDialog('title', 'text in the window', 'optional') |
||
255 | </source> |
||
256 | <translation type="unfinished">valueDialog(epigrafea, mezua [,balioLehenetsia]) -> katea |
||
257 | |||
258 | 'Eskatu esaldia' motako elkarrizketa-koadroa bistaratzen du, eta |
||
259 | bere balioa itzultzen du kate gisa. |
||
260 | Parametroak: leihoaren titulua, leihoko testua eta aukerazko 'lehenetsia' |
||
261 | balioa. |
||
262 | |||
263 | Adibidea: valueDialog('titulua', 'leihoko testua', 'aukerazkoa') |
||
264 | </translation> |
||
265 | </message> |
||
266 | <message> |
||
267 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="111"/> |
||
268 | <source>newStyleDialog() -> string |
||
269 | |||
270 | Shows 'Create new paragraph style' dialog. Function returns real |
||
271 | style name or None when user cancels the dialog. |
||
272 | </source> |
||
273 | <translation type="unfinished">newStyleDialog() -> katea |
||
274 | |||
275 | 'Sortu paragrafo-estilo berria' motako elkarrizketa-koadroa erakusten du. |
||
276 | Funztioak estiloaren benetako izena itzultzen du, edo None (bat ere ez) erabiltzaileak |
||
277 | elkarrizketa-koadroa bertan behera uzten duenean. |
||
278 | </translation> |
||
279 | </message> |
||
280 | <message> |
||
281 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="55"/> |
||
282 | <source>newDocument(size, margins, orientation, firstPageNumber, |
||
283 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
284 | |||
285 | Creates a new document and returns true if successful. The parameters have the |
||
286 | following meaning: |
||
287 | |||
288 | size = A tuple (width, height) describing the size of the document. You can |
||
289 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
290 | |||
291 | margins = A tuple (left, right, top, bottom) describing the document |
||
292 | margins |
||
293 | |||
294 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
295 | |||
296 | firstPageNumer = is the number of the first page in the document used for |
||
297 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
298 | numbers if you're creating a document in several parts. |
||
299 | |||
300 | unit: this value sets the measurement units used by the document. Use a |
||
301 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
302 | UNIT_PICAS, UNIT_POINTS. |
||
303 | |||
304 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
305 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
306 | PAGE_4 is 4-fold. |
||
307 | |||
308 | firstPageOrder = What is position of first page in the document. |
||
309 | Indexed from 0 (0 = first). |
||
310 | |||
311 | numPage = Number of pages to be created. |
||
312 | |||
313 | The values for width, height and the margins are expressed in the given unit |
||
314 | for the document. PAPER_* constants are expressed in points. If your document |
||
315 | is not in points, make sure to account for this. |
||
316 | |||
317 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
318 | PAGE_4, 3, 1) |
||
319 | |||
320 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
321 | </source> |
||
322 | <translation type="unfinished"></translation> |
||
323 | </message> |
||
324 | <message> |
||
325 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="96"/> |
||
326 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
327 | unit, facingPages, firstSideLeft) -> bool |
||
328 | |||
329 | WARNING: Obsolete procedure! Use newDocument instead. |
||
330 | |||
331 | Creates a new document and returns true if successful. The parameters have the |
||
332 | following meaning: |
||
333 | |||
334 | size = A tuple (width, height) describing the size of the document. You can |
||
335 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
336 | |||
337 | margins = A tuple (left, right, top, bottom) describing the document |
||
338 | margins |
||
339 | |||
340 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
341 | |||
342 | firstPageNumer = is the number of the first page in the document used for |
||
343 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
344 | numbers if you're creating a document in several parts. |
||
345 | |||
346 | unit: this value sets the measurement units used by the document. Use a |
||
347 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
348 | UNIT_PICAS, UNIT_POINTS. |
||
349 | |||
350 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
351 | |||
352 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
353 | |||
354 | The values for width, height and the margins are expressed in the given unit |
||
355 | for the document. PAPER_* constants are expressed in points. If your document |
||
356 | is not in points, make sure to account for this. |
||
357 | |||
358 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
359 | FACINGPAGES, FIRSTPAGERIGHT) |
||
360 | </source> |
||
361 | <translation type="unfinished">newDoc(tamaina, marjinak, orientazioa, lehenOrriZbkia, |
||
362 | unitatea, aurrezAurre, lehenaEzkerAldean) -> boolearra |
||
363 | |||
364 | ABISUA: funtzio zaharkitua! Erabili newDocument honen ordez. |
||
365 | |||
366 | Dokumentu berria sortzen du eta ongi burutzen bada TRUE (egia) |
||
367 | itzultzen du. Parametroak honako esanahia dute: |
||
368 | |||
369 | tamaina = tupla bat (zabalera, altuera) dokumentuaren tamaina adierazteko. |
||
370 | PAPER_<mota> izeneko konstanteak erabil ditzakezu, adib. PAPER_A3. |
||
371 | |||
372 | marjinak = tupla bat (ezkerra, eskuina, goia, behea) dokumentuaren marjinak |
||
373 | adierazteko. |
||
374 | |||
375 | orientazioa = orriaren orientazioa. Konstante erabilgarriak: PORTRAIT (bertikala), |
||
376 | LANDSCAPE (horizontala). |
||
377 | |||
378 | lehenOrriZbkia = dokumentuko aurreneko orrialdearen zenbakia ezartzen du, |
||
379 | orrialdeak zenbatzeko erabiltzen da. Arruntena 1 zenbakia erabiltzea |
||
380 | izaten den arren, hainbat zatitako dokumentua sortzean zenbaki altuagoak |
||
381 | erabiltzen dira. |
||
382 | |||
383 | unitatea = balio honek dokumentua neurtzeko erabiliko den unitatea ezartzen du. |
||
384 | Erabili aurrez definitutako konstanteak: UNIT_INCHES, UNIT_MILLIMETERS, |
||
385 | UNIT_PICAS, UNIT_POINTS. |
||
386 | |||
387 | aurrezAurre = erabili honako konstanteak orrialdeak aurrez aurre jartzeko edo ez: |
||
388 | FACINGPAGES, NOFACINGPAGES |
||
389 | |||
390 | lehenaEzkerAldean = dokumentuko aurreneko orrialdea ezkerrean kokatuko den |
||
391 | edo ez: FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
392 | |||
393 | Zabalera, altuera eta marjinen balioak dokumentuari ematen zaion unitateetan |
||
394 | adierazten dira. PAPER_* konstanteak puntuetan adierazten dira. Zure dokumentua |
||
395 | ez badago puntuetan neurtuta, hau kontutan eduki beharko duzu. |
||
396 | |||
397 | Adibidea: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
398 | FACINGPAGES, FIRSTPAGERIGHT) |
||
399 | </translation> |
||
400 | </message> |
||
401 | <message> |
||
402 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="108"/> |
||
403 | <source>closeDoc() |
||
404 | |||
405 | Closes the current document without prompting to save. |
||
406 | |||
407 | May throw NoDocOpenError if there is no document to close |
||
408 | </source> |
||
409 | <translation type="unfinished">closeDoc() |
||
410 | |||
411 | Uneko dokumentua itxi egiten du, gordetzeari buruz inolako galderarik egin gabe. |
||
412 | |||
413 | NoDocOpenError abiaraziko da dokumenturik irekita ez egonez gero. |
||
414 | </translation> |
||
415 | </message> |
||
416 | <message> |
||
417 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="117"/> |
||
418 | <source>haveDoc() -> bool |
||
419 | |||
420 | Returns true if there is a document open. |
||
421 | </source> |
||
422 | <translation type="unfinished">haveDoc() -> boolearra |
||
423 | |||
424 | TRUE (EGIA) itzultzen du dokumenturen bat irekita egonez gero. |
||
425 | </translation> |
||
426 | </message> |
||
427 | <message> |
||
428 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="128"/> |
||
429 | <source>openDoc("name") |
||
430 | |||
431 | Opens the document "name". |
||
432 | |||
433 | May raise ScribusError if the document could not be opened. |
||
434 | </source> |
||
435 | <translation type="unfinished">openDoc("izena") |
||
436 | |||
437 | "izena" dokumentua irekitzen du. |
||
438 | |||
439 | ScribusError abiaraziko da dokumentua ezin izan badu ireki. |
||
440 | </translation> |
||
441 | </message> |
||
442 | <message> |
||
443 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="141"/> |
||
444 | <source>saveDoc() |
||
445 | |||
446 | Saves the current document with its current name, returns true if successful. |
||
447 | If the document has not already been saved, this may bring up an interactive |
||
448 | save file dialog. |
||
449 | |||
450 | If the save fails, there is currently no way to tell. |
||
451 | </source> |
||
452 | <translation type="unfinished">saveDoc() |
||
453 | |||
454 | Uneko dokumentua (bere uneko izenarekin) gordetzen du, eta TRUE (EGIA) itzultzen |
||
455 | du ongi burutu bada. Dokumentua oraindik ez bada gorde, elkarrizketa-koadroa |
||
456 | bistaratuko du fitxategia gordetzeko. |
||
457 | |||
458 | Huts egiten badu gordetzean, une honetan ez dago biderik hau jakinarazteko. |
||
459 | </translation> |
||
460 | </message> |
||
461 | <message> |
||
462 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="152"/> |
||
463 | <source>saveDocAs("name") |
||
464 | |||
465 | Saves the current document under the new name "name" (which may be a full or |
||
466 | relative path). |
||
467 | |||
468 | May raise ScribusError if the save fails. |
||
469 | </source> |
||
470 | <translation type="unfinished">saveDocAs("izena") |
||
471 | |||
472 | Uneko dokumentua "izena" izen berriarekin gordetzen du (bide-izen osoa edo |
||
473 | erlatiboa izan daiteke). |
||
474 | |||
475 | ScribusError abiaraziko da huts egiten badu gordetzean. |
||
476 | </translation> |
||
477 | </message> |
||
478 | <message> |
||
479 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="162"/> |
||
480 | <source>setInfo("author", "info", "description") -> bool |
||
481 | |||
482 | Sets the document information. "Author", "Info", "Description" are |
||
483 | strings. |
||
484 | </source> |
||
485 | <translation type="unfinished">setInfo("egilea", "info", "azalpena") -> boolearra |
||
486 | |||
487 | Dokumentuaren informazioa ezartzen du. "egilea", "info" eta "azalpena" kateak |
||
488 | dira. |
||
489 | </translation> |
||
490 | </message> |
||
491 | <message> |
||
492 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="173"/> |
||
493 | <source>setMargins(lr, rr, tr, br) |
||
494 | |||
495 | Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
||
496 | margins are given in the measurement units of the document - see UNIT_<type> |
||
497 | constants. |
||
498 | </source> |
||
499 | <translation type="unfinished"></translation> |
||
500 | </message> |
||
501 | <message> |
||
502 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="185"/> |
||
503 | <source>setUnit(type) |
||
504 | |||
505 | Changes the measurement unit of the document. Possible values for "unit" are |
||
506 | defined as constants UNIT_<type>. |
||
507 | |||
508 | May raise ValueError if an invalid unit is passed. |
||
509 | </source> |
||
510 | <translation type="unfinished">setUnit(mota) |
||
511 | |||
512 | Dokumentua neurtzeko unitatea aldatzen du. Unitate motaren balio erabilgarriak |
||
513 | UNIT_<mota> konstante gisa definituta daude. |
||
514 | |||
515 | ValueError abiaraziko da baliogabeko unitatea ematen bada. |
||
516 | </translation> |
||
517 | </message> |
||
518 | <message> |
||
519 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="196"/> |
||
520 | <source>getUnit() -> integer (Scribus unit constant) |
||
521 | |||
522 | Returns the measurement units of the document. The returned value will be one |
||
523 | of the UNIT_* constants: |
||
524 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
525 | </source> |
||
526 | <translation type="unfinished">getUnit() -> osokoa (Scribus-eko unitate konstantea) |
||
527 | |||
528 | Dokumentua neurtzeko ezarritako unitatea itzultzen du. Itzulitako balioa |
||
529 | UNIT_* konstanteetariko bat izan daiteke: |
||
530 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
531 | </translation> |
||
532 | </message> |
||
533 | <message> |
||
534 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="206"/> |
||
535 | <source>loadStylesFromFile("filename") |
||
536 | |||
537 | Loads paragraph styles from the Scribus document at "filename" into the |
||
538 | current document. |
||
539 | </source> |
||
540 | <translation type="unfinished">loadStylesFromFile("fitxategi-izena") |
||
541 | |||
542 | Paragrafo-estiloak kargatzen ditu uneko dokumentuan |
||
543 | Scribus dokumentik ("fitxategi-izena") . |
||
544 | </translation> |
||
545 | </message> |
||
546 | <message> |
||
547 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="218"/> |
||
548 | <source>setDocType(facingPages, firstPageLeft) |
||
549 | |||
550 | Sets the document type. To get facing pages set the first parameter to |
||
551 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
552 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
553 | a right page use FIRSTPAGERIGHT. |
||
554 | </source> |
||
555 | <translation type="unfinished">setDocType(aurrezAurreOrri, lehenOrriaEzker) |
||
556 | |||
557 | Dokumentu-mota ezartzen du. Ezarri lehenbiziko parametroa |
||
558 | FACINGPAGES konstantearekin orrialdeak aurrez aurre jartzeko, |
||
559 | bestela, orrialdeak aurrez aurre ez egoteko erabili NOFACINGPAGES. |
||
560 | Aurreneko orrialdea ezkerraldean egoteko ezarri bigarren paraemetroa |
||
561 | FIRSTPAGELEFT balioarekin, bestela erabili FIRSTPAGERIGHT aurrenekoa |
||
562 | orrialdea eskuinean egoteko. |
||
563 | </translation> |
||
564 | </message> |
||
565 | <message> |
||
566 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="226"/> |
||
567 | <source>closeMasterPage() |
||
568 | |||
569 | Closes the currently active master page, if any, and returns editing |
||
570 | to normal. Begin editing with editMasterPage(). |
||
571 | </source> |
||
572 | <translation type="unfinished">closeMasterPage() |
||
573 | |||
574 | Unean aktibo dagoen orri maisua ixten du, eta edizioa bere egoera |
||
575 | normalera itzultzen du. Hasi editatzen editMasterPage() funtzioarekin. |
||
576 | </translation> |
||
577 | </message> |
||
578 | <message> |
||
579 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="233"/> |
||
580 | <source>masterPageNames() |
||
581 | |||
582 | Returns a list of the names of all master pages in the document. |
||
583 | </source> |
||
584 | <translation type="unfinished">masterPageNames() |
||
585 | |||
586 | Dokumentuko orri maisu guztien izenen zerrenda itzultzen du. |
||
587 | </translation> |
||
588 | </message> |
||
589 | <message> |
||
590 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="241"/> |
||
591 | <source>editMasterPage(pageName) |
||
592 | |||
593 | Enables master page editing and opens the named master page |
||
594 | for editing. Finish editing with closeMasterPage(). |
||
595 | </source> |
||
596 | <translation type="unfinished">editMasterPage(orriIzena) |
||
597 | |||
598 | Orri maisua editatzea gaitzen du, eta izendatutako orri maisua |
||
599 | irekitzen du editatzeko. Amaitu editatzea closeMasterPage() funtzioarekin. |
||
600 | </translation> |
||
601 | </message> |
||
602 | <message> |
||
603 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="249"/> |
||
604 | <source>createMasterPage(pageName) |
||
605 | |||
606 | Creates a new master page named pageName and opens it for |
||
607 | editing. |
||
608 | </source> |
||
609 | <translation type="unfinished">createMasterPage(orriIzena) |
||
610 | |||
611 | Orri maisua berria sortzen, 'orriIzen' izenekoa, eta ireki egiten du |
||
612 | editatzeko. |
||
613 | </translation> |
||
614 | </message> |
||
615 | <message> |
||
616 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="256"/> |
||
617 | <source>deleteMasterPage(pageName) |
||
618 | |||
619 | Delete the named master page. |
||
620 | </source> |
||
621 | <translation type="unfinished">deleteMasterPage(orriIzena) |
||
622 | |||
623 | Izendatutako orri maisua ezabatzen du. |
||
624 | </translation> |
||
625 | </message> |
||
626 | <message> |
||
627 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="21"/> |
||
628 | <source>getFillColor(["name"]) -> string |
||
629 | |||
630 | Returns the name of the fill color of the object "name". |
||
631 | If "name" is not given the currently selected item is used. |
||
632 | </source> |
||
633 | <translation type="unfinished">getFillColor(["izena"]) -> katea |
||
634 | |||
635 | "izena" objektuaren kolore-betegarriaren izena itzultzen du. |
||
636 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
637 | </message> |
||
638 | <message> |
||
639 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="31"/> |
||
640 | <source>getFillTransparency(["name"]) -> float |
||
641 | |||
642 | Returns the fill transparency of the object "name". If "name" |
||
643 | is not given the currently selected Item is used. |
||
644 | </source> |
||
645 | <translation type="unfinished"></translation> |
||
646 | </message> |
||
647 | <message> |
||
648 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="41"/> |
||
649 | <source>getFillBlendmode(["name"]) -> integer |
||
650 | |||
651 | Returns the fill blendmode of the object "name". If "name" |
||
652 | is not given the currently selected Item is used. |
||
653 | </source> |
||
654 | <translation type="unfinished"></translation> |
||
655 | </message> |
||
656 | <message> |
||
657 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="51"/> |
||
658 | <source>getLineColor(["name"]) -> string |
||
659 | |||
660 | Returns the name of the line color of the object "name". |
||
661 | If "name" is not given the currently selected item is used. |
||
662 | </source> |
||
663 | <translation type="unfinished">getLineColor(["izena"]) -> katea |
||
664 | |||
665 | "izena" objektuaren marraren kolorearen izena itzultzen du. |
||
666 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
667 | </translation> |
||
668 | </message> |
||
669 | <message> |
||
670 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="61"/> |
||
671 | <source>getLineTransparency(["name"]) -> float |
||
672 | |||
673 | Returns the line transparency of the object "name". If "name" |
||
674 | is not given the currently selected Item is used. |
||
675 | </source> |
||
676 | <translation type="unfinished"></translation> |
||
677 | </message> |
||
678 | <message> |
||
679 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="71"/> |
||
680 | <source>getLineBlendmode(["name"]) -> integer |
||
681 | |||
682 | Returns the line blendmode of the object "name". If "name" |
||
683 | is not given the currently selected Item is used. |
||
684 | </source> |
||
685 | <translation type="unfinished"></translation> |
||
686 | </message> |
||
687 | <message> |
||
688 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="81"/> |
||
689 | <source>getLineWidth(["name"]) -> integer |
||
690 | |||
691 | Returns the line width of the object "name". If "name" |
||
692 | is not given the currently selected Item is used. |
||
693 | </source> |
||
694 | <translation type="unfinished">getLineWidth(["izena"]) -> osokoa |
||
695 | |||
696 | "izena" objektuaren marraren zabalera itzultzen du. |
||
697 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
698 | </translation> |
||
699 | </message> |
||
700 | <message> |
||
701 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="91"/> |
||
702 | <source>getLineShade(["name"]) -> integer |
||
703 | |||
704 | Returns the shading value of the line color of the object "name". |
||
705 | If "name" is not given the currently selected item is used. |
||
706 | </source> |
||
707 | <translation type="unfinished">getLineShade(["izena"]) -> osokoa |
||
708 | |||
709 | "izena" objektuaren marraren kolorearen itzalduraren balioa itzultzen du. |
||
710 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
711 | </translation> |
||
712 | </message> |
||
713 | <message> |
||
714 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="102"/> |
||
715 | <source>getLineJoin(["name"]) -> integer (see constants) |
||
716 | |||
717 | Returns the line join style of the object "name". If "name" is not given |
||
718 | the currently selected item is used. The join types are: |
||
719 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
720 | </source> |
||
721 | <translation type="unfinished"></translation> |
||
722 | </message> |
||
723 | <message> |
||
724 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="113"/> |
||
725 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
726 | |||
727 | Returns the line cap style of the object "name". If "name" is not given the |
||
728 | currently selected item is used. The cap types are: |
||
729 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
730 | </source> |
||
731 | <translation type="unfinished">getLineEnd(["izena"]) -> osokoa (ikus konstanteak) |
||
732 | |||
733 | "izena" objektuaren marraren txano-estiloa itzultzen du. |
||
734 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
735 | Txanoen motak honakoak dira: |
||
736 | CAP_FLAT (laua), CAP_ROUND (biribila), CAP_SQUARE (karratua) |
||
737 | </translation> |
||
738 | </message> |
||
739 | <message> |
||
740 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="124"/> |
||
741 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
742 | |||
743 | Returns the line style of the object "name". If "name" is not given the |
||
744 | currently selected item is used. Line style constants are: |
||
745 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
746 | </source> |
||
747 | <translation type="unfinished">getLineStyle(["izena"]) -> osokoa (ikus konstanteak) |
||
748 | |||
749 | "izena" objektuaren marraren estiloa itzultzen du. |
||
750 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
751 | Marra-estiloen konstanteak honakoak dira: |
||
752 | LINE_DASH (marra), LINE_DASHDOT (marra puntu), |
||
753 | LINE_DASHDOTDOT (marra puntu puntu), LINE_DOT (puntu), LINE_SOLID (betea) |
||
754 | </translation> |
||
755 | </message> |
||
756 | <message> |
||
757 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="134"/> |
||
758 | <source>getFillShade(["name"]) -> integer |
||
759 | |||
760 | Returns the shading value of the fill color of the object "name". |
||
761 | If "name" is not given the currently selected item is used. |
||
762 | </source> |
||
763 | <translation type="unfinished">getFillShade(["izena"]) -> osokoa |
||
764 | |||
765 | "izena" objektuaren kolore betegarriaren itzalduraren balioa itzultzen du. |
||
766 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
767 | </translation> |
||
768 | </message> |
||
769 | <message> |
||
770 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="145"/> |
||
771 | <source>getCornerRadius(["name"]) -> integer |
||
772 | |||
773 | Returns the corner radius of the object "name". The radius is |
||
774 | expressed in points. If "name" is not given the currently |
||
775 | selected item is used. |
||
776 | </source> |
||
777 | <translation type="unfinished"></translation> |
||
778 | </message> |
||
779 | <message> |
||
780 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="155"/> |
||
781 | <source>getImageScale(["name"]) -> (x,y) |
||
782 | |||
783 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
784 | "name". If "name" is not given the currently selected item is used. |
||
785 | </source> |
||
786 | <translation type="unfinished">getImageScale(["izena"]) -> (x,y) |
||
787 | |||
788 | "izena" irudi-markoaren eskalatze-balioen tupla (x,y) itzultzen du. |
||
789 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
790 | </translation> |
||
791 | </message> |
||
792 | <message> |
||
793 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="165"/> |
||
794 | <source>getImageName(["name"]) -> string |
||
795 | |||
796 | Returns the filename for the image in the image frame. If "name" is not |
||
797 | given the currently selected item is used. |
||
798 | </source> |
||
799 | <translation type="unfinished">getImageName(["izena"]) -> katea |
||
800 | |||
801 | "izena" irudi-markoaren irudiari dagokion fitxategi-izena itzultzen du. |
||
802 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
803 | </translation> |
||
804 | </message> |
||
805 | <message> |
||
806 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="177"/> |
||
807 | <source>getPosition(["name"]) -> (x,y) |
||
808 | |||
809 | Returns a (x, y) tuple with the position of the object "name". |
||
810 | If "name" is not given the currently selected item is used. |
||
811 | The position is expressed in the actual measurement unit of the document |
||
812 | - see UNIT_<type> for reference. |
||
813 | </source> |
||
814 | <translation type="unfinished"></translation> |
||
815 | </message> |
||
816 | <message> |
||
817 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="189"/> |
||
818 | <source>getSize(["name"]) -> (width,height) |
||
819 | |||
820 | Returns a (width, height) tuple with the size of the object "name". |
||
821 | If "name" is not given the currently selected item is used. The size is |
||
822 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
823 | for reference. |
||
824 | </source> |
||
825 | <translation type="unfinished">getSize(["izena"]) -> (zabalera,altuera) |
||
826 | |||
827 | "izena" objektuaren tamainaren tupla (zabalera, altuera) itzultzen du. |
||
828 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
829 | Dokumentua neurtzeko uneko unitatea erabiltzen du tamainak |
||
830 | (ikus UNIT_<mota> xehetasunerako). |
||
831 | </translation> |
||
832 | </message> |
||
833 | <message> |
||
834 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="200"/> |
||
835 | <source>getRotation(["name"]) -> integer |
||
836 | |||
837 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
838 | and clockwise is positive. If "name" is not given the currently selected item |
||
839 | is used. |
||
840 | </source> |
||
841 | <translation type="unfinished">getRotation(["izena"]) -> osokoa |
||
842 | |||
843 | "izena" objektuaren biraketa itzultzen du. Balioa gradutan adierazten da, |
||
844 | eta erlojuaren norantza positiboa da. "izena" ez bada ematen, unean |
||
845 | hautatutako elementua erabiliko da. |
||
846 | </translation> |
||
847 | </message> |
||
848 | <message> |
||
849 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="209"/> |
||
850 | <source>getAllObjects() -> list |
||
851 | |||
852 | Returns a list containing the names of all objects on the current page. |
||
853 | </source> |
||
854 | <translation type="unfinished">getAllObjects() -> zerrenda |
||
855 | |||
856 | Zerrenda itzultzen du, uneko orrialdeko objektu guztien izenen edukiarekin. |
||
857 | </translation> |
||
858 | </message> |
||
859 | <message> |
||
860 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="83"/> |
||
861 | <source>getPropertyCType(object, property, includesuper=True) |
||
862 | |||
863 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
864 | for details of arguments. |
||
865 | |||
866 | If `includesuper' is true, search inherited properties too. |
||
867 | </source> |
||
868 | <translation type="unfinished">getPropertyCType(objektua, propietatea, txertatuSuper=TRUE) |
||
869 | |||
870 | 'objektua'ren 'propietatearen' C motako izena itzultzen du. |
||
871 | Ikus getProperty() parametroen xehetasunerako. |
||
872 | |||
873 | 'txertatuSuper' TRUE (EGIA) bada, heredatutako propietateetan ere bilatzen du. |
||
874 | </translation> |
||
875 | </message> |
||
876 | <message> |
||
877 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="101"/> |
||
878 | <source>getPropertyNames(object, includesuper=True) |
||
879 | |||
880 | Return a list of property names supported by `object'. |
||
881 | If `includesuper' is true, return properties supported |
||
882 | by parent classes as well. |
||
883 | </source> |
||
884 | <translation type="unfinished">getPropertyNames(objektua, txertatuSuper=TRUE) |
||
885 | |||
886 | 'objektua'k onartutako propietateen izenen zerrenda itzultzen du. |
||
887 | 'txertatuSuper' TRUE (EGIA) bada, klasearen gurasoek onartutako |
||
888 | propietateak ere itzultzen ditu. |
||
889 | </translation> |
||
890 | </message> |
||
891 | <message> |
||
892 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="135"/> |
||
893 | <source>getProperty(object, property) |
||
894 | |||
895 | Return the value of the property `property' of the passed `object'. |
||
896 | |||
897 | The `object' argument may be a string, in which case the named PageItem |
||
898 | is searched for. It may also be a PyCObject, which may point to any |
||
899 | C++ QObject instance. |
||
900 | |||
901 | The `property' argument must be a string, and is the name of the property |
||
902 | to look up on `object'. |
||
903 | |||
904 | The return value varies depending on the type of the property. |
||
905 | </source> |
||
906 | <translation type="unfinished">getProperty(objektua, propietatea) |
||
907 | |||
908 | 'objektua'ren 'propietatea'ren balioa itzultzen du. |
||
909 | |||
910 | 'objektua' parametroa katea izan daiteke, egoera horretan PageItem |
||
911 | izenekoaren bilaketa egiten da. PyCObject ere izan daiteke, |
||
912 | C++ QObject-eko intantzia batera zuzendu dezake. |
||
913 | |||
914 | 'propietatea' parametroa kate bat izan behar du, eta 'objektua'n bilatuko den |
||
915 | propietatearen izen da. |
||
916 | |||
917 | Itzultzen den balioa propietate-motaren arabera dago. |
||
918 | </translation> |
||
919 | </message> |
||
920 | <message> |
||
921 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="165"/> |
||
922 | <source>setProperty(object, property, value) |
||
923 | |||
924 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
925 | compatible with the type of `property', an exception is raised. An exception may |
||
926 | also be raised if the underlying setter fails. |
||
927 | |||
928 | See getProperty() for more information. |
||
929 | </source> |
||
930 | <translation type="unfinished">setProperty(objektua, propietatea, balioa) |
||
931 | |||
932 | 'objektua'ren 'propietatea' ezartzen du 'balioa'rekin. Balioa ezin bada |
||
933 | 'propietatea'k darabilen motaren bateragarri batera bihurtu, salbuespena |
||
934 | abiaraziko da. Salbuespena ere abiaraziko da azpimarratzeko ezarpenak |
||
935 | huts egiten badu. |
||
936 | |||
937 | Ikus getProperty() xehetasun gehiagorako. |
||
938 | </translation> |
||
939 | </message> |
||
940 | <message> |
||
941 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="23"/> |
||
942 | <source>moveObject(dx, dy [, "name"]) |
||
943 | |||
944 | Moves the object "name" by dx and dy relative to its current position. The |
||
945 | distances are expressed in the current measurement unit of the document (see |
||
946 | UNIT constants). If "name" is not given the currently selected item is used. |
||
947 | If the object "name" belongs to a group, the whole group is moved. |
||
948 | </source> |
||
949 | <translation type="unfinished">moveObject(dx, dy [, "izena"]) |
||
950 | |||
951 | "izena" objektua desplazatzen du dx eta dy balioekin uneko posiziotik. Dokumentuan |
||
952 | uneko neurtzeko unitateetan adierazten dira distantziak (ikus UNIT konstanteak). |
||
953 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
954 | "izena" objektua talde batekoa bada, talde osoa desplazatuko da. |
||
955 | </translation> |
||
956 | </message> |
||
957 | <message> |
||
958 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="35"/> |
||
959 | <source>moveObjectAbs(x, y [, "name"]) |
||
960 | |||
961 | Moves the object "name" to a new location. The coordinates are expressed in |
||
962 | the current measurement unit of the document (see UNIT constants). If "name" |
||
963 | is not given the currently selected item is used. If the object "name" |
||
964 | belongs to a group, the whole group is moved. |
||
965 | </source> |
||
966 | <translation type="unfinished">moveObjectAbs(x, y [, "izena"]) |
||
967 | |||
968 | "izena" objektua lekuz aldatzen du. Dokumentua neurtzeko uneko unitatea erabiltzen |
||
969 | du koordenatuak (ikus UNIT konstanteak). |
||
970 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
971 | "izena" objektua talde bateko kidea bada, talde osoa aldatuko da lekuz. |
||
972 | </translation> |
||
973 | </message> |
||
974 | <message> |
||
975 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="48"/> |
||
976 | <source>rotateObject(rot [, "name"]) |
||
977 | |||
978 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
979 | rotated by the vertex that is currently selected as the rotation point - by |
||
980 | default, the top left vertex at zero rotation. Positive values mean counter |
||
981 | clockwise rotation when the default rotation point is used. If "name" is not |
||
982 | given the currently selected item is used. |
||
983 | </source> |
||
984 | <translation type="unfinished"></translation> |
||
985 | </message> |
||
986 | <message> |
||
987 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="59"/> |
||
988 | <source>rotateObjectAbs(rot [, "name"]) |
||
989 | |||
990 | Sets the rotation of the object "name" to "rot". Positive values |
||
991 | mean counter clockwise rotation. If "name" is not given the currently |
||
992 | selected item is used. |
||
993 | </source> |
||
994 | <translation type="unfinished"></translation> |
||
995 | </message> |
||
996 | <message> |
||
997 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="69"/> |
||
998 | <source>sizeObject(width, height [, "name"]) |
||
999 | |||
1000 | Resizes the object "name" to the given width and height. If "name" |
||
1001 | is not given the currently selected item is used. |
||
1002 | </source> |
||
1003 | <translation type="unfinished">sizeObject(zabalera, altuera [, "izena"]) |
||
1004 | |||
1005 | "izena" objektua tamainaz aldatzen du emandako zabalera eta altuerarekin. |
||
1006 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
1007 | </translation> |
||
1008 | </message> |
||
1009 | <message> |
||
1010 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="80"/> |
||
1011 | <source>getSelectedObject([nr]) -> string |
||
1012 | |||
1013 | Returns the name of the selected object. "nr" if given indicates the number |
||
1014 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1015 | second selected Object and so on. |
||
1016 | </source> |
||
1017 | <translation type="unfinished">getSelectedObject([kop]) -> katea |
||
1018 | |||
1019 | Hautatutako objektuaren izena itzultzen du. "kop" balioa ematen bada, |
||
1020 | hautatutako objektu-kopurua adierazten du. 0 balioak hautatutako aurreneko |
||
1021 | objektua adierazten du, 1 balioak hautatutako bigarren objektua, e.a. |
||
1022 | </translation> |
||
1023 | </message> |
||
1024 | <message> |
||
1025 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="89"/> |
||
1026 | <source>selectionCount() -> integer |
||
1027 | |||
1028 | Returns the number of selected objects. |
||
1029 | </source> |
||
1030 | <translation type="unfinished">selectionCount() -> osokoa |
||
1031 | |||
1032 | Hautatutako objektu-kopurua itzultzen du. |
||
1033 | </translation> |
||
1034 | </message> |
||
1035 | <message> |
||
1036 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="98"/> |
||
1037 | <source>selectObject("name") |
||
1038 | |||
1039 | Selects the object with the given "name". |
||
1040 | </source> |
||
1041 | <translation type="unfinished">selectObject("izena") |
||
1042 | |||
1043 | Emandako "izena" objektua hautatzen du. |
||
1044 | </translation> |
||
1045 | </message> |
||
1046 | <message> |
||
1047 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="107"/> |
||
1048 | <source>deselectAll() |
||
1049 | |||
1050 | Deselects all objects in the whole document. |
||
1051 | </source> |
||
1052 | <translation type="unfinished">deselectAll() |
||
1053 | |||
1054 | Dokumentu osoko objektu guztiak desautatzen ditu. |
||
1055 | </translation> |
||
1056 | </message> |
||
1057 | <message> |
||
1058 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="118"/> |
||
1059 | <source>groupObjects(list) |
||
1060 | |||
1061 | Groups the objects named in "list" together. "list" must contain the names |
||
1062 | of the objects to be grouped. If "list" is not given the currently selected |
||
1063 | items are used. |
||
1064 | </source> |
||
1065 | <translation type="unfinished">groupObjects(zerrenda) |
||
1066 | |||
1067 | "zerrenda"n agertzen diren objektu guztiak elkartzen ditu. Taldean elkartzea |
||
1068 | nahi diren objektuen izenak eduki behar ditu "zerrenda"k. Zerrendarik ez bada |
||
1069 | ematen, unean hautatutako elementuak erabiliko dira. |
||
1070 | </translation> |
||
1071 | </message> |
||
1072 | <message> |
||
1073 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="126"/> |
||
1074 | <source>unGroupObjects("name") |
||
1075 | |||
1076 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
1077 | <translation type="unfinished">unGroupObjects("izena") |
||
1078 | |||
1079 | "izena" objektua kide den taldea apurtzen du. Ez bada "izena" ematen, |
||
1080 | unean hautatutako elementua erabiliko da.</translation> |
||
1081 | </message> |
||
1082 | <message> |
||
1083 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="141"/> |
||
1084 | <source>scaleGroup(factor [,"name"]) |
||
1085 | |||
1086 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1087 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1088 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1089 | to 150 % of its original size. The value for "factor" must be greater than |
||
1090 | 0. If "name" is not given the currently selected item is used. |
||
1091 | |||
1092 | May raise ValueError if an invalid scale factor is passed. |
||
1093 | </source> |
||
1094 | <translation type="unfinished">scaleGroup(faktorea [,"izena"]) |
||
1095 | |||
1096 | "izena" objektuaren taldea eskalatzen du. 1 baino handiagoak diren |
||
1097 | faktoreek taldea handitzen dute, txikiagoak direnek taldea txikiagotzen |
||
1098 | dute. Adib: 0.5 balioko faktore batek jatorrizko tamainaren %50era eskalatzen |
||
1099 | du taldea; 1.5 balioak berriz taldea %150 handiagotzen du. "faktorea" eremuko |
||
1100 | balioa 0 baino handiagoa izan behar du. Ez bada "izena" ematen |
||
1101 | unean hautatutako elementua erabiliko da. |
||
1102 | |||
1103 | ValueError abiaraziko da faktore baliogabea ematen bada eskalatzeko. |
||
1104 | </translation> |
||
1105 | </message> |
||
1106 | <message> |
||
1107 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="153"/> |
||
1108 | <source>loadImage("filename" [, "name"]) |
||
1109 | |||
1110 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1111 | not given the currently selected item is used. |
||
1112 | |||
1113 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1114 | </source> |
||
1115 | <translation type="unfinished">loadImage("fitxategi-izena" [, "izena"]) |
||
1116 | |||
1117 | "fitxategi-izena" irudia kargatzen du "izena" irudi-markoan. |
||
1118 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
1119 | |||
1120 | WrongFrameTypeError abiaraziko da helburuko markoa ez bada irudi-marko bat. |
||
1121 | </translation> |
||
1122 | </message> |
||
1123 | <message> |
||
1124 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="166"/> |
||
1125 | <source>scaleImage(x, y [, "name"]) |
||
1126 | |||
1127 | Sets the scaling factors of the picture in the image frame "name". |
||
1128 | If "name" is not given the currently selected item is used. A number of 1 |
||
1129 | means 100 %. |
||
1130 | |||
1131 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1132 | </source> |
||
13279 | cbradney | 1133 | <translation type="obsolete">scaleImage(x, y [, "izena"]) |
12918 | cbradney | 1134 | |
1135 | "izena" irudi-markoko irudia eskalatzeko faktorea ezartzen du. |
||
1136 | Ez bada "izena" ematen, unean hautatutako elementua erabiliko da. 1 zenbakiak |
||
1137 | %100 adierazten du. |
||
1138 | |||
1139 | WrongFrameTypeError abiaraziko da helburuko markoa ez bada irudi-marko bat. |
||
1140 | </translation> |
||
1141 | </message> |
||
1142 | <message> |
||
13279 | cbradney | 1143 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="191"/> |
12918 | cbradney | 1144 | <source>lockObject(["name"]) -> bool |
1145 | |||
1146 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
1147 | If "name" is not given the currently selected item is used. Returns true |
||
1148 | if locked. |
||
1149 | </source> |
||
1150 | <translation type="unfinished">lockObject(["izena"]) -> boolearra |
||
1151 | |||
1152 | "izena" objektua blokeatzen du desblokeatuta egonez gero, edo |
||
1153 | desblokeatu egiten du blokeatuta egonez gero. Ez bada "izena" emanten, |
||
1154 | unean hautatutako elementua erabiliko da. TRUE (EGIA) itzultzen du |
||
1155 | blokeatzen badu. |
||
1156 | </translation> |
||
1157 | </message> |
||
1158 | <message> |
||
13279 | cbradney | 1159 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="201"/> |
12918 | cbradney | 1160 | <source>isLocked(["name"]) -> bool |
1161 | |||
1162 | Returns true if is the object "name" locked. If "name" is not given the |
||
1163 | currently selected item is used. |
||
1164 | </source> |
||
1165 | <translation type="unfinished">isLocked(["izena"]) -> boolearra |
||
1166 | |||
1167 | TRUE (EGIA) itzultzen du "izena" objektua blokeatuta egonez gero. |
||
1168 | Ez bada "izena" ematen, unean hautatutako elementua erabiliko da. |
||
1169 | </translation> |
||
1170 | </message> |
||
1171 | <message> |
||
13279 | cbradney | 1172 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="213"/> |
12918 | cbradney | 1173 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
1174 | |||
1175 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1176 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1177 | Both `scaletoframe' and `proportional' are boolean. |
||
1178 | |||
1179 | May raise WrongFrameTypeError. |
||
1180 | </source> |
||
1181 | <translation type="unfinished">setScaleImageToFrame(eskalatuMarkora, proportzionala=None, izena=<hautapena>) |
||
1182 | |||
1183 | Hautapeneko edo zehaztutako irudi-markoan markoaren eskala ezartzen du |
||
1184 | 'eskalatuMarkora' balioarekin. 'proportzionala' zehazten bada, itxura eskalatzeko |
||
1185 | erlazioa finkatu egingo da. 'eskalatuMarkora' eta 'proportzionala' parametroak |
||
1186 | boolearrak dira. |
||
1187 | |||
1188 | WrongFrameTypeError abiaraziko da. |
||
1189 | </translation> |
||
1190 | </message> |
||
1191 | <message> |
||
1192 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="24"/> |
||
1193 | <source>setRedraw(bool) |
||
1194 | |||
1195 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
1196 | This change will persist even after the script exits, so make sure to call |
||
1197 | setRedraw(True) in a finally: clause at the top level of your script. |
||
1198 | </source> |
||
1199 | <translation type="unfinished">setRedraw(boolearra) |
||
1200 | |||
1201 | Boolearraren balioa FALSE (FALTSUA) denean orria birmarraztea desgaitzen du, bestela |
||
1202 | (EGIA bada) berriro marraztea gaitzen du. Aldaketa hau mantendu egingo da nahiz |
||
1203 | eta script-ak irten egin, beraz ziurtatu amaitzean setRedraw(TRUE) funtzioari deitzeaz: jarri zure script-aren maila gorenean.</translation> |
||
1204 | </message> |
||
1205 | <message> |
||
1206 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="33"/> |
||
1207 | <source>getFontNames() -> list |
||
1208 | |||
1209 | Returns a list with the names of all available fonts. |
||
1210 | </source> |
||
1211 | <translation type="unfinished">getFontNames() -> zerrenda |
||
1212 | |||
1213 | Letra-tipo erabilgarri guztien izena duen zerrenda itzultzen du. |
||
1214 | </translation> |
||
1215 | </message> |
||
1216 | <message> |
||
1217 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="43"/> |
||
1218 | <source>getXFontNames() -> list of tuples |
||
1219 | |||
1220 | Returns a larger font info. It's a list of the tuples with: |
||
1221 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
1222 | </source> |
||
1223 | <translation type="unfinished">getXFontNames() -> tuplen zerrenda |
||
1224 | |||
1225 | Letra-tipo handien datuak itzultzen ditu. Tuplen zerrenda da: |
||
1226 | [ (Scribus izena, familia, benetako izena, azpimultzoa (1|0), |
||
1227 | kapsulatutako PS (1|0), letra-fitxategia), (...), ... ] |
||
1228 | </translation> |
||
1229 | </message> |
||
1230 | <message> |
||
1231 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="62"/> |
||
1232 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1233 | |||
1234 | Creates an image preview of font "name" with given text "sample" and size. |
||
1235 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1236 | image data is returned as a string. The optional "format" argument |
||
1237 | specifies the image format to generate, and supports any format allowed |
||
1238 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1239 | |||
1240 | May raise NotFoundError if the specified font can't be found. |
||
1241 | May raise ValueError if an empty sample or filename is passed. |
||
1242 | </source> |
||
1243 | <translation type="unfinished">renderFont("izena", "fitxategi-izena", "lagina", tamaina, formatua="PPM") -> boolearra |
||
1244 | |||
1245 | "izena" letra-tipoaren aurrebistako irudia sortzen du emandako "lagina" |
||
1246 | testuarekin eta tamainarekin. "fitxategi-izena" ematen bada (ez badago hutsik) |
||
1247 | irudia fitxategi-izenean gordeko da. Bestela irudiaren datua kate gisa |
||
1248 | itzuliko da. Aukerako "formatua" parametroak sortuko den irudiaren |
||
1249 | formatua zehazten du, eta QPixmap.save() funtzioak onartutako |
||
1250 | edozein formatu izan daiteke. Formatu arruntenak PPM, |
||
1251 | JPEG, PNG eta XPM dira. |
||
1252 | |||
1253 | NotFoundError abiaraziko da emandako letra-tipoa ez bada aurkitzen. |
||
1254 | ValueError abiaraziko da lagin edo fitxategi-izen hutsa ematen bada. |
||
1255 | </translation> |
||
1256 | </message> |
||
1257 | <message> |
||
1258 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="71"/> |
||
1259 | <source>getLayers() -> list |
||
1260 | |||
1261 | Returns a list with the names of all defined layers. |
||
1262 | </source> |
||
1263 | <translation type="unfinished">getLayers() -> zerrenda |
||
1264 | |||
1265 | Definitutako geruza guztien izena duen zerrenda itzultzen du. |
||
1266 | </translation> |
||
1267 | </message> |
||
1268 | <message> |
||
1269 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="83"/> |
||
1270 | <source>setActiveLayer("name") |
||
1271 | |||
1272 | Sets the active layer to the layer named "name". |
||
1273 | |||
1274 | May raise NotFoundError if the layer can't be found. |
||
1275 | May raise ValueError if the layer name isn't acceptable. |
||
1276 | </source> |
||
1277 | <translation type="unfinished">setActiveLayer("izena") |
||
1278 | |||
1279 | "izena" geruza ezartzen du geruza aktibo gisa. |
||
1280 | |||
1281 | NotFoundError abiaraziko da geruza ez bada aurkitzen. |
||
1282 | ValueError abiaraziko da geruzaren izena onarkaitza bada. |
||
1283 | </translation> |
||
1284 | </message> |
||
1285 | <message> |
||
1286 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="92"/> |
||
1287 | <source>getActiveLayer() -> string |
||
1288 | |||
1289 | Returns the name of the current active layer. |
||
1290 | </source> |
||
1291 | <translation type="unfinished">getActiveLayer() -> katea |
||
1292 | |||
1293 | Uneko geruza aktiboaren izena itzultzen du.</translation> |
||
1294 | </message> |
||
1295 | <message> |
||
1296 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="105"/> |
||
1297 | <source>sentToLayer("layer" [, "name"]) |
||
1298 | |||
1299 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1300 | If "name" is not given the currently selected item is used. |
||
1301 | |||
1302 | May raise NotFoundError if the layer can't be found. |
||
1303 | May raise ValueError if the layer name isn't acceptable. |
||
1304 | </source> |
||
1305 | <translation type="unfinished">sentToLayer("geruza" [, "izena"]) |
||
1306 | |||
1307 | "izena" objektua "geruza" geruzara eramango du. Geruzak existitu egin behar du. |
||
1308 | Ez bada "izena" ematen, unean hautatutako elementua erabiliko da. |
||
1309 | |||
1310 | NotFoundError abiaraziko da geruza ezin bada aurkitu. |
||
1311 | ValueError abiaraziko da geruzaren izena onarkaitza bada. |
||
1312 | </translation> |
||
1313 | </message> |
||
1314 | <message> |
||
1315 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="118"/> |
||
1316 | <source>setLayerVisible("layer", visible) |
||
1317 | |||
1318 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1319 | the layer is invisible. |
||
1320 | |||
1321 | May raise NotFoundError if the layer can't be found. |
||
1322 | May raise ValueError if the layer name isn't acceptable. |
||
1323 | </source> |
||
1324 | <translation type="unfinished">setLayerVisible("geruza", ikusgai) |
||
1325 | |||
1326 | "geruza" izeneko geruza ikusgai den, edo ez, ezartzen du. 'ikusgai' eremuan |
||
1327 | FALSE (FALTSUA) balioa jartzen bada, geruza ikuskaitza izango da. |
||
1328 | |||
1329 | NotFoundError abiaraziko da geruza ezin bada aurkitu. |
||
1330 | ValueError abiaraziko da geruzaren izena onarkaitza bada. |
||
1331 | </translation> |
||
1332 | </message> |
||
1333 | <message> |
||
1334 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="131"/> |
||
1335 | <source>setLayerPrintable("layer", printable) |
||
1336 | |||
1337 | Sets the layer "layer" to be printable or not. If is the |
||
1338 | printable set to false the layer won't be printed. |
||
1339 | |||
1340 | May raise NotFoundError if the layer can't be found. |
||
1341 | May raise ValueError if the layer name isn't acceptable. |
||
1342 | </source> |
||
1343 | <translation type="unfinished"></translation> |
||
1344 | </message> |
||
1345 | <message> |
||
1346 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="144"/> |
||
1347 | <source>setLayerLocked("layer", locked) |
||
1348 | |||
1349 | Sets the layer "layer" to be locked or not. If locked is set to |
||
1350 | true the layer will be locked. |
||
1351 | |||
1352 | May raise NotFoundError if the layer can't be found. |
||
1353 | May raise ValueError if the layer name isn't acceptable. |
||
1354 | </source> |
||
1355 | <translation type="unfinished"></translation> |
||
1356 | </message> |
||
1357 | <message> |
||
1358 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="157"/> |
||
1359 | <source>setLayerOutlined("layer", outline) |
||
1360 | |||
1361 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1362 | true the layer will be displayed outlined. |
||
1363 | |||
1364 | May raise NotFoundError if the layer can't be found. |
||
1365 | May raise ValueError if the layer name isn't acceptable. |
||
1366 | </source> |
||
1367 | <translation type="unfinished"></translation> |
||
1368 | </message> |
||
1369 | <message> |
||
1370 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="170"/> |
||
1371 | <source>setLayerFlow("layer", flow) |
||
1372 | |||
1373 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1374 | true text in layers above this one will flow around objects on this layer. |
||
1375 | |||
1376 | May raise NotFoundError if the layer can't be found. |
||
1377 | May raise ValueError if the layer name isn't acceptable. |
||
1378 | </source> |
||
1379 | <translation type="unfinished"></translation> |
||
1380 | </message> |
||
1381 | <message> |
||
1382 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="182"/> |
||
1383 | <source>setLayerBlendmode("layer", blend) |
||
1384 | |||
1385 | Sets the layers "layer" blendmode to blend. |
||
1386 | |||
1387 | May raise NotFoundError if the layer can't be found. |
||
1388 | May raise ValueError if the layer name isn't acceptable. |
||
1389 | </source> |
||
1390 | <translation type="unfinished"></translation> |
||
1391 | </message> |
||
1392 | <message> |
||
1393 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="194"/> |
||
1394 | <source>setLayerTransparency("layer", trans) |
||
1395 | |||
1396 | Sets the layers "layer" transparency to trans. |
||
1397 | |||
1398 | May raise NotFoundError if the layer can't be found. |
||
1399 | May raise ValueError if the layer name isn't acceptable. |
||
1400 | </source> |
||
1401 | <translation type="unfinished"></translation> |
||
1402 | </message> |
||
1403 | <message> |
||
1404 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="208"/> |
||
1405 | <source>isLayerVisible("layer") -> bool |
||
1406 | |||
1407 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1408 | that the layer "layer" is visible, a value of False means that the layer |
||
1409 | "layer" is invisible. |
||
1410 | |||
1411 | May raise NotFoundError if the layer can't be found. |
||
1412 | May raise ValueError if the layer name isn't acceptable. |
||
1413 | </source> |
||
1414 | <translation type="unfinished"></translation> |
||
1415 | </message> |
||
1416 | <message> |
||
1417 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="222"/> |
||
1418 | <source>isLayerPrintable("layer") -> bool |
||
1419 | |||
1420 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1421 | that the layer "layer" can be printed, a value of False means that printing |
||
1422 | the layer "layer" is disabled. |
||
1423 | |||
1424 | May raise NotFoundError if the layer can't be found. |
||
1425 | May raise ValueError if the layer name isn't acceptable. |
||
1426 | </source> |
||
1427 | <translation type="unfinished">isLayerPrintable("geruza") -> boolearra |
||
1428 | |||
1429 | "geruza" izeneko geruza inprima daitekeen edo ez itzultzen du. TRUE (EGIA) |
||
1430 | balioak inprima daitekeela adierazten du, eta era berean FALSE (FALTSUA) balioak |
||
1431 | inprimatzea desgaituta dagoela. |
||
1432 | |||
1433 | NotFoundError abiaraziko da ezin bada geruza aurkitu. |
||
1434 | ValueError abiaraziko da geruzaren izena onarkaitza bada. |
||
1435 | </translation> |
||
1436 | </message> |
||
1437 | <message> |
||
1438 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="236"/> |
||
1439 | <source>isLayerLocked("layer") -> bool |
||
1440 | |||
1441 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1442 | that the layer "layer" is editable, a value of False means that the layer |
||
1443 | "layer" is locked. |
||
1444 | |||
1445 | May raise NotFoundError if the layer can't be found. |
||
1446 | May raise ValueError if the layer name isn't acceptable. |
||
1447 | </source> |
||
1448 | <translation type="unfinished"></translation> |
||
1449 | </message> |
||
1450 | <message> |
||
1451 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="250"/> |
||
1452 | <source>isLayerOutlined("layer") -> bool |
||
1453 | |||
1454 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1455 | that the layer "layer" is outlined, a value of False means that the layer |
||
1456 | "layer" is normal. |
||
1457 | |||
1458 | May raise NotFoundError if the layer can't be found. |
||
1459 | May raise ValueError if the layer name isn't acceptable. |
||
1460 | </source> |
||
1461 | <translation type="unfinished"></translation> |
||
1462 | </message> |
||
1463 | <message> |
||
1464 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="263"/> |
||
1465 | <source>isLayerFlow("layer") -> bool |
||
1466 | |||
1467 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1468 | that text flows around, a value of False means that the text does not flow around. |
||
1469 | |||
1470 | May raise NotFoundError if the layer can't be found. |
||
1471 | May raise ValueError if the layer name isn't acceptable. |
||
1472 | </source> |
||
1473 | <translation type="unfinished"></translation> |
||
1474 | </message> |
||
1475 | <message> |
||
1476 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="275"/> |
||
1477 | <source>getLayerBlendmode("layer") -> int |
||
1478 | |||
1479 | Returns the "layer" layer blendmode, |
||
1480 | |||
1481 | May raise NotFoundError if the layer can't be found. |
||
1482 | May raise ValueError if the layer name isn't acceptable. |
||
1483 | </source> |
||
1484 | <translation type="unfinished"></translation> |
||
1485 | </message> |
||
1486 | <message> |
||
1487 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="287"/> |
||
1488 | <source>getLayerTransparency("layer") -> float |
||
1489 | |||
1490 | Returns the "layer" layer transparency, |
||
1491 | |||
1492 | May raise NotFoundError if the layer can't be found. |
||
1493 | May raise ValueError if the layer name isn't acceptable. |
||
1494 | </source> |
||
1495 | <translation type="unfinished"></translation> |
||
1496 | </message> |
||
1497 | <message> |
||
1498 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="300"/> |
||
1499 | <source>deleteLayer("layer") |
||
1500 | |||
1501 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
1502 | exists or if it's the only layer in the document. |
||
1503 | |||
1504 | May raise NotFoundError if the layer can't be found. |
||
1505 | May raise ValueError if the layer name isn't acceptable. |
||
1506 | </source> |
||
1507 | <translation type="unfinished">deleteLayer("geruza") |
||
1508 | |||
1509 | "geruza" izeneko geruza ezabatzen du. |
||
1510 | Ez da ezer gertatzen geruza ez bada existitzen, edo dokumentuko |
||
1511 | geruza bakarra izanez gero. |
||
1512 | |||
1513 | NotFoundError abiaraziko da geruza ezin bada aurkitu. |
||
1514 | ValueError abiaraziko da geruzaren izena onarkaitza bada.</translation> |
||
1515 | </message> |
||
1516 | <message> |
||
1517 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="311"/> |
||
1518 | <source>createLayer(layer) |
||
1519 | |||
1520 | Creates a new layer with the name "name". |
||
1521 | |||
1522 | May raise ValueError if the layer name isn't acceptable. |
||
1523 | </source> |
||
1524 | <translation type="unfinished">createLayer(izena) |
||
1525 | |||
1526 | "izena" izeneko geruza berria sortzen du. |
||
1527 | |||
1528 | ValueError abiaraziko da geruzaren izena onarkaitza bada. |
||
1529 | </translation> |
||
1530 | </message> |
||
1531 | <message> |
||
1532 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="320"/> |
||
1533 | <source>getGuiLanguage() -> string |
||
1534 | |||
1535 | Returns a string with the -lang value. |
||
1536 | </source> |
||
1537 | <translation type="unfinished">getGuiLanguage() -> katea |
||
1538 | |||
1539 | Kate bat itzultzen du -lang (hizkuntza) balioarekin. |
||
1540 | </translation> |
||
1541 | </message> |
||
1542 | <message> |
||
1543 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="329"/> |
||
1544 | <source>moveSelectionToFront() |
||
1545 | |||
1546 | Moves current selection to front. |
||
1547 | </source> |
||
1548 | <translation type="unfinished"></translation> |
||
1549 | </message> |
||
1550 | <message> |
||
1551 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="338"/> |
||
1552 | <source>moveSelectionToFront() |
||
1553 | |||
1554 | Moves current selection to back. |
||
1555 | </source> |
||
1556 | <translation type="unfinished"></translation> |
||
1557 | </message> |
||
1558 | <message> |
||
1559 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="26"/> |
||
1560 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
1561 | |||
1562 | Creates a new rectangle on the current page and returns its name. The |
||
1563 | coordinates are given in the current measurement units of the document |
||
1564 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1565 | because you need this name to reference that object in future. If "name" |
||
1566 | is not given Scribus will create one for you. |
||
1567 | |||
1568 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1569 | </source> |
||
1570 | <translation type="unfinished">createRect(x, y, zabalera, altuera, ["izena"]) -> katea |
||
1571 | |||
1572 | Laukizuzen berria sortzen du uneko orrian eta bere izena itzultzen du. Koordenatuak uneko dokumentua neurtzeko unitateetan ematen dira (ikus UNIT konstanteak). "Izena" objektuaren identifikatzaile bakarra izan daiteke, etorkizunean objektu honi erreferentzia egiteko erabiliko baita. "izena" ez bada ematen, Scribus aplikazioak emago dio zure ordez. |
||
1573 | |||
1574 | NameExistsError abiaraziko da esplizitoki emandako izena lehendik ere |
||
1575 | egonez gero.</translation> |
||
1576 | </message> |
||
1577 | <message> |
||
1578 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="43"/> |
||
1579 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
1580 | |||
1581 | Creates a new ellipse on the current page and returns its name. |
||
1582 | The coordinates are given in the current measurement units of the document |
||
1583 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1584 | because you need this name for further referencing of that object. If "name" |
||
1585 | is not given Scribus will create one for you. |
||
1586 | |||
1587 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1588 | </source> |
||
1589 | <translation type="unfinished">createEllipse(x, y, zabalera, altuera, ["izena"]) -> katea |
||
1590 | |||
1591 | Elipse berria sortzen du uneko orrialdean, eta bere izena itzultzen du. |
||
1592 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1593 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1594 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1595 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1596 | dio. |
||
1597 | |||
1598 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1599 | </translation> |
||
1600 | </message> |
||
1601 | <message> |
||
1602 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="60"/> |
||
1603 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
1604 | |||
1605 | Creates a new picture frame on the current page and returns its name. The |
||
1606 | coordinates are given in the current measurement units of the document. |
||
1607 | "name" should be a unique identifier for the object because you need this |
||
1608 | name for further access to that object. If "name" is not given Scribus will |
||
1609 | create one for you. |
||
1610 | |||
1611 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1612 | </source> |
||
1613 | <translation type="unfinished">createImage(x, y, zabalera, altuera, ["izena"]) -> katea |
||
1614 | |||
1615 | Irudi-marko berria sortzen du uneko orrialdean, eta bere izena itzultzen du. |
||
1616 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1617 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1618 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1619 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1620 | dio. |
||
1621 | |||
1622 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1623 | </translation> |
||
1624 | </message> |
||
1625 | <message> |
||
1626 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="75"/> |
||
1627 | <source>createText(x, y, width, height, ["name"]) -> string |
||
1628 | |||
1629 | Creates a new text frame on the actual page and returns its name. |
||
1630 | The coordinates are given in the actual measurement unit of the document (see |
||
1631 | UNIT constants). "name" should be a unique identifier for the object because |
||
1632 | you need this name for further referencing of that object. If "name" is not |
||
1633 | given Scribus will create one for you. |
||
1634 | |||
1635 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1636 | </source> |
||
1637 | <translation type="unfinished">createText(x, y, zabalera, altuera, ["izena"]) -> katea |
||
1638 | |||
1639 | Testu-marko berria sortzen du uneko orrialdean, eta bere izena itzultzen du. |
||
1640 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1641 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1642 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1643 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1644 | dio. |
||
1645 | |||
1646 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1647 | </translation> |
||
1648 | </message> |
||
1649 | <message> |
||
1650 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="90"/> |
||
1651 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
1652 | |||
1653 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1654 | its name. The coordinates are given in the current measurement unit of the |
||
1655 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1656 | object because you need this name for further access to that object. If |
||
1657 | "name" is not given Scribus will create one for you. |
||
1658 | |||
1659 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1660 | </source> |
||
1661 | <translation type="unfinished">createLine(x1, y1, x2, y2, ["izena"]) -> katea |
||
1662 | |||
1663 | Marra berria sortzen du 1 puntutik (x1,y1) 2. puntura (x2, y2), eta |
||
1664 | bere izena itzultzen du. |
||
1665 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1666 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1667 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1668 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1669 | dio. |
||
1670 | |||
1671 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1672 | </translation> |
||
1673 | </message> |
||
1674 | <message> |
||
1675 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="108"/> |
||
1676 | <source>createPolyLine(list, ["name"]) -> string |
||
1677 | |||
1678 | Creates a new polyline and returns its name. The points for the polyline are |
||
1679 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1680 | The coordinates are given in the current measurement units of the document (see |
||
1681 | UNIT constants). "name" should be a unique identifier for the object because |
||
1682 | you need this name for further access to that object. If "name" is not given |
||
1683 | Scribus will create one for you. |
||
1684 | |||
1685 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1686 | May raise ValueError if an insufficient number of points is passed or if |
||
1687 | the number of values passed don't group into points without leftovers. |
||
1688 | </source> |
||
1689 | <translation type="unfinished">createPolyLine(zerrenda, ["izena"]) -> katea |
||
1690 | |||
1691 | Koska-marra berria sortzen du uneko orrialdean, eta bere izena itzultzen du. |
||
1692 | Koska-marraren puntuak zerrenda batean datozte, honako ordenean: |
||
1693 | [x1, y1, x2, y2...xn. yn]. |
||
1694 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1695 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1696 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1697 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1698 | dio. |
||
1699 | |||
1700 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1701 | ValueError abiaraziko da behar diren puntu-kopurua ez bada ematen, edo emandako |
||
1702 | balioen kopurua ez bada hondarrik gabeko puntuekin elkartzen. |
||
1703 | </translation> |
||
1704 | </message> |
||
1705 | <message> |
||
1706 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="128"/> |
||
1707 | <source>createPolygon(list, ["name"]) -> string |
||
1708 | |||
1709 | Creates a new polygon and returns its name. The points for the polygon are |
||
1710 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1711 | At least three points are required. There is no need to repeat the first point |
||
1712 | to close the polygon. The polygon is automatically closed by connecting the |
||
1713 | first and the last point. The coordinates are given in the current measurement |
||
1714 | units of the document (see UNIT constants). "name" should be a unique |
||
1715 | identifier for the object because you need this name for further access to that |
||
1716 | object. If "name" is not given Scribus will create one for you. |
||
1717 | |||
1718 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1719 | May raise ValueError if an insufficient number of points is passed or if |
||
1720 | the number of values passed don't group into points without leftovers. |
||
1721 | </source> |
||
1722 | <translation type="unfinished">createPolygon(zerrenda, ["izena"]) -> katea |
||
1723 | |||
1724 | Poligono berria sortu eta bere izena itzultzen du. |
||
1725 | Poligonoaren puntuak zerrenda batean datozte, honako ordenean: |
||
1726 | [x1, y1, x2, y2...xn. yn]. Gutxienez hiru puntu behar dira, |
||
1727 | eta aurreneko puntua ez dago errepikatu beharrik poligonoa ixteko (osatzeko). |
||
1728 | Poligonoa automatikoki ixten da aurreneko eta azken puntuak konektatuz. |
||
1729 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1730 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1731 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1732 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1733 | dio. |
||
1734 | |||
1735 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1736 | ValueError abiaraziko da behar diren puntu-kopurua ez bada ematen, edo emandako |
||
1737 | balioen kopurua ez bada hondarrik gabeko puntuekin elkartzen. |
||
1738 | </translation> |
||
1739 | </message> |
||
1740 | <message> |
||
1741 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="149"/> |
||
1742 | <source>createBezierLine(list, ["name"]) -> string |
||
1743 | |||
1744 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1745 | curve are stored in the list "list" in the following order: |
||
1746 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1747 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1748 | and ky meaning the control point for the curve. The coordinates are given in |
||
1749 | the current measurement units of the document (see UNIT constants). "name" |
||
1750 | should be a unique identifier for the object because you need this name for |
||
1751 | further access to that object. If "name" is not given Scribus will create one |
||
1752 | for you. |
||
1753 | |||
1754 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1755 | May raise ValueError if an insufficient number of points is passed or if |
||
1756 | the number of values passed don't group into points without leftovers. |
||
1757 | </source> |
||
1758 | <translation type="unfinished">createBezierLine(zerrenda, ["izena"]) -> katea |
||
1759 | |||
1760 | Bezier kurba berria sortzen du, eta bere izena itzultzen du. |
||
1761 | Bezier kurbaren puntuak zerrenda batean datozte, honako ordenean: |
||
1762 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1763 | Zerrendako puntuetan x eta y balioek puntuaren x eta y koordenatuak |
||
1764 | adierazten dute, eta kx eta ky balioek berriz kurbaren kontrol-puntuak. |
||
1765 | Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1766 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1767 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1768 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1769 | dio. |
||
1770 | |||
1771 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1772 | ValueError abiaraziko da behar diren puntu-kopurua ez bada ematen, edo emandako |
||
1773 | balioen kopurua ez bada hondarrik gabeko puntuekin elkartzen.</translation> |
||
1774 | </message> |
||
1775 | <message> |
||
1776 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="165"/> |
||
1777 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
1778 | |||
1779 | Creates a new pathText by merging the two objects "textbox" and |
||
1780 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1781 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1782 | unique identifier for the object because you need this name for further access |
||
1783 | to that object. If "name" is not given Scribus will create one for you. |
||
1784 | |||
1785 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1786 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1787 | </source> |
||
1788 | <translation type="unfinished">createPathText(x, y, "testu-kutxa", "bezierkurba", ["izena"]) -> katea |
||
1789 | |||
1790 | Testu-bide berria sortzen du 'testu-kutxa' eta 'bezierkurba' batuz, eta bere izena |
||
1791 | itzultzen du. Dokumentua neurtzeko uneko unitateetan ematen dira koordenatuak |
||
1792 | (ikus UNIT konstanteak). "izena" objektuaren identifikatzaile bakarra izan |
||
1793 | behar du, etorkizunean bere izena erabili beharko baituzu objektu honi |
||
1794 | erreferentzi egiteko. "izena" ez bada ematen, Scribus aplikazioak emango |
||
1795 | dio. |
||
1796 | |||
1797 | NameExistsError abiaraziko da jadanik erabilita dagoen izena esplizitoki ematen bada. |
||
1798 | NotFoundError abiaraziko da emandako oinarrizko objektuen izen bat edo biak ez badira existitzen.</translation> |
||
1799 | </message> |
||
1800 | <message> |
||
1801 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="177"/> |
||
1802 | <source>deleteObject(["name"]) |
||
1803 | |||
1804 | Deletes the item with the name "name". If "name" is not given the currently |
||
1805 | selected item is deleted. |
||
1806 | </source> |
||
1807 | <translation type="unfinished">deleteObject(["izena"]) |
||
1808 | |||
1809 | "izena" izeneko objektua ezabatzen du. Ez bada "izena" ematen, unean hautatutako |
||
1810 | elementua erabiliko da. |
||
1811 | </translation> |
||
1812 | </message> |
||
1813 | <message> |
||
1814 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="193"/> |
||
1815 | <source>textFlowMode("name" [, state]) |
||
1816 | |||
1817 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1818 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1819 | Setting "state" to 0 will disable text flow. |
||
1820 | Setting "state" to 1 will make text flow around object frame. |
||
1821 | Setting "state" to 2 will make text flow around bounding box. |
||
1822 | Setting "state" to 3 will make text flow around contour line. |
||
1823 | If "state" is not passed, text flow is toggled. |
||
1824 | </source> |
||
1825 | <translation type="unfinished"></translation> |
||
1826 | </message> |
||
1827 | <message> |
||
1828 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="211"/> |
||
1829 | <source>objectExists(["name"]) -> bool |
||
1830 | |||
1831 | Test if an object with specified name really exists in the document. |
||
1832 | The optional parameter is the object name. When no object name is given, |
||
1833 | returns True if there is something selected. |
||
1834 | </source> |
||
1835 | <translation type="unfinished">objectExists(["izena"]) -> boolearra |
||
1836 | |||
1837 | Izendatutako objektua dokumentuan existitzen den begiratzen du. |
||
1838 | Aukerako parametroa objektuaren izenda da. Izenik ez denean ematen TRUE |
||
1839 | (EGIA) itzultzen du zerbait hautatuta egonez gero. |
||
1840 | </translation> |
||
1841 | </message> |
||
1842 | <message> |
||
1843 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="227"/> |
||
1844 | <source>setStyle("style" [, "name"]) |
||
1845 | |||
1846 | Apply the named "style" to the object named "name". If is no object name |
||
1847 | given, it's applied on the selected object. |
||
1848 | </source> |
||
1849 | <translation type="unfinished">setStyle("estiloa" [, "izena"]) |
||
1850 | |||
1851 | "estiloa" izenekoa aplikatzen dio "izena" objektuari. Ez bada objektuaren |
||
1852 | izenik ematen, hautatutako objektuari aplikatuko zaio. |
||
1853 | </translation> |
||
1854 | </message> |
||
1855 | <message> |
||
1856 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="240"/> |
||
1857 | <source>getAllStyles() -> list |
||
1858 | |||
1859 | Return a list of the names of all paragraph styles in the current document. |
||
1860 | </source> |
||
1861 | <translation type="unfinished">getAllStyles() -> zerrenda |
||
1862 | |||
1863 | Zerrenda itzultzen du, uneko dokumentuan dauden paragrafo-estilo guztien izenekin. |
||
1864 | </translation> |
||
1865 | </message> |
||
1866 | <message> |
||
1867 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="252"/> |
||
1868 | <source>duplicateObject(["name"]) -> string |
||
1869 | |||
1870 | creates a Duplicate of the selected Object (or Selection Group). |
||
1871 | </source> |
||
1872 | <translation type="unfinished"></translation> |
||
1873 | </message> |
||
1874 | <message> |
||
1875 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="26"/> |
||
1876 | <source>newPage(where [,"masterpage"]) |
||
1877 | |||
1878 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
1879 | document, otherwise the new page is inserted before "where". Page numbers are |
||
1880 | counted from 1 upwards, no matter what the displayed first page number of your |
||
1881 | document is. The optional parameter "masterpage" specifies the name of the |
||
1882 | master page for the new page. |
||
1883 | |||
1884 | May raise IndexError if the page number is out of range |
||
1885 | </source> |
||
1886 | <translation type="unfinished">newPage(non [,"orriMaisua"]) |
||
1887 | |||
1888 | Orrialde berria sortzen du. "non" -1 balioa izanez gero, orrialde berria erantsiko zaio |
||
1889 | dokumentuari, bestela orri berria "non" aurretik txertatuko da. Orrialdeen zenbakiak |
||
1890 | 1etik gorantz zenbatzen dira, berdin dio dokumentuko aurreneko orrialdearen |
||
1891 | zenbakia zein den. Aukerazko "orrimaisua" parametroak orri maisuaren izena zehazten du orrialde berriarentzako. |
||
1892 | |||
1893 | Orrialdearen zenbakia barrutitik kanpo egonez gero IndexError abiaraziko da. |
||
1894 | </translation> |
||
1895 | </message> |
||
1896 | <message> |
||
1897 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="36"/> |
||
1898 | <source>currentPage() -> integer |
||
1899 | |||
1900 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1901 | upwards, no matter what the displayed first page number of your document is. |
||
1902 | </source> |
||
1903 | <translation type="unfinished">currentPage() -> osokoa |
||
1904 | |||
1905 | Unean lantzen ari den orrialdearen zenbakia itzultzen du. |
||
1906 | Orrialdeen zenbakiak 1etik gorantz zenbatzen dira, berdin dio dokumentuko |
||
1907 | aurreneko orrialdearen bistaratutako zenbakia zein den. |
||
1908 | </translation> |
||
1909 | </message> |
||
1910 | <message> |
||
1911 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="45"/> |
||
1912 | <source>redrawAll() |
||
1913 | |||
1914 | Redraws all pages. |
||
1915 | </source> |
||
1916 | <translation type="unfinished">redrawAll() |
||
1917 | |||
1918 | Orrialde guztiak berriro marrazten ditu. |
||
1919 | </translation> |
||
1920 | </message> |
||
1921 | <message> |
||
1922 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="54"/> |
||
1923 | <source>getPageType() -> integer |
||
1924 | |||
1925 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1926 | </source> |
||
1927 | <translation type="unfinished"></translation> |
||
1928 | </message> |
||
1929 | <message> |
||
1930 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="65"/> |
||
1931 | <source>savePageAsEPS("name") |
||
1932 | |||
1933 | Saves the current page as an EPS to the file "name". |
||
1934 | |||
1935 | May raise ScribusError if the save failed. |
||
1936 | </source> |
||
1937 | <translation type="unfinished">savePageAsEPS("izena") |
||
1938 | |||
1939 | Uneko orrialdea EPS gisa gordetzen du "izena" fitxategian. |
||
1940 | |||
1941 | ScribusError abiaraziko da huts egiten badu gordetzean. |
||
1942 | </translation> |
||
1943 | </message> |
||
1944 | <message> |
||
1945 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="78"/> |
||
1946 | <source>deletePage(nr) |
||
1947 | |||
1948 | Deletes the given page. Does nothing if the document contains only one page. |
||
1949 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1950 | page number is. |
||
1951 | |||
1952 | May raise IndexError if the page number is out of range |
||
1953 | </source> |
||
1954 | <translation type="unfinished">deletePage(zbkia) |
||
1955 | |||
1956 | Emandako orrialdea ezabatzen du. Ez du ezer egiten dokumentuak |
||
1957 | orrialde bakarra badu. Orrialdeen zenbakiak 1etik hasten dira zenbatzen, |
||
1958 | eta berdin dio aurrenekoak zein zenbaki bistaratzen duen. |
||
1959 | |||
1960 | IndexError abiaraziko da orrialdearen zenbakia barrutitik kanpo egonez gero. |
||
1961 | </translation> |
||
1962 | </message> |
||
1963 | <message> |
||
1964 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="91"/> |
||
1965 | <source>gotoPage(nr) |
||
1966 | |||
1967 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1968 | gotoPage doesn't (currently) change the page the user's view is displaying, it |
||
1969 | just sets the page that script commands will operates on. |
||
1970 | |||
1971 | May raise IndexError if the page number is out of range. |
||
1972 | </source> |
||
1973 | <translation type="unfinished"></translation> |
||
1974 | </message> |
||
1975 | <message> |
||
1976 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="100"/> |
||
1977 | <source>pageCount() -> integer |
||
1978 | |||
1979 | Returns the number of pages in the document. |
||
1980 | </source> |
||
1981 | <translation type="unfinished">pageCount() -> osokoa |
||
1982 | |||
1983 | Dokumentuko orrialde-kopurua itzultzen du. |
||
1984 | </translation> |
||
1985 | </message> |
||
1986 | <message> |
||
1987 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="110"/> |
||
1988 | <source>getHGuides() -> list |
||
1989 | |||
1990 | Returns a list containing positions of the horizontal guides. Values are in the |
||
1991 | document's current units - see UNIT_<type> constants. |
||
1992 | </source> |
||
1993 | <translation type="unfinished">getHGuides() -> zerrenda |
||
1994 | |||
1995 | Gida horizontalen posizioak dituen zerrenda itzultzen du. |
||
1996 | Balioak uneko dokumentuaren unitateetan daude (ikus UNIT_<mota> konstanteak). |
||
1997 | </translation> |
||
1998 | </message> |
||
1999 | <message> |
||
2000 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="123"/> |
||
2001 | <source>setHGuides(list) |
||
2002 | |||
2003 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
2004 | measured in the current document units - see UNIT_<type> constants. |
||
2005 | |||
2006 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
2007 | setHGuides([90,250]) # replace current guides entirely |
||
2008 | </source> |
||
2009 | <translation type="unfinished">setHGuides(zerrenda) |
||
2010 | |||
2011 | Gida horizontalak ezartzen ditu. Sarrerako parametroak giden posizioen |
||
2012 | zerrenda izan behar du, dokumentua neurtzeko unitateetan (ikus |
||
2013 | UNIT_<mota> konstanteak). |
||
2014 | |||
2015 | Adibidea: |
||
2016 | setHGuides(getHGuides() + [200.0, 210.0] # gida berriak |
||
2017 | # ezartzen ditu galerarik gabe |
||
2018 | setHGuides([90,250]) # uneko gidak osotasunean ordezten ditu |
||
2019 | </translation> |
||
2020 | </message> |
||
2021 | <message> |
||
2022 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="132"/> |
||
2023 | <source>getVGuides() |
||
2024 | |||
2025 | See getHGuides. |
||
2026 | </source> |
||
2027 | <translation type="unfinished">getVGuides() |
||
2028 | |||
2029 | Ikus getHGuides. |
||
2030 | </translation> |
||
2031 | </message> |
||
2032 | <message> |
||
2033 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="141"/> |
||
2034 | <source>setVGuides() |
||
2035 | |||
2036 | See setHGuides. |
||
2037 | </source> |
||
2038 | <translation type="unfinished">setVGuides() |
||
2039 | |||
2040 | Ikus setHGuides. |
||
2041 | </translation> |
||
2042 | </message> |
||
2043 | <message> |
||
2044 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="151"/> |
||
2045 | <source>getPageSize() -> tuple |
||
2046 | |||
2047 | Returns a tuple with page dimensions measured in the document's current units. |
||
2048 | See UNIT_<type> constants and getPageMargins() |
||
2049 | </source> |
||
2050 | <translation type="unfinished">getPageSize() -> tupla |
||
2051 | |||
2052 | Orrialdearen dimensioen tupla itzultzen du, dokumentuaren uneko |
||
2053 | unitateetan neurtuz. Ikus UNIT_<mota> konstanteak eta getPageMargins() |
||
2054 | </translation> |
||
2055 | </message> |
||
2056 | <message> |
||
2057 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="167"/> |
||
2058 | <source>getPageItems() -> list |
||
2059 | |||
2060 | Returns a list of tuples with items on the current page. The tuple is: |
||
2061 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
2062 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
2063 | the page... |
||
2064 | </source> |
||
2065 | <translation type="unfinished">getPageItems() -> zerrenda |
||
2066 | |||
2067 | Uneko orrialdean dauden elementuen tuplen zerrenda itzultzen du. |
||
2068 | Tupla honakoa da: |
||
2069 | (izena, objektuMota, ordena) Adib.: [('Testua1', 4, 0), ('Irudia1', 2, 1)] |
||
2070 | 'Testua1' izeneko objektua testu-markoa da (4 motakoa) |
||
2071 | eta orrialdeko aurrenekoa dela adierazten du... |
||
2072 | </translation> |
||
2073 | </message> |
||
2074 | <message> |
||
2075 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="181"/> |
||
2076 | <source>getPageMargins() |
||
2077 | |||
2078 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
2079 | units. See UNIT_<type> constants and getPageSize(). |
||
2080 | </source> |
||
2081 | <translation type="unfinished">getPageMargins() |
||
2082 | |||
2083 | Orrialdearen marjinak itzultzen ditu (goia, ezkerra, eskuina, behea) tupla gisa |
||
2084 | uneko unitateetan. Ikus UNIT_<mota> konstanteak eta getPageSize(). |
||
2085 | </translation> |
||
2086 | </message> |
||
2087 | <message> |
||
2088 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="198"/> |
||
2089 | <source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
||
2090 | |||
2091 | 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. |
||
2092 | fromDoc: string; the filename of the document to import pages from |
||
2093 | pageList: tuple with page numbers of pages to import |
||
2094 | create: number; 0 to replace existing pages, 1 (default) to insert new pages |
||
2095 | importWhere: number; the page number (of the current document) at which import the pages |
||
2096 | 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 |
||
2097 | </source> |
||
2098 | <translation type="unfinished"></translation> |
||
2099 | </message> |
||
2100 | <message> |
||
2101 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="22"/> |
||
2102 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
2103 | |||
2104 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
2105 | the same as for setFillColor() and setFillShade(). See the constants for |
||
2106 | available types (FILL_<type>). |
||
2107 | </source> |
||
2108 | <translation type="unfinished">setGradientFill(mota, "kolorea1", itzaldura1, "kolorea2", itzaldura2, ["izena"]) |
||
2109 | |||
2110 | "izena" objektuaren gradiente betegarria motarekin ezartzen du. Koloreen |
||
2111 | azalpenak setFillColor() eta setFillShade() funtzioetakoak bezalakoak dira. Ikusi mota erabilgarrien konstanteak (FILL_<mota>).</translation> |
||
2112 | </message> |
||
2113 | <message> |
||
13279 | cbradney | 2114 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="44"/> |
12918 | cbradney | 2115 | <source>setFillColor("color", ["name"]) |
2116 | |||
2117 | Sets the fill color of the object "name" to the color "color". "color" |
||
2118 | is the name of one of the defined colors. If "name" is not given the |
||
2119 | currently selected item is used. |
||
2120 | </source> |
||
2121 | <translation type="unfinished">setFillColor("kolorea", ["izena"]) |
||
2122 | |||
2123 | "izena" objektuaren kolore betegarria "kolorea"rekin ezartzen du. |
||
2124 | "kolorea" aurrez definitutako kolore bat da. |
||
2125 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2126 | </translation> |
||
2127 | </message> |
||
2128 | <message> |
||
13279 | cbradney | 2129 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="54"/> |
12918 | cbradney | 2130 | <source>setFillTransparency(transparency, ["name"]) |
2131 | |||
2132 | Sets the fill transparency of the object "name" to transparency |
||
2133 | If "name" is not given the currently selected item is used. |
||
2134 | </source> |
||
2135 | <translation type="unfinished"></translation> |
||
2136 | </message> |
||
2137 | <message> |
||
13279 | cbradney | 2138 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="64"/> |
12918 | cbradney | 2139 | <source>setFillBlendmode(blendmode, ["name"]) |
2140 | |||
2141 | Sets the fill blendmode of the object "name" to blendmode |
||
2142 | If "name" is not given the currently selected item is used. |
||
2143 | </source> |
||
2144 | <translation type="unfinished"></translation> |
||
2145 | </message> |
||
2146 | <message> |
||
13279 | cbradney | 2147 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="74"/> |
12918 | cbradney | 2148 | <source>setLineColor("color", ["name"]) |
2149 | |||
2150 | Sets the line color of the object "name" to the color "color". If "name" |
||
2151 | is not given the currently selected item is used. |
||
2152 | </source> |
||
2153 | <translation type="unfinished">setLineColor("kolorea", ["izena"]) |
||
2154 | |||
2155 | "izena" objektuaren marraren kolorea \"kolorea\"rekin ezartzen du. |
||
2156 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2157 | </translation> |
||
2158 | </message> |
||
2159 | <message> |
||
13279 | cbradney | 2160 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="84"/> |
12918 | cbradney | 2161 | <source>setLineTransparency(transparency, ["name"]) |
2162 | |||
2163 | Sets the line transparency of the object "name" to transparency |
||
2164 | If "name" is not given the currently selected item is used. |
||
2165 | </source> |
||
2166 | <translation type="unfinished"></translation> |
||
2167 | </message> |
||
2168 | <message> |
||
13279 | cbradney | 2169 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="94"/> |
12918 | cbradney | 2170 | <source>setLineBlendmode(blendmode, ["name"]) |
2171 | |||
2172 | Sets the line blendmode of the object "name" to blendmode |
||
2173 | If "name" is not given the currently selected item is used. |
||
2174 | </source> |
||
2175 | <translation type="unfinished"></translation> |
||
2176 | </message> |
||
2177 | <message> |
||
13279 | cbradney | 2178 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="107"/> |
12918 | cbradney | 2179 | <source>setLineWidth(width, ["name"]) |
2180 | |||
2181 | Sets line width of the object "name" to "width". "width" must be in the |
||
2182 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
2183 | given the currently selected item is used. |
||
2184 | |||
2185 | May raise ValueError if the line width is out of bounds. |
||
2186 | </source> |
||
2187 | <translation type="unfinished">setLineWidth(zabalera, ["izena"]) |
||
2188 | |||
2189 | "izena" objektuaren marraren zabalera ezartzen du "zabalera" balioarekin. |
||
2190 | "zabalera" balioa 0.0 eta 12.0 artekoa izan behar du, eta puntuetan neurtuta |
||
2191 | dago. |
||
2192 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2193 | |||
2194 | ValueError abiaraziko da marraren zabalera mugetatik at irtetzen bada. |
||
2195 | </translation> |
||
2196 | </message> |
||
2197 | <message> |
||
13279 | cbradney | 2198 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="121"/> |
12918 | cbradney | 2199 | <source>setLineShade(shade, ["name"]) |
2200 | |||
2201 | Sets the shading of the line color of the object "name" to "shade". |
||
2202 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2203 | (full color intensity). If "name" is not given the currently selected item |
||
2204 | is used. |
||
2205 | |||
2206 | May raise ValueError if the line shade is out of bounds. |
||
2207 | </source> |
||
2208 | <translation type="unfinished">setLineShade(itzaldura, ["izena"]) |
||
2209 | |||
2210 | "izena" objektuaren marraren itzaldura ezartzen du "itzaldura" balioarekin. |
||
2211 | "itzaldura" balioa 0 (argiena) eta 100 (intentsitate osoko kolorea) |
||
2212 | artekoa osokoa izan behar du. Ez bada "izena" ematen unean |
||
2213 | hautatutako elementua erabiliko da. |
||
2214 | |||
2215 | ValueError abiaraziko da marraren itzaldura mugetatik at irtetzen bada.</translation> |
||
2216 | </message> |
||
2217 | <message> |
||
13279 | cbradney | 2218 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="132"/> |
12918 | cbradney | 2219 | <source>setLineJoin(join, ["name"]) |
2220 | |||
2221 | Sets the line join style of the object "name" to the style "join". |
||
2222 | If "name" is not given the currently selected item is used. There are |
||
2223 | predefined constants for join - JOIN_<type>. |
||
2224 | </source> |
||
2225 | <translation type="unfinished">setLineJoin(elkartu, ["izena"]) |
||
2226 | |||
2227 | "izena" objektuaren marra elkartzeko estiloa "elkartu"rekin ezatzen du. |
||
2228 | Aurrez definituta daude elkartzeko konstanteak: JOIN_<mota>. |
||
2229 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2230 | </translation> |
||
2231 | </message> |
||
2232 | <message> |
||
13279 | cbradney | 2233 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="143"/> |
12918 | cbradney | 2234 | <source>setLineEnd(endtype, ["name"]) |
2235 | |||
2236 | Sets the line cap style of the object "name" to the style "cap". |
||
2237 | If "name" is not given the currently selected item is used. There are |
||
2238 | predefined constants for "cap" - CAP_<type>. |
||
2239 | </source> |
||
2240 | <translation type="unfinished">setLineEnd(amaiMota, ["izena"]) |
||
2241 | |||
2242 | "izena" objektuaren marraren txanoaren estiloa ezartzen du "amaiMota"rekin. |
||
2243 | Aurrez definituta daude txanoen konstanteak: CAP_<mota>. |
||
2244 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2245 | </translation> |
||
2246 | </message> |
||
2247 | <message> |
||
13279 | cbradney | 2248 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="154"/> |
12918 | cbradney | 2249 | <source>setLineStyle(style, ["name"]) |
2250 | |||
2251 | Sets the line style of the object "name" to the style "style". If "name" |
||
2252 | is not given the currently selected item is used. There are predefined |
||
2253 | constants for "style" - LINE_<style>. |
||
2254 | </source> |
||
2255 | <translation type="unfinished">setLineStyle(estiloa, ["izena"]) |
||
2256 | |||
2257 | "izena" objektuaren marraren estiloa ezartzen du "estiloa"rekin. |
||
2258 | Aurrez definituta daude estiloen konstanteak: LINE_<estiloa>. |
||
2259 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2260 | </translation> |
||
2261 | </message> |
||
2262 | <message> |
||
13279 | cbradney | 2263 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="168"/> |
12918 | cbradney | 2264 | <source>setFillShade(shade, ["name"]) |
2265 | |||
2266 | Sets the shading of the fill color of the object "name" to "shade". |
||
2267 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2268 | (full Color intensity). If "name" is not given the currently selected |
||
2269 | Item is used. |
||
2270 | |||
2271 | May raise ValueError if the fill shade is out of bounds. |
||
2272 | </source> |
||
2273 | <translation type="unfinished">setFillShade(itzaldura, ["izena"]) |
||
2274 | |||
2275 | "izena" objektuaren kolore-betegarriaren itzaldura ezartzen du "itzaldura"rekin. |
||
2276 | "itzaldura" balioa 0 (argitsuena) eta 100 (intentsitate osoko kolorea) artean egon behar du. |
||
2277 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2278 | |||
2279 | ValueError abiaraziko da itzalduraren betegarria mugetatik kanpo egonez gero. |
||
2280 | </translation> |
||
2281 | </message> |
||
2282 | <message> |
||
13279 | cbradney | 2283 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="180"/> |
12918 | cbradney | 2284 | <source>setCornerRadius(radius, ["name"]) |
2285 | |||
2286 | Sets the corner radius of the object "name". The radius is expressed |
||
2287 | in points. If "name" is not given the currently selected item is used. |
||
2288 | |||
2289 | May raise ValueError if the corner radius is negative. |
||
2290 | </source> |
||
2291 | <translation type="unfinished">setCornerRadius(erradioa, ["izena"]) |
||
2292 | |||
2293 | "izena" objektuaren izkineko erradioa ezartzen du. Erradioa |
||
2294 | puntutan adierazten da. Ez bada "izena" ematen |
||
2295 | unean hautatutako elementua erabiliko da. |
||
2296 | |||
2297 | ValueError abiaraziko da izkineko erradioa negatiboa bada. |
||
2298 | </translation> |
||
2299 | </message> |
||
2300 | <message> |
||
13279 | cbradney | 2301 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="192"/> |
12918 | cbradney | 2302 | <source>setMultiLine("namedStyle", ["name"]) |
2303 | |||
2304 | Sets the line style of the object "name" to the named style "namedStyle". |
||
2305 | If "name" is not given the currently selected item is used. |
||
2306 | |||
2307 | May raise NotFoundError if the line style doesn't exist. |
||
2308 | </source> |
||
2309 | <translation type="unfinished">setMultiLine("estiloIzena", ["izena"]) |
||
2310 | |||
2311 | "izena" objektuaren marraren estiloa ezartzen du "estiloIzena"rekin. |
||
2312 | Ez bada "izena" ematen unean hautatutako elementua erabiliko da. |
||
2313 | |||
2314 | NotFoundError abiaraziko da marra-estiloa ez bada existitzen. |
||
2315 | </translation> |
||
2316 | </message> |
||
2317 | <message> |
||
2318 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="43"/> |
||
2319 | <source>createParagraphStyle(...) |
||
2320 | |||
2321 | Creates a paragraph style. This function takes the following keyword parameters: |
||
2322 | |||
2323 | "name" [required] -> specifies the name of the paragraphstyle to create |
||
2324 | |||
2325 | linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
||
2326 | |||
2327 | fixed linespacing: 0 |
||
2328 | |||
2329 | automatic linespacing: 1 |
||
2330 | |||
2331 | baseline grid linespacing: 2 |
||
2332 | |||
2333 | linespacing [optional] -> specifies the linespacing if using fixed linespacing |
||
2334 | |||
2335 | alignment [optional] -> specifies the alignment of the paragraph |
||
2336 | |||
2337 | -> left: 0 |
||
2338 | |||
2339 | -> center: 1 |
||
2340 | |||
2341 | -> right: 2 |
||
2342 | |||
2343 | -> justify: 3 |
||
2344 | |||
2345 | -> extend: 4 |
||
2346 | |||
2347 | leftmargin [optional], rightmargin [optional] -> specify the margin |
||
2348 | |||
2349 | gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
||
2350 | |||
2351 | firstindent [optional] -> the indent of the first line |
||
2352 | |||
2353 | hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
||
2354 | |||
2355 | dropcaplines [optional] -> height (in lines) of the caps if used |
||
2356 | |||
2357 | dropcapoffset [optional] -> offset of the caps if used |
||
2358 | |||
2359 | "charstyle" [optional] -> char style to use |
||
2360 | |||
2361 | </source> |
||
2362 | <translation type="unfinished"></translation> |
||
2363 | </message> |
||
2364 | <message> |
||
2365 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="80"/> |
||
2366 | <source>createCharStyle(...) |
||
2367 | |||
2368 | Creates a character style. This function takes the following keyword parameters: |
||
2369 | |||
2370 | "name" [required] -> name of the char style to create |
||
2371 | |||
2372 | "font" [optional] -> name of the font to use |
||
2373 | |||
2374 | fontsize [optional] -> font size to set (double) |
||
2375 | |||
2376 | "features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
||
2377 | |||
2378 | -> inherit |
||
2379 | |||
2380 | -> bold |
||
2381 | |||
2382 | -> italic |
||
2383 | |||
2384 | -> underline |
||
2385 | |||
2386 | -> underlinewords |
||
2387 | |||
2388 | -> strike |
||
2389 | |||
2390 | -> superscript |
||
2391 | |||
2392 | -> subscript |
||
2393 | |||
2394 | -> outline |
||
2395 | |||
2396 | -> shadowed |
||
2397 | |||
2398 | -> allcaps |
||
2399 | |||
2400 | -> smallcaps |
||
2401 | |||
2402 | "fillcolor" [optional], "fillshade" [optional] -> specify fill options |
||
2403 | |||
2404 | "strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
||
2405 | |||
2406 | baselineoffset [optional] -> offset of the baseline |
||
2407 | |||
2408 | shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
||
2409 | |||
2410 | outlinewidth [optional] -> width of the outline if used |
||
2411 | |||
2412 | underlineoffset [optional], underlinewidth [optional] -> underline options if used |
||
2413 | |||
2414 | strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
||
2415 | |||
2416 | scaleh [optional], scalev [optional] -> scale of the chars |
||
2417 | |||
2418 | tracking [optional] -> tracking of the text |
||
2419 | |||
2420 | "language" [optional] -> language code |
||
2421 | |||
2422 | </source> |
||
2423 | <translation type="unfinished"></translation> |
||
2424 | </message> |
||
2425 | <message> |
||
2426 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="23"/> |
||
2427 | <source>getFontSize(["name"]) -> float |
||
2428 | |||
2429 | Returns the font size in points for the text frame "name". If this text |
||
2430 | frame has some text selected the value assigned to the first character of |
||
2431 | the selection is returned. |
||
2432 | If "name" is not given the currently selected item is used. |
||
2433 | </source> |
||
2434 | <translation type="unfinished">getFontSize(["izena"]) -> mugikorra |
||
2435 | |||
2436 | "izena" testu-markoaren letra-tamaina itzultzen du puntuetan. Testu-markoak testu zati bat hautatuta edukiz gero, hautapeneko aurreneko karaktereari esleitutako balioa itzuliko du. |
||
2437 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
2438 | </message> |
||
2439 | <message> |
||
2440 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="35"/> |
||
2441 | <source>getFont(["name"]) -> string |
||
2442 | |||
2443 | Returns the font name for the text frame "name". If this text frame |
||
2444 | has some text selected the value assigned to the first character |
||
2445 | of the selection is returned. If "name" is not given the currently |
||
2446 | selected item is used. |
||
2447 | </source> |
||
2448 | <translation type="unfinished">getFont(["izena"]) -> katea |
||
2449 | |||
2450 | Testu-markoaren letra-tipoaren izena itzultzen du. Testu-markoak testu zati bat |
||
2451 | hautatuta edukiz gero, hautapeneko aurreneko karaktereari esleitutako balioa |
||
2452 | itzuliko da. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2453 | </translation> |
||
2454 | </message> |
||
2455 | <message> |
||
2456 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="45"/> |
||
2457 | <source>getTextLength(["name"]) -> integer |
||
2458 | |||
2459 | Returns the length of the text in the text frame "name". |
||
2460 | If "name" is not given the currently selected item is used. |
||
2461 | </source> |
||
2462 | <translation type="unfinished">getTextLength(["izena"]) -> osokoa |
||
2463 | |||
2464 | "izena" testu-markoan dagoen testuaren luzera itzultzen du. |
||
2465 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2466 | </translation> |
||
2467 | </message> |
||
2468 | <message> |
||
2469 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="55"/> |
||
2470 | <source>getTextLines(["name"]) -> integer |
||
2471 | |||
2472 | Returns the number of lines of the text in the text frame "name". |
||
2473 | If "name" is not given the currently selected item is used. |
||
2474 | </source> |
||
2475 | <translation type="unfinished"></translation> |
||
2476 | </message> |
||
2477 | <message> |
||
2478 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="67"/> |
||
2479 | <source>getText(["name"]) -> string |
||
2480 | |||
2481 | Returns the text of the text frame "name". If this text frame has some text |
||
2482 | selected, the selected text is returned. All text in the frame, not just |
||
2483 | currently visible text, is returned. If "name" is not given the currently |
||
2484 | selected item is used. |
||
2485 | </source> |
||
2486 | <translation type="unfinished">getText(["izena"]) -> katea |
||
2487 | |||
2488 | "izena" testu-markoan dagoen testua itzultzen du. Testu-markoan testu zati bat |
||
2489 | hautatuta egonez gero, hautatutako testua itzuliko du. Markoan dagoen testu |
||
2490 | guztia itzultzen du, ez ikusgai dagoen testua bakarrik. "izena" ez bada ematen, unean |
||
2491 | hautatutako elementua erabiliko da. |
||
2492 | </translation> |
||
2493 | </message> |
||
2494 | <message> |
||
2495 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="79"/> |
||
2496 | <source>getAllText(["name"]) -> string |
||
2497 | |||
2498 | Returns the text of the text frame "name" and of all text frames which are |
||
2499 | linked with this frame. If this textframe has some text selected, the selected |
||
2500 | text is returned. If "name" is not given the currently selected item is |
||
2501 | used. |
||
2502 | </source> |
||
2503 | <translation type="unfinished">getAllText(["izena"]) -> katea |
||
2504 | |||
2505 | "izena" testu-markoan dagoen eta marko honi estekatuta dauden beste |
||
2506 | testu-marko guztien testua itzultzen du. Testu-markoan testu zati bat hautatuta |
||
2507 | egonez gero, hautatutako testua itzuliko du. |
||
2508 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2509 | |||
2510 | </translation> |
||
2511 | </message> |
||
2512 | <message> |
||
2513 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="89"/> |
||
2514 | <source>getLineSpacing(["name"]) -> float |
||
2515 | |||
2516 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2517 | points. If "name" is not given the currently selected item is used. |
||
2518 | </source> |
||
2519 | <translation type="unfinished">getLineSpacing(["izena"]) -> mugikorra |
||
2520 | |||
2521 | "izena" testu-markoaren lerrotartea ("aurreko tartea") itzultzen du puntuetan adieraziz. |
||
2522 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
2523 | </message> |
||
2524 | <message> |
||
2525 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="100"/> |
||
2526 | <source>getTextDistances(["name"]) -> tuple |
||
2527 | |||
2528 | Returns the text distances of the text frame "name" expressed in points. The |
||
2529 | distances are returned as a tuple like (left, right, top, bottom). If "name" |
||
2530 | is not given the currently selected item is used. |
||
2531 | </source> |
||
2532 | <translation type="unfinished"></translation> |
||
2533 | </message> |
||
2534 | <message> |
||
2535 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="110"/> |
||
2536 | <source>getColumnGap(["name"]) -> float |
||
2537 | |||
2538 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2539 | "name" is not given the currently selected item is used. |
||
2540 | </source> |
||
2541 | <translation type="unfinished">getColumnGap(["izena"]) -> mugikorra |
||
2542 | |||
2543 | "izena" testu-markoaren zutabe-tartearen tamaina itzultzen du puntuetan adieraziz. |
||
2544 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2545 | </translation> |
||
2546 | </message> |
||
2547 | <message> |
||
2548 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="120"/> |
||
2549 | <source>getColumns(["name"]) -> integer |
||
2550 | |||
2551 | Gets the number of columns of the text frame "name". If "name" is not |
||
2552 | given the currently selected item is used. |
||
2553 | </source> |
||
2554 | <translation type="unfinished">getColumns(["izena"]) -> osokoa |
||
2555 | |||
2556 | "izena" testu-markoko zutabeen kopurua lortzen du. |
||
2557 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2558 | </translation> |
||
2559 | </message> |
||
2560 | <message> |
||
2561 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="132"/> |
||
2562 | <source>setText("text", ["name"]) |
||
2563 | |||
2564 | Sets the text of the text frame "name" to the text of the string "text". |
||
2565 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
2566 | for more details. If "name" is not given the currently selected item is |
||
2567 | used. |
||
2568 | </source> |
||
2569 | <translation type="unfinished">setText("esaldia", ["izena"]) |
||
2570 | |||
2571 | "izena" testu-markoko testua "esaldia" testuarekin ezartzen du. |
||
2572 | Testua (edo esaldia) UTF8 kodeketan egon behar du - erabili adibidez |
||
2573 | unicode (testua, 'iso-8859-2'). Ikus MEG xehetasun gehiagorako. |
||
2574 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2575 | </translation> |
||
2576 | </message> |
||
2577 | <message> |
||
2578 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="146"/> |
||
2579 | <source>insertText("text", pos, ["name"]) |
||
2580 | |||
2581 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2582 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2583 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2584 | not given the currently selected Item is used. |
||
2585 | |||
2586 | May throw IndexError for an insertion out of bounds. |
||
2587 | </source> |
||
2588 | <translation type="unfinished"></translation> |
||
2589 | </message> |
||
2590 | <message> |
||
2591 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="159"/> |
||
2592 | <source>setFont("font", ["name"]) |
||
2593 | |||
2594 | Sets the font of the text frame "name" to "font". If there is some text |
||
2595 | selected only the selected text is changed. If "name" is not given the |
||
2596 | currently selected item is used. |
||
2597 | |||
2598 | May throw ValueError if the font cannot be found. |
||
2599 | </source> |
||
2600 | <translation type="unfinished">setFont("letraTipoa", ["izena"]) |
||
2601 | |||
2602 | "izena" testu-markoko letra-tipoa "letraTipoa"rekin ezartzen du. |
||
2603 | Testu zati bat hautatuta egonez gero, hautatutako testua |
||
2604 | soilik aldatuko da. "izena" ez bada ematen, unean hautatutako |
||
2605 | elementua erabiliko da. |
||
2606 | |||
2607 | ValueError abiaraziko da letra-tipoa ez bada aurkitzen. |
||
2608 | </translation> |
||
2609 | </message> |
||
2610 | <message> |
||
2611 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="173"/> |
||
2612 | <source>setFontSize(size, ["name"]) |
||
2613 | |||
2614 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2615 | as a value in points. If there is some text selected only the selected text is |
||
2616 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2617 | currently selected item is used. |
||
2618 | |||
2619 | May throw ValueError for a font size that's out of bounds. |
||
2620 | </source> |
||
2621 | <translation type="unfinished">setFontSize(tamaina, ["izena"]) |
||
2622 | |||
2623 | "izena" testu-markoaren letra-tamaina "tamaina"rekin ezarritzen du. |
||
2624 | "tamaina" eremuko balioa puntuetan adierazita balego gisa erabiliko da. |
||
2625 | Testu zatiren bat hautatuta egonez gero, hautatutako testua bakarrik |
||
2626 | aldatuko da. "tamaina"ren barrutia 1 eta 512 arteko da. "izena" ez |
||
2627 | bada ematen, unean hautatutako elementua erabiliko da. |
||
2628 | |||
2629 | ValueError abiaraziko da letra-tamaina mugetatik kanpo izanez gero. |
||
2630 | </translation> |
||
2631 | </message> |
||
2632 | <message> |
||
2633 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="186"/> |
||
2634 | <source>setLineSpacing(size, ["name"]) |
||
2635 | |||
2636 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2637 | "size" is a value in points. If "name" is not given the currently selected |
||
2638 | item is used. |
||
2639 | |||
2640 | May throw ValueError if the line spacing is out of bounds. |
||
2641 | </source> |
||
2642 | <translation type="unfinished">setLineSpacing(tamaina, ["izena"]) |
||
2643 | |||
2644 | "izena" testu-markoaren lerroartea ("aurreko tartea") "tamainarekin" |
||
2645 | ezartzen du. "tamaina" puntuetan adierazitako balioa da. "izena" ez |
||
2646 | bada ematen, unean hautatutako elementua erabiliko da. |
||
2647 | |||
2648 | ValueError abiaraziko da lerroartea mugetatik kanpo izanez gero. |
||
2649 | </translation> |
||
2650 | </message> |
||
2651 | <message> |
||
2652 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="199"/> |
||
2653 | <source>setTextDistances(left, right, top, bottom, ["name"]) |
||
2654 | |||
2655 | Sets the text distances of the text frame "name" to the values "left" |
||
2656 | "right", "top" and "bottom". If "name" is not given the currently |
||
2657 | selected item is used. |
||
2658 | |||
2659 | May throw ValueError if any of the distances are out of bounds (must be positive). |
||
2660 | </source> |
||
2661 | <translation type="unfinished"></translation> |
||
2662 | </message> |
||
2663 | <message> |
||
2664 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="211"/> |
||
2665 | <source>setColumnGap(size, ["name"]) |
||
2666 | |||
2667 | Sets the column gap of the text frame "name" to the value "size". If |
||
2668 | "name" is not given the currently selected item is used. |
||
2669 | |||
2670 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2671 | </source> |
||
2672 | <translation type="unfinished">setColumnGap(tamaina, ["izena"]) |
||
2673 | |||
2674 | "izena" testu-markoaren zutabe-tartearen "tamaina" balioarekin ezartzen |
||
2675 | du. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2676 | |||
2677 | ValueError abiaraziko da zutabe-tartea mugetatik kanpo izanez |
||
2678 | gero (positiboa izan behar du). |
||
2679 | </translation> |
||
2680 | </message> |
||
2681 | <message> |
||
2682 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="223"/> |
||
2683 | <source>setColumns(nr, ["name"]) |
||
2684 | |||
2685 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2686 | If "name" is not given the currently selected item is used. |
||
2687 | |||
2688 | May throw ValueError if number of columns is not at least one. |
||
2689 | </source> |
||
2690 | <translation type="unfinished">setColumns(zutKop, ["izena"]) |
||
2691 | |||
2692 | "izena" testu-markoan egongo diren zutabe-kopurua "zutKop" osokoarekin ezatzen du. |
||
2693 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2694 | |||
2695 | ValueError abiaraziko da zutabe-kopurua gutxienez bat ez bada. |
||
2696 | </translation> |
||
2697 | </message> |
||
2698 | <message> |
||
2699 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="236"/> |
||
2700 | <source>setTextAlignment(align, ["name"]) |
||
2701 | |||
2702 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2703 | If "name" is not given the currently selected item is used. "align" should |
||
2704 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2705 | |||
2706 | May throw ValueError for an invalid alignment constant. |
||
2707 | </source> |
||
2708 | <translation type="unfinished">setTextAlignment(lerrokatu, ["izena"]) |
||
2709 | |||
2710 | "izena" testu-markoko testua lerrokatzen du zehaztutako "lerrokatu" eremuarekin. |
||
2711 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. "lerrokatu" |
||
2712 | eremuan modulo honetan zehaztutako ALIGN_* konstanteetariko bat erabili |
||
2713 | behar da: ikus dir(scribus). |
||
2714 | |||
2715 | ValueError abiaraziko da baliogabeko konstantea erabiltzen bada lerrokatzeko.</translation> |
||
2716 | </message> |
||
2717 | <message> |
||
2718 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="250"/> |
||
2719 | <source>selectText(start, count, ["name"]) |
||
2720 | |||
2721 | Selects "count" characters of text in the text frame "name" starting from the |
||
2722 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2723 | text selection will be cleared. If "name" is not given the currently |
||
2724 | selected item is used. |
||
2725 | |||
2726 | May throw IndexError if the selection is outside the bounds of the text. |
||
2727 | </source> |
||
2728 | <translation type="unfinished">selectText(hasiera, kopurua, ["izena"]) |
||
2729 | |||
2730 | "kopurua" karaktere hautatzen ditu "izena" izeneko testu-markotik, "hasiera" |
||
2731 | karakteretik hasita. Karaktereak 0tik hasten dira zenbatzen. "kopurua" 0 bada, |
||
2732 | edozein testu-hautapen garbitu egingo da. Ez bada "izena" ematen, unean |
||
2733 | hautatutako elementua erabiliko da. |
||
2734 | |||
2735 | IndexError abiaraziko da hautapena testuaren mugetatik kanpo balego. |
||
2736 | </translation> |
||
2737 | </message> |
||
2738 | <message> |
||
2739 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="261"/> |
||
2740 | <source>deleteText(["name"]) |
||
2741 | |||
2742 | Deletes any text in the text frame "name". If there is some text selected, |
||
2743 | only the selected text will be deleted. If "name" is not given the currently |
||
2744 | selected item is used. |
||
2745 | </source> |
||
2746 | <translation type="unfinished">deleteText(["izena"]) |
||
2747 | |||
2748 | "izena" testu-markoko testua ezabatzen du. Testu zatiren bat hautatuta egonez, |
||
2749 | gero hautatutako testua ezabatuko du. "izena" ez bada ematen, unean |
||
2750 | hautatutako elementua erabiliko da. |
||
2751 | </translation> |
||
2752 | </message> |
||
2753 | <message> |
||
2754 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="272"/> |
||
2755 | <source>setTextColor("color", ["name"]) |
||
2756 | |||
2757 | Sets the text color of the text frame "name" to the color "color". If there |
||
2758 | is some text selected only the selected text is changed. If "name" is not |
||
2759 | given the currently selected item is used. |
||
2760 | </source> |
||
2761 | <translation type="unfinished">setTextColor("kolorea", ["izena"]) |
||
2762 | |||
2763 | "izena" testu-markoko testuaren kolorea "kolorea"rekin ezartzen du. Testu |
||
2764 | zatiren bat hautatuta egonez gero, hautatutako testua aldatuko du. |
||
2765 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2766 | </translation> |
||
2767 | </message> |
||
2768 | <message> |
||
2769 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="282"/> |
||
2770 | <source>setTextStroke("color", ["name"]) |
||
2771 | |||
2772 | Set "color" of the text stroke. If "name" is not given the currently |
||
2773 | selected item is used. |
||
2774 | </source> |
||
2775 | <translation type="unfinished">setTextStroke("kolorea", ["izena"]) |
||
2776 | |||
2777 | Testuaren trazuaren "kolorea" ezartzen du. |
||
2778 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2779 | </translation> |
||
2780 | </message> |
||
2781 | <message> |
||
13279 | cbradney | 2782 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="315"/> |
12918 | cbradney | 2783 | <source>setTextShade(shade, ["name"]) |
2784 | |||
2785 | Sets the shading of the text color of the object "name" to "shade". If |
||
2786 | there is some text selected only the selected text is changed. "shade" must |
||
2787 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2788 | intensity). If "name" is not given the currently selected item is |
||
2789 | used. |
||
2790 | </source> |
||
2791 | <translation type="unfinished">setTextShade(itzaldura, ["izena"]) |
||
2792 | |||
2793 | "izena" objektuaren testu-kolorearen itzaldura ezartzen du "itzaldura"rekin. |
||
2794 | Testu zatiren bat hautatuta egonez gero, hautatutako testua aldatuko du. |
||
2795 | "itzaldura" eremuak 0 (argiena) eta 100 (intentsitate osoko kolorea) arteko balioa |
||
2796 | izan behar du. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
2797 | </translation> |
||
2798 | </message> |
||
2799 | <message> |
||
13279 | cbradney | 2800 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="328"/> |
12918 | cbradney | 2801 | <source>linkTextFrames("fromname", "toname") |
2802 | |||
2803 | Link two text frames. The frame named "fromname" is linked to the |
||
2804 | frame named "toname". The target frame must be an empty text frame |
||
2805 | and must not link to or be linked from any other frames already. |
||
2806 | |||
2807 | May throw ScribusException if linking rules are violated. |
||
2808 | </source> |
||
2809 | <translation type="unfinished">linkTextFrames("izenetik", "izenera") |
||
2810 | |||
2811 | Bi testu-marko estekatzen ditu. "izenetik" markoa estekatuko du |
||
2812 | "izenera" markora. Helburuko markoa testu-marko hutsa izan behar du |
||
2813 | eta ezin du beste marko batekin edo batetik estekatuta egon. |
||
2814 | |||
2815 | ScribusException abiaraziko da estekatzeko arauak bortxatuz gero. |
||
2816 | </translation> |
||
2817 | </message> |
||
2818 | <message> |
||
13279 | cbradney | 2819 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="345"/> |
12918 | cbradney | 2820 | <source>unlinkTextFrames("name") |
2821 | |||
2822 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2823 | frame was in the middle of a chain, the previous and next frames will be |
||
2824 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
2825 | |||
2826 | May throw ScribusException if linking rules are violated. |
||
2827 | </source> |
||
2828 | <translation type="unfinished">unlinkTextFrames("izena") |
||
2829 | |||
2830 | Izendatutako objektua kentzen du testu-marko mugikorretik/esteketatik. |
||
2831 | Markoa kate baten erdian balego aurreko eta hurrengo markoak elkarrekin |
||
2832 | konektatu egingo lirateke: adbi. unlinkTextFrames("b") exekutatzen bada, |
||
2833 | 'a->b->c' honakoa izango da: 'a->c'. |
||
2834 | |||
2835 | ScribusException abiaraziko da estekatzeko arauak bortxatuz gero.</translation> |
||
2836 | </message> |
||
2837 | <message> |
||
13279 | cbradney | 2838 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="358"/> |
12918 | cbradney | 2839 | <source>traceText(["name"]) |
2840 | |||
2841 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2842 | currently selected item is used.</source> |
||
2843 | <translation type="unfinished">traceText(["izena"]) |
||
2844 | |||
2845 | "izena" testu-markoa eskemara bihurtzen du. |
||
2846 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
2847 | </message> |
||
2848 | <message> |
||
13279 | cbradney | 2849 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="372"/> |
12918 | cbradney | 2850 | <source>textOverflows(["name", nolinks]) -> integer |
2851 | |||
2852 | Returns the actual number of overflowing characters in text frame "name". |
||
2853 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2854 | use text frame linking. Without this parameter it search all linking chain. |
||
2855 | |||
2856 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2857 | </source> |
||
2858 | <translation type="unfinished">textOverflows(["izena", estekaGabe]) -> osokoa |
||
2859 | |||
2860 | "izena" testu-markoan unean gainezka dauden karaktere-kopurua itzultzen du. |
||
2861 | estekaGabe zero ez den beste balio bat badu, marko bakarra hartuko du, ez |
||
2862 | du testu-markoaren estekatzea erabiliko. Parametro hau gabe estekatutako |
||
2863 | guztietan burutuko du bilaketa. |
||
2864 | |||
2865 | WrongFrameTypeError abiaraziko da helburuko markoa ez bada testu-marko motakoa. |
||
2866 | </translation> |
||
2867 | </message> |
||
2868 | <message> |
||
13279 | cbradney | 2869 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="385"/> |
12918 | cbradney | 2870 | <source>hyphenateText(["name"]) -> bool |
2871 | |||
2872 | Does hyphenation on text frame "name". |
||
2873 | If "name" is not given the currently selected item is used. |
||
2874 | |||
2875 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2876 | </source> |
||
2877 | <translation type="unfinished"></translation> |
||
2878 | </message> |
||
2879 | <message> |
||
13279 | cbradney | 2880 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="399"/> |
12918 | cbradney | 2881 | <source>dehyphenateText(["name"]) -> bool |
2882 | |||
2883 | Does dehyphenation on text frame "name". |
||
2884 | If "name" is not given the currently selected item is used. |
||
2885 | |||
2886 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2887 | </source> |
||
2888 | <translation type="unfinished"></translation> |
||
2889 | </message> |
||
2890 | <message> |
||
13279 | cbradney | 2891 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="414"/> |
12918 | cbradney | 2892 | <source>setPDFBookmark("toggle", ["name"]) |
2893 | |||
2894 | Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2895 | If "name" is not given the currently selected item is used. |
||
2896 | |||
2897 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2898 | </source> |
||
2899 | <translation type="unfinished"></translation> |
||
2900 | </message> |
||
2901 | <message> |
||
13279 | cbradney | 2902 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="426"/> |
12918 | cbradney | 2903 | <source>isPDFBookmark(["name"]) -> bool |
2904 | |||
2905 | Returns true if the text frame "name" is a PDF bookmark. |
||
2906 | If "name" is not given the currently selected item is used. |
||
2907 | |||
2908 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2909 | </source> |
||
2910 | <translation type="unfinished">isPDFBookmark(["izena"]) -> boolearra |
||
2911 | |||
2912 | |||
2913 | "izena" izeneko testu-markoa PDFko laster-marka bada TRUE itzuliko du. |
||
2914 | Ez bada "izena" ematen, unean hautatutako elementua erabiliko da. |
||
2915 | |||
2916 | WrongFrameTypeError abiaraziko da helburuko markoa ez bada testu-marko motakoa.</translation> |
||
2917 | </message> |
||
2918 | <message> |
||
2919 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="21"/> |
||
2920 | <source>messagebarText("string") |
||
2921 | |||
2922 | Writes the "string" into the Scribus message bar (status line). The text |
||
2923 | must be UTF8 encoded or 'unicode' string(recommended). |
||
2924 | </source> |
||
2925 | <translation type="unfinished">messagebarText("katea") |
||
2926 | |||
2927 | "katea" Scribus aplikazioko mezu-barran (egoera-barran) idazten du. |
||
2928 | Testua UTF8 kodeketako edo Unicode motako katea izan behar du (gomendatua).</translation> |
||
2929 | </message> |
||
2930 | <message> |
||
2931 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="34"/> |
||
2932 | <source>progressReset() |
||
2933 | |||
2934 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2935 | new progress bar use. See progressSet. |
||
2936 | </source> |
||
2937 | <translation type="unfinished">progressReset() |
||
2938 | |||
2939 | Scribus aplikazioko progresio-barrako aurreko ezarpenak gabritzen ditu. |
||
2940 | Progresio-barra berria erabili aurretik deitu ohi da. Ikus progressSet. |
||
2941 | </translation> |
||
2942 | </message> |
||
2943 | <message> |
||
2944 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="47"/> |
||
2945 | <source>progressTotal(max) |
||
2946 | |||
2947 | Sets the progress bar's maximum steps value to the specified number. |
||
2948 | See progressSet. |
||
2949 | </source> |
||
2950 | <translation type="unfinished">progressTotal(max) |
||
2951 | |||
2952 | Progresio-barraren urrats kopuru maximoaren balioa ezartzen du |
||
2953 | emandako balioarekin. Ikus progressSet. |
||
2954 | </translation> |
||
2955 | </message> |
||
2956 | <message> |
||
2957 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="61"/> |
||
2958 | <source>progressSet(nr) |
||
2959 | |||
2960 | Set the progress bar position to "nr", a value relative to the previously set |
||
2961 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2962 | total number of steps and the number of steps completed so far and it will |
||
2963 | display the percentage of steps that have been completed. You can specify the |
||
2964 | total number of steps with progressTotal(). The current number of steps is set |
||
2965 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2966 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
2967 | </source> |
||
2968 | <translation type="unfinished">progressSet(zbkia) |
||
2969 | |||
2970 | Progresio-barraren posizioa "zbkia" baliora ezartzen du, aurrez ezarritako |
||
2971 | progressTotal-arekiko balio erlatiboa. Progresio-barrak urratsen kontzeptua |
||
2972 | erabiltzen du, urratsen kopuru osoa eta landutako urratsen kopurua eman |
||
2973 | eta berak burututako urratsen ehunekoa bistaratzen du. progressTotal() funtzioarekin |
||
2974 | urratsen kopuru osoa ezar dezakezu. Uneko urratsen kopurua |
||
2975 | progressSet() funtzioarekin ezarrita dago. Progresio-barra berrasiera daiteke |
||
2976 | progressReset() funtzioa erabiliz. [Trolltech-eko Qt dokumentazioan |
||
2977 | oinarritutako datuak] |
||
2978 | </translation> |
||
2979 | </message> |
||
2980 | <message> |
||
2981 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="69"/> |
||
2982 | <source>setCursor() |
||
2983 | |||
2984 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2985 | </source> |
||
2986 | <translation type="unfinished">setCursor() |
||
2987 | |||
2988 | [EZ DAGO ONARTUTA!] Gauza batzuk honda ditzakeenez, oraingoz ez erabili. |
||
2989 | </translation> |
||
2990 | </message> |
||
2991 | <message> |
||
2992 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="83"/> |
||
2993 | <source>docChanged(bool) |
||
2994 | |||
2995 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
2996 | useful to call this procedure when you're changing the document, because Scribus |
||
2997 | won't automatically notice when you change the document using a script. |
||
2998 | </source> |
||
2999 | <translation type="unfinished">docChanged(boolearra) |
||
3000 | |||
3001 | Scribus-eko ikono-barran eta Gorde menu-elementuan ikonoa gordetzea |
||
3002 | gaitu/desgaitu egiten du. Funtzio hau erabilgarria da dokumentuz aldatzean, |
||
3003 | Scribus aplikazioak ez baitu automatikoki jakinarazten script bat erabiltzean |
||
3004 | dokumentuz aldatu denik. |
||
3005 | </translation> |
||
3006 | </message> |
||
3007 | <message> |
||
3008 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="95"/> |
||
3009 | <source>zoomDocument(double) |
||
3010 | |||
3011 | Zoom the document in main GUI window. Actions have whole number |
||
3012 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
3013 | </source> |
||
3014 | <translation type="unfinished">zoomDocument(bikoitza) |
||
3015 | |||
3016 | Dokumentuaren zooma lantzen du interfazeko leiho nagusian. Ekintzek |
||
3017 | 20.0, 100.0, e.a. bezalako zenbaki osoa dute. Zooma finkatzeko |
||
3018 | -100 erabiltzen da markatzaile gisa.</translation> |
||
3019 | </message> |
||
3020 | <message> |
||
3021 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="106"/> |
||
3022 | <source>scrollDocument(x,y) |
||
3023 | |||
3024 | Scroll the document in main GUI window by x and y. |
||
3025 | </source> |
||
3026 | <translation type="unfinished"></translation> |
||
3027 | </message> |
||
3028 | <message> |
||
3029 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="21"/> |
||
3030 | <source>placeSVG("filename", x, y) |
||
3031 | |||
3032 | Places the SVG "filename" onto the current page, |
||
3033 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
3034 | |||
3035 | If loading was successful, the selection contains the imported SVG |
||
3036 | </source> |
||
3037 | <translation type="unfinished"></translation> |
||
3038 | </message> |
||
3039 | <message> |
||
3040 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="33"/> |
||
3041 | <source>placeEPS("filename", x, y) |
||
3042 | |||
3043 | Places the EPS "filename" onto the current page, |
||
3044 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
3045 | |||
3046 | If loading was successful, the selection contains the imported EPS |
||
3047 | </source> |
||
3048 | <translation type="unfinished"></translation> |
||
3049 | </message> |
||
3050 | <message> |
||
3051 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="45"/> |
||
3052 | <source>placeSXD("filename", x, y) |
||
3053 | |||
3054 | Places the SXD "filename" onto the current page, |
||
3055 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
3056 | |||
3057 | If loading was successful, the selection contains the imported SXD |
||
3058 | </source> |
||
3059 | <translation type="unfinished"></translation> |
||
3060 | </message> |
||
3061 | <message> |
||
3062 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="57"/> |
||
3063 | <source>placeODG("filename", x, y) |
||
3064 | |||
3065 | Places the ODG "filename" onto the current page, |
||
3066 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
3067 | |||
3068 | If loading was successful, the selection contains the imported ODG |
||
3069 | </source> |
||
3070 | <translation type="unfinished"></translation> |
||
3071 | </message> |
||
13279 | cbradney | 3072 | <message> |
3073 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="120"/> |
||
3074 | <source>isSpotColor("name") -> bool |
||
3075 | |||
3076 | Returns True if the color "name" is a spot color. |
||
3077 | See also setSpotColor() |
||
3078 | |||
3079 | May raise NotFoundError if a named color wasn't found. |
||
3080 | May raise ValueError if an invalid color name is specified. |
||
3081 | </source> |
||
3082 | <translation type="unfinished"></translation> |
||
3083 | </message> |
||
3084 | <message> |
||
3085 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="135"/> |
||
3086 | <source>setSpotColor("name", spot) |
||
3087 | |||
3088 | Set the color "name" as a spot color if spot parameter is True. |
||
3089 | See also isSpotColor() |
||
3090 | |||
3091 | May raise NotFoundError if a named color wasn't found. |
||
3092 | May raise ValueError if an invalid color name is specified. |
||
3093 | </source> |
||
3094 | <translation type="unfinished"></translation> |
||
3095 | </message> |
||
3096 | <message> |
||
3097 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="167"/> |
||
3098 | <source>scaleImage(x, y [, "name"]) |
||
3099 | |||
3100 | Sets the internal scaling factors of the picture in the image frame "name". |
||
3101 | If "name" is not given the currently selected item is used. A number of 1 |
||
3102 | means 100 %. Internal scaling factors are different from the values shown on |
||
3103 | properties palette. Note : deprecated, use setImageScale() instead. |
||
3104 | |||
3105 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
3106 | </source> |
||
3107 | <translation type="unfinished"></translation> |
||
3108 | </message> |
||
3109 | <message> |
||
3110 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="180"/> |
||
3111 | <source>setImageScale(x, y [, "name"]) |
||
3112 | |||
3113 | Sets the scaling factors of the picture in the image frame "name". |
||
3114 | If "name" is not given the currently selected item is used. A number of 1 |
||
3115 | means 100 %. Scaling factors are equal to the values shown on properties palette. |
||
3116 | |||
3117 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
3118 | </source> |
||
3119 | <translation type="unfinished"></translation> |
||
3120 | </message> |
||
3121 | <message> |
||
3122 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="33"/> |
||
3123 | <source>setGradientStop("color", shade, opacity, ramppoint, ["name"]) |
||
3124 | |||
3125 | Set or add a gradient stop to the gradient fill of the object "name" at position ramppoint. |
||
3126 | Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill() |
||
3127 | must have been called previously for the gradient fill to be visible. |
||
3128 | </source> |
||
3129 | <translation type="unfinished"></translation> |
||
3130 | </message> |
||
3131 | <message> |
||
3132 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="292"/> |
||
3133 | <source>setTextScalingV(scale, ["name"]) |
||
3134 | |||
3135 | Sets the vertical character scaling of the object "name" to "scale" in percent. |
||
3136 | If "name" is not given the currently selected item is used. |
||
3137 | </source> |
||
3138 | <translation type="unfinished"></translation> |
||
3139 | </message> |
||
3140 | <message> |
||
3141 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="302"/> |
||
3142 | <source>setTextScalingH(scale, ["name"]) |
||
3143 | |||
3144 | Sets the horizontal character scaling of the object "name" to "scale" in percent. |
||
3145 | If "name" is not given the currently selected item is used. |
||
3146 | </source> |
||
3147 | <translation type="unfinished"></translation> |
||
3148 | </message> |
||
12918 | cbradney | 3149 | </context> |
3150 | <context> |
||
6654 | mrdocs | 3151 | <name>#</name> |
1135 | cbradney | 3152 | <message> |
9729 | cbradney | 3153 | <location filename="" line="136953768"/> |
6769 | cbradney | 3154 | <source>getFontSize(["name"]) -> float |
1135 | cbradney | 3155 | |
3156 | Returns the font size in points for the text frame "name". If this text |
||
3157 | frame has some text selected the value assigned to the first character of |
||
3158 | the selection is returned. |
||
3159 | If "name" is not given the currently selected item is used. |
||
3160 | </source> |
||
6769 | cbradney | 3161 | <translation type="obsolete">getFontSize(["izena"]) -> mugikorra |
6654 | mrdocs | 3162 | |
3163 | "izena" testu-markoaren letra-tamaina itzultzen du puntuetan. Testu-markoak testu zati bat hautatuta edukiz gero, hautapeneko aurreneko karaktereari esleitutako balioa itzuliko du. |
||
3164 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
1135 | cbradney | 3165 | </message> |
3166 | <message> |
||
9729 | cbradney | 3167 | <location filename="" line="136953768"/> |
6769 | cbradney | 3168 | <source>getColorNames() -> list |
1135 | cbradney | 3169 | |
3170 | Returns a list containing the names of all defined colors in the document. |
||
3171 | If no document is open, returns a list of the default document colors. |
||
3172 | </source> |
||
6769 | cbradney | 3173 | <translation type="obsolete">getColorNames() -> zerrenda |
6654 | mrdocs | 3174 | |
3175 | Dokumentuan definitutako kolore guztien izenen zerrenda itzultzen du. |
||
3176 | Dokumenturik ez balego irekita, dokumentu lehenetsiaren koloreen zerrenda |
||
3177 | itzuliko luke.</translation> |
||
1135 | cbradney | 3178 | </message> |
3179 | <message> |
||
9729 | cbradney | 3180 | <location filename="" line="136953768"/> |
6769 | cbradney | 3181 | <source>newDocDialog() -> bool |
1135 | cbradney | 3182 | |
3183 | Displays the "New Document" dialog box. Creates a new document if the user |
||
3184 | accepts the settings. Does not create a document if the user presses cancel. |
||
3185 | Returns true if a new document was created. |
||
3186 | </source> |
||
6769 | cbradney | 3187 | <translation type="obsolete">newDocDialog() -> boolearra |
6654 | mrdocs | 3188 | |
3189 | "Dokumentu berria" elkarrizketa-koadroa bistaratzen du. Dokumentu berria sortuko du erabiltzaileak ezarpenak onartuz gero. Ez du dokumenturik sortuko |
||
3190 | erabiltzaileak bertan behera uzteko botoia sakatzen badu. EGIA itzultzen du |
||
3191 | dokumentu bat sortzean.</translation> |
||
1135 | cbradney | 3192 | </message> |
3193 | <message> |
||
9729 | cbradney | 3194 | <location filename="" line="136953768"/> |
6769 | cbradney | 3195 | <source>getFillColor(["name"]) -> string |
1135 | cbradney | 3196 | |
3197 | Returns the name of the fill color of the object "name". |
||
3198 | If "name" is not given the currently selected item is used. |
||
3199 | </source> |
||
6769 | cbradney | 3200 | <translation type="obsolete">getFillColor(["izena"]) -> katea |
1135 | cbradney | 3201 | |
6654 | mrdocs | 3202 | "izena" objektuaren kolore-betegarriaren izena itzultzen du. |
3203 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
1135 | cbradney | 3204 | </message> |
3205 | <message> |
||
9729 | cbradney | 3206 | <location filename="" line="136953768"/> |
6769 | cbradney | 3207 | <source>setRedraw(bool) |
1135 | cbradney | 3208 | |
3209 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
3210 | This change will persist even after the script exits, so make sure to call |
||
3211 | setRedraw(True) in a finally: clause at the top level of your script. |
||
3212 | </source> |
||
6769 | cbradney | 3213 | <translation type="obsolete">setRedraw(boolearra) |
6654 | mrdocs | 3214 | |
3215 | Boolearraren balioa FALSE (FALTSUA) denean orria birmarraztea desgaitzen du, bestela |
||
3216 | (EGIA bada) berriro marraztea gaitzen du. Aldaketa hau mantendu egingo da nahiz |
||
3217 | eta script-ak irten egin, beraz ziurtatu amaitzean setRedraw(TRUE) funtzioari deitzeaz: jarri zure script-aren maila gorenean.</translation> |
||
1135 | cbradney | 3218 | </message> |
3219 | <message> |
||
9729 | cbradney | 3220 | <location filename="" line="136953768"/> |
6769 | cbradney | 3221 | <source>createRect(x, y, width, height, ["name"]) -> string |
1135 | cbradney | 3222 | |
3223 | Creates a new rectangle on the current page and returns its name. The |
||
3224 | coordinates are given in the current measurement units of the document |
||
3225 | (see UNIT constants). "name" should be a unique identifier for the object |
||
3226 | because you need this name to reference that object in future. If "name" |
||
3227 | is not given Scribus will create one for you. |
||
3228 | |||
6769 | cbradney | 3229 | May raise NameExistsError if you explicitly pass a name that's already used. |
1135 | cbradney | 3230 | </source> |
6769 | cbradney | 3231 | <translation type="obsolete">createRect(x, y, zabalera, altuera, ["izena"]) -> katea |
6654 | mrdocs | 3232 | |
3233 | Laukizuzen berria sortzen du uneko orrian eta bere izena itzultzen du. Koordenatuak uneko dokumentua neurtzeko unitateetan ematen dira (ikus UNIT konstanteak). "Izena" objektuaren identifikatzaile bakarra izan daiteke, etorkizunean objektu honi erreferentzia egiteko erabiliko baita. "izena" ez bada ematen, Scribus aplikazioak emago dio zure ordez. |
||
3234 | |||
3235 | NameExistsError abiaraziko da esplizitoki emandako izena lehendik ere |
||
3236 | egonez gero.</translation> |
||
1135 | cbradney | 3237 | </message> |
3238 | <message> |
||
9729 | cbradney | 3239 | <location filename="" line="136953768"/> |
6769 | cbradney | 3240 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
1135 | cbradney | 3241 | |
3242 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
3243 | the same as for setFillColor() and setFillShade(). See the constants for |
||
6769 | cbradney | 3244 | available types (FILL_<type>). |
1135 | cbradney | 3245 | </source> |
6769 | cbradney | 3246 | <translation type="obsolete">setGradientFill(mota, "kolorea1", itzaldura1, "kolorea2", itzaldura2, ["izena"]) |
6654 | mrdocs | 3247 | |
3248 | "izena" objektuaren gradiente betegarria motarekin ezartzen du. Koloreen |
||
6769 | cbradney | 3249 | azalpenak setFillColor() eta setFillShade() funtzioetakoak bezalakoak dira. Ikusi mota erabilgarrien konstanteak (FILL_<mota>).</translation> |
1135 | cbradney | 3250 | </message> |
3251 | <message> |
||
9729 | cbradney | 3252 | <location filename="" line="136953768"/> |
6769 | cbradney | 3253 | <source>messagebarText("string") |
1135 | cbradney | 3254 | |
3255 | Writes the "string" into the Scribus message bar (status line). The text |
||
6769 | cbradney | 3256 | must be UTF8 encoded or 'unicode' string(recommended). |
1135 | cbradney | 3257 | </source> |
6769 | cbradney | 3258 | <translation type="obsolete">messagebarText("katea") |
6654 | mrdocs | 3259 | |
3260 | "katea" Scribus aplikazioko mezu-barran (egoera-barran) idazten du. |
||
3261 | Testua UTF8 kodeketako edo Unicode motako katea izan behar du (gomendatua).</translation> |
||
1135 | cbradney | 3262 | </message> |
3263 | <message> |
||
9729 | cbradney | 3264 | <location filename="" line="136953768"/> |
6769 | cbradney | 3265 | <source>newPage(where [,"masterpage"]) |
3064 | cbradney | 3266 | |
3267 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
3268 | document, otherwise the new page is inserted before "where". Page numbers are |
||
3269 | counted from 1 upwards, no matter what the displayed first page number of your |
||
3270 | document is. The optional parameter "masterpage" specifies the name of the |
||
3271 | master page for the new page. |
||
3272 | |||
3273 | May raise IndexError if the page number is out of range |
||
3274 | </source> |
||
6769 | cbradney | 3275 | <translation type="obsolete">newPage(non [,"orriMaisua"]) |
6654 | mrdocs | 3276 | |
3277 | Orrialde berria sortzen du. "non" -1 balioa izanez gero, orrialde berria erantsiko zaio |
||
3278 | dokumentuari, bestela orri berria "non" aurretik txertatuko da. Orrialdeen zenbakiak |
||
3279 | 1etik gorantz zenbatzen dira, berdin dio dokumentuko aurreneko orrialdearen |
||
3280 | zenbakia zein den. Aukerazko "orrimaisua" parametroak orri maisuaren izena zehazten du orrialde berriarentzako. |
||
3281 | |||
3282 | Orrialdearen zenbakia barrutitik kanpo egonez gero IndexError abiaraziko da. |
||
3283 | </translation> |
||
3064 | cbradney | 3284 | </message> |
3285 | <message> |
||
9729 | cbradney | 3286 | <location filename="" line="136953768"/> |
6769 | cbradney | 3287 | <source>importSVG("string") |
3064 | cbradney | 3288 | |
3289 | The "string" must be a valid filename for a SVG image. The text |
||
6769 | cbradney | 3290 | must be UTF8 encoded or 'unicode' string(recommended). |
3064 | cbradney | 3291 | </source> |
6769 | cbradney | 3292 | <translation type="obsolete">importSVG("katea") |
6654 | mrdocs | 3293 | |
3294 | SVG irudiaren baliozko fitxategi-izena eduki behar du "katea" parametroak. |
||
3295 | Testua UTF8 kodeketako edo Unicode motako katea izan behar du (gomendatua).</translation> |
||
3064 | cbradney | 3296 | </message> |
3824 | cbradney | 3297 | <message> |
9729 | cbradney | 3298 | <location filename="" line="136953768"/> |
6769 | cbradney | 3299 | <source>newDocument(size, margins, orientation, firstPageNumber, |
3300 | unit, pagesType, firstPageOrder) -> bool |
||
3824 | cbradney | 3301 | |
3302 | Creates a new document and returns true if successful. The parameters have the |
||
3303 | following meaning: |
||
3304 | |||
3305 | size = A tuple (width, height) describing the size of the document. You can |
||
6769 | cbradney | 3306 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
3824 | cbradney | 3307 | |
3308 | margins = A tuple (left, right, top, bottom) describing the document |
||
3309 | margins |
||
3310 | |||
3311 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
3312 | |||
3313 | firstPageNumer = is the number of the first page in the document used for |
||
6769 | cbradney | 3314 | pagenumbering. While you'll usually want 1, it's useful to have higher |
3315 | numbers if you're creating a document in several parts. |
||
3824 | cbradney | 3316 | |
3317 | unit: this value sets the measurement units used by the document. Use a |
||
3318 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
3319 | UNIT_PICAS, UNIT_POINTS. |
||
3320 | |||
3321 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
3322 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
3323 | PAGE_4 is 4-fold. |
||
3324 | |||
3325 | firstPageOrder = What is position of first page in the document. |
||
3326 | Indexed from 0 (0 = first). |
||
3327 | |||
3328 | The values for width, height and the margins are expressed in the given unit |
||
3329 | for the document. PAPER_* constants are expressed in points. If your document |
||
3330 | is not in points, make sure to account for this. |
||
3331 | |||
3332 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
6654 | mrdocs | 3333 | PAGE_4, 3) |
3824 | cbradney | 3334 | |
3335 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
3336 | </source> |
||
6769 | cbradney | 3337 | <translation type="obsolete">newDocument(tamaina, marjinak, orientazioa, lehenOrriZenbakia, |
3338 | unitatea, orriMotak, lehenOrriOrdena) -> boolearra |
||
6654 | mrdocs | 3339 | |
3340 | Dokumentu berria sortzen du, eta TRUE (EGIA) itzultzen du ongi sortzen badu. Parametroek honako esanahia dute: |
||
3341 | |||
3342 | tamaina = dokumentuaren tamaina azaltzen duen tupla (zabalera, altuera). |
||
6769 | cbradney | 3343 | Aurredefinitutako PAPER_<paper_mota> konstanteak erabil ditzakezu, adib. |
6654 | mrdocs | 3344 | PAPER_A4, e.a. |
3345 | |||
3346 | marjinak = dokumentuaren marjinak zehatzen duen tupla (ezkerra, eskuina, ,goia, behea). |
||
3347 | |||
3348 | orientazioa = orriaren orientazioa - konstanteak: PORTRAIT (bertikala), |
||
3349 | LANDSCAPE (horizontala) |
||
3350 | |||
3351 | lehenOrriZenbakia = dokumentuko aurreneko orriaren zenbakia da, orriak |
||
3352 | zenbatzeko erabiliko dena. Gehienetan 1 balioa erabiltzea nahiko duzun arren, |
||
3353 | zenbaki altuagoak erabil ditzakezu hainbat zatiko dokumentua sortzean. |
||
3354 | |||
3355 | unitatea = dokumentua neurtzeko erabilitzen den unitatea ezartzen du. |
||
3356 | Aurrez definitutako konstanteak erabil ditzakezu: UNIT_INCHES (atzak), |
||
3357 | UNIT_MILLIMETERS (milimetroak), UNIT_PICAS (pikak) , UNIT_POINTS (puntuak). |
||
3358 | |||
3359 | orriMotak = aurrez definitutako PAGE_n konstanteetariko bat. |
||
3360 | Page_1 orri bakuna da, PAGE_2 bi aldetako dokumentuak dira, PAGE_3 3 orriko eta PAGE_4 4 orriko tolesturak dira. |
||
3361 | |||
3362 | lehenOrriOrdena = dokumentuko aurreneko orriaren posizioa. |
||
3363 | 0tik indexatua (0 = lehena). |
||
3364 | |||
3365 | Zabalera, altuera eta marjinen balioak dokumentuko unitateetan ematen dira. |
||
3366 | PAPER_* konstanteak puntuetan adierazita daude. Dokumentua ez badago |
||
3367 | puntuetan neurtuta, ziurtatu hau kontutan duzula. |
||
3368 | |||
3369 | adibidea: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
3370 | PAGE_4, 3) |
||
3371 | |||
3372 | ScribusError abiaraziko du lehenOrriOrdena eremuko balioa orriMotak baimendutakoa baino |
||
3373 | handiagoa bada. |
||
3374 | </translation> |
||
3824 | cbradney | 3375 | </message> |
6769 | cbradney | 3376 | </context> |
3377 | <context> |
||
418 | Franz | 3378 | <name>@default</name> |
3379 | <message> |
||
12612 | cbradney | 3380 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="23"/> |
3381 | <source>moveObject(dx, dy [, "name"]) |
||
3382 | |||
3383 | Moves the object "name" by dx and dy relative to its current position. The |
||
3384 | distances are expressed in the current measurement unit of the document (see |
||
3385 | UNIT constants). If "name" is not given the currently selected item is used. |
||
3386 | If the object "name" belongs to a group, the whole group is moved. |
||
3387 | </source> |
||
12918 | cbradney | 3388 | <translation type="obsolete">moveObject(dx, dy [, "izena"]) |
12612 | cbradney | 3389 | |
3390 | "izena" objektua desplazatzen du dx eta dy balioekin uneko posiziotik. Dokumentuan |
||
3391 | uneko neurtzeko unitateetan adierazten dira distantziak (ikus UNIT konstanteak). |
||
3392 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3393 | "izena" objektua talde batekoa bada, talde osoa desplazatuko da. |
||
3394 | </translation> |
||
3395 | </message> |
||
3396 | <message> |
||
3397 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="21"/> |
||
3398 | <source>getColorNames() -> list |
||
3399 | |||
3400 | Returns a list containing the names of all defined colors in the document. |
||
3401 | If no document is open, returns a list of the default document colors. |
||
3402 | </source> |
||
12918 | cbradney | 3403 | <translation type="obsolete">getColorNames() -> zerrenda |
12612 | cbradney | 3404 | |
3405 | Dokumentuan definitutako kolore guztien izenen zerrenda itzultzen du. |
||
3406 | Dokumenturik ez balego irekita, dokumentu lehenetsiaren koloreen zerrenda |
||
3407 | itzuliko luke.</translation> |
||
3408 | </message> |
||
3409 | <message> |
||
3410 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="22"/> |
||
3411 | <source>newDocDialog() -> bool |
||
3412 | |||
3413 | Displays the "New Document" dialog box. Creates a new document if the user |
||
3414 | accepts the settings. Does not create a document if the user presses cancel. |
||
3415 | Returns true if a new document was created. |
||
3416 | </source> |
||
12918 | cbradney | 3417 | <translation type="obsolete">newDocDialog() -> boolearra |
12612 | cbradney | 3418 | |
3419 | "Dokumentu berria" elkarrizketa-koadroa bistaratzen du. Dokumentu berria sortuko du erabiltzaileak ezarpenak onartuz gero. Ez du dokumenturik sortuko |
||
3420 | erabiltzaileak bertan behera uzteko botoia sakatzen badu. EGIA itzultzen du |
||
3421 | dokumentu bat sortzean.</translation> |
||
3422 | </message> |
||
3423 | <message> |
||
3424 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="21"/> |
||
3425 | <source>getFillColor(["name"]) -> string |
||
3426 | |||
3427 | Returns the name of the fill color of the object "name". |
||
3428 | If "name" is not given the currently selected item is used. |
||
3429 | </source> |
||
12918 | cbradney | 3430 | <translation type="obsolete">getFillColor(["izena"]) -> katea |
12612 | cbradney | 3431 | |
3432 | "izena" objektuaren kolore-betegarriaren izena itzultzen du. |
||
3433 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
3434 | </message> |
||
3435 | <message> |
||
3436 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="24"/> |
||
3437 | <source>setRedraw(bool) |
||
3438 | |||
3439 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
3440 | This change will persist even after the script exits, so make sure to call |
||
3441 | setRedraw(True) in a finally: clause at the top level of your script. |
||
3442 | </source> |
||
12918 | cbradney | 3443 | <translation type="obsolete">setRedraw(boolearra) |
12612 | cbradney | 3444 | |
3445 | Boolearraren balioa FALSE (FALTSUA) denean orria birmarraztea desgaitzen du, bestela |
||
3446 | (EGIA bada) berriro marraztea gaitzen du. Aldaketa hau mantendu egingo da nahiz |
||
3447 | eta script-ak irten egin, beraz ziurtatu amaitzean setRedraw(TRUE) funtzioari deitzeaz: jarri zure script-aren maila gorenean.</translation> |
||
3448 | </message> |
||
3449 | <message> |
||
3450 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="26"/> |
||
3451 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
3452 | |||
3453 | Creates a new rectangle on the current page and returns its name. The |
||
3454 | coordinates are given in the current measurement units of the document |
||
3455 | (see UNIT constants). "name" should be a unique identifier for the object |
||
3456 | because you need this name to reference that object in future. If "name" |
||
3457 | is not given Scribus will create one for you. |
||
3458 | |||
3459 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3460 | </source> |
||
12918 | cbradney | 3461 | <translation type="obsolete">createRect(x, y, zabalera, altuera, ["izena"]) -> katea |
12612 | cbradney | 3462 | |
3463 | Laukizuzen berria sortzen du uneko orrian eta bere izena itzultzen du. Koordenatuak uneko dokumentua neurtzeko unitateetan ematen dira (ikus UNIT konstanteak). "Izena" objektuaren identifikatzaile bakarra izan daiteke, etorkizunean objektu honi erreferentzia egiteko erabiliko baita. "izena" ez bada ematen, Scribus aplikazioak emago dio zure ordez. |
||
3464 | |||
3465 | NameExistsError abiaraziko da esplizitoki emandako izena lehendik ere |
||
3466 | egonez gero.</translation> |
||
3467 | </message> |
||
3468 | <message> |
||
3469 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="26"/> |
||
3470 | <source>newPage(where [,"masterpage"]) |
||
3471 | |||
3472 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
3473 | document, otherwise the new page is inserted before "where". Page numbers are |
||
3474 | counted from 1 upwards, no matter what the displayed first page number of your |
||
3475 | document is. The optional parameter "masterpage" specifies the name of the |
||
3476 | master page for the new page. |
||
3477 | |||
3478 | May raise IndexError if the page number is out of range |
||
3479 | </source> |
||
12918 | cbradney | 3480 | <translation type="obsolete">newPage(non [,"orriMaisua"]) |
12612 | cbradney | 3481 | |
3482 | Orrialde berria sortzen du. "non" -1 balioa izanez gero, orrialde berria erantsiko zaio |
||
3483 | dokumentuari, bestela orri berria "non" aurretik txertatuko da. Orrialdeen zenbakiak |
||
3484 | 1etik gorantz zenbatzen dira, berdin dio dokumentuko aurreneko orrialdearen |
||
3485 | zenbakia zein den. Aukerazko "orrimaisua" parametroak orri maisuaren izena zehazten du orrialde berriarentzako. |
||
3486 | |||
3487 | Orrialdearen zenbakia barrutitik kanpo egonez gero IndexError abiaraziko da. |
||
3488 | </translation> |
||
3489 | </message> |
||
3490 | <message> |
||
3491 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="22"/> |
||
3492 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
3493 | |||
3494 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
3495 | the same as for setFillColor() and setFillShade(). See the constants for |
||
3496 | available types (FILL_<type>). |
||
3497 | </source> |
||
12918 | cbradney | 3498 | <translation type="obsolete">setGradientFill(mota, "kolorea1", itzaldura1, "kolorea2", itzaldura2, ["izena"]) |
12612 | cbradney | 3499 | |
3500 | "izena" objektuaren gradiente betegarria motarekin ezartzen du. Koloreen |
||
3501 | azalpenak setFillColor() eta setFillShade() funtzioetakoak bezalakoak dira. Ikusi mota erabilgarrien konstanteak (FILL_<mota>).</translation> |
||
3502 | </message> |
||
3503 | <message> |
||
3504 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="23"/> |
||
3505 | <source>getFontSize(["name"]) -> float |
||
3506 | |||
3507 | Returns the font size in points for the text frame "name". If this text |
||
3508 | frame has some text selected the value assigned to the first character of |
||
3509 | the selection is returned. |
||
3510 | If "name" is not given the currently selected item is used. |
||
3511 | </source> |
||
12918 | cbradney | 3512 | <translation type="obsolete">getFontSize(["izena"]) -> mugikorra |
12612 | cbradney | 3513 | |
3514 | "izena" testu-markoaren letra-tamaina itzultzen du puntuetan. Testu-markoak testu zati bat hautatuta edukiz gero, hautapeneko aurreneko karaktereari esleitutako balioa itzuliko du. |
||
3515 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
3516 | </message> |
||
3517 | <message> |
||
3518 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="21"/> |
||
3519 | <source>messagebarText("string") |
||
3520 | |||
3521 | Writes the "string" into the Scribus message bar (status line). The text |
||
3522 | must be UTF8 encoded or 'unicode' string(recommended). |
||
3523 | </source> |
||
12918 | cbradney | 3524 | <translation type="obsolete">messagebarText("katea") |
12612 | cbradney | 3525 | |
3526 | "katea" Scribus aplikazioko mezu-barran (egoera-barran) idazten du. |
||
3527 | Testua UTF8 kodeketako edo Unicode motako katea izan behar du (gomendatua).</translation> |
||
3528 | </message> |
||
3529 | <message> |
||
3530 | <location filename="" line="136953768"/> |
||
3531 | <source>importSVG("string") |
||
3532 | |||
3533 | The "string" must be a valid filename for a SVG image. The text |
||
3534 | must be UTF8 encoded or 'unicode' string(recommended). |
||
3535 | </source> |
||
3536 | <translation type="obsolete">importSVG("katea") |
||
3537 | |||
3538 | SVG irudiaren baliozko fitxategi-izena eduki behar du "katea" parametroak. |
||
3539 | Testua UTF8 kodeketako edo Unicode motako katea izan behar du (gomendatua).</translation> |
||
3540 | </message> |
||
3541 | <message> |
||
12281 | cbradney | 3542 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="35"/> |
6769 | cbradney | 3543 | <source>getFont(["name"]) -> string |
1135 | cbradney | 3544 | |
3545 | Returns the font name for the text frame "name". If this text frame |
||
3546 | has some text selected the value assigned to the first character |
||
3547 | of the selection is returned. If "name" is not given the currently |
||
3548 | selected item is used. |
||
3549 | </source> |
||
12918 | cbradney | 3550 | <translation type="obsolete">getFont(["izena"]) -> katea |
6654 | mrdocs | 3551 | |
3552 | Testu-markoaren letra-tipoaren izena itzultzen du. Testu-markoak testu zati bat |
||
3553 | hautatuta edukiz gero, hautapeneko aurreneko karaktereari esleitutako balioa |
||
3554 | itzuliko da. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3555 | </translation> |
||
1135 | cbradney | 3556 | </message> |
3557 | <message> |
||
12281 | cbradney | 3558 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="45"/> |
6769 | cbradney | 3559 | <source>getTextLength(["name"]) -> integer |
1135 | cbradney | 3560 | |
3561 | Returns the length of the text in the text frame "name". |
||
3562 | If "name" is not given the currently selected item is used. |
||
3563 | </source> |
||
12918 | cbradney | 3564 | <translation type="obsolete">getTextLength(["izena"]) -> osokoa |
6654 | mrdocs | 3565 | |
3566 | "izena" testu-markoan dagoen testuaren luzera itzultzen du. |
||
3567 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3568 | </translation> |
||
1135 | cbradney | 3569 | </message> |
3570 | <message> |
||
12281 | cbradney | 3571 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="67"/> |
6769 | cbradney | 3572 | <source>getText(["name"]) -> string |
1135 | cbradney | 3573 | |
3574 | Returns the text of the text frame "name". If this text frame has some text |
||
3575 | selected, the selected text is returned. All text in the frame, not just |
||
3576 | currently visible text, is returned. If "name" is not given the currently |
||
3577 | selected item is used. |
||
3578 | </source> |
||
12918 | cbradney | 3579 | <translation type="obsolete">getText(["izena"]) -> katea |
6654 | mrdocs | 3580 | |
3581 | "izena" testu-markoan dagoen testua itzultzen du. Testu-markoan testu zati bat |
||
3582 | hautatuta egonez gero, hautatutako testua itzuliko du. Markoan dagoen testu |
||
3583 | guztia itzultzen du, ez ikusgai dagoen testua bakarrik. "izena" ez bada ematen, unean |
||
3584 | hautatutako elementua erabiliko da. |
||
3585 | </translation> |
||
1135 | cbradney | 3586 | </message> |
3587 | <message> |
||
12281 | cbradney | 3588 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="79"/> |
6769 | cbradney | 3589 | <source>getAllText(["name"]) -> string |
1135 | cbradney | 3590 | |
3591 | Returns the text of the text frame "name" and of all text frames which are |
||
3592 | linked with this frame. If this textframe has some text selected, the selected |
||
3593 | text is returned. If "name" is not given the currently selected item is |
||
3594 | used. |
||
3595 | </source> |
||
12918 | cbradney | 3596 | <translation type="obsolete">getAllText(["izena"]) -> katea |
6654 | mrdocs | 3597 | |
3598 | "izena" testu-markoan dagoen eta marko honi estekatuta dauden beste |
||
3599 | testu-marko guztien testua itzultzen du. Testu-markoan testu zati bat hautatuta |
||
3600 | egonez gero, hautatutako testua itzuliko du. |
||
3601 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3602 | |||
3603 | </translation> |
||
1135 | cbradney | 3604 | </message> |
3605 | <message> |
||
12281 | cbradney | 3606 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="89"/> |
6769 | cbradney | 3607 | <source>getLineSpacing(["name"]) -> float |
1135 | cbradney | 3608 | |
3609 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
3610 | points. If "name" is not given the currently selected item is used. |
||
3611 | </source> |
||
12918 | cbradney | 3612 | <translation type="obsolete">getLineSpacing(["izena"]) -> mugikorra |
6654 | mrdocs | 3613 | |
3614 | "izena" testu-markoaren lerrotartea ("aurreko tartea") itzultzen du puntuetan adieraziz. |
||
3615 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
1135 | cbradney | 3616 | </message> |
3617 | <message> |
||
12612 | cbradney | 3618 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="110"/> |
6769 | cbradney | 3619 | <source>getColumnGap(["name"]) -> float |
1135 | cbradney | 3620 | |
3621 | Returns the column gap size of the text frame "name" expressed in points. If |
||
3622 | "name" is not given the currently selected item is used. |
||
3623 | </source> |
||
12918 | cbradney | 3624 | <translation type="obsolete">getColumnGap(["izena"]) -> mugikorra |
6654 | mrdocs | 3625 | |
3626 | "izena" testu-markoaren zutabe-tartearen tamaina itzultzen du puntuetan adieraziz. |
||
3627 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3628 | </translation> |
||
1135 | cbradney | 3629 | </message> |
3630 | <message> |
||
12612 | cbradney | 3631 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="120"/> |
6769 | cbradney | 3632 | <source>getColumns(["name"]) -> integer |
1135 | cbradney | 3633 | |
3634 | Gets the number of columns of the text frame "name". If "name" is not |
||
3635 | given the currently selected item is used. |
||
3636 | </source> |
||
12918 | cbradney | 3637 | <translation type="obsolete">getColumns(["izena"]) -> osokoa |
6654 | mrdocs | 3638 | |
3639 | "izena" testu-markoko zutabeen kopurua lortzen du. |
||
3640 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3641 | </translation> |
||
1135 | cbradney | 3642 | </message> |
3643 | <message> |
||
12612 | cbradney | 3644 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="132"/> |
6769 | cbradney | 3645 | <source>setText("text", ["name"]) |
1135 | cbradney | 3646 | |
3647 | Sets the text of the text frame "name" to the text of the string "text". |
||
6769 | cbradney | 3648 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
1135 | cbradney | 3649 | for more details. If "name" is not given the currently selected item is |
3650 | used. |
||
3651 | </source> |
||
12918 | cbradney | 3652 | <translation type="obsolete">setText("esaldia", ["izena"]) |
6654 | mrdocs | 3653 | |
3654 | "izena" testu-markoko testua "esaldia" testuarekin ezartzen du. |
||
3655 | Testua (edo esaldia) UTF8 kodeketan egon behar du - erabili adibidez |
||
6769 | cbradney | 3656 | unicode (testua, 'iso-8859-2'). Ikus MEG xehetasun gehiagorako. |
6654 | mrdocs | 3657 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
3658 | </translation> |
||
1135 | cbradney | 3659 | </message> |
3660 | <message> |
||
12612 | cbradney | 3661 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="159"/> |
6769 | cbradney | 3662 | <source>setFont("font", ["name"]) |
1135 | cbradney | 3663 | |
3664 | Sets the font of the text frame "name" to "font". If there is some text |
||
3665 | selected only the selected text is changed. If "name" is not given the |
||
3666 | currently selected item is used. |
||
3667 | |||
3668 | May throw ValueError if the font cannot be found. |
||
3669 | </source> |
||
12918 | cbradney | 3670 | <translation type="obsolete">setFont("letraTipoa", ["izena"]) |
6654 | mrdocs | 3671 | |
3672 | "izena" testu-markoko letra-tipoa "letraTipoa"rekin ezartzen du. |
||
3673 | Testu zati bat hautatuta egonez gero, hautatutako testua |
||
3674 | soilik aldatuko da. "izena" ez bada ematen, unean hautatutako |
||
3675 | elementua erabiliko da. |
||
3676 | |||
3677 | ValueError abiaraziko da letra-tipoa ez bada aurkitzen. |
||
3678 | </translation> |
||
1135 | cbradney | 3679 | </message> |
3680 | <message> |
||
12612 | cbradney | 3681 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="173"/> |
6769 | cbradney | 3682 | <source>setFontSize(size, ["name"]) |
1135 | cbradney | 3683 | |
3684 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
3685 | as a value in points. If there is some text selected only the selected text is |
||
3686 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
3687 | currently selected item is used. |
||
3688 | |||
6769 | cbradney | 3689 | May throw ValueError for a font size that's out of bounds. |
1135 | cbradney | 3690 | </source> |
12918 | cbradney | 3691 | <translation type="obsolete">setFontSize(tamaina, ["izena"]) |
6654 | mrdocs | 3692 | |
3693 | "izena" testu-markoaren letra-tamaina "tamaina"rekin ezarritzen du. |
||
3694 | "tamaina" eremuko balioa puntuetan adierazita balego gisa erabiliko da. |
||
3695 | Testu zatiren bat hautatuta egonez gero, hautatutako testua bakarrik |
||
3696 | aldatuko da. "tamaina"ren barrutia 1 eta 512 arteko da. "izena" ez |
||
3697 | bada ematen, unean hautatutako elementua erabiliko da. |
||
3698 | |||
3699 | ValueError abiaraziko da letra-tamaina mugetatik kanpo izanez gero. |
||
3700 | </translation> |
||
1135 | cbradney | 3701 | </message> |
3702 | <message> |
||
12612 | cbradney | 3703 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="186"/> |
6769 | cbradney | 3704 | <source>setLineSpacing(size, ["name"]) |
1135 | cbradney | 3705 | |
3706 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
3707 | "size" is a value in points. If "name" is not given the currently selected |
||
3708 | item is used. |
||
3709 | |||
3710 | May throw ValueError if the line spacing is out of bounds. |
||
3711 | </source> |
||
12918 | cbradney | 3712 | <translation type="obsolete">setLineSpacing(tamaina, ["izena"]) |
6654 | mrdocs | 3713 | |
3714 | "izena" testu-markoaren lerroartea ("aurreko tartea") "tamainarekin" |
||
3715 | ezartzen du. "tamaina" puntuetan adierazitako balioa da. "izena" ez |
||
3716 | bada ematen, unean hautatutako elementua erabiliko da. |
||
3717 | |||
3718 | ValueError abiaraziko da lerroartea mugetatik kanpo izanez gero. |
||
3719 | </translation> |
||
1135 | cbradney | 3720 | </message> |
3721 | <message> |
||
12612 | cbradney | 3722 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="211"/> |
6769 | cbradney | 3723 | <source>setColumnGap(size, ["name"]) |
1135 | cbradney | 3724 | |
3725 | Sets the column gap of the text frame "name" to the value "size". If |
||
3726 | "name" is not given the currently selected item is used. |
||
3727 | |||
3728 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
3729 | </source> |
||
12918 | cbradney | 3730 | <translation type="obsolete">setColumnGap(tamaina, ["izena"]) |
6654 | mrdocs | 3731 | |
3732 | "izena" testu-markoaren zutabe-tartearen "tamaina" balioarekin ezartzen |
||
3733 | du. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3734 | |||
3735 | ValueError abiaraziko da zutabe-tartea mugetatik kanpo izanez |
||
3736 | gero (positiboa izan behar du). |
||
3737 | </translation> |
||
1135 | cbradney | 3738 | </message> |
3739 | <message> |
||
12612 | cbradney | 3740 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="223"/> |
6769 | cbradney | 3741 | <source>setColumns(nr, ["name"]) |
1135 | cbradney | 3742 | |
3743 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
3744 | If "name" is not given the currently selected item is used. |
||
3745 | |||
3746 | May throw ValueError if number of columns is not at least one. |
||
3747 | </source> |
||
12918 | cbradney | 3748 | <translation type="obsolete">setColumns(zutKop, ["izena"]) |
6654 | mrdocs | 3749 | |
3750 | "izena" testu-markoan egongo diren zutabe-kopurua "zutKop" osokoarekin ezatzen du. |
||
3751 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3752 | |||
3753 | ValueError abiaraziko da zutabe-kopurua gutxienez bat ez bada. |
||
3754 | </translation> |
||
1135 | cbradney | 3755 | </message> |
3756 | <message> |
||
12612 | cbradney | 3757 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="236"/> |
6769 | cbradney | 3758 | <source>setTextAlignment(align, ["name"]) |
1135 | cbradney | 3759 | |
3760 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
3761 | If "name" is not given the currently selected item is used. "align" should |
||
3762 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
3763 | |||
3764 | May throw ValueError for an invalid alignment constant. |
||
3765 | </source> |
||
12918 | cbradney | 3766 | <translation type="obsolete">setTextAlignment(lerrokatu, ["izena"]) |
6654 | mrdocs | 3767 | |
3768 | "izena" testu-markoko testua lerrokatzen du zehaztutako "lerrokatu" eremuarekin. |
||
3769 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. "lerrokatu" |
||
3770 | eremuan modulo honetan zehaztutako ALIGN_* konstanteetariko bat erabili |
||
3771 | behar da: ikus dir(scribus). |
||
3772 | |||
3773 | ValueError abiaraziko da baliogabeko konstantea erabiltzen bada lerrokatzeko.</translation> |
||
1135 | cbradney | 3774 | </message> |
3775 | <message> |
||
12612 | cbradney | 3776 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="261"/> |
6769 | cbradney | 3777 | <source>deleteText(["name"]) |
1135 | cbradney | 3778 | |
3779 | Deletes any text in the text frame "name". If there is some text selected, |
||
3780 | only the selected text will be deleted. If "name" is not given the currently |
||
3781 | selected item is used. |
||
3782 | </source> |
||
12918 | cbradney | 3783 | <translation type="obsolete">deleteText(["izena"]) |
6654 | mrdocs | 3784 | |
3785 | "izena" testu-markoko testua ezabatzen du. Testu zatiren bat hautatuta egonez, |
||
3786 | gero hautatutako testua ezabatuko du. "izena" ez bada ematen, unean |
||
3787 | hautatutako elementua erabiliko da. |
||
3788 | </translation> |
||
1135 | cbradney | 3789 | </message> |
3790 | <message> |
||
12612 | cbradney | 3791 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="272"/> |
6769 | cbradney | 3792 | <source>setTextColor("color", ["name"]) |
1135 | cbradney | 3793 | |
3794 | Sets the text color of the text frame "name" to the color "color". If there |
||
3795 | is some text selected only the selected text is changed. If "name" is not |
||
3796 | given the currently selected item is used. |
||
3797 | </source> |
||
12918 | cbradney | 3798 | <translation type="obsolete">setTextColor("kolorea", ["izena"]) |
6654 | mrdocs | 3799 | |
3800 | "izena" testu-markoko testuaren kolorea "kolorea"rekin ezartzen du. Testu |
||
3801 | zatiren bat hautatuta egonez gero, hautatutako testua aldatuko du. |
||
3802 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3803 | </translation> |
||
1135 | cbradney | 3804 | </message> |
3805 | <message> |
||
12612 | cbradney | 3806 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="282"/> |
6769 | cbradney | 3807 | <source>setTextStroke("color", ["name"]) |
1135 | cbradney | 3808 | |
3809 | Set "color" of the text stroke. If "name" is not given the currently |
||
3810 | selected item is used. |
||
3811 | </source> |
||
12918 | cbradney | 3812 | <translation type="obsolete">setTextStroke("kolorea", ["izena"]) |
6654 | mrdocs | 3813 | |
3814 | Testuaren trazuaren "kolorea" ezartzen du. |
||
3815 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3816 | </translation> |
||
1135 | cbradney | 3817 | </message> |
3818 | <message> |
||
12612 | cbradney | 3819 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="295"/> |
6769 | cbradney | 3820 | <source>setTextShade(shade, ["name"]) |
1135 | cbradney | 3821 | |
3822 | Sets the shading of the text color of the object "name" to "shade". If |
||
3823 | there is some text selected only the selected text is changed. "shade" must |
||
3824 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
3825 | intensity). If "name" is not given the currently selected item is |
||
3826 | used. |
||
3827 | </source> |
||
12918 | cbradney | 3828 | <translation type="obsolete">setTextShade(itzaldura, ["izena"]) |
6654 | mrdocs | 3829 | |
3830 | "izena" objektuaren testu-kolorearen itzaldura ezartzen du "itzaldura"rekin. |
||
3831 | Testu zatiren bat hautatuta egonez gero, hautatutako testua aldatuko du. |
||
3832 | "itzaldura" eremuak 0 (argiena) eta 100 (intentsitate osoko kolorea) arteko balioa |
||
3833 | izan behar du. "izena" ez bada ematen, unean hautatutako elementua erabiliko da. |
||
3834 | </translation> |
||
1135 | cbradney | 3835 | </message> |
3836 | <message> |
||
12612 | cbradney | 3837 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="308"/> |
6769 | cbradney | 3838 | <source>linkTextFrames("fromname", "toname") |
1135 | cbradney | 3839 | |
3840 | Link two text frames. The frame named "fromname" is linked to the |
||
3841 | frame named "toname". The target frame must be an empty text frame |
||
3842 | and must not link to or be linked from any other frames already. |
||
3843 | |||
3844 | May throw ScribusException if linking rules are violated. |
||
3845 | </source> |
||
12918 | cbradney | 3846 | <translation type="obsolete">linkTextFrames("izenetik", "izenera") |
6654 | mrdocs | 3847 | |
3848 | Bi testu-marko estekatzen ditu. "izenetik" markoa estekatuko du |
||
3849 | "izenera" markora. Helburuko markoa testu-marko hutsa izan behar du |
||
3850 | eta ezin du beste marko batekin edo batetik estekatuta egon. |
||
3851 | |||
3852 | ScribusException abiaraziko da estekatzeko arauak bortxatuz gero. |
||
3853 | </translation> |
||
1135 | cbradney | 3854 | </message> |
3855 | <message> |
||
12612 | cbradney | 3856 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="325"/> |
6769 | cbradney | 3857 | <source>unlinkTextFrames("name") |
1135 | cbradney | 3858 | |
3859 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
3860 | frame was in the middle of a chain, the previous and next frames will be |
||
6769 | cbradney | 3861 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
1135 | cbradney | 3862 | |
3863 | May throw ScribusException if linking rules are violated. |
||
3864 | </source> |
||
12918 | cbradney | 3865 | <translation type="obsolete">unlinkTextFrames("izena") |
6654 | mrdocs | 3866 | |
3867 | Izendatutako objektua kentzen du testu-marko mugikorretik/esteketatik. |
||
3868 | Markoa kate baten erdian balego aurreko eta hurrengo markoak elkarrekin |
||
3869 | konektatu egingo lirateke: adbi. unlinkTextFrames("b") exekutatzen bada, |
||
6769 | cbradney | 3870 | 'a->b->c' honakoa izango da: 'a->c'. |
6654 | mrdocs | 3871 | |
3872 | ScribusException abiaraziko da estekatzeko arauak bortxatuz gero.</translation> |
||
1135 | cbradney | 3873 | </message> |
3874 | <message> |
||
12612 | cbradney | 3875 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="338"/> |
6769 | cbradney | 3876 | <source>traceText(["name"]) |
1135 | cbradney | 3877 | |
3878 | Convert the text frame "name" to outlines. If "name" is not given the |
||
3879 | currently selected item is used.</source> |
||
12918 | cbradney | 3880 | <translation type="obsolete">traceText(["izena"]) |
6654 | mrdocs | 3881 | |
3882 | "izena" testu-markoa eskemara bihurtzen du. |
||
3883 | "izena" ez bada ematen, unean hautatutako elementua erabiliko da.</translation> |
||
1135 | cbradney | 3884 | </message> |
3885 | <message> |
||
12281 | cbradney | 3886 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="35"/> |
6769 | cbradney | 3887 | <source>getColor("name") -> tuple |
1135 | cbradney | 3888 | |
3889 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
3890 | color "name" from the current document. If no document is open, returns |
||
3891 | the value of the named color from the default document colors. |
||
3892 | |||
6769 | cbradney | 3893 | May raise NotFoundError if the named color wasn't found. |
1135 | cbradney | 3894 | May raise ValueError if an invalid color name is specified. |
3895 | </source> |
||
12918 | cbradney | 3896 | <translation type="obsolete">getColor("izena") -> tupla |
6654 | mrdocs | 3897 | |
3898 | Uneko dokumentuko "izena" kolorearen lau kolore-osagaien (C, M, H, B) tupla |
||
3899 | itzultzen du. Dokumenturik ez balego irekita, dokumentu lehenetsiaren |
||
3900 | koloreetatik izendatutako kolorearen balioa itzultzen du. |
||
3901 | |||
3902 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
3903 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
3904 | </translation> |
||
1135 | cbradney | 3905 | </message> |
3906 | <message> |
||
12281 | cbradney | 3907 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="64"/> |
6769 | cbradney | 3908 | <source>changeColor("name", c, m, y, k) |
1135 | cbradney | 3909 | |
3910 | Changes the color "name" to the specified CMYK value. The color value is |
||
3911 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
3912 | Color components should be in the range from 0 to 255. |
||
3913 | |||
6769 | cbradney | 3914 | May raise NotFoundError if the named color wasn't found. |
1135 | cbradney | 3915 | May raise ValueError if an invalid color name is specified. |
3916 | </source> |
||
12918 | cbradney | 3917 | <translation type="obsolete">changeColor("izena", c, m, h, b) |
6654 | mrdocs | 3918 | |
3919 | "izena" kolorea CMHB balioarekin aldatzen du. Kolorearen balioa lau osagaien |
||
3920 | bidez zehazten da (c=cyana, m=magenta, h=horia, b=beltza). Kolorearen |
||
3921 | osagaiek 0 eta 255 arteko balio izan dezakete. |
||
3922 | |||
3923 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
3924 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
3925 | </translation> |
||
1135 | cbradney | 3926 | </message> |
3927 | <message> |
||
12281 | cbradney | 3928 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="94"/> |
6769 | cbradney | 3929 | <source>deleteColor("name", "replace") |
1135 | cbradney | 3930 | |
3931 | Deletes the color "name". Every occurence of that color is replaced by the |
||
3932 | color "replace". If not specified, "replace" defaults to the color |
||
3933 | "None" - transparent. |
||
3934 | |||
3935 | deleteColor works on the default document colors if there is no document open. |
||
3936 | In that case, "replace", if specified, has no effect. |
||
3937 | |||
6769 | cbradney | 3938 | May raise NotFoundError if a named color wasn't found. |
1135 | cbradney | 3939 | May raise ValueError if an invalid color name is specified. |
3940 | </source> |
||
12918 | cbradney | 3941 | <translation type="obsolete">deleteColor("izena", "ordezkoa") |
6654 | mrdocs | 3942 | |
3943 | "izena" kolorea ezabatzen du. Izendatutako kolorearen agerpen bakoitza |
||
3944 | "ordezkoa"rekin ordeztuko da. Ez bada zehazten, "ordezkoa" lehenetsi egingo da |
||
3945 | "Bat ere ez" kolorearekin (gardena). |
||
3946 | |||
3947 | Dokumenturik ez balego irekita deleteColor dokumentu lehenetsiko koloreetan |
||
3948 | funtzionatuko luke. Kasu horretan, "ordezkoa" zehaztuko balitz, ez luke eraginik |
||
3949 | izango. |
||
3950 | |||
3951 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
3952 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada.</translation> |
||
1135 | cbradney | 3953 | </message> |
3954 | <message> |
||
12281 | cbradney | 3955 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="106"/> |
6769 | cbradney | 3956 | <source>replaceColor("name", "replace") |
1135 | cbradney | 3957 | |
3958 | Every occurence of the color "name" is replaced by the color "replace". |
||
3959 | |||
6769 | cbradney | 3960 | May raise NotFoundError if a named color wasn't found. |
1135 | cbradney | 3961 | May raise ValueError if an invalid color name is specified. |
3962 | </source> |
||
12918 | cbradney | 3963 | <translation type="obsolete">replaceColor("izena", "ordezkoa") |
6654 | mrdocs | 3964 | |
3965 | "izena" kolorearen agerpen bakoitza "ordezkoa" kolorearekin ordetuko da. |
||
3966 | |||
3967 | NotFoundError abiaraziko da izendatutako kolorerik ez bada aurkitzen. |
||
3968 | ValueError abiaraziko da baliogabeko kolore-izena zehazten bada. |
||
3969 | |||
3970 | </translation> |
||
1135 | cbradney | 3971 | </message> |
3972 | <message> |
||
12281 | cbradney | 3973 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="88"/> |
6769 | cbradney | 3974 | <source>messageBox("caption", "message", |
1135 | cbradney | 3975 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
6769 | cbradney | 3976 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
1135 | cbradney | 3977 | |
3978 | Displays a message box with the title "caption", the message "message", and |
||
3979 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
3980 | button, OK, is displayed. Only the caption and message arguments are required, |
||
3981 | though setting an icon and appropriate button(s) is strongly |
||
3982 | recommended. The message text may contain simple HTML-like markup. |
||
3983 | |||
3984 | Returns the number of the button the user pressed. Button numbers start |
||
3985 | at 1. |
||
3986 | |||
3987 | For the icon and the button parameters there are predefined constants available |
||
3988 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
3989 | ICON_* constants defined in the module. There are also two extra constants that |
||
3990 | can be binary-ORed with button constants: |
||
3991 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
3992 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
3993 | |||
3994 | Usage examples: |
||
6769 | cbradney | 3995 | result = messageBox('Script failed', |
3996 | 'This script only works when you have a text frame selected.', |
||
1135 | cbradney | 3997 | ICON_ERROR) |
6769 | cbradney | 3998 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
1135 | cbradney | 3999 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
4000 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
4001 | |||
4002 | Defined button and icon constants: |
||
4003 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
4004 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
4005 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
4006 | </source> |
||
12918 | cbradney | 4007 | <translation type="obsolete">messageBox("epigrafea", "mezua", |
6654 | mrdocs | 4008 | ikonoa=ICON_NONE, botoi1=BUTTON_OK|BUTTONOPT_DEFAULT, |
6769 | cbradney | 4009 | botoi2=BUTTON_NONE, botoi3=BUTTON_NONE) -> osokoa |
6654 | mrdocs | 4010 | |
4011 | "epigrafea" titulua duen elkarrizketa-koadroa bistaratzen du, "mezua" |
||
4012 | mezuarekin eta "ikonoa" ikonoarekin, eta gehienez 3 botoirekin. Lehenetsi gisa |
||
4013 | ez da ikonorik erabiltzen eta botoi bakarrak, ADOS, bistaratzen da. Epigrafea eta |
||
4014 | mezua soilik dira beharrezkoak, nahiz eta dagokion ikonoa eta botoia(k) |
||
4015 | ezartzea gomendatzen den. Mezuaren testuak HTML motako etiketa |
||
4016 | sinpleak eduki ditzake. |
||
4017 | |||
4018 | Erabiltzaileak sakatutako botoiaren zenbakia itzultzen du. Botoien zenbakiak |
||
4019 | 1 balioarekin hasten dira. |
||
4020 | |||
4021 | Ikonoaren eta botoien parametroak aurrez definitutako konstante erabilgarriak |
||
4022 | dira, Qt dokumentazioan agertzen diren izenekin. Hauek BUTTON_* eta ICON_* |
||
4023 | konstanteak dira, moduloan definitutakoak. Beste bi konstante gehigarri daude |
||
4024 | bit mailan OR (EDO) eragiketa egin dezaketena: |
||
4025 | |||
4026 | BUTTONOPT_DEFAULT Sartu tekla sakatuz botoi hau sakatzen da. |
||
4027 | BUTTONOPT_ESCAPE Ihes tekla sakatuz botoi hau sakatzen da. |
||
4028 | |||
4029 | Adibideak: |
||
6769 | cbradney | 4030 | emaitza = messageBox('Script-ak huts egin du', |
4031 | 'Script honek testu-markoa hautatuta duzunean soilik funtzionatzen du.', |
||
6654 | mrdocs | 4032 | ICON_ERROR) |
6769 | cbradney | 4033 | emaitza = messageBox('Zoratu gara!', 'Zerbait oker dabil! <i>Mozkorren bat agian?</i>', |
6654 | mrdocs | 4034 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
4035 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
4036 | |||
4037 | Definitutako botoien eta ikonoen konstanteak: |
||
4038 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
4039 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||