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