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