Rev 12612 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
12564 | cbradney | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!DOCTYPE TS><TS version="1.1" language="ko_KR"> |
||
12612 | cbradney | 3 | <context> |
12918 | cbradney | 4 | <name></name> |
12564 | cbradney | 5 | <message> |
12612 | cbradney | 6 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="21"/> |
7 | <source>getColorNames() -> list |
||
12564 | cbradney | 8 | |
9 | Returns a list containing the names of all defined colors in the document. |
||
10 | If no document is open, returns a list of the default document colors. |
||
11 | </source> |
||
12612 | cbradney | 12 | <translation type="unfinished"></translation> |
12564 | cbradney | 13 | </message> |
14 | <message> |
||
12612 | cbradney | 15 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="35"/> |
16 | <source>getColor("name") -> tuple |
||
12564 | cbradney | 17 | |
18 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
19 | color "name" from the current document. If no document is open, returns |
||
20 | the value of the named color from the default document colors. |
||
21 | |||
12612 | cbradney | 22 | May raise NotFoundError if the named color wasn't found. |
12564 | cbradney | 23 | May raise ValueError if an invalid color name is specified. |
24 | </source> |
||
12612 | cbradney | 25 | <translation type="unfinished"></translation> |
12564 | cbradney | 26 | </message> |
27 | <message> |
||
12612 | cbradney | 28 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="50"/> |
29 | <source>getColorAsRGB("name") -> tuple |
||
12564 | cbradney | 30 | |
31 | Returns a tuple (R,G,B) containing the three color components of the |
||
32 | color "name" from the current document, converted to the RGB color |
||
33 | space. If no document is open, returns the value of the named color |
||
34 | from the default document colors. |
||
35 | |||
12612 | cbradney | 36 | May raise NotFoundError if the named color wasn't found. |
12564 | cbradney | 37 | May raise ValueError if an invalid color name is specified. |
38 | </source> |
||
12612 | cbradney | 39 | <translation type="unfinished"></translation> |
12564 | cbradney | 40 | </message> |
41 | <message> |
||
12612 | cbradney | 42 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="64"/> |
43 | <source>changeColor("name", c, m, y, k) |
||
12564 | cbradney | 44 | |
45 | Changes the color "name" to the specified CMYK value. The color value is |
||
46 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
47 | Color components should be in the range from 0 to 255. |
||
48 | |||
12612 | cbradney | 49 | May raise NotFoundError if the named color wasn't found. |
12564 | cbradney | 50 | May raise ValueError if an invalid color name is specified. |
51 | </source> |
||
12612 | cbradney | 52 | <translation type="unfinished"></translation> |
12564 | cbradney | 53 | </message> |
54 | <message> |
||
12918 | cbradney | 55 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="77"/> |
56 | <source>defineColor("name", c, m, y, k) |
||
57 | |||
58 | Defines a new color "name". The color Value is defined via four components: |
||
59 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
60 | the range from 0 to 255. |
||
61 | |||
62 | May raise ValueError if an invalid color name is specified. |
||
63 | </source> |
||
64 | <translation type="unfinished"></translation> |
||
65 | </message> |
||
66 | <message> |
||
12612 | cbradney | 67 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="94"/> |
68 | <source>deleteColor("name", "replace") |
||
12564 | cbradney | 69 | |
70 | Deletes the color "name". Every occurence of that color is replaced by the |
||
71 | color "replace". If not specified, "replace" defaults to the color |
||
72 | "None" - transparent. |
||
73 | |||
74 | deleteColor works on the default document colors if there is no document open. |
||
75 | In that case, "replace", if specified, has no effect. |
||
76 | |||
12612 | cbradney | 77 | May raise NotFoundError if a named color wasn't found. |
12564 | cbradney | 78 | May raise ValueError if an invalid color name is specified. |
79 | </source> |
||
12612 | cbradney | 80 | <translation type="unfinished"></translation> |
12564 | cbradney | 81 | </message> |
82 | <message> |
||
12612 | cbradney | 83 | <location filename="../../scribus/plugins/scriptplugin/cmdcolor.h" line="106"/> |
84 | <source>replaceColor("name", "replace") |
||
12564 | cbradney | 85 | |
86 | Every occurence of the color "name" is replaced by the color "replace". |
||
87 | |||
12612 | cbradney | 88 | May raise NotFoundError if a named color wasn't found. |
12564 | cbradney | 89 | May raise ValueError if an invalid color name is specified. |
90 | </source> |
||
12612 | cbradney | 91 | <translation type="unfinished"></translation> |
12564 | cbradney | 92 | </message> |
93 | <message> |
||
12918 | cbradney | 94 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="22"/> |
95 | <source>newDocDialog() -> bool |
||
96 | |||
97 | Displays the "New Document" dialog box. Creates a new document if the user |
||
98 | accepts the settings. Does not create a document if the user presses cancel. |
||
99 | Returns true if a new document was created. |
||
100 | </source> |
||
101 | <translation type="unfinished"></translation> |
||
102 | </message> |
||
103 | <message> |
||
104 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="46"/> |
||
105 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
||
106 | |||
107 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
108 | with the filter string "filter". A default filename or file path can also |
||
109 | supplied, leave this string empty when you don't want to use it. A value of |
||
110 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
111 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
112 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
113 | the dialog shows and returns only directories. The default for all of the |
||
114 | optional parameters is False. |
||
115 | |||
116 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
117 | For example 'Images (*.png *.xpm *.jpg)'. |
||
118 | |||
119 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
120 | |||
121 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
122 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
123 | </source> |
||
124 | <translation type="unfinished"></translation> |
||
125 | </message> |
||
126 | <message> |
||
12612 | cbradney | 127 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="88"/> |
128 | <source>messageBox("caption", "message", |
||
12564 | cbradney | 129 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
12612 | cbradney | 130 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
12564 | cbradney | 131 | |
132 | Displays a message box with the title "caption", the message "message", and |
||
133 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
134 | button, OK, is displayed. Only the caption and message arguments are required, |
||
135 | though setting an icon and appropriate button(s) is strongly |
||
136 | recommended. The message text may contain simple HTML-like markup. |
||
137 | |||
138 | Returns the number of the button the user pressed. Button numbers start |
||
139 | at 1. |
||
140 | |||
141 | For the icon and the button parameters there are predefined constants available |
||
142 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
143 | ICON_* constants defined in the module. There are also two extra constants that |
||
144 | can be binary-ORed with button constants: |
||
145 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
146 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
147 | |||
148 | Usage examples: |
||
12612 | cbradney | 149 | result = messageBox('Script failed', |
150 | 'This script only works when you have a text frame selected.', |
||
12564 | cbradney | 151 | ICON_ERROR) |
12612 | cbradney | 152 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
12564 | cbradney | 153 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
154 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
155 | |||
156 | Defined button and icon constants: |
||
157 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
158 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
159 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
160 | </source> |
||
12612 | cbradney | 161 | <translation type="unfinished"></translation> |
12564 | cbradney | 162 | </message> |
163 | <message> |
||
12612 | cbradney | 164 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="101"/> |
165 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
12564 | cbradney | 166 | |
12612 | cbradney | 167 | Shows the common 'Ask for string' dialog and returns its value as a string |
168 | Parameters: window title, text in the window and optional 'default' value. |
||
12564 | cbradney | 169 | |
12612 | cbradney | 170 | Example: valueDialog('title', 'text in the window', 'optional') |
12564 | cbradney | 171 | </source> |
12612 | cbradney | 172 | <translation type="unfinished"></translation> |
12564 | cbradney | 173 | </message> |
174 | <message> |
||
12612 | cbradney | 175 | <location filename="../../scribus/plugins/scriptplugin/cmddialog.h" line="111"/> |
176 | <source>newStyleDialog() -> string |
||
12564 | cbradney | 177 | |
12612 | cbradney | 178 | Shows 'Create new paragraph style' dialog. Function returns real |
12564 | cbradney | 179 | style name or None when user cancels the dialog. |
180 | </source> |
||
12612 | cbradney | 181 | <translation type="unfinished"></translation> |
12564 | cbradney | 182 | </message> |
183 | <message> |
||
12918 | cbradney | 184 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="55"/> |
185 | <source>newDocument(size, margins, orientation, firstPageNumber, |
||
186 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
187 | |||
188 | Creates a new document and returns true if successful. The parameters have the |
||
189 | following meaning: |
||
190 | |||
191 | size = A tuple (width, height) describing the size of the document. You can |
||
192 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
193 | |||
194 | margins = A tuple (left, right, top, bottom) describing the document |
||
195 | margins |
||
196 | |||
197 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
198 | |||
199 | firstPageNumer = is the number of the first page in the document used for |
||
200 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
201 | numbers if you're creating a document in several parts. |
||
202 | |||
203 | unit: this value sets the measurement units used by the document. Use a |
||
204 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
205 | UNIT_PICAS, UNIT_POINTS. |
||
206 | |||
207 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
208 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
209 | PAGE_4 is 4-fold. |
||
210 | |||
211 | firstPageOrder = What is position of first page in the document. |
||
212 | Indexed from 0 (0 = first). |
||
213 | |||
214 | numPage = Number of pages to be created. |
||
215 | |||
216 | The values for width, height and the margins are expressed in the given unit |
||
217 | for the document. PAPER_* constants are expressed in points. If your document |
||
218 | is not in points, make sure to account for this. |
||
219 | |||
220 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
221 | PAGE_4, 3, 1) |
||
222 | |||
223 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
224 | </source> |
||
225 | <translation type="unfinished"></translation> |
||
226 | </message> |
||
227 | <message> |
||
12612 | cbradney | 228 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="96"/> |
229 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
230 | unit, facingPages, firstSideLeft) -> bool |
||
12564 | cbradney | 231 | |
232 | WARNING: Obsolete procedure! Use newDocument instead. |
||
233 | |||
234 | Creates a new document and returns true if successful. The parameters have the |
||
235 | following meaning: |
||
236 | |||
237 | size = A tuple (width, height) describing the size of the document. You can |
||
12612 | cbradney | 238 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
12564 | cbradney | 239 | |
240 | margins = A tuple (left, right, top, bottom) describing the document |
||
241 | margins |
||
242 | |||
243 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
244 | |||
245 | firstPageNumer = is the number of the first page in the document used for |
||
12612 | cbradney | 246 | pagenumbering. While you'll usually want 1, it's useful to have higher |
247 | numbers if you're creating a document in several parts. |
||
12564 | cbradney | 248 | |
249 | unit: this value sets the measurement units used by the document. Use a |
||
250 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
251 | UNIT_PICAS, UNIT_POINTS. |
||
252 | |||
253 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
254 | |||
255 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
256 | |||
257 | The values for width, height and the margins are expressed in the given unit |
||
258 | for the document. PAPER_* constants are expressed in points. If your document |
||
259 | is not in points, make sure to account for this. |
||
260 | |||
261 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
262 | FACINGPAGES, FIRSTPAGERIGHT) |
||
263 | </source> |
||
12612 | cbradney | 264 | <translation type="unfinished"></translation> |
12564 | cbradney | 265 | </message> |
266 | <message> |
||
12612 | cbradney | 267 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="108"/> |
268 | <source>closeDoc() |
||
12564 | cbradney | 269 | |
270 | Closes the current document without prompting to save. |
||
271 | |||
272 | May throw NoDocOpenError if there is no document to close |
||
273 | </source> |
||
12612 | cbradney | 274 | <translation type="unfinished"></translation> |
12564 | cbradney | 275 | </message> |
276 | <message> |
||
12612 | cbradney | 277 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="117"/> |
278 | <source>haveDoc() -> bool |
||
12564 | cbradney | 279 | |
280 | Returns true if there is a document open. |
||
281 | </source> |
||
12612 | cbradney | 282 | <translation type="unfinished"></translation> |
12564 | cbradney | 283 | </message> |
284 | <message> |
||
12612 | cbradney | 285 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="128"/> |
286 | <source>openDoc("name") |
||
12564 | cbradney | 287 | |
288 | Opens the document "name". |
||
289 | |||
290 | May raise ScribusError if the document could not be opened. |
||
291 | </source> |
||
12612 | cbradney | 292 | <translation type="unfinished"></translation> |
12564 | cbradney | 293 | </message> |
294 | <message> |
||
12612 | cbradney | 295 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="141"/> |
296 | <source>saveDoc() |
||
12564 | cbradney | 297 | |
298 | Saves the current document with its current name, returns true if successful. |
||
299 | If the document has not already been saved, this may bring up an interactive |
||
300 | save file dialog. |
||
301 | |||
302 | If the save fails, there is currently no way to tell. |
||
303 | </source> |
||
12612 | cbradney | 304 | <translation type="unfinished"></translation> |
12564 | cbradney | 305 | </message> |
306 | <message> |
||
12612 | cbradney | 307 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="152"/> |
308 | <source>saveDocAs("name") |
||
12564 | cbradney | 309 | |
310 | Saves the current document under the new name "name" (which may be a full or |
||
311 | relative path). |
||
312 | |||
313 | May raise ScribusError if the save fails. |
||
314 | </source> |
||
12612 | cbradney | 315 | <translation type="unfinished"></translation> |
12564 | cbradney | 316 | </message> |
317 | <message> |
||
12918 | cbradney | 318 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="162"/> |
319 | <source>setInfo("author", "info", "description") -> bool |
||
320 | |||
321 | Sets the document information. "Author", "Info", "Description" are |
||
322 | strings. |
||
323 | </source> |
||
324 | <translation type="unfinished"></translation> |
||
325 | </message> |
||
326 | <message> |
||
327 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="173"/> |
||
328 | <source>setMargins(lr, rr, tr, br) |
||
329 | |||
330 | Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
||
331 | margins are given in the measurement units of the document - see UNIT_<type> |
||
332 | constants. |
||
333 | </source> |
||
334 | <translation type="unfinished"></translation> |
||
335 | </message> |
||
336 | <message> |
||
12612 | cbradney | 337 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="185"/> |
338 | <source>setUnit(type) |
||
12564 | cbradney | 339 | |
340 | Changes the measurement unit of the document. Possible values for "unit" are |
||
12612 | cbradney | 341 | defined as constants UNIT_<type>. |
12564 | cbradney | 342 | |
343 | May raise ValueError if an invalid unit is passed. |
||
344 | </source> |
||
12612 | cbradney | 345 | <translation type="unfinished"></translation> |
12564 | cbradney | 346 | </message> |
347 | <message> |
||
12612 | cbradney | 348 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="196"/> |
349 | <source>getUnit() -> integer (Scribus unit constant) |
||
12564 | cbradney | 350 | |
351 | Returns the measurement units of the document. The returned value will be one |
||
352 | of the UNIT_* constants: |
||
353 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
354 | </source> |
||
12612 | cbradney | 355 | <translation type="unfinished"></translation> |
12564 | cbradney | 356 | </message> |
357 | <message> |
||
12612 | cbradney | 358 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="206"/> |
359 | <source>loadStylesFromFile("filename") |
||
12564 | cbradney | 360 | |
361 | Loads paragraph styles from the Scribus document at "filename" into the |
||
362 | current document. |
||
363 | </source> |
||
12612 | cbradney | 364 | <translation type="unfinished"></translation> |
12564 | cbradney | 365 | </message> |
366 | <message> |
||
12612 | cbradney | 367 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="218"/> |
368 | <source>setDocType(facingPages, firstPageLeft) |
||
12564 | cbradney | 369 | |
370 | Sets the document type. To get facing pages set the first parameter to |
||
371 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
372 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
373 | a right page use FIRSTPAGERIGHT. |
||
374 | </source> |
||
12612 | cbradney | 375 | <translation type="unfinished"></translation> |
12564 | cbradney | 376 | </message> |
377 | <message> |
||
12612 | cbradney | 378 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="226"/> |
379 | <source>closeMasterPage() |
||
12564 | cbradney | 380 | |
381 | Closes the currently active master page, if any, and returns editing |
||
382 | to normal. Begin editing with editMasterPage(). |
||
383 | </source> |
||
12612 | cbradney | 384 | <translation type="unfinished"></translation> |
12564 | cbradney | 385 | </message> |
386 | <message> |
||
12612 | cbradney | 387 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="233"/> |
388 | <source>masterPageNames() |
||
12564 | cbradney | 389 | |
390 | Returns a list of the names of all master pages in the document. |
||
391 | </source> |
||
12612 | cbradney | 392 | <translation type="unfinished"></translation> |
12564 | cbradney | 393 | </message> |
394 | <message> |
||
12612 | cbradney | 395 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="241"/> |
396 | <source>editMasterPage(pageName) |
||
12564 | cbradney | 397 | |
398 | Enables master page editing and opens the named master page |
||
399 | for editing. Finish editing with closeMasterPage(). |
||
400 | </source> |
||
12612 | cbradney | 401 | <translation type="unfinished"></translation> |
12564 | cbradney | 402 | </message> |
403 | <message> |
||
12612 | cbradney | 404 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="249"/> |
405 | <source>createMasterPage(pageName) |
||
12564 | cbradney | 406 | |
407 | Creates a new master page named pageName and opens it for |
||
408 | editing. |
||
409 | </source> |
||
12612 | cbradney | 410 | <translation type="unfinished"></translation> |
12564 | cbradney | 411 | </message> |
412 | <message> |
||
12612 | cbradney | 413 | <location filename="../../scribus/plugins/scriptplugin/cmddoc.h" line="256"/> |
414 | <source>deleteMasterPage(pageName) |
||
12564 | cbradney | 415 | |
416 | Delete the named master page. |
||
417 | </source> |
||
12612 | cbradney | 418 | <translation type="unfinished"></translation> |
12564 | cbradney | 419 | </message> |
420 | <message> |
||
12918 | cbradney | 421 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="21"/> |
422 | <source>getFillColor(["name"]) -> string |
||
423 | |||
424 | Returns the name of the fill color of the object "name". |
||
425 | If "name" is not given the currently selected item is used. |
||
426 | </source> |
||
427 | <translation type="unfinished"></translation> |
||
428 | </message> |
||
429 | <message> |
||
430 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="31"/> |
||
431 | <source>getFillTransparency(["name"]) -> float |
||
432 | |||
433 | Returns the fill transparency of the object "name". If "name" |
||
434 | is not given the currently selected Item is used. |
||
435 | </source> |
||
436 | <translation type="unfinished"></translation> |
||
437 | </message> |
||
438 | <message> |
||
439 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="41"/> |
||
440 | <source>getFillBlendmode(["name"]) -> integer |
||
441 | |||
442 | Returns the fill blendmode of the object "name". If "name" |
||
443 | is not given the currently selected Item is used. |
||
444 | </source> |
||
445 | <translation type="unfinished"></translation> |
||
446 | </message> |
||
447 | <message> |
||
12612 | cbradney | 448 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="51"/> |
449 | <source>getLineColor(["name"]) -> string |
||
12564 | cbradney | 450 | |
451 | Returns the name of the line color of the object "name". |
||
452 | If "name" is not given the currently selected item is used. |
||
453 | </source> |
||
12612 | cbradney | 454 | <translation type="unfinished"></translation> |
12564 | cbradney | 455 | </message> |
456 | <message> |
||
12918 | cbradney | 457 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="61"/> |
458 | <source>getLineTransparency(["name"]) -> float |
||
459 | |||
460 | Returns the line transparency of the object "name". If "name" |
||
461 | is not given the currently selected Item is used. |
||
462 | </source> |
||
463 | <translation type="unfinished"></translation> |
||
464 | </message> |
||
465 | <message> |
||
466 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="71"/> |
||
467 | <source>getLineBlendmode(["name"]) -> integer |
||
468 | |||
469 | Returns the line blendmode of the object "name". If "name" |
||
470 | is not given the currently selected Item is used. |
||
471 | </source> |
||
472 | <translation type="unfinished"></translation> |
||
473 | </message> |
||
474 | <message> |
||
12612 | cbradney | 475 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="81"/> |
476 | <source>getLineWidth(["name"]) -> integer |
||
12564 | cbradney | 477 | |
478 | Returns the line width of the object "name". If "name" |
||
479 | is not given the currently selected Item is used. |
||
480 | </source> |
||
12612 | cbradney | 481 | <translation type="unfinished"></translation> |
12564 | cbradney | 482 | </message> |
483 | <message> |
||
12612 | cbradney | 484 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="91"/> |
485 | <source>getLineShade(["name"]) -> integer |
||
12564 | cbradney | 486 | |
487 | Returns the shading value of the line color of the object "name". |
||
488 | If "name" is not given the currently selected item is used. |
||
489 | </source> |
||
12612 | cbradney | 490 | <translation type="unfinished"></translation> |
12564 | cbradney | 491 | </message> |
492 | <message> |
||
12918 | cbradney | 493 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="102"/> |
494 | <source>getLineJoin(["name"]) -> integer (see constants) |
||
495 | |||
496 | Returns the line join style of the object "name". If "name" is not given |
||
497 | the currently selected item is used. The join types are: |
||
498 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
499 | </source> |
||
500 | <translation type="unfinished"></translation> |
||
501 | </message> |
||
502 | <message> |
||
12612 | cbradney | 503 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="113"/> |
504 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
12564 | cbradney | 505 | |
506 | Returns the line cap style of the object "name". If "name" is not given the |
||
507 | currently selected item is used. The cap types are: |
||
508 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
509 | </source> |
||
12612 | cbradney | 510 | <translation type="unfinished"></translation> |
12564 | cbradney | 511 | </message> |
512 | <message> |
||
12612 | cbradney | 513 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="124"/> |
514 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
12564 | cbradney | 515 | |
516 | Returns the line style of the object "name". If "name" is not given the |
||
517 | currently selected item is used. Line style constants are: |
||
518 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
519 | </source> |
||
12612 | cbradney | 520 | <translation type="unfinished"></translation> |
12564 | cbradney | 521 | </message> |
522 | <message> |
||
12612 | cbradney | 523 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="134"/> |
524 | <source>getFillShade(["name"]) -> integer |
||
12564 | cbradney | 525 | |
526 | Returns the shading value of the fill color of the object "name". |
||
527 | If "name" is not given the currently selected item is used. |
||
528 | </source> |
||
12612 | cbradney | 529 | <translation type="unfinished"></translation> |
12564 | cbradney | 530 | </message> |
531 | <message> |
||
12918 | cbradney | 532 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="145"/> |
533 | <source>getCornerRadius(["name"]) -> integer |
||
534 | |||
535 | Returns the corner radius of the object "name". The radius is |
||
536 | expressed in points. If "name" is not given the currently |
||
537 | selected item is used. |
||
538 | </source> |
||
539 | <translation type="unfinished"></translation> |
||
540 | </message> |
||
541 | <message> |
||
12612 | cbradney | 542 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="155"/> |
543 | <source>getImageScale(["name"]) -> (x,y) |
||
12564 | cbradney | 544 | |
545 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
546 | "name". If "name" is not given the currently selected item is used. |
||
547 | </source> |
||
12612 | cbradney | 548 | <translation type="unfinished"></translation> |
12564 | cbradney | 549 | </message> |
550 | <message> |
||
12612 | cbradney | 551 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="165"/> |
552 | <source>getImageName(["name"]) -> string |
||
12564 | cbradney | 553 | |
554 | Returns the filename for the image in the image frame. If "name" is not |
||
555 | given the currently selected item is used. |
||
556 | </source> |
||
12612 | cbradney | 557 | <translation type="unfinished"></translation> |
12564 | cbradney | 558 | </message> |
559 | <message> |
||
12918 | cbradney | 560 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="177"/> |
561 | <source>getPosition(["name"]) -> (x,y) |
||
562 | |||
563 | Returns a (x, y) tuple with the position of the object "name". |
||
564 | If "name" is not given the currently selected item is used. |
||
565 | The position is expressed in the actual measurement unit of the document |
||
566 | - see UNIT_<type> for reference. |
||
567 | </source> |
||
568 | <translation type="unfinished"></translation> |
||
569 | </message> |
||
570 | <message> |
||
12612 | cbradney | 571 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="189"/> |
572 | <source>getSize(["name"]) -> (width,height) |
||
12564 | cbradney | 573 | |
574 | Returns a (width, height) tuple with the size of the object "name". |
||
575 | If "name" is not given the currently selected item is used. The size is |
||
12612 | cbradney | 576 | expressed in the current measurement unit of the document - see UNIT_<type> |
12564 | cbradney | 577 | for reference. |
578 | </source> |
||
12612 | cbradney | 579 | <translation type="unfinished"></translation> |
12564 | cbradney | 580 | </message> |
581 | <message> |
||
12612 | cbradney | 582 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="200"/> |
583 | <source>getRotation(["name"]) -> integer |
||
12564 | cbradney | 584 | |
585 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
586 | and clockwise is positive. If "name" is not given the currently selected item |
||
587 | is used. |
||
588 | </source> |
||
12612 | cbradney | 589 | <translation type="unfinished"></translation> |
12564 | cbradney | 590 | </message> |
591 | <message> |
||
12612 | cbradney | 592 | <location filename="../../scribus/plugins/scriptplugin/cmdgetprop.h" line="209"/> |
593 | <source>getAllObjects() -> list |
||
12564 | cbradney | 594 | |
595 | Returns a list containing the names of all objects on the current page. |
||
596 | </source> |
||
12612 | cbradney | 597 | <translation type="unfinished"></translation> |
12564 | cbradney | 598 | </message> |
599 | <message> |
||
12612 | cbradney | 600 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="83"/> |
601 | <source>getPropertyCType(object, property, includesuper=True) |
||
12564 | cbradney | 602 | |
12612 | cbradney | 603 | Returns the name of the C type of `property' of `object'. See getProperty() |
12564 | cbradney | 604 | for details of arguments. |
605 | |||
12612 | cbradney | 606 | If `includesuper' is true, search inherited properties too. |
12564 | cbradney | 607 | </source> |
12612 | cbradney | 608 | <translation type="unfinished"></translation> |
12564 | cbradney | 609 | </message> |
610 | <message> |
||
12612 | cbradney | 611 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="101"/> |
612 | <source>getPropertyNames(object, includesuper=True) |
||
12564 | cbradney | 613 | |
12612 | cbradney | 614 | Return a list of property names supported by `object'. |
615 | If `includesuper' is true, return properties supported |
||
12564 | cbradney | 616 | by parent classes as well. |
617 | </source> |
||
12612 | cbradney | 618 | <translation type="unfinished"></translation> |
12564 | cbradney | 619 | </message> |
620 | <message> |
||
12612 | cbradney | 621 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="135"/> |
622 | <source>getProperty(object, property) |
||
12564 | cbradney | 623 | |
12612 | cbradney | 624 | Return the value of the property `property' of the passed `object'. |
12564 | cbradney | 625 | |
12612 | cbradney | 626 | The `object' argument may be a string, in which case the named PageItem |
12564 | cbradney | 627 | is searched for. It may also be a PyCObject, which may point to any |
628 | C++ QObject instance. |
||
629 | |||
12612 | cbradney | 630 | The `property' argument must be a string, and is the name of the property |
631 | to look up on `object'. |
||
12564 | cbradney | 632 | |
633 | The return value varies depending on the type of the property. |
||
634 | </source> |
||
12612 | cbradney | 635 | <translation type="unfinished"></translation> |
12564 | cbradney | 636 | </message> |
637 | <message> |
||
12612 | cbradney | 638 | <location filename="../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="165"/> |
639 | <source>setProperty(object, property, value) |
||
12564 | cbradney | 640 | |
12612 | cbradney | 641 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
642 | compatible with the type of `property', an exception is raised. An exception may |
||
12564 | cbradney | 643 | also be raised if the underlying setter fails. |
644 | |||
645 | See getProperty() for more information. |
||
646 | </source> |
||
12612 | cbradney | 647 | <translation type="unfinished"></translation> |
12564 | cbradney | 648 | </message> |
649 | <message> |
||
12918 | cbradney | 650 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="23"/> |
651 | <source>moveObject(dx, dy [, "name"]) |
||
652 | |||
653 | Moves the object "name" by dx and dy relative to its current position. The |
||
654 | distances are expressed in the current measurement unit of the document (see |
||
655 | UNIT constants). If "name" is not given the currently selected item is used. |
||
656 | If the object "name" belongs to a group, the whole group is moved. |
||
657 | </source> |
||
658 | <translation type="unfinished"></translation> |
||
659 | </message> |
||
660 | <message> |
||
12612 | cbradney | 661 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="35"/> |
662 | <source>moveObjectAbs(x, y [, "name"]) |
||
12564 | cbradney | 663 | |
664 | Moves the object "name" to a new location. The coordinates are expressed in |
||
665 | the current measurement unit of the document (see UNIT constants). If "name" |
||
666 | is not given the currently selected item is used. If the object "name" |
||
667 | belongs to a group, the whole group is moved. |
||
668 | </source> |
||
12612 | cbradney | 669 | <translation type="unfinished"></translation> |
12564 | cbradney | 670 | </message> |
671 | <message> |
||
12918 | cbradney | 672 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="48"/> |
673 | <source>rotateObject(rot [, "name"]) |
||
674 | |||
675 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
676 | rotated by the vertex that is currently selected as the rotation point - by |
||
677 | default, the top left vertex at zero rotation. Positive values mean counter |
||
678 | clockwise rotation when the default rotation point is used. If "name" is not |
||
679 | given the currently selected item is used. |
||
680 | </source> |
||
681 | <translation type="unfinished"></translation> |
||
682 | </message> |
||
683 | <message> |
||
684 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="59"/> |
||
685 | <source>rotateObjectAbs(rot [, "name"]) |
||
686 | |||
687 | Sets the rotation of the object "name" to "rot". Positive values |
||
688 | mean counter clockwise rotation. If "name" is not given the currently |
||
689 | selected item is used. |
||
690 | </source> |
||
691 | <translation type="unfinished"></translation> |
||
692 | </message> |
||
693 | <message> |
||
12612 | cbradney | 694 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="69"/> |
695 | <source>sizeObject(width, height [, "name"]) |
||
12564 | cbradney | 696 | |
697 | Resizes the object "name" to the given width and height. If "name" |
||
698 | is not given the currently selected item is used. |
||
699 | </source> |
||
12612 | cbradney | 700 | <translation type="unfinished"></translation> |
12564 | cbradney | 701 | </message> |
702 | <message> |
||
12612 | cbradney | 703 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="80"/> |
704 | <source>getSelectedObject([nr]) -> string |
||
12564 | cbradney | 705 | |
706 | Returns the name of the selected object. "nr" if given indicates the number |
||
707 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
708 | second selected Object and so on. |
||
709 | </source> |
||
12612 | cbradney | 710 | <translation type="unfinished"></translation> |
12564 | cbradney | 711 | </message> |
712 | <message> |
||
12612 | cbradney | 713 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="89"/> |
714 | <source>selectionCount() -> integer |
||
12564 | cbradney | 715 | |
716 | Returns the number of selected objects. |
||
717 | </source> |
||
12612 | cbradney | 718 | <translation type="unfinished"></translation> |
12564 | cbradney | 719 | </message> |
720 | <message> |
||
12612 | cbradney | 721 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="98"/> |
722 | <source>selectObject("name") |
||
12564 | cbradney | 723 | |
724 | Selects the object with the given "name". |
||
725 | </source> |
||
12612 | cbradney | 726 | <translation type="unfinished"></translation> |
12564 | cbradney | 727 | </message> |
728 | <message> |
||
12612 | cbradney | 729 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="107"/> |
730 | <source>deselectAll() |
||
12564 | cbradney | 731 | |
732 | Deselects all objects in the whole document. |
||
733 | </source> |
||
12612 | cbradney | 734 | <translation type="unfinished"></translation> |
12564 | cbradney | 735 | </message> |
736 | <message> |
||
12612 | cbradney | 737 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="118"/> |
738 | <source>groupObjects(list) |
||
12564 | cbradney | 739 | |
740 | Groups the objects named in "list" together. "list" must contain the names |
||
741 | of the objects to be grouped. If "list" is not given the currently selected |
||
742 | items are used. |
||
743 | </source> |
||
12612 | cbradney | 744 | <translation type="unfinished"></translation> |
12564 | cbradney | 745 | </message> |
746 | <message> |
||
12612 | cbradney | 747 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="126"/> |
748 | <source>unGroupObjects("name") |
||
12564 | cbradney | 749 | |
750 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
12612 | cbradney | 751 | <translation type="unfinished"></translation> |
12564 | cbradney | 752 | </message> |
753 | <message> |
||
12612 | cbradney | 754 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="141"/> |
755 | <source>scaleGroup(factor [,"name"]) |
||
12564 | cbradney | 756 | |
757 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
758 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
759 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
760 | to 150 % of its original size. The value for "factor" must be greater than |
||
761 | 0. If "name" is not given the currently selected item is used. |
||
762 | |||
763 | May raise ValueError if an invalid scale factor is passed. |
||
764 | </source> |
||
12612 | cbradney | 765 | <translation type="unfinished"></translation> |
12564 | cbradney | 766 | </message> |
767 | <message> |
||
12612 | cbradney | 768 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="153"/> |
769 | <source>loadImage("filename" [, "name"]) |
||
12564 | cbradney | 770 | |
771 | Loads the picture "picture" into the image frame "name". If "name" is |
||
772 | not given the currently selected item is used. |
||
773 | |||
774 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
775 | </source> |
||
12612 | cbradney | 776 | <translation type="unfinished"></translation> |
12564 | cbradney | 777 | </message> |
778 | <message> |
||
12612 | cbradney | 779 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="166"/> |
780 | <source>scaleImage(x, y [, "name"]) |
||
12564 | cbradney | 781 | |
782 | Sets the scaling factors of the picture in the image frame "name". |
||
783 | If "name" is not given the currently selected item is used. A number of 1 |
||
784 | means 100 %. |
||
785 | |||
786 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
787 | </source> |
||
12612 | cbradney | 788 | <translation type="unfinished"></translation> |
12564 | cbradney | 789 | </message> |
790 | <message> |
||
12612 | cbradney | 791 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="177"/> |
792 | <source>lockObject(["name"]) -> bool |
||
12564 | cbradney | 793 | |
12612 | cbradney | 794 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
12564 | cbradney | 795 | If "name" is not given the currently selected item is used. Returns true |
796 | if locked. |
||
797 | </source> |
||
12612 | cbradney | 798 | <translation type="unfinished"></translation> |
12564 | cbradney | 799 | </message> |
800 | <message> |
||
12612 | cbradney | 801 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="187"/> |
802 | <source>isLocked(["name"]) -> bool |
||
12564 | cbradney | 803 | |
804 | Returns true if is the object "name" locked. If "name" is not given the |
||
805 | currently selected item is used. |
||
806 | </source> |
||
12612 | cbradney | 807 | <translation type="unfinished"></translation> |
12564 | cbradney | 808 | </message> |
809 | <message> |
||
12612 | cbradney | 810 | <location filename="../../scribus/plugins/scriptplugin/cmdmani.h" line="199"/> |
811 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
||
12564 | cbradney | 812 | |
12612 | cbradney | 813 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
814 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
815 | Both `scaletoframe' and `proportional' are boolean. |
||
12564 | cbradney | 816 | |
817 | May raise WrongFrameTypeError. |
||
818 | </source> |
||
12612 | cbradney | 819 | <translation type="unfinished"></translation> |
12564 | cbradney | 820 | </message> |
821 | <message> |
||
12918 | cbradney | 822 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="24"/> |
823 | <source>setRedraw(bool) |
||
824 | |||
825 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
826 | This change will persist even after the script exits, so make sure to call |
||
827 | setRedraw(True) in a finally: clause at the top level of your script. |
||
828 | </source> |
||
829 | <translation type="unfinished"></translation> |
||
830 | </message> |
||
831 | <message> |
||
12612 | cbradney | 832 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="33"/> |
833 | <source>getFontNames() -> list |
||
12564 | cbradney | 834 | |
835 | Returns a list with the names of all available fonts. |
||
836 | </source> |
||
12612 | cbradney | 837 | <translation type="unfinished"></translation> |
12564 | cbradney | 838 | </message> |
839 | <message> |
||
12612 | cbradney | 840 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="43"/> |
841 | <source>getXFontNames() -> list of tuples |
||
12564 | cbradney | 842 | |
12612 | cbradney | 843 | Returns a larger font info. It's a list of the tuples with: |
12564 | cbradney | 844 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
845 | </source> |
||
12612 | cbradney | 846 | <translation type="unfinished"></translation> |
12564 | cbradney | 847 | </message> |
848 | <message> |
||
12612 | cbradney | 849 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="62"/> |
850 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
12564 | cbradney | 851 | |
852 | Creates an image preview of font "name" with given text "sample" and size. |
||
853 | If "filename" is not "", image is saved into "filename". Otherwise |
||
854 | image data is returned as a string. The optional "format" argument |
||
855 | specifies the image format to generate, and supports any format allowed |
||
856 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
857 | |||
12612 | cbradney | 858 | May raise NotFoundError if the specified font can't be found. |
12564 | cbradney | 859 | May raise ValueError if an empty sample or filename is passed. |
860 | </source> |
||
12612 | cbradney | 861 | <translation type="unfinished"></translation> |
12564 | cbradney | 862 | </message> |
863 | <message> |
||
12612 | cbradney | 864 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="71"/> |
865 | <source>getLayers() -> list |
||
12564 | cbradney | 866 | |
867 | Returns a list with the names of all defined layers. |
||
868 | </source> |
||
12612 | cbradney | 869 | <translation type="unfinished"></translation> |
12564 | cbradney | 870 | </message> |
871 | <message> |
||
12612 | cbradney | 872 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="83"/> |
873 | <source>setActiveLayer("name") |
||
12564 | cbradney | 874 | |
875 | Sets the active layer to the layer named "name". |
||
876 | |||
12612 | cbradney | 877 | May raise NotFoundError if the layer can't be found. |
878 | May raise ValueError if the layer name isn't acceptable. |
||
12564 | cbradney | 879 | </source> |
12612 | cbradney | 880 | <translation type="unfinished"></translation> |
12564 | cbradney | 881 | </message> |
882 | <message> |
||
12612 | cbradney | 883 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="92"/> |
884 | <source>getActiveLayer() -> string |
||
12564 | cbradney | 885 | |
886 | Returns the name of the current active layer. |
||
887 | </source> |
||
12612 | cbradney | 888 | <translation type="unfinished"></translation> |
12564 | cbradney | 889 | </message> |
890 | <message> |
||
12612 | cbradney | 891 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="105"/> |
892 | <source>sentToLayer("layer" [, "name"]) |
||
12564 | cbradney | 893 | |
894 | Sends the object "name" to the layer "layer". The layer must exist. |
||
895 | If "name" is not given the currently selected item is used. |
||
896 | |||
12612 | cbradney | 897 | May raise NotFoundError if the layer can't be found. |
898 | May raise ValueError if the layer name isn't acceptable. |
||
12564 | cbradney | 899 | </source> |
12612 | cbradney | 900 | <translation type="unfinished"></translation> |
12564 | cbradney | 901 | </message> |
902 | <message> |
||
12612 | cbradney | 903 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="118"/> |
904 | <source>setLayerVisible("layer", visible) |
||
12564 | cbradney | 905 | |
906 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
907 | the layer is invisible. |
||
908 | |||
12612 | cbradney | 909 | May raise NotFoundError if the layer can't be found. |
910 | May raise ValueError if the layer name isn't acceptable. |
||
12564 | cbradney | 911 | </source> |
12612 | cbradney | 912 | <translation type="unfinished"></translation> |
12564 | cbradney | 913 | </message> |
914 | <message> |
||
12918 | cbradney | 915 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="131"/> |
916 | <source>setLayerPrintable("layer", printable) |
||
917 | |||
918 | Sets the layer "layer" to be printable or not. If is the |
||
919 | printable set to false the layer won't be printed. |
||
920 | |||
921 | May raise NotFoundError if the layer can't be found. |
||
922 | May raise ValueError if the layer name isn't acceptable. |
||
923 | </source> |
||
924 | <translation type="unfinished"></translation> |
||
925 | </message> |
||
926 | <message> |
||
927 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="144"/> |
||
928 | <source>setLayerLocked("layer", locked) |
||
929 | |||
930 | Sets the layer "layer" to be locked or not. If locked is set to |
||
931 | true the layer will be locked. |
||
932 | |||
933 | May raise NotFoundError if the layer can't be found. |
||
934 | May raise ValueError if the layer name isn't acceptable. |
||
935 | </source> |
||
936 | <translation type="unfinished"></translation> |
||
937 | </message> |
||
938 | <message> |
||
939 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="157"/> |
||
940 | <source>setLayerOutlined("layer", outline) |
||
941 | |||
942 | Sets the layer "layer" to be locked or not. If outline is set to |
||
943 | true the layer will be displayed outlined. |
||
944 | |||
945 | May raise NotFoundError if the layer can't be found. |
||
946 | May raise ValueError if the layer name isn't acceptable. |
||
947 | </source> |
||
948 | <translation type="unfinished"></translation> |
||
949 | </message> |
||
950 | <message> |
||
951 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="170"/> |
||
952 | <source>setLayerFlow("layer", flow) |
||
953 | |||
954 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
955 | true text in layers above this one will flow around objects on this layer. |
||
956 | |||
957 | May raise NotFoundError if the layer can't be found. |
||
958 | May raise ValueError if the layer name isn't acceptable. |
||
959 | </source> |
||
960 | <translation type="unfinished"></translation> |
||
961 | </message> |
||
962 | <message> |
||
963 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="182"/> |
||
964 | <source>setLayerBlendmode("layer", blend) |
||
965 | |||
966 | Sets the layers "layer" blendmode to blend. |
||
967 | |||
968 | May raise NotFoundError if the layer can't be found. |
||
969 | May raise ValueError if the layer name isn't acceptable. |
||
970 | </source> |
||
971 | <translation type="unfinished"></translation> |
||
972 | </message> |
||
973 | <message> |
||
974 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="194"/> |
||
975 | <source>setLayerTransparency("layer", trans) |
||
976 | |||
977 | Sets the layers "layer" transparency to trans. |
||
978 | |||
979 | May raise NotFoundError if the layer can't be found. |
||
980 | May raise ValueError if the layer name isn't acceptable. |
||
981 | </source> |
||
982 | <translation type="unfinished"></translation> |
||
983 | </message> |
||
984 | <message> |
||
985 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="208"/> |
||
986 | <source>isLayerVisible("layer") -> bool |
||
987 | |||
988 | Returns whether the layer "layer" is visible or not, a value of True means |
||
989 | that the layer "layer" is visible, a value of False means that the layer |
||
990 | "layer" is invisible. |
||
991 | |||
992 | May raise NotFoundError if the layer can't be found. |
||
993 | May raise ValueError if the layer name isn't acceptable. |
||
994 | </source> |
||
995 | <translation type="unfinished"></translation> |
||
996 | </message> |
||
997 | <message> |
||
12612 | cbradney | 998 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="222"/> |
999 | <source>isLayerPrintable("layer") -> bool |
||
12564 | cbradney | 1000 | |
1001 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1002 | that the layer "layer" can be printed, a value of False means that printing |
||
1003 | the layer "layer" is disabled. |
||
1004 | |||
12612 | cbradney | 1005 | May raise NotFoundError if the layer can't be found. |
1006 | May raise ValueError if the layer name isn't acceptable. |
||
12564 | cbradney | 1007 | </source> |
12612 | cbradney | 1008 | <translation type="unfinished"></translation> |
12564 | cbradney | 1009 | </message> |
1010 | <message> |
||
12918 | cbradney | 1011 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="236"/> |
1012 | <source>isLayerLocked("layer") -> bool |
||
1013 | |||
1014 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1015 | that the layer "layer" is editable, a value of False means that the layer |
||
1016 | "layer" is locked. |
||
1017 | |||
1018 | May raise NotFoundError if the layer can't be found. |
||
1019 | May raise ValueError if the layer name isn't acceptable. |
||
1020 | </source> |
||
1021 | <translation type="unfinished"></translation> |
||
1022 | </message> |
||
1023 | <message> |
||
1024 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="250"/> |
||
1025 | <source>isLayerOutlined("layer") -> bool |
||
1026 | |||
1027 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1028 | that the layer "layer" is outlined, a value of False means that the layer |
||
1029 | "layer" is normal. |
||
1030 | |||
1031 | May raise NotFoundError if the layer can't be found. |
||
1032 | May raise ValueError if the layer name isn't acceptable. |
||
1033 | </source> |
||
1034 | <translation type="unfinished"></translation> |
||
1035 | </message> |
||
1036 | <message> |
||
1037 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="263"/> |
||
1038 | <source>isLayerFlow("layer") -> bool |
||
1039 | |||
1040 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1041 | that text flows around, a value of False means that the text does not flow around. |
||
1042 | |||
1043 | May raise NotFoundError if the layer can't be found. |
||
1044 | May raise ValueError if the layer name isn't acceptable. |
||
1045 | </source> |
||
1046 | <translation type="unfinished"></translation> |
||
1047 | </message> |
||
1048 | <message> |
||
1049 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="275"/> |
||
1050 | <source>getLayerBlendmode("layer") -> int |
||
1051 | |||
1052 | Returns the "layer" layer blendmode, |
||
1053 | |||
1054 | May raise NotFoundError if the layer can't be found. |
||
1055 | May raise ValueError if the layer name isn't acceptable. |
||
1056 | </source> |
||
1057 | <translation type="unfinished"></translation> |
||
1058 | </message> |
||
1059 | <message> |
||
1060 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="287"/> |
||
1061 | <source>getLayerTransparency("layer") -> float |
||
1062 | |||
1063 | Returns the "layer" layer transparency, |
||
1064 | |||
1065 | May raise NotFoundError if the layer can't be found. |
||
1066 | May raise ValueError if the layer name isn't acceptable. |
||
1067 | </source> |
||
1068 | <translation type="unfinished"></translation> |
||
1069 | </message> |
||
1070 | <message> |
||
12612 | cbradney | 1071 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="300"/> |
1072 | <source>deleteLayer("layer") |
||
12564 | cbradney | 1073 | |
12612 | cbradney | 1074 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
1075 | exists or if it's the only layer in the document. |
||
12564 | cbradney | 1076 | |
12612 | cbradney | 1077 | May raise NotFoundError if the layer can't be found. |
1078 | May raise ValueError if the layer name isn't acceptable. |
||
12564 | cbradney | 1079 | </source> |
12612 | cbradney | 1080 | <translation type="unfinished"></translation> |
12564 | cbradney | 1081 | </message> |
1082 | <message> |
||
12612 | cbradney | 1083 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="311"/> |
1084 | <source>createLayer(layer) |
||
12564 | cbradney | 1085 | |
1086 | Creates a new layer with the name "name". |
||
1087 | |||
12612 | cbradney | 1088 | May raise ValueError if the layer name isn't acceptable. |
12564 | cbradney | 1089 | </source> |
12612 | cbradney | 1090 | <translation type="unfinished"></translation> |
12564 | cbradney | 1091 | </message> |
1092 | <message> |
||
12612 | cbradney | 1093 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="320"/> |
1094 | <source>getGuiLanguage() -> string |
||
12564 | cbradney | 1095 | |
1096 | Returns a string with the -lang value. |
||
1097 | </source> |
||
12612 | cbradney | 1098 | <translation type="unfinished"></translation> |
12564 | cbradney | 1099 | </message> |
1100 | <message> |
||
12918 | cbradney | 1101 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="329"/> |
1102 | <source>moveSelectionToFront() |
||
1103 | |||
1104 | Moves current selection to front. |
||
1105 | </source> |
||
1106 | <translation type="unfinished"></translation> |
||
1107 | </message> |
||
1108 | <message> |
||
1109 | <location filename="../../scribus/plugins/scriptplugin/cmdmisc.h" line="338"/> |
||
1110 | <source>moveSelectionToFront() |
||
1111 | |||
1112 | Moves current selection to back. |
||
1113 | </source> |
||
1114 | <translation type="unfinished"></translation> |
||
1115 | </message> |
||
1116 | <message> |
||
1117 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="26"/> |
||
1118 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
1119 | |||
1120 | Creates a new rectangle on the current page and returns its name. The |
||
1121 | coordinates are given in the current measurement units of the document |
||
1122 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1123 | because you need this name to reference that object in future. If "name" |
||
1124 | is not given Scribus will create one for you. |
||
1125 | |||
1126 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1127 | </source> |
||
1128 | <translation type="unfinished"></translation> |
||
1129 | </message> |
||
1130 | <message> |
||
12612 | cbradney | 1131 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="43"/> |
1132 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
12564 | cbradney | 1133 | |
1134 | Creates a new ellipse on the current page and returns its name. |
||
1135 | The coordinates are given in the current measurement units of the document |
||
1136 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1137 | because you need this name for further referencing of that object. If "name" |
||
1138 | is not given Scribus will create one for you. |
||
1139 | |||
12612 | cbradney | 1140 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1141 | </source> |
12612 | cbradney | 1142 | <translation type="unfinished"></translation> |
12564 | cbradney | 1143 | </message> |
1144 | <message> |
||
12612 | cbradney | 1145 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="60"/> |
1146 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
12564 | cbradney | 1147 | |
1148 | Creates a new picture frame on the current page and returns its name. The |
||
1149 | coordinates are given in the current measurement units of the document. |
||
1150 | "name" should be a unique identifier for the object because you need this |
||
1151 | name for further access to that object. If "name" is not given Scribus will |
||
1152 | create one for you. |
||
1153 | |||
12612 | cbradney | 1154 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1155 | </source> |
12612 | cbradney | 1156 | <translation type="unfinished"></translation> |
12564 | cbradney | 1157 | </message> |
1158 | <message> |
||
12612 | cbradney | 1159 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="75"/> |
1160 | <source>createText(x, y, width, height, ["name"]) -> string |
||
12564 | cbradney | 1161 | |
1162 | Creates a new text frame on the actual page and returns its name. |
||
1163 | The coordinates are given in the actual measurement unit of the document (see |
||
1164 | UNIT constants). "name" should be a unique identifier for the object because |
||
1165 | you need this name for further referencing of that object. If "name" is not |
||
1166 | given Scribus will create one for you. |
||
1167 | |||
12612 | cbradney | 1168 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1169 | </source> |
12612 | cbradney | 1170 | <translation type="unfinished"></translation> |
12564 | cbradney | 1171 | </message> |
1172 | <message> |
||
12612 | cbradney | 1173 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="90"/> |
1174 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
12564 | cbradney | 1175 | |
1176 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1177 | its name. The coordinates are given in the current measurement unit of the |
||
1178 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1179 | object because you need this name for further access to that object. If |
||
1180 | "name" is not given Scribus will create one for you. |
||
1181 | |||
12612 | cbradney | 1182 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1183 | </source> |
12612 | cbradney | 1184 | <translation type="unfinished"></translation> |
12564 | cbradney | 1185 | </message> |
1186 | <message> |
||
12612 | cbradney | 1187 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="108"/> |
1188 | <source>createPolyLine(list, ["name"]) -> string |
||
12564 | cbradney | 1189 | |
1190 | Creates a new polyline and returns its name. The points for the polyline are |
||
1191 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1192 | The coordinates are given in the current measurement units of the document (see |
||
1193 | UNIT constants). "name" should be a unique identifier for the object because |
||
1194 | you need this name for further access to that object. If "name" is not given |
||
1195 | Scribus will create one for you. |
||
1196 | |||
12612 | cbradney | 1197 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1198 | May raise ValueError if an insufficient number of points is passed or if |
12612 | cbradney | 1199 | the number of values passed don't group into points without leftovers. |
12564 | cbradney | 1200 | </source> |
12612 | cbradney | 1201 | <translation type="unfinished"></translation> |
12564 | cbradney | 1202 | </message> |
1203 | <message> |
||
12612 | cbradney | 1204 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="128"/> |
1205 | <source>createPolygon(list, ["name"]) -> string |
||
12564 | cbradney | 1206 | |
1207 | Creates a new polygon and returns its name. The points for the polygon are |
||
1208 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1209 | At least three points are required. There is no need to repeat the first point |
||
1210 | to close the polygon. The polygon is automatically closed by connecting the |
||
1211 | first and the last point. The coordinates are given in the current measurement |
||
1212 | units of the document (see UNIT constants). "name" should be a unique |
||
1213 | identifier for the object because you need this name for further access to that |
||
1214 | object. If "name" is not given Scribus will create one for you. |
||
1215 | |||
12612 | cbradney | 1216 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1217 | May raise ValueError if an insufficient number of points is passed or if |
12612 | cbradney | 1218 | the number of values passed don't group into points without leftovers. |
12564 | cbradney | 1219 | </source> |
12612 | cbradney | 1220 | <translation type="unfinished"></translation> |
12564 | cbradney | 1221 | </message> |
1222 | <message> |
||
12612 | cbradney | 1223 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="149"/> |
1224 | <source>createBezierLine(list, ["name"]) -> string |
||
12564 | cbradney | 1225 | |
1226 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1227 | curve are stored in the list "list" in the following order: |
||
1228 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1229 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1230 | and ky meaning the control point for the curve. The coordinates are given in |
||
1231 | the current measurement units of the document (see UNIT constants). "name" |
||
1232 | should be a unique identifier for the object because you need this name for |
||
1233 | further access to that object. If "name" is not given Scribus will create one |
||
1234 | for you. |
||
1235 | |||
12612 | cbradney | 1236 | May raise NameExistsError if you explicitly pass a name that's already used. |
12564 | cbradney | 1237 | May raise ValueError if an insufficient number of points is passed or if |
12612 | cbradney | 1238 | the number of values passed don't group into points without leftovers. |
12564 | cbradney | 1239 | </source> |
12612 | cbradney | 1240 | <translation type="unfinished"></translation> |
12564 | cbradney | 1241 | </message> |
1242 | <message> |
||
12612 | cbradney | 1243 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="165"/> |
1244 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
12564 | cbradney | 1245 | |
1246 | Creates a new pathText by merging the two objects "textbox" and |
||
1247 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1248 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1249 | unique identifier for the object because you need this name for further access |
||
1250 | to that object. If "name" is not given Scribus will create one for you. |
||
1251 | |||
12612 | cbradney | 1252 | May raise NameExistsError if you explicitly pass a name that's already used. |
1253 | May raise NotFoundError if one or both of the named base object don't exist. |
||
12564 | cbradney | 1254 | </source> |
12612 | cbradney | 1255 | <translation type="unfinished"></translation> |
12564 | cbradney | 1256 | </message> |
1257 | <message> |
||
12612 | cbradney | 1258 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="177"/> |
1259 | <source>deleteObject(["name"]) |
||
12564 | cbradney | 1260 | |
1261 | Deletes the item with the name "name". If "name" is not given the currently |
||
1262 | selected item is deleted. |
||
1263 | </source> |
||
12612 | cbradney | 1264 | <translation type="unfinished"></translation> |
12564 | cbradney | 1265 | </message> |
1266 | <message> |
||
12918 | cbradney | 1267 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="193"/> |
1268 | <source>textFlowMode("name" [, state]) |
||
1269 | |||
1270 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1271 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1272 | Setting "state" to 0 will disable text flow. |
||
1273 | Setting "state" to 1 will make text flow around object frame. |
||
1274 | Setting "state" to 2 will make text flow around bounding box. |
||
1275 | Setting "state" to 3 will make text flow around contour line. |
||
1276 | If "state" is not passed, text flow is toggled. |
||
1277 | </source> |
||
1278 | <translation type="unfinished"></translation> |
||
1279 | </message> |
||
1280 | <message> |
||
12612 | cbradney | 1281 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="211"/> |
1282 | <source>objectExists(["name"]) -> bool |
||
12564 | cbradney | 1283 | |
1284 | Test if an object with specified name really exists in the document. |
||
1285 | The optional parameter is the object name. When no object name is given, |
||
1286 | returns True if there is something selected. |
||
1287 | </source> |
||
12612 | cbradney | 1288 | <translation type="unfinished"></translation> |
12564 | cbradney | 1289 | </message> |
1290 | <message> |
||
12612 | cbradney | 1291 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="227"/> |
1292 | <source>setStyle("style" [, "name"]) |
||
12564 | cbradney | 1293 | |
1294 | Apply the named "style" to the object named "name". If is no object name |
||
12612 | cbradney | 1295 | given, it's applied on the selected object. |
12564 | cbradney | 1296 | </source> |
12612 | cbradney | 1297 | <translation type="unfinished"></translation> |
12564 | cbradney | 1298 | </message> |
1299 | <message> |
||
12612 | cbradney | 1300 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="240"/> |
1301 | <source>getAllStyles() -> list |
||
12564 | cbradney | 1302 | |
1303 | Return a list of the names of all paragraph styles in the current document. |
||
1304 | </source> |
||
12612 | cbradney | 1305 | <translation type="unfinished"></translation> |
12564 | cbradney | 1306 | </message> |
1307 | <message> |
||
12918 | cbradney | 1308 | <location filename="../../scribus/plugins/scriptplugin/cmdobj.h" line="252"/> |
1309 | <source>duplicateObject(["name"]) -> string |
||
1310 | |||
1311 | creates a Duplicate of the selected Object (or Selection Group). |
||
1312 | </source> |
||
1313 | <translation type="unfinished"></translation> |
||
1314 | </message> |
||
1315 | <message> |
||
1316 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="26"/> |
||
1317 | <source>newPage(where [,"masterpage"]) |
||
1318 | |||
1319 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
1320 | document, otherwise the new page is inserted before "where". Page numbers are |
||
1321 | counted from 1 upwards, no matter what the displayed first page number of your |
||
1322 | document is. The optional parameter "masterpage" specifies the name of the |
||
1323 | master page for the new page. |
||
1324 | |||
1325 | May raise IndexError if the page number is out of range |
||
1326 | </source> |
||
1327 | <translation type="unfinished"></translation> |
||
1328 | </message> |
||
1329 | <message> |
||
12612 | cbradney | 1330 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="36"/> |
1331 | <source>currentPage() -> integer |
||
12564 | cbradney | 1332 | |
1333 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1334 | upwards, no matter what the displayed first page number of your document is. |
||
1335 | </source> |
||
12612 | cbradney | 1336 | <translation type="unfinished"></translation> |
12564 | cbradney | 1337 | </message> |
1338 | <message> |
||
12612 | cbradney | 1339 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="45"/> |
1340 | <source>redrawAll() |
||
12564 | cbradney | 1341 | |
1342 | Redraws all pages. |
||
1343 | </source> |
||
12612 | cbradney | 1344 | <translation type="unfinished"></translation> |
12564 | cbradney | 1345 | </message> |
1346 | <message> |
||
12918 | cbradney | 1347 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="54"/> |
1348 | <source>getPageType() -> integer |
||
1349 | |||
1350 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1351 | </source> |
||
1352 | <translation type="unfinished"></translation> |
||
1353 | </message> |
||
1354 | <message> |
||
12612 | cbradney | 1355 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="65"/> |
1356 | <source>savePageAsEPS("name") |
||
12564 | cbradney | 1357 | |
1358 | Saves the current page as an EPS to the file "name". |
||
1359 | |||
1360 | May raise ScribusError if the save failed. |
||
1361 | </source> |
||
12612 | cbradney | 1362 | <translation type="unfinished"></translation> |
12564 | cbradney | 1363 | </message> |
1364 | <message> |
||
12612 | cbradney | 1365 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="78"/> |
1366 | <source>deletePage(nr) |
||
12564 | cbradney | 1367 | |
1368 | Deletes the given page. Does nothing if the document contains only one page. |
||
1369 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1370 | page number is. |
||
1371 | |||
1372 | May raise IndexError if the page number is out of range |
||
1373 | </source> |
||
12612 | cbradney | 1374 | <translation type="unfinished"></translation> |
12564 | cbradney | 1375 | </message> |
1376 | <message> |
||
12918 | cbradney | 1377 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="91"/> |
1378 | <source>gotoPage(nr) |
||
1379 | |||
1380 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1381 | gotoPage doesn't (currently) change the page the user's view is displaying, it |
||
1382 | just sets the page that script commands will operates on. |
||
1383 | |||
1384 | May raise IndexError if the page number is out of range. |
||
1385 | </source> |
||
1386 | <translation type="unfinished"></translation> |
||
1387 | </message> |
||
1388 | <message> |
||
12612 | cbradney | 1389 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="100"/> |
1390 | <source>pageCount() -> integer |
||
12564 | cbradney | 1391 | |
1392 | Returns the number of pages in the document. |
||
1393 | </source> |
||
12612 | cbradney | 1394 | <translation type="unfinished"></translation> |
12564 | cbradney | 1395 | </message> |
1396 | <message> |
||
12612 | cbradney | 1397 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="110"/> |
1398 | <source>getHGuides() -> list |
||
12564 | cbradney | 1399 | |
1400 | Returns a list containing positions of the horizontal guides. Values are in the |
||
12612 | cbradney | 1401 | document's current units - see UNIT_<type> constants. |
12564 | cbradney | 1402 | </source> |
12612 | cbradney | 1403 | <translation type="unfinished"></translation> |
12564 | cbradney | 1404 | </message> |
1405 | <message> |
||
12612 | cbradney | 1406 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="123"/> |
1407 | <source>setHGuides(list) |
||
12564 | cbradney | 1408 | |
1409 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
12612 | cbradney | 1410 | measured in the current document units - see UNIT_<type> constants. |
12564 | cbradney | 1411 | |
1412 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1413 | setHGuides([90,250]) # replace current guides entirely |
||
1414 | </source> |
||
12612 | cbradney | 1415 | <translation type="unfinished"></translation> |
12564 | cbradney | 1416 | </message> |
1417 | <message> |
||
12612 | cbradney | 1418 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="132"/> |
1419 | <source>getVGuides() |
||
12564 | cbradney | 1420 | |
1421 | See getHGuides. |
||
1422 | </source> |
||
12612 | cbradney | 1423 | <translation type="unfinished"></translation> |
12564 | cbradney | 1424 | </message> |
1425 | <message> |
||
12612 | cbradney | 1426 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="141"/> |
1427 | <source>setVGuides() |
||
12564 | cbradney | 1428 | |
1429 | See setHGuides. |
||
1430 | </source> |
||
12612 | cbradney | 1431 | <translation type="unfinished"></translation> |
12564 | cbradney | 1432 | </message> |
1433 | <message> |
||
12612 | cbradney | 1434 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="151"/> |
1435 | <source>getPageSize() -> tuple |
||
12564 | cbradney | 1436 | |
12612 | cbradney | 1437 | Returns a tuple with page dimensions measured in the document's current units. |
1438 | See UNIT_<type> constants and getPageMargins() |
||
12564 | cbradney | 1439 | </source> |
12612 | cbradney | 1440 | <translation type="unfinished"></translation> |
12564 | cbradney | 1441 | </message> |
1442 | <message> |
||
12612 | cbradney | 1443 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="167"/> |
1444 | <source>getPageItems() -> list |
||
12564 | cbradney | 1445 | |
1446 | Returns a list of tuples with items on the current page. The tuple is: |
||
12612 | cbradney | 1447 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
1448 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
12564 | cbradney | 1449 | the page... |
1450 | </source> |
||
12612 | cbradney | 1451 | <translation type="unfinished"></translation> |
12564 | cbradney | 1452 | </message> |
1453 | <message> |
||
12612 | cbradney | 1454 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="181"/> |
1455 | <source>getPageMargins() |
||
12564 | cbradney | 1456 | |
1457 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
12612 | cbradney | 1458 | units. See UNIT_<type> constants and getPageSize(). |
12564 | cbradney | 1459 | </source> |
12612 | cbradney | 1460 | <translation type="unfinished"></translation> |
12564 | cbradney | 1461 | </message> |
1462 | <message> |
||
12918 | cbradney | 1463 | <location filename="../../scribus/plugins/scriptplugin/cmdpage.h" line="198"/> |
1464 | <source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
||
1465 | |||
1466 | 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. |
||
1467 | fromDoc: string; the filename of the document to import pages from |
||
1468 | pageList: tuple with page numbers of pages to import |
||
1469 | create: number; 0 to replace existing pages, 1 (default) to insert new pages |
||
1470 | importWhere: number; the page number (of the current document) at which import the pages |
||
1471 | 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 |
||
1472 | </source> |
||
1473 | <translation type="unfinished"></translation> |
||
1474 | </message> |
||
1475 | <message> |
||
1476 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="22"/> |
||
1477 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
1478 | |||
1479 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
1480 | the same as for setFillColor() and setFillShade(). See the constants for |
||
1481 | available types (FILL_<type>). |
||
1482 | </source> |
||
1483 | <translation type="unfinished"></translation> |
||
1484 | </message> |
||
1485 | <message> |
||
12612 | cbradney | 1486 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="33"/> |
1487 | <source>setFillColor("color", ["name"]) |
||
12564 | cbradney | 1488 | |
1489 | Sets the fill color of the object "name" to the color "color". "color" |
||
1490 | is the name of one of the defined colors. If "name" is not given the |
||
1491 | currently selected item is used. |
||
1492 | </source> |
||
12612 | cbradney | 1493 | <translation type="unfinished"></translation> |
12564 | cbradney | 1494 | </message> |
1495 | <message> |
||
12918 | cbradney | 1496 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="43"/> |
1497 | <source>setFillTransparency(transparency, ["name"]) |
||
1498 | |||
1499 | Sets the fill transparency of the object "name" to transparency |
||
1500 | If "name" is not given the currently selected item is used. |
||
1501 | </source> |
||
1502 | <translation type="unfinished"></translation> |
||
1503 | </message> |
||
1504 | <message> |
||
1505 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="53"/> |
||
1506 | <source>setFillBlendmode(blendmode, ["name"]) |
||
1507 | |||
1508 | Sets the fill blendmode of the object "name" to blendmode |
||
1509 | If "name" is not given the currently selected item is used. |
||
1510 | </source> |
||
1511 | <translation type="unfinished"></translation> |
||
1512 | </message> |
||
1513 | <message> |
||
12612 | cbradney | 1514 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="63"/> |
1515 | <source>setLineColor("color", ["name"]) |
||
12564 | cbradney | 1516 | |
1517 | Sets the line color of the object "name" to the color "color". If "name" |
||
1518 | is not given the currently selected item is used. |
||
1519 | </source> |
||
12612 | cbradney | 1520 | <translation type="unfinished"></translation> |
12564 | cbradney | 1521 | </message> |
1522 | <message> |
||
12918 | cbradney | 1523 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="73"/> |
1524 | <source>setLineTransparency(transparency, ["name"]) |
||
1525 | |||
1526 | Sets the line transparency of the object "name" to transparency |
||
1527 | If "name" is not given the currently selected item is used. |
||
1528 | </source> |
||
1529 | <translation type="unfinished"></translation> |
||
1530 | </message> |
||
1531 | <message> |
||
1532 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="83"/> |
||
1533 | <source>setLineBlendmode(blendmode, ["name"]) |
||
1534 | |||
1535 | Sets the line blendmode of the object "name" to blendmode |
||
1536 | If "name" is not given the currently selected item is used. |
||
1537 | </source> |
||
1538 | <translation type="unfinished"></translation> |
||
1539 | </message> |
||
1540 | <message> |
||
12612 | cbradney | 1541 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="96"/> |
1542 | <source>setLineWidth(width, ["name"]) |
||
12564 | cbradney | 1543 | |
1544 | Sets line width of the object "name" to "width". "width" must be in the |
||
1545 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1546 | given the currently selected item is used. |
||
1547 | |||
1548 | May raise ValueError if the line width is out of bounds. |
||
1549 | </source> |
||
12612 | cbradney | 1550 | <translation type="unfinished"></translation> |
12564 | cbradney | 1551 | </message> |
1552 | <message> |
||
12612 | cbradney | 1553 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="110"/> |
1554 | <source>setLineShade(shade, ["name"]) |
||
12564 | cbradney | 1555 | |
1556 | Sets the shading of the line color of the object "name" to "shade". |
||
1557 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1558 | (full color intensity). If "name" is not given the currently selected item |
||
1559 | is used. |
||
1560 | |||
1561 | May raise ValueError if the line shade is out of bounds. |
||
1562 | </source> |
||
12612 | cbradney | 1563 | <translation type="unfinished"></translation> |
12564 | cbradney | 1564 | </message> |
1565 | <message> |
||
12612 | cbradney | 1566 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="121"/> |
1567 | <source>setLineJoin(join, ["name"]) |
||
12564 | cbradney | 1568 | |
1569 | Sets the line join style of the object "name" to the style "join". |
||
1570 | If "name" is not given the currently selected item is used. There are |
||
12612 | cbradney | 1571 | predefined constants for join - JOIN_<type>. |
12564 | cbradney | 1572 | </source> |
12612 | cbradney | 1573 | <translation type="unfinished"></translation> |
12564 | cbradney | 1574 | </message> |
1575 | <message> |
||
12612 | cbradney | 1576 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="132"/> |
1577 | <source>setLineEnd(endtype, ["name"]) |
||
12564 | cbradney | 1578 | |
1579 | Sets the line cap style of the object "name" to the style "cap". |
||
1580 | If "name" is not given the currently selected item is used. There are |
||
12612 | cbradney | 1581 | predefined constants for "cap" - CAP_<type>. |
12564 | cbradney | 1582 | </source> |
12612 | cbradney | 1583 | <translation type="unfinished"></translation> |
12564 | cbradney | 1584 | </message> |
1585 | <message> |
||
12612 | cbradney | 1586 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="143"/> |
1587 | <source>setLineStyle(style, ["name"]) |
||
12564 | cbradney | 1588 | |
1589 | Sets the line style of the object "name" to the style "style". If "name" |
||
1590 | is not given the currently selected item is used. There are predefined |
||
12612 | cbradney | 1591 | constants for "style" - LINE_<style>. |
12564 | cbradney | 1592 | </source> |
12612 | cbradney | 1593 | <translation type="unfinished"></translation> |
12564 | cbradney | 1594 | </message> |
1595 | <message> |
||
12612 | cbradney | 1596 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="157"/> |
1597 | <source>setFillShade(shade, ["name"]) |
||
12564 | cbradney | 1598 | |
1599 | Sets the shading of the fill color of the object "name" to "shade". |
||
1600 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1601 | (full Color intensity). If "name" is not given the currently selected |
||
1602 | Item is used. |
||
1603 | |||
1604 | May raise ValueError if the fill shade is out of bounds. |
||
1605 | </source> |
||
12612 | cbradney | 1606 | <translation type="unfinished"></translation> |
12564 | cbradney | 1607 | </message> |
1608 | <message> |
||
12612 | cbradney | 1609 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="169"/> |
1610 | <source>setCornerRadius(radius, ["name"]) |
||
12564 | cbradney | 1611 | |
1612 | Sets the corner radius of the object "name". The radius is expressed |
||
1613 | in points. If "name" is not given the currently selected item is used. |
||
1614 | |||
1615 | May raise ValueError if the corner radius is negative. |
||
1616 | </source> |
||
12612 | cbradney | 1617 | <translation type="unfinished"></translation> |
12564 | cbradney | 1618 | </message> |
1619 | <message> |
||
12612 | cbradney | 1620 | <location filename="../../scribus/plugins/scriptplugin/cmdsetprop.h" line="181"/> |
1621 | <source>setMultiLine("namedStyle", ["name"]) |
||
12564 | cbradney | 1622 | |
1623 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1624 | If "name" is not given the currently selected item is used. |
||
1625 | |||
12612 | cbradney | 1626 | May raise NotFoundError if the line style doesn't exist. |
12564 | cbradney | 1627 | </source> |
12612 | cbradney | 1628 | <translation type="unfinished"></translation> |
12564 | cbradney | 1629 | </message> |
1630 | <message> |
||
12918 | cbradney | 1631 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="43"/> |
1632 | <source>createParagraphStyle(...) |
||
1633 | |||
1634 | Creates a paragraph style. This function takes the following keyword parameters: |
||
1635 | |||
1636 | "name" [required] -> specifies the name of the paragraphstyle to create |
||
1637 | |||
1638 | linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
||
1639 | |||
1640 | fixed linespacing: 0 |
||
1641 | |||
1642 | automatic linespacing: 1 |
||
1643 | |||
1644 | baseline grid linespacing: 2 |
||
1645 | |||
1646 | linespacing [optional] -> specifies the linespacing if using fixed linespacing |
||
1647 | |||
1648 | alignment [optional] -> specifies the alignment of the paragraph |
||
1649 | |||
1650 | -> left: 0 |
||
1651 | |||
1652 | -> center: 1 |
||
1653 | |||
1654 | -> right: 2 |
||
1655 | |||
1656 | -> justify: 3 |
||
1657 | |||
1658 | -> extend: 4 |
||
1659 | |||
1660 | leftmargin [optional], rightmargin [optional] -> specify the margin |
||
1661 | |||
1662 | gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
||
1663 | |||
1664 | firstindent [optional] -> the indent of the first line |
||
1665 | |||
1666 | hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
||
1667 | |||
1668 | dropcaplines [optional] -> height (in lines) of the caps if used |
||
1669 | |||
1670 | dropcapoffset [optional] -> offset of the caps if used |
||
1671 | |||
1672 | "charstyle" [optional] -> char style to use |
||
1673 | |||
1674 | </source> |
||
1675 | <translation type="unfinished"></translation> |
||
1676 | </message> |
||
1677 | <message> |
||
1678 | <location filename="../../scribus/plugins/scriptplugin/cmdstyle.h" line="80"/> |
||
1679 | <source>createCharStyle(...) |
||
1680 | |||
1681 | Creates a character style. This function takes the following keyword parameters: |
||
1682 | |||
1683 | "name" [required] -> name of the char style to create |
||
1684 | |||
1685 | "font" [optional] -> name of the font to use |
||
1686 | |||
1687 | fontsize [optional] -> font size to set (double) |
||
1688 | |||
1689 | "features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
||
1690 | |||
1691 | -> inherit |
||
1692 | |||
1693 | -> bold |
||
1694 | |||
1695 | -> italic |
||
1696 | |||
1697 | -> underline |
||
1698 | |||
1699 | -> underlinewords |
||
1700 | |||
1701 | -> strike |
||
1702 | |||
1703 | -> superscript |
||
1704 | |||
1705 | -> subscript |
||
1706 | |||
1707 | -> outline |
||
1708 | |||
1709 | -> shadowed |
||
1710 | |||
1711 | -> allcaps |
||
1712 | |||
1713 | -> smallcaps |
||
1714 | |||
1715 | "fillcolor" [optional], "fillshade" [optional] -> specify fill options |
||
1716 | |||
1717 | "strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
||
1718 | |||
1719 | baselineoffset [optional] -> offset of the baseline |
||
1720 | |||
1721 | shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
||
1722 | |||
1723 | outlinewidth [optional] -> width of the outline if used |
||
1724 | |||
1725 | underlineoffset [optional], underlinewidth [optional] -> underline options if used |
||
1726 | |||
1727 | strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
||
1728 | |||
1729 | scaleh [optional], scalev [optional] -> scale of the chars |
||
1730 | |||
1731 | tracking [optional] -> tracking of the text |
||
1732 | |||
1733 | "language" [optional] -> language code |
||
1734 | |||
1735 | </source> |
||
1736 | <translation type="unfinished"></translation> |
||
1737 | </message> |
||
1738 | <message> |
||
1739 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="23"/> |
||
1740 | <source>getFontSize(["name"]) -> float |
||
1741 | |||
1742 | Returns the font size in points for the text frame "name". If this text |
||
1743 | frame has some text selected the value assigned to the first character of |
||
1744 | the selection is returned. |
||
1745 | If "name" is not given the currently selected item is used. |
||
1746 | </source> |
||
1747 | <translation type="unfinished"></translation> |
||
1748 | </message> |
||
1749 | <message> |
||
12612 | cbradney | 1750 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="35"/> |
1751 | <source>getFont(["name"]) -> string |
||
12564 | cbradney | 1752 | |
1753 | Returns the font name for the text frame "name". If this text frame |
||
1754 | has some text selected the value assigned to the first character |
||
1755 | of the selection is returned. If "name" is not given the currently |
||
1756 | selected item is used. |
||
1757 | </source> |
||
12612 | cbradney | 1758 | <translation type="unfinished"></translation> |
12564 | cbradney | 1759 | </message> |
1760 | <message> |
||
12612 | cbradney | 1761 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="45"/> |
1762 | <source>getTextLength(["name"]) -> integer |
||
12564 | cbradney | 1763 | |
1764 | Returns the length of the text in the text frame "name". |
||
1765 | If "name" is not given the currently selected item is used. |
||
1766 | </source> |
||
12612 | cbradney | 1767 | <translation type="unfinished"></translation> |
12564 | cbradney | 1768 | </message> |
1769 | <message> |
||
12918 | cbradney | 1770 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="55"/> |
1771 | <source>getTextLines(["name"]) -> integer |
||
1772 | |||
1773 | Returns the number of lines of the text in the text frame "name". |
||
1774 | If "name" is not given the currently selected item is used. |
||
1775 | </source> |
||
1776 | <translation type="unfinished"></translation> |
||
1777 | </message> |
||
1778 | <message> |
||
12612 | cbradney | 1779 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="67"/> |
1780 | <source>getText(["name"]) -> string |
||
12564 | cbradney | 1781 | |
1782 | Returns the text of the text frame "name". If this text frame has some text |
||
1783 | selected, the selected text is returned. All text in the frame, not just |
||
1784 | currently visible text, is returned. If "name" is not given the currently |
||
1785 | selected item is used. |
||
1786 | </source> |
||
12612 | cbradney | 1787 | <translation type="unfinished"></translation> |
12564 | cbradney | 1788 | </message> |
1789 | <message> |
||
12612 | cbradney | 1790 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="79"/> |
1791 | <source>getAllText(["name"]) -> string |
||
12564 | cbradney | 1792 | |
1793 | Returns the text of the text frame "name" and of all text frames which are |
||
1794 | linked with this frame. If this textframe has some text selected, the selected |
||
1795 | text is returned. If "name" is not given the currently selected item is |
||
1796 | used. |
||
1797 | </source> |
||
12612 | cbradney | 1798 | <translation type="unfinished"></translation> |
12564 | cbradney | 1799 | </message> |
1800 | <message> |
||
12612 | cbradney | 1801 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="89"/> |
1802 | <source>getLineSpacing(["name"]) -> float |
||
12564 | cbradney | 1803 | |
1804 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1805 | points. If "name" is not given the currently selected item is used. |
||
1806 | </source> |
||
12612 | cbradney | 1807 | <translation type="unfinished"></translation> |
12564 | cbradney | 1808 | </message> |
1809 | <message> |
||
12918 | cbradney | 1810 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="100"/> |
1811 | <source>getTextDistances(["name"]) -> tuple |
||
1812 | |||
1813 | Returns the text distances of the text frame "name" expressed in points. The |
||
1814 | distances are returned as a tuple like (left, right, top, bottom). If "name" |
||
1815 | is not given the currently selected item is used. |
||
1816 | </source> |
||
1817 | <translation type="unfinished"></translation> |
||
1818 | </message> |
||
1819 | <message> |
||
12612 | cbradney | 1820 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="110"/> |
1821 | <source>getColumnGap(["name"]) -> float |
||
12564 | cbradney | 1822 | |
1823 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1824 | "name" is not given the currently selected item is used. |
||
1825 | </source> |
||
12612 | cbradney | 1826 | <translation type="unfinished"></translation> |
12564 | cbradney | 1827 | </message> |
1828 | <message> |
||
12612 | cbradney | 1829 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="120"/> |
1830 | <source>getColumns(["name"]) -> integer |
||
12564 | cbradney | 1831 | |
1832 | Gets the number of columns of the text frame "name". If "name" is not |
||
1833 | given the currently selected item is used. |
||
1834 | </source> |
||
12612 | cbradney | 1835 | <translation type="unfinished"></translation> |
12564 | cbradney | 1836 | </message> |
1837 | <message> |
||
12612 | cbradney | 1838 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="132"/> |
1839 | <source>setText("text", ["name"]) |
||
12564 | cbradney | 1840 | |
1841 | Sets the text of the text frame "name" to the text of the string "text". |
||
12612 | cbradney | 1842 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
12564 | cbradney | 1843 | for more details. If "name" is not given the currently selected item is |
1844 | used. |
||
1845 | </source> |
||
12612 | cbradney | 1846 | <translation type="unfinished"></translation> |
12564 | cbradney | 1847 | </message> |
1848 | <message> |
||
12918 | cbradney | 1849 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="146"/> |
1850 | <source>insertText("text", pos, ["name"]) |
||
1851 | |||
1852 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
1853 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
1854 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
1855 | not given the currently selected Item is used. |
||
1856 | |||
1857 | May throw IndexError for an insertion out of bounds. |
||
1858 | </source> |
||
1859 | <translation type="unfinished"></translation> |
||
1860 | </message> |
||
1861 | <message> |
||
12612 | cbradney | 1862 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="159"/> |
1863 | <source>setFont("font", ["name"]) |
||
12564 | cbradney | 1864 | |
1865 | Sets the font of the text frame "name" to "font". If there is some text |
||
1866 | selected only the selected text is changed. If "name" is not given the |
||
1867 | currently selected item is used. |
||
1868 | |||
1869 | May throw ValueError if the font cannot be found. |
||
1870 | </source> |
||
12612 | cbradney | 1871 | <translation type="unfinished"></translation> |
12564 | cbradney | 1872 | </message> |
1873 | <message> |
||
12612 | cbradney | 1874 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="173"/> |
1875 | <source>setFontSize(size, ["name"]) |
||
12564 | cbradney | 1876 | |
1877 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1878 | as a value in points. If there is some text selected only the selected text is |
||
1879 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1880 | currently selected item is used. |
||
1881 | |||
12612 | cbradney | 1882 | May throw ValueError for a font size that's out of bounds. |
12564 | cbradney | 1883 | </source> |
12612 | cbradney | 1884 | <translation type="unfinished"></translation> |
12564 | cbradney | 1885 | </message> |
1886 | <message> |
||
12612 | cbradney | 1887 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="186"/> |
1888 | <source>setLineSpacing(size, ["name"]) |
||
12564 | cbradney | 1889 | |
1890 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1891 | "size" is a value in points. If "name" is not given the currently selected |
||
1892 | item is used. |
||
1893 | |||
1894 | May throw ValueError if the line spacing is out of bounds. |
||
1895 | </source> |
||
12612 | cbradney | 1896 | <translation type="unfinished"></translation> |
12564 | cbradney | 1897 | </message> |
1898 | <message> |
||
12918 | cbradney | 1899 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="199"/> |
1900 | <source>setTextDistances(left, right, top, bottom, ["name"]) |
||
1901 | |||
1902 | Sets the text distances of the text frame "name" to the values "left" |
||
1903 | "right", "top" and "bottom". If "name" is not given the currently |
||
1904 | selected item is used. |
||
1905 | |||
1906 | May throw ValueError if any of the distances are out of bounds (must be positive). |
||
1907 | </source> |
||
1908 | <translation type="unfinished"></translation> |
||
1909 | </message> |
||
1910 | <message> |
||
12612 | cbradney | 1911 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="211"/> |
1912 | <source>setColumnGap(size, ["name"]) |
||
12564 | cbradney | 1913 | |
1914 | Sets the column gap of the text frame "name" to the value "size". If |
||
1915 | "name" is not given the currently selected item is used. |
||
1916 | |||
1917 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1918 | </source> |
||
12612 | cbradney | 1919 | <translation type="unfinished"></translation> |
12564 | cbradney | 1920 | </message> |
1921 | <message> |
||
12612 | cbradney | 1922 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="223"/> |
1923 | <source>setColumns(nr, ["name"]) |
||
12564 | cbradney | 1924 | |
1925 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1926 | If "name" is not given the currently selected item is used. |
||
1927 | |||
1928 | May throw ValueError if number of columns is not at least one. |
||
1929 | </source> |
||
12612 | cbradney | 1930 | <translation type="unfinished"></translation> |
12564 | cbradney | 1931 | </message> |
1932 | <message> |
||
12612 | cbradney | 1933 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="236"/> |
1934 | <source>setTextAlignment(align, ["name"]) |
||
12564 | cbradney | 1935 | |
1936 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1937 | If "name" is not given the currently selected item is used. "align" should |
||
1938 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1939 | |||
1940 | May throw ValueError for an invalid alignment constant. |
||
1941 | </source> |
||
12612 | cbradney | 1942 | <translation type="unfinished"></translation> |
12564 | cbradney | 1943 | </message> |
1944 | <message> |
||
12612 | cbradney | 1945 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="250"/> |
1946 | <source>selectText(start, count, ["name"]) |
||
12564 | cbradney | 1947 | |
1948 | Selects "count" characters of text in the text frame "name" starting from the |
||
1949 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1950 | text selection will be cleared. If "name" is not given the currently |
||
1951 | selected item is used. |
||
1952 | |||
1953 | May throw IndexError if the selection is outside the bounds of the text. |
||
1954 | </source> |
||
12612 | cbradney | 1955 | <translation type="unfinished"></translation> |
12564 | cbradney | 1956 | </message> |
1957 | <message> |
||
12612 | cbradney | 1958 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="261"/> |
1959 | <source>deleteText(["name"]) |
||
12564 | cbradney | 1960 | |
1961 | Deletes any text in the text frame "name". If there is some text selected, |
||
1962 | only the selected text will be deleted. If "name" is not given the currently |
||
1963 | selected item is used. |
||
1964 | </source> |
||
12612 | cbradney | 1965 | <translation type="unfinished"></translation> |
12564 | cbradney | 1966 | </message> |
1967 | <message> |
||
12612 | cbradney | 1968 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="272"/> |
1969 | <source>setTextColor("color", ["name"]) |
||
12564 | cbradney | 1970 | |
1971 | Sets the text color of the text frame "name" to the color "color". If there |
||
1972 | is some text selected only the selected text is changed. If "name" is not |
||
1973 | given the currently selected item is used. |
||
1974 | </source> |
||
12612 | cbradney | 1975 | <translation type="unfinished"></translation> |
12564 | cbradney | 1976 | </message> |
1977 | <message> |
||
12612 | cbradney | 1978 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="282"/> |
1979 | <source>setTextStroke("color", ["name"]) |
||
12564 | cbradney | 1980 | |
1981 | Set "color" of the text stroke. If "name" is not given the currently |
||
1982 | selected item is used. |
||
1983 | </source> |
||
12612 | cbradney | 1984 | <translation type="unfinished"></translation> |
12564 | cbradney | 1985 | </message> |
1986 | <message> |
||
12612 | cbradney | 1987 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="295"/> |
1988 | <source>setTextShade(shade, ["name"]) |
||
12564 | cbradney | 1989 | |
1990 | Sets the shading of the text color of the object "name" to "shade". If |
||
1991 | there is some text selected only the selected text is changed. "shade" must |
||
1992 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1993 | intensity). If "name" is not given the currently selected item is |
||
1994 | used. |
||
1995 | </source> |
||
12612 | cbradney | 1996 | <translation type="unfinished"></translation> |
12564 | cbradney | 1997 | </message> |
1998 | <message> |
||
12612 | cbradney | 1999 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="308"/> |
2000 | <source>linkTextFrames("fromname", "toname") |
||
12564 | cbradney | 2001 | |
2002 | Link two text frames. The frame named "fromname" is linked to the |
||
2003 | frame named "toname". The target frame must be an empty text frame |
||
2004 | and must not link to or be linked from any other frames already. |
||
2005 | |||
2006 | May throw ScribusException if linking rules are violated. |
||
2007 | </source> |
||
12612 | cbradney | 2008 | <translation type="unfinished"></translation> |
12564 | cbradney | 2009 | </message> |
2010 | <message> |
||
12612 | cbradney | 2011 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="325"/> |
2012 | <source>unlinkTextFrames("name") |
||
12564 | cbradney | 2013 | |
2014 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2015 | frame was in the middle of a chain, the previous and next frames will be |
||
12612 | cbradney | 2016 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
12564 | cbradney | 2017 | |
2018 | May throw ScribusException if linking rules are violated. |
||
2019 | </source> |
||
12612 | cbradney | 2020 | <translation type="unfinished"></translation> |
12564 | cbradney | 2021 | </message> |
2022 | <message> |
||
12612 | cbradney | 2023 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="338"/> |
2024 | <source>traceText(["name"]) |
||
12564 | cbradney | 2025 | |
2026 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2027 | currently selected item is used.</source> |
||
12612 | cbradney | 2028 | <translation type="unfinished"></translation> |
12564 | cbradney | 2029 | </message> |
2030 | <message> |
||
12612 | cbradney | 2031 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="352"/> |
2032 | <source>textOverflows(["name", nolinks]) -> integer |
||
12564 | cbradney | 2033 | |
2034 | Returns the actual number of overflowing characters in text frame "name". |
||
12612 | cbradney | 2035 | If is nolinks set to non zero value it takes only one frame - it doesn't |
12564 | cbradney | 2036 | use text frame linking. Without this parameter it search all linking chain. |
2037 | |||
2038 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2039 | </source> |
||
12612 | cbradney | 2040 | <translation type="unfinished"></translation> |
12564 | cbradney | 2041 | </message> |
2042 | <message> |
||
12918 | cbradney | 2043 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="365"/> |
2044 | <source>hyphenateText(["name"]) -> bool |
||
2045 | |||
2046 | Does hyphenation on text frame "name". |
||
2047 | If "name" is not given the currently selected item is used. |
||
2048 | |||
2049 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2050 | </source> |
||
2051 | <translation type="unfinished"></translation> |
||
2052 | </message> |
||
2053 | <message> |
||
2054 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="379"/> |
||
2055 | <source>dehyphenateText(["name"]) -> bool |
||
2056 | |||
2057 | Does dehyphenation on text frame "name". |
||
2058 | If "name" is not given the currently selected item is used. |
||
2059 | |||
2060 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2061 | </source> |
||
2062 | <translation type="unfinished"></translation> |
||
2063 | </message> |
||
2064 | <message> |
||
2065 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="394"/> |
||
2066 | <source>setPDFBookmark("toggle", ["name"]) |
||
2067 | |||
2068 | Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2069 | If "name" is not given the currently selected item is used. |
||
2070 | |||
2071 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2072 | </source> |
||
2073 | <translation type="unfinished"></translation> |
||
2074 | </message> |
||
2075 | <message> |
||
12612 | cbradney | 2076 | <location filename="../../scribus/plugins/scriptplugin/cmdtext.h" line="406"/> |
2077 | <source>isPDFBookmark(["name"]) -> bool |
||
12564 | cbradney | 2078 | |
2079 | Returns true if the text frame "name" is a PDF bookmark. |
||
2080 | If "name" is not given the currently selected item is used. |
||
2081 | |||
2082 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2083 | </source> |
||
12612 | cbradney | 2084 | <translation type="unfinished"></translation> |
12564 | cbradney | 2085 | </message> |
2086 | <message> |
||
12918 | cbradney | 2087 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="21"/> |
2088 | <source>messagebarText("string") |
||
2089 | |||
2090 | Writes the "string" into the Scribus message bar (status line). The text |
||
2091 | must be UTF8 encoded or 'unicode' string(recommended). |
||
2092 | </source> |
||
2093 | <translation type="unfinished"></translation> |
||
2094 | </message> |
||
2095 | <message> |
||
12612 | cbradney | 2096 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="34"/> |
2097 | <source>progressReset() |
||
12564 | cbradney | 2098 | |
2099 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2100 | new progress bar use. See progressSet. |
||
2101 | </source> |
||
12612 | cbradney | 2102 | <translation type="unfinished"></translation> |
12564 | cbradney | 2103 | </message> |
2104 | <message> |
||
12612 | cbradney | 2105 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="47"/> |
2106 | <source>progressTotal(max) |
||
12564 | cbradney | 2107 | |
12612 | cbradney | 2108 | Sets the progress bar's maximum steps value to the specified number. |
12564 | cbradney | 2109 | See progressSet. |
2110 | </source> |
||
12612 | cbradney | 2111 | <translation type="unfinished"></translation> |
12564 | cbradney | 2112 | </message> |
2113 | <message> |
||
12612 | cbradney | 2114 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="61"/> |
2115 | <source>progressSet(nr) |
||
12564 | cbradney | 2116 | |
2117 | Set the progress bar position to "nr", a value relative to the previously set |
||
2118 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2119 | total number of steps and the number of steps completed so far and it will |
||
2120 | display the percentage of steps that have been completed. You can specify the |
||
2121 | total number of steps with progressTotal(). The current number of steps is set |
||
2122 | with progressSet(). The progress bar can be rewound to the beginning with |
||
12612 | cbradney | 2123 | progressReset(). [based on info taken from Trolltech's Qt docs] |
12564 | cbradney | 2124 | </source> |
12612 | cbradney | 2125 | <translation type="unfinished"></translation> |
12564 | cbradney | 2126 | </message> |
2127 | <message> |
||
12612 | cbradney | 2128 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="69"/> |
2129 | <source>setCursor() |
||
12564 | cbradney | 2130 | |
2131 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2132 | </source> |
||
12612 | cbradney | 2133 | <translation type="unfinished"></translation> |
12564 | cbradney | 2134 | </message> |
2135 | <message> |
||
12612 | cbradney | 2136 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="83"/> |
2137 | <source>docChanged(bool) |
||
12564 | cbradney | 2138 | |
12612 | cbradney | 2139 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
2140 | useful to call this procedure when you're changing the document, because Scribus |
||
2141 | won't automatically notice when you change the document using a script. |
||
12564 | cbradney | 2142 | </source> |
12612 | cbradney | 2143 | <translation type="unfinished"></translation> |
12564 | cbradney | 2144 | </message> |
2145 | <message> |
||
12612 | cbradney | 2146 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="95"/> |
2147 | <source>zoomDocument(double) |
||
12564 | cbradney | 2148 | |
2149 | Zoom the document in main GUI window. Actions have whole number |
||
2150 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2151 | </source> |
||
12612 | cbradney | 2152 | <translation type="unfinished"></translation> |
12564 | cbradney | 2153 | </message> |
2154 | <message> |
||
12918 | cbradney | 2155 | <location filename="../../scribus/plugins/scriptplugin/guiapp.h" line="106"/> |
2156 | <source>scrollDocument(x,y) |
||
12564 | cbradney | 2157 | |
12918 | cbradney | 2158 | Scroll the document in main GUI window by x and y. |
12564 | cbradney | 2159 | </source> |
12612 | cbradney | 2160 | <translation type="unfinished"></translation> |
12564 | cbradney | 2161 | </message> |
2162 | <message> |
||
12918 | cbradney | 2163 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="21"/> |
2164 | <source>placeSVG("filename", x, y) |
||
12564 | cbradney | 2165 | |
12918 | cbradney | 2166 | Places the SVG "filename" onto the current page, |
2167 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
12564 | cbradney | 2168 | |
12918 | cbradney | 2169 | If loading was successful, the selection contains the imported SVG |
12564 | cbradney | 2170 | </source> |
12612 | cbradney | 2171 | <translation type="unfinished"></translation> |
12564 | cbradney | 2172 | </message> |
2173 | <message> |
||
12612 | cbradney | 2174 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="33"/> |
2175 | <source>placeEPS("filename", x, y) |
||
12564 | cbradney | 2176 | |
2177 | Places the EPS "filename" onto the current page, |
||
2178 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
2179 | |||
2180 | If loading was successful, the selection contains the imported EPS |
||
2181 | </source> |
||
12612 | cbradney | 2182 | <translation type="unfinished"></translation> |
12564 | cbradney | 2183 | </message> |
2184 | <message> |
||
12612 | cbradney | 2185 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="45"/> |
2186 | <source>placeSXD("filename", x, y) |
||
12564 | cbradney | 2187 | |
2188 | Places the SXD "filename" onto the current page, |
||
2189 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
2190 | |||
2191 | If loading was successful, the selection contains the imported SXD |
||
2192 | </source> |
||
12612 | cbradney | 2193 | <translation type="unfinished"></translation> |
12564 | cbradney | 2194 | </message> |
2195 | <message> |
||
12612 | cbradney | 2196 | <location filename="../../scribus/plugins/scriptplugin/svgimport.h" line="57"/> |
2197 | <source>placeODG("filename", x, y) |
||
12564 | cbradney | 2198 | |
2199 | Places the ODG "filename" onto the current page, |
||
2200 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
2201 | |||
2202 | If loading was successful, the selection contains the imported ODG |
||
2203 | </source> |
||
12612 | cbradney | 2204 | <translation type="unfinished"></translation> |
12564 | cbradney | 2205 | </message> |
12612 | cbradney | 2206 | </context> |
2207 | <context> |
||
12918 | cbradney | 2208 | <name>@default</name> |
2209 | </context> |
||
2210 | <context> |
||
12564 | cbradney | 2211 | <name>AIPlug</name> |
2212 | <message> |
||
12918 | cbradney | 2213 | <location filename="../../scribus/plugins/aiimplugin/importai.cpp" line="124"/> |
12612 | cbradney | 2214 | <source>Importing: %1</source> |
2215 | <translation>들여오는 중: %1</translation> |
||
12564 | cbradney | 2216 | </message> |
2217 | <message> |
||
12918 | cbradney | 2218 | <location filename="../../scribus/plugins/aiimplugin/importai.cpp" line="127"/> |
12612 | cbradney | 2219 | <source>Analyzing File:</source> |
2220 | <translation>파일 분석 중:</translation> |
||
12564 | cbradney | 2221 | </message> |
2222 | <message> |
||
12918 | cbradney | 2223 | <location filename="../../scribus/plugins/aiimplugin/importai.cpp" line="264"/> |
12612 | cbradney | 2224 | <source>Group%1</source> |
2225 | <translation>그룹 %1</translation> |
||
12564 | cbradney | 2226 | </message> |
2227 | <message> |
||
12918 | cbradney | 2228 | <location filename="../../scribus/plugins/aiimplugin/importai.cpp" line="2228"/> |
12612 | cbradney | 2229 | <source>Generating Items</source> |
2230 | <translation>객체 생성 중</translation> |
||
12564 | cbradney | 2231 | </message> |
12612 | cbradney | 2232 | </context> |
2233 | <context> |
||
12564 | cbradney | 2234 | <name>About</name> |
2235 | <message> |
||
12612 | cbradney | 2236 | <location filename="../../scribus/about.cpp" line="97"/> |
2237 | <source>About Scribus %1</source> |
||
2238 | <translation>Scribus %1에 대하여</translation> |
||
12564 | cbradney | 2239 | </message> |
2240 | <message> |
||
12612 | cbradney | 2241 | <location filename="../../scribus/about.cpp" line="124"/> |
2242 | <source>%1 %2 %3</source> |
||
2243 | <translation>%1 %2 %3</translation> |
||
12564 | cbradney | 2244 | </message> |
2245 | <message> |
||
12612 | cbradney | 2246 | <location filename="../../scribus/about.cpp" line="132"/> |
2247 | <source>%3-%2-%1 %4 %5</source> |
||
2248 | <translation>%3-%2-%1 %4 %5</translation> |
||
12564 | cbradney | 2249 | </message> |
2250 | <message> |
||
12612 | cbradney | 2251 | <location filename="../../scribus/about.cpp" line="182"/> |
2252 | <source>Using Ghostscript version %1</source> |
||
2253 | <translation>Ghostscript버전 %1 사용 중</translation> |
||
12564 | cbradney | 2254 | </message> |
2255 | <message> |
||
12612 | cbradney | 2256 | <location filename="../../scribus/about.cpp" line="184"/> |
2257 | <source>No Ghostscript version available</source> |
||
2258 | <translation>사용 가능한 Ghostscript 버전이 없습니다</translation> |
||
12564 | cbradney | 2259 | </message> |
2260 | <message> |
||
12612 | cbradney | 2261 | <location filename="../../scribus/about.cpp" line="185"/> |
2262 | <source>Build ID:</source> |
||
2263 | <translation>빌드ID:</translation> |
||
12564 | cbradney | 2264 | </message> |
2265 | <message> |
||
12612 | cbradney | 2266 | <location filename="../../scribus/about.cpp" line="187"/> |
2267 | <source>&About</source> |
||
2268 | <translation>대하여(&A)</translation> |
||
12564 | cbradney | 2269 | </message> |
2270 | <message> |
||
12612 | cbradney | 2271 | <location filename="../../scribus/about.cpp" line="296"/> |
2272 | <source>Development Team:</source> |
||
2273 | <translation>개발팀:</translation> |
||
12564 | cbradney | 2274 | </message> |
2275 | <message> |
||
12612 | cbradney | 2276 | <location filename="../../scribus/about.cpp" line="304"/> |
2277 | <source>Contributions from:</source> |
||
2278 | <translation>기여:</translation> |
||
12564 | cbradney | 2279 | </message> |
2280 | <message> |
||
12612 | cbradney | 2281 | <location filename="../../scribus/about.cpp" line="298"/> |
2282 | <source>Mac OS&#174; X Aqua Port:</source> |
||
2283 | <translation>맥 OS&#174; X 아쿠아 포트:</translation> |
||
12564 | cbradney | 2284 | </message> |
2285 | <message> |
||
12612 | cbradney | 2286 | <location filename="../../scribus/about.cpp" line="302"/> |
2287 | <source>Windows&#174; Port:</source> |
||
2288 | <translation>윈도우&#174; 포트:</translation> |
||
12564 | cbradney | 2289 | </message> |
2290 | <message> |
||
12612 | cbradney | 2291 | <location filename="../../scribus/about.cpp" line="306"/> |
2292 | <source>Official Documentation:</source> |
||
2293 | <translation>공식 문서:</translation> |
||
12564 | cbradney | 2294 | </message> |
2295 | <message> |
||
12612 | cbradney | 2296 | <location filename="../../scribus/about.cpp" line="310"/> |
2297 | <source>Other Documentation:</source> |
||
2298 | <translation>기타 문서:</translation> |
||
12564 | cbradney | 2299 | </message> |
2300 | <message> |
||
12612 | cbradney | 2301 | <location filename="../../scribus/about.cpp" line="200"/> |
2302 | <source>A&uthors</source> |
||
2303 | <translation>저자(&U)</translation> |
||
12564 | cbradney | 2304 | </message> |
2305 | <message> |
||
12612 | cbradney | 2306 | <location filename="../../scribus/about.cpp" line="326"/> |
2307 | <source>Official Translations and Translators:</source> |
||
2308 | <translation>공식 번역 및 번역자:</translation> |
||
12564 | cbradney | 2309 | </message> |
2310 | <message> |
||
12612 | cbradney | 2311 | <location filename="../../scribus/about.cpp" line="328"/> |
2312 | <source>Previous Translation Contributors:</source> |
||
2313 | <translation>기존 번역 기여자:</translation> |
||
12564 | cbradney | 2314 | </message> |
2315 | <message> |
||
12612 | cbradney | 2316 | <location filename="../../scribus/about.cpp" line="214"/> |
2317 | <source>&Translations</source> |
||
2318 | <translation>번역(&T)</translation> |
||
12564 | cbradney | 2319 | </message> |
2320 | <message> |
||
12612 | cbradney | 2321 | <location filename="../../scribus/about.cpp" line="340"/> |
2322 | <source>Homepage</source> |
||
2323 | <translation>홈페이지</translation> |
||
12564 | cbradney | 2324 | </message> |
2325 | <message> |
||
12612 | cbradney | 2326 | <location filename="../../scribus/about.cpp" line="342"/> |
2327 | <source>Online Reference</source> |
||
2328 | <translation>온라인 참조</translation> |
||
12564 | cbradney | 2329 | </message> |
2330 | <message> |
||
12612 | cbradney | 2331 | <location filename="../../scribus/about.cpp" line="344"/> |
2332 | <source>Wiki</source> |
||
2333 | <translation>Wiki</translation> |
||
12564 | cbradney | 2334 | </message> |
2335 | <message> |
||
12612 | cbradney | 2336 | <location filename="../../scribus/about.cpp" line="346"/> |
2337 | <source>Bugs and Feature Requests</source> |
||
2338 | <translation>버그와 특성 요청</translation> |
||
12564 | cbradney | 2339 | </message> |
2340 | <message> |
||
12612 | cbradney | 2341 | <location filename="../../scribus/about.cpp" line="350"/> |
2342 | <source>Mailing List</source> |
||
2343 | <translation>메일링 목록</translation> |
||
12564 | cbradney | 2344 | </message> |
2345 | <message> |
||
12612 | cbradney | 2346 | <location filename="../../scribus/about.cpp" line="225"/> |
2347 | <source>&Online</source> |
||
2348 | <translation>온라인(&O)</translation> |
||
12564 | cbradney | 2349 | </message> |
2350 | <message> |
||
12612 | cbradney | 2351 | <location filename="../../scribus/about.cpp" line="264"/> |
2352 | <source>&Close</source> |
||
2353 | <translation>닫기(&C)</translation> |
||
12564 | cbradney | 2354 | </message> |
2355 | <message> |
||
12612 | cbradney | 2356 | <location filename="../../scribus/about.cpp" line="316"/> |
2357 | <source>Tango Project Icons:</source> |
||
2358 | <translation>Tango 프로젝트 아이콘:</translation> |
||
12564 | cbradney | 2359 | </message> |
2360 | <message> |
||
12612 | cbradney | 2361 | <location filename="../../scribus/about.cpp" line="228"/> |
2362 | <source>&Updates</source> |
||
2363 | <translation>업데이트(&U)</translation> |
||
12564 | cbradney | 2364 | </message> |
2365 | <message> |
||
12612 | cbradney | 2366 | <location filename="../../scribus/about.cpp" line="276"/> |
2367 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
||
2368 | <translation>Scribus를 업데이트하기 위하여 체크합니다. 여러분의 PC의 자료는 전송되지 않습니다.</translation> |
||
12564 | cbradney | 2369 | </message> |
2370 | <message> |
||
12612 | cbradney | 2371 | <location filename="../../scribus/about.cpp" line="300"/> |
2372 | <source>OS/2&#174;/eComStation&#8482; Port:</source> |
||
2373 | <translation>OS/2&#174;/eComStation&#8482; 포트:</translation> |
||
12564 | cbradney | 2374 | </message> |
2375 | <message> |
||
12612 | cbradney | 2376 | <location filename="../../scribus/about.cpp" line="314"/> |
2377 | <source>Splash Screen:</source> |
||
2378 | <translation>스플래시 화면:</translation> |
||
12564 | cbradney | 2379 | </message> |
2380 | <message> |
||
12612 | cbradney | 2381 | <location filename="../../scribus/about.cpp" line="272"/> |
2382 | <source>This panel shows the version, build date and compiled in library support in Scribus.</source> |
||
2383 | <translation>Scribus에서,버전과 빌드 날짜 그리고 컴파일된 라이브러리 지원을 나타냅니다.</translation> |
||
12564 | cbradney | 2384 | </message> |
2385 | <message> |
||
12612 | cbradney | 2386 | <location filename="../../scribus/about.cpp" line="273"/> |
2387 | <source>The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support.Last Letter is the renderer C=cairo or Q=Qt</source> |
||
2388 | <translation>C-C-T-F는 C=littlecms C=CUPS T=TIFF지원 F=Fontconfig지원과 같습니다. 최종 문자는 렌더러 C=cairo 또는 Q=Qt입니다</translation> |
||
12564 | cbradney | 2389 | </message> |
2390 | <message> |
||
12612 | cbradney | 2391 | <location filename="../../scribus/about.cpp" line="274"/> |
2392 | <source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source> |
||
2393 | <translation>*.은 빠진 라이브러리 지원을 나타냅니다. 이것은 또한 Scribus가 인지한 Ghostscript 버전을 나타냅니다.</translation> |
||
12564 | cbradney | 2394 | </message> |
2395 | <message> |
||
12612 | cbradney | 2396 | <location filename="../../scribus/about.cpp" line="275"/> |
2397 | <source>The Windows version does not use fontconfig or CUPS libraries.</source> |
||
2398 | <translation>Windows 버전은 fontconfig 또는 CUPS 라이브러리를 이용하지 않습니다.</translation> |
||
12564 | cbradney | 2399 | </message> |
2400 | <message> |
||
12612 | cbradney | 2401 | <location filename="../../scribus/about.cpp" line="185"/> |
2402 | <source><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></source> |
||
2403 | <translation><p 배열="중앙"><b>%1 %2</b></p><p 배열="중앙">%3<br>%4 %5<br>%6</p></translation> |
||
12564 | cbradney | 2404 | </message> |
2405 | <message> |
||
12612 | cbradney | 2406 | <location filename="../../scribus/about.cpp" line="185"/> |
2407 | <source>Scribus Version</source> |
||
2408 | <translation>Scribus 버전</translation> |
||
12564 | cbradney | 2409 | </message> |
2410 | <message> |
||
12612 | cbradney | 2411 | <location filename="../../scribus/about.cpp" line="643"/> |
2412 | <source>Check for Updates</source> |
||
2413 | <translation>업데이트 체크</translation> |
||
12564 | cbradney | 2414 | </message> |
2415 | <message> |
||
12612 | cbradney | 2416 | <location filename="../../scribus/about.cpp" line="641"/> |
2417 | <source>Abort Update Check</source> |
||
2418 | <translation>뎁데이트 체크 취소</translation> |
||
12564 | cbradney | 2419 | </message> |
2420 | <message> |
||
12612 | cbradney | 2421 | <location filename="../../scribus/about.cpp" line="348"/> |
2422 | <source>Developer Blog</source> |
||
2423 | <translation>개발자 블로그</translation> |
||
12564 | cbradney | 2424 | </message> |
2425 | <message> |
||
12612 | cbradney | 2426 | <location filename="../../scribus/about.cpp" line="239"/> |
2427 | <source>&Licence</source> |
||
2428 | <translation>허가권(&L)</translation> |
||
12564 | cbradney | 2429 | </message> |
2430 | <message> |
||
12612 | cbradney | 2431 | <location filename="../../scribus/about.cpp" line="248"/> |
2432 | <source>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</source> |
||
2433 | <translation>허가권 파일을 열수 없음. 허가권 정보를 위하여 설치 폴더 또는 Scribus 웹사이트를 체크하시오.</translation> |
||
12564 | cbradney | 2434 | </message> |
12612 | cbradney | 2435 | <message> |
2436 | <location filename="../../scribus/about.cpp" line="308"/> |
||
2437 | <source>Doc Translators:</source> |
||
2438 | <translation type="unfinished"></translation> |
||
2439 | </message> |
||
2440 | <message> |
||
2441 | <location filename="../../scribus/about.cpp" line="312"/> |
||
2442 | <source>Webmasters:</source> |
||
2443 | <translation type="unfinished"></translation> |
||
2444 | </message> |
||
2445 | <message> |
||
2446 | <location filename="../../scribus/about.cpp" line="619"/> |
||
2447 | <source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source> |
||
2448 | <translation type="unfinished"></translation> |
||
2449 | </message> |
||
2450 | </context> |
||
2451 | <context> |
||
12564 | cbradney | 2452 | <name>AboutPlugins</name> |
2453 | <message> |
||
12612 | cbradney | 2454 | <location filename="../../scribus/aboutplugins.ui" line="13"/> |
2455 | <source>Scribus: About Plug-ins</source> |
||
2456 | <translation>Scribus: 플러그인에 대하여</translation> |
||
12564 | cbradney | 2457 | </message> |
12612 | cbradney | 2458 | <message> |
2459 | <location filename="../../scribus/aboutplugins.cpp" line="68"/> |
||
2460 | <source>Filename:</source> |
||
2461 | <translation type="unfinished"></translation> |
||
2462 | </message> |
||
2463 | <message> |
||
2464 | <location filename="../../scribus/aboutplugins.cpp" line="69"/> |
||
2465 | <source>Version:</source> |
||
2466 | <translation type="unfinished">버전:</translation> |
||
2467 | </message> |
||
2468 | <message> |
||
2469 | <location filename="../../scribus/aboutplugins.cpp" line="72"/> |
||
2470 | <source>Enabled:</source> |
||
2471 | <translation type="unfinished">가능:</translation> |
||
2472 | </message> |
||
2473 | <message> |
||
2474 | <location filename="../../scribus/aboutplugins.cpp" line="73"/> |
||
2475 | <source>Release Date:</source> |
||
2476 | <translation type="unfinished">공개 날짜:</translation> |
||
2477 | </message> |
||
2478 | <message> |
||
2479 | <location filename="../../scribus/aboutplugins.cpp" line="80"/> |
||
2480 | <source>Description:</source> |
||
2481 | <translation type="unfinished">설명:</translation> |
||
2482 | </message> |
||
2483 | <message> |
||
2484 | <location filename="../../scribus/aboutplugins.cpp" line="81"/> |
||
2485 | <source>Author(s):</source> |
||
2486 | <translation type="unfinished">저작자:</translation> |
||
2487 | </message> |
||
2488 | <message> |
||
2489 | <location filename="../../scribus/aboutplugins.cpp" line="82"/> |
||
2490 | <source>Copyright:</source> |
||
2491 | <translation type="unfinished">저작권:</translation> |
||
2492 | </message> |
||
2493 | <message> |
||
2494 | <location filename="../../scribus/aboutplugins.cpp" line="83"/> |
||
2495 | <source>License:</source> |
||
2496 | <translation type="unfinished">허가권:</translation> |
||
2497 | </message> |
||
2498 | </context> |
||
12564 | cbradney | 2499 | <context> |
2500 | <name>AboutPluginsBase</name> |
||
2501 | <message> |
||
12612 | cbradney | 2502 | <location filename="" line="0"/> |
12564 | cbradney | 2503 | <source>Scribus: About Plug-ins</source> |
12612 | cbradney | 2504 | <translation type="obsolete">Scribus: 플러그인에 대하여</translation> |
12564 | cbradney | 2505 | </message> |
2506 | <message> |
||
12612 | cbradney | 2507 | <location filename="" line="0"/> |
12564 | cbradney | 2508 | <source>File Name:</source> |
12612 | cbradney | 2509 | <translation type="obsolete">파일명:</translation> |
12564 | cbradney | 2510 | </message> |
2511 | <message> |
||
12612 | cbradney | 2512 | <location filename="" line="0"/> |
12564 | cbradney | 2513 | <source>Version:</source> |
12612 | cbradney | 2514 | <translation type="obsolete">버전:</translation> |
12564 | cbradney | 2515 | </message> |
2516 | <message> |
||
12612 | cbradney | 2517 | <location filename="" line="0"/> |
12564 | cbradney | 2518 | <source>Enabled:</source> |
12612 | cbradney | 2519 | <translation type="obsolete">가능:</translation> |
12564 | cbradney | 2520 | </message> |
2521 | <message> |
||
12612 | cbradney | 2522 | <location filename="" line="0"/> |
12564 | cbradney | 2523 | <source>Release Date:</source> |
12612 | cbradney | 2524 | <translation type="obsolete">공개 날짜:</translation> |
12564 | cbradney | 2525 | </message> |
2526 | <message> |
||
12612 | cbradney | 2527 | <location filename="" line="0"/> |
12564 | cbradney | 2528 | <source>Copyright:</source> |
12612 | cbradney | 2529 | <translation type="obsolete">저작권:</translation> |
12564 | cbradney | 2530 | </message> |
2531 | <message> |
||
12612 | cbradney | 2532 | <location filename="" line="0"/> |
12564 | cbradney | 2533 | <source>Author(s):</source> |
12612 | cbradney | 2534 | <translation type="obsolete">저작자:</translation> |
12564 | cbradney | 2535 | </message> |
2536 | <message> |
||
12612 | cbradney | 2537 | <location filename="" line="0"/> |
12564 | cbradney | 2538 | <source>Description:</source> |
12612 | cbradney | 2539 | <translation type="obsolete">설명:</translation> |
12564 | cbradney | 2540 | </message> |
2541 | <message> |
||
12612 | cbradney | 2542 | <location filename="" line="0"/> |
12564 | cbradney | 2543 | <source>License:</source> |
12612 | cbradney | 2544 | <translation type="obsolete">허가권:</translation> |
12564 | cbradney | 2545 | </message> |
2546 | <message> |
||
12612 | cbradney | 2547 | <location filename="" line="0"/> |
12564 | cbradney | 2548 | <source>&Close</source> |
12612 | cbradney | 2549 | <translation type="obsolete">닫기(&C)</translation> |
12564 | cbradney | 2550 | </message> |
2551 | <message> |
||
12612 | cbradney | 2552 | <location filename="" line="0"/> |
12564 | cbradney | 2553 | <source>Alt+C</source> |
12612 | cbradney | 2554 | <translation type="obsolete">Alt+C</translation> |
12564 | cbradney | 2555 | </message> |
12612 | cbradney | 2556 | </context> |
2557 | <context> |
||
12564 | cbradney | 2558 | <name>ActionManager</name> |
2559 | <message> |
||
12918 | cbradney | 2560 | <location filename="../../scribus/actionmanager.cpp" line="1247"/> |
12612 | cbradney | 2561 | <source>&New</source> |
2562 | <translation>새 파일(&N)</translation> |
||
12564 | cbradney | 2563 | </message> |
2564 | <message> |
||
12918 | cbradney | 2565 | <location filename="../../scribus/actionmanager.cpp" line="1248"/> |
12612 | cbradney | 2566 | <source>&Open...</source> |
2567 | <translation>열기(&O)...</translation> |
||
12564 | cbradney | 2568 | </message> |
2569 | <message> |
||
12918 | cbradney | 2570 | <location filename="../../scribus/actionmanager.cpp" line="1249"/> |
12612 | cbradney | 2571 | <source>&Close</source> |
2572 | <translation>닫기(&C)</translation> |
||
12564 | cbradney | 2573 | </message> |
2574 | <message> |
||
12918 | cbradney | 2575 | <location filename="../../scribus/actionmanager.cpp" line="1250"/> |
12612 | cbradney | 2576 | <source>&Save</source> |
2577 | <translation>저장(&S)</translation> |
||
12564 | cbradney | 2578 | </message> |
2579 | <message> |
||
12918 | cbradney | 2580 | <location filename="../../scribus/actionmanager.cpp" line="1251"/> |
12612 | cbradney | 2581 | <source>Save &As...</source> |
2582 | <translation>다른 이름으로(&A)...</translation> |
||
12564 | cbradney | 2583 | </message> |
2584 | <message> |
||
12918 | cbradney | 2585 | <location filename="../../scribus/actionmanager.cpp" line="1252"/> |
12612 | cbradney | 2586 | <source>Re&vert to Saved</source> |
2587 | <translation>이전 저장 파일로 복원(&V)</translation> |
||
12564 | cbradney | 2588 | </message> |
2589 | <message> |
||
12918 | cbradney | 2590 | <location filename="../../scribus/actionmanager.cpp" line="1253"/> |
12612 | cbradney | 2591 | <source>Collect for O&utput...</source> |
2592 | <translation>저장 폴더 지정(&U)...</translation> |
||
12564 | cbradney | 2593 | </message> |
2594 | <message> |
||
12918 | cbradney | 2595 | <location filename="../../scribus/actionmanager.cpp" line="1254"/> |
12612 | cbradney | 2596 | <source>Get Text...</source> |
2597 | <translation>텍스트 파일 얻기...</translation> |
||
12564 | cbradney | 2598 | </message> |
2599 | <message> |
||
12918 | cbradney | 2600 | <location filename="../../scribus/actionmanager.cpp" line="1255"/> |
12612 | cbradney | 2601 | <source>Append &Text...</source> |
2602 | <translation>텍스트 추가하기(&T)...</translation> |
||
12564 | cbradney | 2603 | </message> |
2604 | <message> |
||
12918 | cbradney | 2605 | <location filename="../../scribus/actionmanager.cpp" line="1256"/> |
12612 | cbradney | 2606 | <source>Get Image...</source> |
2607 | <translation>이미지 얻기...</translation> |
||
12564 | cbradney | 2608 | </message> |
2609 | <message> |
||
12918 | cbradney | 2610 | <location filename="../../scribus/actionmanager.cpp" line="1259"/> |
12612 | cbradney | 2611 | <source>Save &Text...</source> |
2612 | <translation>텍스트 저장(&T)...</translation> |
||
12564 | cbradney | 2613 | </message> |
12612 | cbradney | 2614 | <message> |
2615 | <location filename="" line="0"/> |
||
12564 | cbradney | 2616 | <source>Save Page as &EPS...</source> |
12612 | cbradney | 2617 | <translation type="obsolete">EPS 저장(&E)...</translation> |
12564 | cbradney | 2618 | </message> |
2619 | <message> |
||
12918 | cbradney | 2620 | <location filename="../../scribus/actionmanager.cpp" line="1261"/> |
12612 | cbradney | 2621 | <source>Save as P&DF...</source> |
2622 | <translation>PDF 저장(&D)...</translation> |
||
12564 | cbradney | 2623 | </message> |
2624 | <message> |
||
12918 | cbradney | 2625 | <location filename="../../scribus/actionmanager.cpp" line="1262"/> |
12612 | cbradney | 2626 | <source>Document &Setup...</source> |
2627 | <translation>문서 설정(&S)...</translation> |
||
12564 | cbradney | 2628 | </message> |
2629 | <message> |
||
12918 | cbradney | 2630 | <location filename="../../scribus/actionmanager.cpp" line="1264"/> |
12612 | cbradney | 2631 | <source>&Print...</source> |
2632 | <translation>인쇄(&P)...</translation> |
||
12564 | cbradney | 2633 | </message> |
2634 | <message> |
||
12918 | cbradney | 2635 | <location filename="../../scribus/actionmanager.cpp" line="1265"/> |
12612 | cbradney | 2636 | <source>Print Previe&w</source> |
2637 | <translation>인쇄 미리보기(&W)</translation> |
||
12564 | cbradney | 2638 | </message> |
2639 | <message> |
||
12918 | cbradney | 2640 | <location filename="../../scribus/actionmanager.cpp" line="1266"/> |
12612 | cbradney | 2641 | <source>&Quit</source> |
2642 | <translation>종료(&Q)</translation> |
||
12564 | cbradney | 2643 | </message> |
2644 | <message> |
||
12918 | cbradney | 2645 | <location filename="../../scribus/actionmanager.cpp" line="1268"/> |
12612 | cbradney | 2646 | <source>&Undo</source> |
2647 | <translation>이전작업(&U)</translation> |
||
12564 | cbradney | 2648 | </message> |
2649 | <message> |
||
12918 | cbradney | 2650 | <location filename="../../scribus/actionmanager.cpp" line="1269"/> |
12612 | cbradney | 2651 | <source>&Redo</source> |
2652 | <translation>재실행(&R)</translation> |
||
12564 | cbradney | 2653 | </message> |
2654 | <message> |
||
12918 | cbradney | 2655 | <location filename="../../scribus/actionmanager.cpp" line="1270"/> |
12612 | cbradney | 2656 | <source>&Item Action Mode</source> |
2657 | <translation>객체 실행 모드(&I)</translation> |
||
12564 | cbradney | 2658 | </message> |
2659 | <message> |
||
12918 | cbradney | 2660 | <location filename="../../scribus/actionmanager.cpp" line="1271"/> |
12612 | cbradney | 2661 | <source>Cu&t</source> |
2662 | <translation>잘라내기(&T)</translation> |
||
12564 | cbradney | 2663 | </message> |
2664 | <message> |
||
12918 | cbradney | 2665 | <location filename="../../scribus/actionmanager.cpp" line="1274"/> |
12612 | cbradney | 2666 | <source>&Copy</source> |
2667 | <translation>복사(&C)</translation> |
||
12564 | cbradney | 2668 | </message> |
2669 | <message> |
||
12918 | cbradney | 2670 | <location filename="../../scribus/actionmanager.cpp" line="1275"/> |
12612 | cbradney | 2671 | <source>&Paste</source> |
2672 | <translation>붙여넣기(&P)</translation> |
||
2673 | </message> |
||
2674 | <message> |
||
2675 | <location filename="" line="0"/> |
||
12564 | cbradney | 2676 | <source>C&lear Contents</source> |
12612 | cbradney | 2677 | <translation type="obsolete">내용 삭제(&L)</translation> |
12564 | cbradney | 2678 | </message> |
2679 | <message> |
||
12918 | cbradney | 2680 | <location filename="../../scribus/actionmanager.cpp" line="1278"/> |
12612 | cbradney | 2681 | <source>Select &All</source> |
2682 | <translation>전체 선택(&A)</translation> |
||
12564 | cbradney | 2683 | </message> |
2684 | <message> |
||
12918 | cbradney | 2685 | <location filename="../../scribus/actionmanager.cpp" line="1280"/> |
12612 | cbradney | 2686 | <source>&Deselect All</source> |
2687 | <translation>전체 선택 취소(&D)</translation> |
||
12564 | cbradney | 2688 | </message> |
2689 | <message> |
||
12918 | cbradney | 2690 | <location filename="../../scribus/actionmanager.cpp" line="1281"/> |
12612 | cbradney | 2691 | <source>&Search/Replace...</source> |
2692 | <translation>찾기/치환(&S)...</translation> |
||
12564 | cbradney | 2693 | </message> |
2694 | <message> |
||
12918 | cbradney | 2695 | <location filename="../../scribus/actionmanager.cpp" line="1282"/> |
12612 | cbradney | 2696 | <source>Edit Image...</source> |
2697 | <translation>이미지 편집...</translation> |
||
12564 | cbradney | 2698 | </message> |
12612 | cbradney | 2699 | <message> |
12918 | cbradney | 2700 | <location filename="../../scribus/actionmanager.cpp" line="1284"/> |
12612 | cbradney | 2701 | <source>C&olors...</source> |
2702 | <translation>색상(&O)...</translation> |
||
2703 | </message> |
||
2704 | <message> |
||
2705 | <location filename="" line="0"/> |
||
12564 | cbradney | 2706 | <source>&Paragraph Styles...</source> |
12612 | cbradney | 2707 | <translation type="obsolete">문단 스타일(&P)...</translation> |
12564 | cbradney | 2708 | </message> |
2709 | <message> |
||
12612 | cbradney | 2710 | <location filename="" line="0"/> |
12564 | cbradney | 2711 | <source>&Line Styles...</source> |
12612 | cbradney | 2712 | <translation type="obsolete">선 스타일(&L)...</translation> |
12564 | cbradney | 2713 | </message> |
2714 | <message> |
||
12918 | cbradney | 2715 | <location filename="../../scribus/actionmanager.cpp" line="1288"/> |
12612 | cbradney | 2716 | <source>&Master Pages...</source> |
2717 | <translation>마스터 페이지(&M)...</translation> |
||
12564 | cbradney | 2718 | </message> |
2719 | <message> |
||
12918 | cbradney | 2720 | <location filename="../../scribus/actionmanager.cpp" line="1289"/> |
12612 | cbradney | 2721 | <source>&JavaScripts...</source> |
2722 | <translation>자바스크립트(&J)...</translation> |
||
12564 | cbradney | 2723 | </message> |
2724 | <message> |
||
12918 | cbradney | 2725 | <location filename="../../scribus/actionmanager.cpp" line="1263"/> |
12612 | cbradney | 2726 | <source>P&references...</source> |
2727 | <translation>기본 설정(&R)...</translation> |
||
12564 | cbradney | 2728 | </message> |
2729 | <message> |
||
12918 | cbradney | 2730 | <location filename="../../scribus/actionmanager.cpp" line="1296"/> |
12612 | cbradney | 2731 | <source>%1 pt</source> |
2732 | <translation>%1 포인트</translation> |
||
12564 | cbradney | 2733 | </message> |
2734 | <message> |
||
12918 | cbradney | 2735 | <location filename="../../scribus/actionmanager.cpp" line="1298"/> |
12612 | cbradney | 2736 | <source>&Other...</source> |
2737 | <translation>기타(&O)...</translation> |
||
12564 | cbradney | 2738 | </message> |
2739 | <message> |
||
12918 | cbradney | 2740 | <location filename="../../scribus/actionmanager.cpp" line="1299"/> |
12612 | cbradney | 2741 | <source>&Left</source> |
2742 | <translation>왼쪽(&L)</translation> |
||
12564 | cbradney | 2743 | </message> |
2744 | <message> |
||
12918 | cbradney | 2745 | <location filename="../../scribus/actionmanager.cpp" line="1300"/> |
12612 | cbradney | 2746 | <source>&Center</source> |
2747 | <translation>중앙(&C)</translation> |
||
12564 | cbradney | 2748 | </message> |
2749 | <message> |
||
12918 | cbradney | 2750 | <location filename="../../scribus/actionmanager.cpp" line="1301"/> |
12612 | cbradney | 2751 | <source>&Right</source> |
2752 | <translation>오른쪽(&R)</translation> |
||
12564 | cbradney | 2753 | </message> |
2754 | <message> |
||
12918 | cbradney | 2755 | <location filename="../../scribus/actionmanager.cpp" line="1302"/> |
12612 | cbradney | 2756 | <source>&Block</source> |
2757 | <translation>블록(&B)</translation> |
||
12564 | cbradney | 2758 | </message> |
2759 | <message> |
||
12918 | cbradney | 2760 | <location filename="../../scribus/actionmanager.cpp" line="1303"/> |
12612 | cbradney | 2761 | <source>&Forced</source> |
2762 | <translation>강제(&F)</translation> |
||
12564 | cbradney | 2763 | </message> |
2764 | <message> |
||
12612 | cbradney | 2765 | <location filename="" line="0"/> |
2766 | <source>&%1 %</source> |
||
2767 | <translation type="obsolete">&%1 %</translation> |
||
12564 | cbradney | 2768 | </message> |
2769 | <message> |
||
12918 | cbradney | 2770 | <location filename="../../scribus/actionmanager.cpp" line="1314"/> |
12612 | cbradney | 2771 | <source>&Normal</source> |
2772 | <translation>보통(&N)</translation> |
||
12564 | cbradney | 2773 | </message> |
2774 | <message> |
||
12918 | cbradney | 2775 | <location filename="../../scribus/actionmanager.cpp" line="1315"/> |
12612 | cbradney | 2776 | <source>&Underline</source> |
2777 | <translation>밑줄(&U)</translation> |
||
12564 | cbradney | 2778 | </message> |
2779 | <message> |
||
12918 | cbradney | 2780 | <location filename="../../scribus/actionmanager.cpp" line="1316"/> |
12612 | cbradney | 2781 | <source>Underline &Words</source> |
2782 | <translation>밑줄 단어(&W)</translation> |
||
12564 | cbradney | 2783 | </message> |
2784 | <message> |
||
12918 | cbradney | 2785 | <location filename="../../scribus/actionmanager.cpp" line="1317"/> |
12612 | cbradney | 2786 | <source>&Strike Through</source> |
2787 | <translation>취소선(&S)</translation> |
||
12564 | cbradney | 2788 | </message> |
2789 | <message> |
||
12918 | cbradney | 2790 | <location filename="../../scribus/actionmanager.cpp" line="1318"/> |
12612 | cbradney | 2791 | <source>&All Caps</source> |
2792 | <translation>대문자(&A)</translation> |
||
12564 | cbradney | 2793 | </message> |
2794 | <message> |
||
12918 | cbradney | 2795 | <location filename="../../scribus/actionmanager.cpp" line="1319"/> |
12612 | cbradney | 2796 | <source>Small &Caps</source> |
2797 | <translation>소문자(&C)</translation> |
||
12564 | cbradney | 2798 | </message> |
2799 | <message> |
||
12918 | cbradney | 2800 | <location filename="../../scribus/actionmanager.cpp" line="1320"/> |
12612 | cbradney | 2801 | <source>Su&perscript</source> |
2802 | <translation>윗첨자(&P)</translation> |
||
12564 | cbradney | 2803 | </message> |
2804 | <message> |
||
12918 | cbradney | 2805 | <location filename="../../scribus/actionmanager.cpp" line="1321"/> |
12612 | cbradney | 2806 | <source>Su&bscript</source> |
2807 | <translation>아래첨자(&B)</translation> |
||
12564 | cbradney | 2808 | </message> |
12612 | cbradney | 2809 | <message> |
2810 | <location filename="" line="0"/> |
||
12564 | cbradney | 2811 | <source>&Outline</source> |
12612 | cbradney | 2812 | <translation type="obsolete">윤곽선(&O)</translation> |
12564 | cbradney | 2813 | </message> |
2814 | <message> |
||
12918 | cbradney | 2815 | <location filename="../../scribus/actionmanager.cpp" line="1323"/> |
12612 | cbradney | 2816 | <source>S&hadow</source> |
2817 | <translation>음영(&H)</translation> |
||
12564 | cbradney | 2818 | </message> |
2819 | <message> |
||
12918 | cbradney | 2820 | <location filename="../../scribus/actionmanager.cpp" line="1325"/> |
12612 | cbradney | 2821 | <source>&Image Effects</source> |
2822 | <translation>이미지 효과(&I)</translation> |
||
12564 | cbradney | 2823 | </message> |
2824 | <message> |
||
12918 | cbradney | 2825 | <location filename="../../scribus/actionmanager.cpp" line="1326"/> |
12612 | cbradney | 2826 | <source>&Tabulators...</source> |
2827 | <translation>탭키 설정(&T)...</translation> |
||
12564 | cbradney | 2828 | </message> |
2829 | <message> |
||
12918 | cbradney | 2830 | <location filename="../../scribus/actionmanager.cpp" line="1329"/> |
12612 | cbradney | 2831 | <source>D&uplicate</source> |
2832 | <translation>복제(&U)</translation> |
||
12564 | cbradney | 2833 | </message> |
2834 | <message> |
||
12918 | cbradney | 2835 | <location filename="../../scribus/actionmanager.cpp" line="1330"/> |
12612 | cbradney | 2836 | <source>&Multiple Duplicate</source> |
2837 | <translation>다수 복제(&M)</translation> |
||
12564 | cbradney | 2838 | </message> |
2839 | <message> |
||
12918 | cbradney | 2840 | <location filename="../../scribus/actionmanager.cpp" line="1331"/> |
12612 | cbradney | 2841 | <source>&Delete</source> |
2842 | <translation>삭제(&D)</translation> |
||
12564 | cbradney | 2843 | </message> |
2844 | <message> |
||
12918 | cbradney | 2845 | <location filename="../../scribus/actionmanager.cpp" line="1332"/> |
12612 | cbradney | 2846 | <source>&Group</source> |
2847 | <translation>그룹(&G)</translation> |
||
12564 | cbradney | 2848 | </message> |
2849 | <message> |
||
12918 | cbradney | 2850 | <location filename="../../scribus/actionmanager.cpp" line="1333"/> |
12612 | cbradney | 2851 | <source>&Ungroup</source> |
2852 | <translation>그룹해제(&U)</translation> |
||
12564 | cbradney | 2853 | </message> |
2854 | <message> |
||
12918 | cbradney | 2855 | <location filename="../../scribus/actionmanager.cpp" line="1334"/> |
12612 | cbradney | 2856 | <source>Is &Locked</source> |
2857 | <translation>잠금(&L)</translation> |
||
12564 | cbradney | 2858 | </message> |
2859 | <message> |
||
12918 | cbradney | 2860 | <location filename="../../scribus/actionmanager.cpp" line="1335"/> |
12612 | cbradney | 2861 | <source>Si&ze is Locked</source> |
2862 | <translation>크기 잠금(&Z)</translation> |
||
12564 | cbradney | 2863 | </message> |
2864 | <message> |
||
12918 | cbradney | 2865 | <location filename="../../scribus/actionmanager.cpp" line="1339"/> |
12612 | cbradney | 2866 | <source>Lower to &Bottom</source> |
2867 | <translation>아래로 이동(&B)</translation> |
||
12564 | cbradney | 2868 | </message> |
2869 | <message> |
||
12918 | cbradney | 2870 | <location filename="../../scribus/actionmanager.cpp" line="1340"/> |
12612 | cbradney | 2871 | <source>Raise to &Top</source> |
2872 | <translation>위로 이동(&T)</translation> |
||
12564 | cbradney | 2873 | </message> |
2874 | <message> |
||
12918 | cbradney | 2875 | <location filename="../../scribus/actionmanager.cpp" line="1341"/> |
12612 | cbradney | 2876 | <source>&Lower</source> |
2877 | <translation>내리기(&L)</translation> |
||
12564 | cbradney | 2878 | </message> |
2879 | <message> |
||
12918 | cbradney | 2880 | <location filename="../../scribus/actionmanager.cpp" line="1342"/> |
12612 | cbradney | 2881 | <source>&Raise</source> |
2882 | <translation>올리기(&R)</translation> |
||
12564 | cbradney | 2883 | </message> |
2884 | <message> |
||
12918 | cbradney | 2885 | <location filename="../../scribus/actionmanager.cpp" line="1343"/> |
12612 | cbradney | 2886 | <source>Send to S&crapbook</source> |
2887 | <translation>스크랩북으로 보내기(&C)</translation> |
||
12564 | cbradney | 2888 | </message> |
2889 | <message> |
||
12918 | cbradney | 2890 | <location filename="../../scribus/actionmanager.cpp" line="1345"/> |
12612 | cbradney | 2891 | <source>&Attributes...</source> |
2892 | <translation>속성(&A)...</translation> |
||
12564 | cbradney | 2893 | </message> |
2894 | <message> |
||
12918 | cbradney | 2895 | <location filename="../../scribus/actionmanager.cpp" line="1346"/> |
12612 | cbradney | 2896 | <source>More Info...</source> |
2897 | <translation>자세한 정보...</translation> |
||
12564 | cbradney | 2898 | </message> |
2899 | <message> |
||
12918 | cbradney | 2900 | <location filename="../../scribus/actionmanager.cpp" line="1347"/> |
12612 | cbradney | 2901 | <source>I&mage Visible</source> |
2902 | <translation>이미지 보기(&M)</translation> |
||
12564 | cbradney | 2903 | </message> |
2904 | <message> |
||
12918 | cbradney | 2905 | <location filename="../../scribus/actionmanager.cpp" line="1348"/> |
12612 | cbradney | 2906 | <source>&Update Image</source> |
2907 | <translation>이미지 업데이트(&U)</translation> |
||
12564 | cbradney | 2908 | </message> |
2909 | <message> |
||
12918 | cbradney | 2910 | <location filename="../../scribus/actionmanager.cpp" line="1349"/> |
12612 | cbradney | 2911 | <source>Adjust Frame to Image</source> |
2912 | <translation>프레임을 이미지에 맞추기</translation> |
||
12564 | cbradney | 2913 | </message> |
2914 | <message> |
||
12918 | cbradney | 2915 | <location filename="../../scribus/actionmanager.cpp" line="1351"/> |
12612 | cbradney | 2916 | <source>Extended Image Properties</source> |
2917 | <translation>확장 이미지 속성</translation> |
||
12564 | cbradney | 2918 | </message> |
2919 | <message> |
||
12918 | cbradney | 2920 | <location filename="../../scribus/actionmanager.cpp" line="1352"/> |
12612 | cbradney | 2921 | <source>&Low Resolution</source> |
2922 | <translation>저 해상도(&L)</translation> |
||
12564 | cbradney | 2923 | </message> |
2924 | <message> |
||
12918 | cbradney | 2925 | <location filename="../../scribus/actionmanager.cpp" line="1353"/> |
12612 | cbradney | 2926 | <source>&Normal Resolution</source> |
2927 | <translation>일반 해상도(&N)</translation> |
||
12564 | cbradney | 2928 | </message> |
2929 | <message> |
||
12918 | cbradney | 2930 | <location filename="../../scribus/actionmanager.cpp" line="1354"/> |
12612 | cbradney | 2931 | <source>&Full Resolution</source> |
2932 | <translation>최대 해상도(&F)</translation> |
||
12564 | cbradney | 2933 | </message> |
2934 | <message> |
||
12918 | cbradney | 2935 | <location filename="../../scribus/actionmanager.cpp" line="1355"/> |
12612 | cbradney | 2936 | <source>Is PDF &Bookmark</source> |
2937 | <translation>PDF 북마크(&B)</translation> |
||
12564 | cbradney | 2938 | </message> |
2939 | <message> |
||
12918 | cbradney | 2940 | <location filename="../../scribus/actionmanager.cpp" line="1356"/> |
12612 | cbradney | 2941 | <source>Is PDF A&nnotation</source> |
2942 | <translation>PDF 주석(&N)</translation> |
||
12564 | cbradney | 2943 | </message> |
2944 | <message> |
||
12918 | cbradney | 2945 | <location filename="../../scribus/actionmanager.cpp" line="1357"/> |
12612 | cbradney | 2946 | <source>Annotation P&roperties</source> |
2947 | <translation>주석 속성(&R)</translation> |
||
12564 | cbradney | 2948 | </message> |
2949 | <message> |
||
12918 | cbradney | 2950 | <location filename="../../scribus/actionmanager.cpp" line="1358"/> |
12612 | cbradney | 2951 | <source>Field P&roperties</source> |
2952 | <translation>필드 속성(&R)</translation> |
||
12564 | cbradney | 2953 | </message> |
2954 | <message> |
||
12918 | cbradney | 2955 | <location filename="../../scribus/actionmanager.cpp" line="1359"/> |
12612 | cbradney | 2956 | <source>&Edit Shape...</source> |
2957 | <translation>도형 편집(&E)...</translation> |
||
12564 | cbradney | 2958 | </message> |
2959 | <message> |
||
12918 | cbradney | 2960 | <location filename="../../scribus/actionmanager.cpp" line="1360"/> |
12612 | cbradney | 2961 | <source>&Attach Text to Path</source> |
2962 | <translation>텍스트를 경로에 붙임(&A)</translation> |
||
12564 | cbradney | 2963 | </message> |
2964 | <message> |
||
12918 | cbradney | 2965 | <location filename="../../scribus/actionmanager.cpp" line="1361"/> |
12612 | cbradney | 2966 | <source>&Detach Text from Path</source> |
2967 | <translation>경로에서 텍스트를 분리함(&D)</translation> |
||
12564 | cbradney | 2968 | </message> |
2969 | <message> |
||
12918 | cbradney | 2970 | <location filename="../../scribus/actionmanager.cpp" line="1362"/> |
12612 | cbradney | 2971 | <source>&Combine Polygons</source> |
2972 | <translation>다각형 결합(&C)</translation> |
||
12564 | cbradney | 2973 | </message> |
2974 | <message> |
||
12918 | cbradney | 2975 | <location filename="../../scribus/actionmanager.cpp" line="1363"/> |
12612 | cbradney | 2976 | <source>Split &Polygons</source> |
2977 | <translation>다각형 분리(&P)</translation> |
||
12564 | cbradney | 2978 | </message> |
2979 | <message> |
||
12918 | cbradney | 2980 | <location filename="../../scribus/actionmanager.cpp" line="1364"/> |
12612 | cbradney | 2981 | <source>&Bezier Curve</source> |
2982 | <translation>베지어 곡선(&B)</translation> |
||
12564 | cbradney | 2983 | </message> |
2984 | <message> |
||
12918 | cbradney | 2985 | <location filename="../../scribus/actionmanager.cpp" line="1365"/> |
12612 | cbradney | 2986 | <source>&Image Frame</source> |
2987 | <translation>이미지 프레임(&I)</translation> |
||
12564 | cbradney | 2988 | </message> |
12612 | cbradney | 2989 | <message> |
2990 | <location filename="" line="0"/> |
||
12564 | cbradney | 2991 | <source>&Outlines</source> |
12612 | cbradney | 2992 | <translation type="obsolete">윤곽선(&O)</translation> |
12564 | cbradney | 2993 | </message> |
2994 | <message> |
||
12918 | cbradney | 2995 | <location filename="../../scribus/actionmanager.cpp" line="1367"/> |
12612 | cbradney | 2996 | <source>&Polygon</source> |
2997 | <translation>다각형(&P)</translation> |
||
12564 | cbradney | 2998 | </message> |
2999 | <message> |
||
12918 | cbradney | 3000 | <location filename="../../scribus/actionmanager.cpp" line="1368"/> |
12612 | cbradney | 3001 | <source>&Text Frame</source> |
3002 | <translation>텍스트 프레임(&T)</translation> |
||
12564 | cbradney | 3003 | </message> |
3004 | <message> |
||
12918 | cbradney | 3005 | <location filename="../../scribus/actionmanager.cpp" line="1372"/> |
12612 | cbradney | 3006 | <source>&Glyph...</source> |
3007 | <translation>사용자 문자표(&G)...</translation> |
||
12564 | cbradney | 3008 | </message> |
3009 | <message> |
||
12918 | cbradney | 3010 | <location filename="../../scribus/actionmanager.cpp" line="1373"/> |
12612 | cbradney | 3011 | <source>Sample Text</source> |
3012 | <translation>예제 텍스트</translation> |
||
12564 | cbradney | 3013 | </message> |
3014 | <message> |
||
12918 | cbradney | 3015 | <location filename="../../scribus/actionmanager.cpp" line="1377"/> |
12612 | cbradney | 3016 | <source>&Insert...</source> |
3017 | <translation>삽입(&I)...</translation> |
||
12564 | cbradney | 3018 | </message> |
3019 | <message> |
||
12918 | cbradney | 3020 | <location filename="../../scribus/actionmanager.cpp" line="1378"/> |
12612 | cbradney | 3021 | <source>Im&port...</source> |
3022 | <translation>읽어오기(&P)...</translation> |
||
12564 | cbradney | 3023 | </message> |
3024 | <message> |
||
12918 | cbradney | 3025 | <location filename="../../scribus/actionmanager.cpp" line="1379"/> |
12612 | cbradney | 3026 | <source>&Delete...</source> |
3027 | <translation>삭제(&D)...</translation> |
||
12564 | cbradney | 3028 | </message> |
3029 | <message> |
||
12918 | cbradney | 3030 | <location filename="../../scribus/actionmanager.cpp" line="1380"/> |
12612 | cbradney | 3031 | <source>&Copy...</source> |
3032 | <translation>복사(&C)...</translation> |
||
12564 | cbradney | 3033 | </message> |
3034 | <message> |
||
12918 | cbradney | 3035 | <location filename="../../scribus/actionmanager.cpp" line="1381"/> |
12612 | cbradney | 3036 | <source>&Move...</source> |
3037 | <translation>이동(&M)...</translation> |
||
12564 | cbradney | 3038 | </message> |
3039 | <message> |
||
12918 | cbradney | 3040 | <location filename="../../scribus/actionmanager.cpp" line="1382"/> |
12612 | cbradney | 3041 | <source>&Apply Master Page...</source> |
3042 | <translation>마스터 페이지 적용(&A)...</translation> |
||
12564 | cbradney | 3043 | </message> |
3044 | <message> |
||
12918 | cbradney | 3045 | <location filename="../../scribus/actionmanager.cpp" line="1383"/> |
12612 | cbradney | 3046 | <source>Convert to Master Page...</source> |
3047 | <translation>마스터 페이지 변환...</translation> |
||
12564 | cbradney | 3048 | </message> |
3049 | <message> |
||
12918 | cbradney | 3050 | <location filename="../../scribus/actionmanager.cpp" line="1384"/> |
12612 | cbradney | 3051 | <source>Manage &Guides...</source> |
3052 | <translation>안내선 설정(&G)...</translation> |
||
12564 | cbradney | 3053 | </message> |
3054 | <message> |
||
12918 | cbradney | 3055 | <location filename="../../scribus/actionmanager.cpp" line="1385"/> |
12612 | cbradney | 3056 | <source>Manage Page Properties...</source> |
3057 | <translation>페이지 속성 설정...</translation> |
||
12564 | cbradney | 3058 | </message> |
12612 | cbradney | 3059 | <message> |
3060 | <location filename="" line="0"/> |
||
12564 | cbradney | 3061 | <source>&Fit in window</source> |
12612 | cbradney | 3062 | <translation type="obsolete">창 조정(&F)</translation> |
12564 | cbradney | 3063 | </message> |
3064 | <message> |
||
12918 | cbradney | 3065 | <location filename="../../scribus/actionmanager.cpp" line="1390"/> |
12612 | cbradney | 3066 | <source>&50%</source> |
3067 | <translation>&50%</translation> |
||
12564 | cbradney | 3068 | </message> |
3069 | <message> |
||
12918 | cbradney | 3070 | <location filename="../../scribus/actionmanager.cpp" line="1391"/> |
12612 | cbradney | 3071 | <source>&75%</source> |
3072 | <translation>&75%</translation> |
||
12564 | cbradney | 3073 | </message> |
3074 | <message> |
||
12918 | cbradney | 3075 | <location filename="../../scribus/actionmanager.cpp" line="1392"/> |
12612 | cbradney | 3076 | <source>&100%</source> |
3077 | <translation>&100%</translation> |
||
12564 | cbradney | 3078 | </message> |
3079 | <message> |
||
12918 | cbradney | 3080 | <location filename="../../scribus/actionmanager.cpp" line="1393"/> |
12612 | cbradney | 3081 | <source>&200%</source> |
3082 | <translation>&200%</translation> |
||
12564 | cbradney | 3083 | </message> |
3084 | <message> |
||
12612 | cbradney | 3085 | <location filename="" line="0"/> |
12564 | cbradney | 3086 | <source>&Thumbnails</source> |
12612 | cbradney | 3087 | <translation type="obsolete">썸네일(&T)</translation> |
12564 | cbradney | 3088 | </message> |
3089 | <message> |
||
12918 | cbradney | 3090 | <location filename="../../scribus/actionmanager.cpp" line="1396"/> |
12612 | cbradney | 3091 | <source>Show &Margins</source> |
3092 | <translation>여백 보이기(&M)</translation> |
||
12564 | cbradney | 3093 | </message> |
3094 | <message> |
||
12918 | cbradney | 3095 | <location filename="../../scribus/actionmanager.cpp" line="1398"/> |
12612 | cbradney | 3096 | <source>Show &Frames</source> |
3097 | <translation>프레임 보이기(&F)</translation> |
||
12564 | cbradney | 3098 | </message> |
3099 | <message> |
||
12918 | cbradney | 3100 | <location filename="../../scribus/actionmanager.cpp" line="1400"/> |
12612 | cbradney | 3101 | <source>Show &Images</source> |
3102 | <translation>이미지 보이기(&I)</translation> |
||
12564 | cbradney | 3103 | </message> |
3104 | <message> |
||
12918 | cbradney | 3105 | <location filename="../../scribus/actionmanager.cpp" line="1401"/> |
12612 | cbradney | 3106 | <source>Show &Grid</source> |
3107 | <translation>격자 보이기(&G)</translation> |
||
12564 | cbradney | 3108 | </message> |
3109 | <message> |
||
12918 | cbradney | 3110 | <location filename="../../scribus/actionmanager.cpp" line="1402"/> |
12612 | cbradney | 3111 | <source>Show G&uides</source> |
3112 | <translation>안내선 보이기(&U)</translation> |
||
12564 | cbradney | 3113 | </message> |
3114 | <message> |
||
12918 | cbradney | 3115 | <location filename="../../scribus/actionmanager.cpp" line="1404"/> |
12612 | cbradney | 3116 | <source>Show &Baseline Grid</source> |
3117 | <translation>기준선 격자 보이기(&B)</translation> |
||
12564 | cbradney | 3118 | </message> |
3119 | <message> |
||
12918 | cbradney | 3120 | <location filename="../../scribus/actionmanager.cpp" line="1405"/> |
12612 | cbradney | 3121 | <source>Show &Text Chain</source> |
3122 | <translation>텍스트 체인 보이기(&T)</translation> |
||
12564 | cbradney | 3123 | </message> |
3124 | <message> |
||
12918 | cbradney | 3125 | <location filename="../../scribus/actionmanager.cpp" line="1406"/> |
12612 | cbradney | 3126 | <source>Show Control Characters</source> |
3127 | <translation>제어문자 보이기</translation> |
||
12564 | cbradney | 3128 | </message> |
12612 | cbradney | 3129 | <message> |
12564 | cbradney | 3130 | <location filename="../actionmanager.cpp" line="1399"/> |
3131 | <source>Rulers relative to Page</source> |
||
12612 | cbradney | 3132 | <translation type="obsolete">페이지 관련 눈금자</translation> |
12564 | cbradney | 3133 | </message> |
3134 | <message> |
||
12918 | cbradney | 3135 | <location filename="../../scribus/actionmanager.cpp" line="1409"/> |
12612 | cbradney | 3136 | <source>Sn&ap to Grid</source> |
3137 | <translation>격자에 붙이기(&A)</translation> |
||
12564 | cbradney | 3138 | </message> |
3139 | <message> |
||
12918 | cbradney | 3140 | <location filename="../../scribus/actionmanager.cpp" line="1410"/> |
12612 | cbradney | 3141 | <source>Sna&p to Guides</source> |
3142 | <translation>안내선에 붙이기(&P)</translation> |
||
12564 | cbradney | 3143 | </message> |
3144 | <message> |
||
12918 | cbradney | 3145 | <location filename="../../scribus/actionmanager.cpp" line="1415"/> |
12612 | cbradney | 3146 | <source>&Properties</source> |
3147 | <translation>속성 편집(&P)</translation> |
||
12564 | cbradney | 3148 | </message> |
3149 | <message> |
||
12918 | cbradney | 3150 | <location filename="../../scribus/actionmanager.cpp" line="1417"/> |
12612 | cbradney | 3151 | <source>&Scrapbook</source> |
3152 | <translation>스크랩북(&S)</translation> |
||
12564 | cbradney | 3153 | </message> |
3154 | <message> |
||
12918 | cbradney | 3155 | <location filename="../../scribus/actionmanager.cpp" line="1418"/> |
12612 | cbradney | 3156 | <source>&Layers</source> |
3157 | <translation>레이어(&L)</translation> |
||
12564 | cbradney | 3158 | </message> |
3159 | <message> |
||
12918 | cbradney | 3160 | <location filename="../../scribus/actionmanager.cpp" line="1419"/> |
12612 | cbradney | 3161 | <source>&Arrange Pages</source> |
3162 | <translation>페이지 배열(&A)</translation> |
||
12564 | cbradney | 3163 | </message> |
3164 | <message> |
||
12918 | cbradney | 3165 | <location filename="../../scribus/actionmanager.cpp" line="1420"/> |
12612 | cbradney | 3166 | <source>&Bookmarks</source> |
3167 | <translation>북마크(&B)</translation> |
||
12564 | cbradney | 3168 | </message> |
3169 | <message> |
||
12918 | cbradney | 3170 | <location filename="../../scribus/actionmanager.cpp" line="1421"/> |
12612 | cbradney | 3171 | <source>&Measurements</source> |
3172 | <translation>측정(&M)</translation> |
||
12564 | cbradney | 3173 | </message> |
3174 | <message> |
||
12918 | cbradney | 3175 | <location filename="../../scribus/actionmanager.cpp" line="1422"/> |
12612 | cbradney | 3176 | <source>Action &History</source> |
3177 | <translation>작업 내역(&H)</translation> |
||
12564 | cbradney | 3178 | </message> |
3179 | <message> |
||
12918 | cbradney | 3180 | <location filename="../../scribus/actionmanager.cpp" line="1423"/> |
12612 | cbradney | 3181 | <source>Preflight &Verifier</source> |
3182 | <translation>문서 검증(&V)</translation> |
||
12564 | cbradney | 3183 | </message> |
3184 | <message> |
||
12918 | cbradney | 3185 | <location filename="../../scribus/actionmanager.cpp" line="1424"/> |
12612 | cbradney | 3186 | <source>&Align and Distribute</source> |
3187 | <translation>정렬/배치(&A)</translation> |
||
12564 | cbradney | 3188 | </message> |
3189 | <message> |
||
12918 | cbradney | 3190 | <location filename="../../scribus/actionmanager.cpp" line="1425"/> |
12612 | cbradney | 3191 | <source>&Tools</source> |
3192 | <translation>도구(&T)</translation> |
||
12564 | cbradney | 3193 | </message> |
3194 | <message> |
||
12918 | cbradney | 3195 | <location filename="../../scribus/actionmanager.cpp" line="1426"/> |
12612 | cbradney | 3196 | <source>P&DF Tools</source> |
3197 | <translation>PDF 도구(&D)</translation> |
||
12564 | cbradney | 3198 | </message> |
3199 | <message> |
||
12918 | cbradney | 3200 | <location filename="../../scribus/actionmanager.cpp" line="1429"/> |
12612 | cbradney | 3201 | <source>Select Item</source> |
3202 | <translation>객체 선택</translation> |
||
3203 | </message> |
||
3204 | <message> |
||
12564 | cbradney | 3205 | <location filename="../actionmanager.cpp" line="1351"/> |
3206 | <source>T&able</source> |
||
12612 | cbradney | 3207 | <translation type="obsolete">표(&A)</translation> |
12564 | cbradney | 3208 | </message> |
3209 | <message> |
||
3210 | <location filename="../actionmanager.cpp" line="1352"/> |
||
3211 | <source>&Shape</source> |
||
12612 | cbradney | 3212 | <translation type="obsolete">도형(&S)</translation> |
12564 | cbradney | 3213 | </message> |
3214 | <message> |
||
3215 | <location filename="../actionmanager.cpp" line="1354"/> |
||
3216 | <source>&Line</source> |
||
12612 | cbradney | 3217 | <translation type="obsolete">선(&L)</translation> |
12564 | cbradney | 3218 | </message> |
3219 | <message> |
||
3220 | <location filename="../actionmanager.cpp" line="1356"/> |
||
3221 | <source>&Freehand Line</source> |
||
12612 | cbradney | 3222 | <translation type="obsolete">자유로운 선(&F)</translation> |
12564 | cbradney | 3223 | </message> |
3224 | <message> |
||
12918 | cbradney | 3225 | <location filename="../../scribus/actionmanager.cpp" line="1430"/> |
12612 | cbradney | 3226 | <source>Rotate Item</source> |
3227 | <translation>객체 회전</translation> |
||
12564 | cbradney | 3228 | </message> |
3229 | <message> |
||
12918 | cbradney | 3230 | <location filename="../../scribus/actionmanager.cpp" line="1431"/> |
12612 | cbradney | 3231 | <source>Zoom in or out</source> |
3232 | <translation>돋보기</translation> |
||
12564 | cbradney | 3233 | </message> |
3234 | <message> |
||
12918 | cbradney | 3235 | <location filename="../../scribus/actionmanager.cpp" line="1432"/> |
12612 | cbradney | 3236 | <source>Zoom in</source> |
3237 | <translation>확대</translation> |
||
12564 | cbradney | 3238 | </message> |
3239 | <message> |
||
12918 | cbradney | 3240 | <location filename="../../scribus/actionmanager.cpp" line="1433"/> |
12612 | cbradney | 3241 | <source>Zoom out</source> |
3242 | <translation>축소</translation> |
||
12564 | cbradney | 3243 | </message> |
3244 | <message> |
||
12918 | cbradney | 3245 | <location filename="../../scribus/actionmanager.cpp" line="1434"/> |
12612 | cbradney | 3246 | <source>Edit Contents of Frame</source> |
3247 | <translation>프레임 내용 편집</translation> |
||
12564 | cbradney | 3248 | </message> |
3249 | <message> |
||
12918 | cbradney | 3250 | <location filename="../../scribus/actionmanager.cpp" line="1435"/> |
12612 | cbradney | 3251 | <source>Edit Text...</source> |
3252 | <translation>텍스트 편집...</translation> |
||
12564 | cbradney | 3253 | </message> |
3254 | <message> |
||
12918 | cbradney | 3255 | <location filename="../../scribus/actionmanager.cpp" line="1436"/> |
12612 | cbradney | 3256 | <source>Link Text Frames</source> |
3257 | <translation>텍스트 프레임 링크</translation> |
||
12564 | cbradney | 3258 | </message> |
3259 | <message> |
||
12918 | cbradney | 3260 | <location filename="../../scribus/actionmanager.cpp" line="1437"/> |
12612 | cbradney | 3261 | <source>Unlink Text Frames</source> |
3262 | <translation>텍스트 프레임 링크 해제</translation> |
||
12564 | cbradney | 3263 | </message> |
3264 | <message> |
||
12918 | cbradney | 3265 | <location filename="../../scribus/actionmanager.cpp" line="1438"/> |
12612 | cbradney | 3266 | <source>&Eye Dropper</source> |
3267 | <translation>색상 추출기(&E)</translation> |
||
12564 | cbradney | 3268 | </message> |
3269 | <message> |
||
12918 | cbradney | 3270 | <location filename="../../scribus/actionmanager.cpp" line="1439"/> |
12612 | cbradney | 3271 | <source>Copy Item Properties</source> |
3272 | <translation>객체 속성 복사</translation> |
||
12564 | cbradney | 3273 | </message> |
3274 | <message> |
||
3275 | <location filename="../actionmanager.cpp" line="1368"/> |
||
3276 | <source>Edit the text with the Story Editor</source> |
||
12612 | cbradney | 3277 | <translation type="obsolete">스토리 편집기로 텍스트 편집</translation> |
12564 | cbradney | 3278 | </message> |
3279 | <message> |
||
3280 | <location filename="../actionmanager.cpp" line="1370"/> |
||
3281 | <source>Insert Text Frame</source> |
||
12612 | cbradney | 3282 | <translation type="obsolete">텍스트 프레임 삽입</translation> |
12564 | cbradney | 3283 | </message> |
3284 | <message> |
||
3285 | <location filename="../actionmanager.cpp" line="1371"/> |
||
3286 | <source>Insert Image Frame</source> |
||
12612 | cbradney | 3287 | <translation type="obsolete">이미지 프레임 삽입</translation> |
12564 | cbradney | 3288 | </message> |
3289 | <message> |
||
3290 | <location filename="../actionmanager.cpp" line="1372"/> |
||
3291 | <source>Insert Table</source> |
||
12612 | cbradney | 3292 | <translation type="obsolete">표 삽입</translation> |
12564 | cbradney | 3293 | </message> |
3294 | <message> |
||
3295 | <location filename="../actionmanager.cpp" line="1373"/> |
||
3296 | <source>Insert Shape</source> |
||
12612 | cbradney | 3297 | <translation type="obsolete">도형 삽입</translation> |
12564 | cbradney | 3298 | </message> |
3299 |