Rev 9672 | Rev 10132 | 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"> |
||
8250 | cbradney | 3 | <context> |
4 | <name></name> |
||
5 | <message> |
||
9729 | cbradney | 6 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="21"/> |
8250 | cbradney | 7 | <source>getColorNames() -> list |
8 | |||
9 | Returns a list containing the names of all defined colors in the document. |
||
10 | If no document is open, returns a list of the default document colors. |
||
11 | </source> |
||
12 | <translation type="unfinished"></translation> |
||
13 | </message> |
||
14 | <message> |
||
9729 | cbradney | 15 | <location filename="../plugins/scriptplugin/cmddialog.h" line="22"/> |
8250 | cbradney | 16 | <source>newDocDialog() -> bool |
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> |
||
22 | <translation type="unfinished"></translation> |
||
23 | </message> |
||
24 | <message> |
||
9729 | cbradney | 25 | <location filename="../plugins/scriptplugin/cmddoc.h" line="55"/> |
8250 | cbradney | 26 | <source>newDocument(size, margins, orientation, firstPageNumber, |
27 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
28 | |||
29 | Creates a new document and returns true if successful. The parameters have the |
||
30 | following meaning: |
||
31 | |||
32 | size = A tuple (width, height) describing the size of the document. You can |
||
33 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
34 | |||
35 | margins = A tuple (left, right, top, bottom) describing the document |
||
36 | margins |
||
37 | |||
38 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
39 | |||
40 | firstPageNumer = is the number of the first page in the document used for |
||
41 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
42 | numbers if you're creating a document in several parts. |
||
43 | |||
44 | unit: this value sets the measurement units used by the document. Use a |
||
45 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
46 | UNIT_PICAS, UNIT_POINTS. |
||
47 | |||
48 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
49 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
50 | PAGE_4 is 4-fold. |
||
51 | |||
52 | firstPageOrder = What is position of first page in the document. |
||
53 | Indexed from 0 (0 = first). |
||
54 | |||
55 | numPage = Number of pages to be created. |
||
56 | |||
57 | The values for width, height and the margins are expressed in the given unit |
||
58 | for the document. PAPER_* constants are expressed in points. If your document |
||
59 | is not in points, make sure to account for this. |
||
60 | |||
61 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
62 | PAGE_4, 3, 1) |
||
63 | |||
64 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
65 | </source> |
||
66 | <translation type="unfinished"></translation> |
||
67 | </message> |
||
68 | <message> |
||
9729 | cbradney | 69 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="21"/> |
8250 | cbradney | 70 | <source>getFillColor(["name"]) -> string |
71 | |||
72 | Returns the name of the fill color of the object "name". |
||
73 | If "name" is not given the currently selected item is used. |
||
74 | </source> |
||
75 | <translation type="unfinished"></translation> |
||
76 | </message> |
||
77 | <message> |
||
9729 | cbradney | 78 | <location filename="../plugins/scriptplugin/cmdmani.h" line="23"/> |
8250 | cbradney | 79 | <source>moveObject(dx, dy [, "name"]) |
80 | |||
81 | Moves the object "name" by dx and dy relative to its current position. The |
||
82 | distances are expressed in the current measurement unit of the document (see |
||
83 | UNIT constants). If "name" is not given the currently selected item is used. |
||
84 | If the object "name" belongs to a group, the whole group is moved. |
||
85 | </source> |
||
86 | <translation type="unfinished"></translation> |
||
87 | </message> |
||
88 | <message> |
||
9729 | cbradney | 89 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="24"/> |
8250 | cbradney | 90 | <source>setRedraw(bool) |
91 | |||
92 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
93 | This change will persist even after the script exits, so make sure to call |
||
94 | setRedraw(True) in a finally: clause at the top level of your script. |
||
95 | </source> |
||
96 | <translation type="unfinished"></translation> |
||
97 | </message> |
||
98 | <message> |
||
9729 | cbradney | 99 | <location filename="../plugins/scriptplugin/cmdobj.h" line="26"/> |
8250 | cbradney | 100 | <source>createRect(x, y, width, height, ["name"]) -> string |
101 | |||
102 | Creates a new rectangle on the current page and returns its name. The |
||
103 | coordinates are given in the current measurement units of the document |
||
104 | (see UNIT constants). "name" should be a unique identifier for the object |
||
105 | because you need this name to reference that object in future. If "name" |
||
106 | is not given Scribus will create one for you. |
||
107 | |||
108 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
109 | </source> |
||
110 | <translation type="unfinished"></translation> |
||
111 | </message> |
||
112 | <message> |
||
9729 | cbradney | 113 | <location filename="../plugins/scriptplugin/cmdpage.h" line="26"/> |
8250 | cbradney | 114 | <source>newPage(where [,"masterpage"]) |
115 | |||
116 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
117 | document, otherwise the new page is inserted before "where". Page numbers are |
||
118 | counted from 1 upwards, no matter what the displayed first page number of your |
||
119 | document is. The optional parameter "masterpage" specifies the name of the |
||
120 | master page for the new page. |
||
121 | |||
122 | May raise IndexError if the page number is out of range |
||
123 | </source> |
||
124 | <translation type="unfinished"></translation> |
||
125 | </message> |
||
126 | <message> |
||
9729 | cbradney | 127 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="22"/> |
8250 | cbradney | 128 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
129 | |||
130 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
131 | the same as for setFillColor() and setFillShade(). See the constants for |
||
132 | available types (FILL_<type>). |
||
133 | </source> |
||
134 | <translation type="unfinished"></translation> |
||
135 | </message> |
||
136 | <message> |
||
9729 | cbradney | 137 | <location filename="../plugins/scriptplugin/cmdtext.h" line="23"/> |
8250 | cbradney | 138 | <source>getFontSize(["name"]) -> float |
139 | |||
140 | Returns the font size in points for the text frame "name". If this text |
||
141 | frame has some text selected the value assigned to the first character of |
||
142 | the selection is returned. |
||
143 | If "name" is not given the currently selected item is used. |
||
144 | </source> |
||
145 | <translation type="unfinished"></translation> |
||
146 | </message> |
||
147 | <message> |
||
9729 | cbradney | 148 | <location filename="../plugins/scriptplugin/guiapp.h" line="21"/> |
8250 | cbradney | 149 | <source>messagebarText("string") |
150 | |||
151 | Writes the "string" into the Scribus message bar (status line). The text |
||
152 | must be UTF8 encoded or 'unicode' string(recommended). |
||
153 | </source> |
||
154 | <translation type="unfinished"></translation> |
||
155 | </message> |
||
156 | <message> |
||
9729 | cbradney | 157 | <location filename="../plugins/scriptplugin/svgimport.h" line="21"/> |
158 | <source>placeSVG("filename", x, y) |
||
8250 | cbradney | 159 | |
9729 | cbradney | 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 |
||
8250 | cbradney | 164 | </source> |
165 | <translation type="unfinished"></translation> |
||
166 | </message> |
||
167 | </context> |
||
168 | <context> |
||
169 | <name>@default</name> |
||
170 | <message> |
||
9729 | cbradney | 171 | <location filename="" line="136966688"/> |
8250 | cbradney | 172 | <source>%</source> |
173 | <translation type="obsolete">%</translation> |
||
174 | </message> |
||
175 | <message> |
||
9729 | cbradney | 176 | <location filename="" line="136966688"/> |
8250 | cbradney | 177 | <source>B</source> |
178 | <translation type="obsolete">B</translation> |
||
179 | </message> |
||
180 | <message> |
||
9729 | cbradney | 181 | <location filename="" line="136966688"/> |
8250 | cbradney | 182 | <source>C</source> |
183 | <translation type="obsolete">C</translation> |
||
184 | </message> |
||
185 | <message> |
||
9729 | cbradney | 186 | <location filename="" line="136966688"/> |
8250 | cbradney | 187 | <source>c</source> |
188 | <translation type="obsolete">c</translation> |
||
189 | </message> |
||
190 | <message> |
||
9729 | cbradney | 191 | <location filename="" line="136966688"/> |
8250 | cbradney | 192 | <source>p</source> |
193 | <translation type="obsolete">p</translation> |
||
194 | </message> |
||
195 | <message> |
||
9729 | cbradney | 196 | <location filename="" line="136966688"/> |
8250 | cbradney | 197 | <source> %</source> |
198 | <translation type="obsolete"> %</translation> |
||
199 | </message> |
||
200 | <message> |
||
9729 | cbradney | 201 | <location filename="" line="136966688"/> |
8250 | cbradney | 202 | <source> c</source> |
203 | <translation type="obsolete">c</translation> |
||
204 | </message> |
||
205 | <message> |
||
9729 | cbradney | 206 | <location filename="" line="136966688"/> |
8250 | cbradney | 207 | <source> p</source> |
208 | <translation type="obsolete"> p</translation> |
||
209 | </message> |
||
210 | <message> |
||
9729 | cbradney | 211 | <location filename="" line="136966688"/> |
8250 | cbradney | 212 | <source>&C</source> |
213 | <translation type="obsolete">&C</translation> |
||
214 | </message> |
||
215 | <message> |
||
9729 | cbradney | 216 | <location filename="" line="136966688"/> |
8250 | cbradney | 217 | <source>&K</source> |
218 | <translation type="obsolete">&K</translation> |
||
219 | </message> |
||
220 | <message> |
||
9729 | cbradney | 221 | <location filename="" line="136966688"/> |
8250 | cbradney | 222 | <source>&M</source> |
223 | <translation type="obsolete">&M</translation> |
||
224 | </message> |
||
225 | <message> |
||
9729 | cbradney | 226 | <location filename="" line="136966688"/> |
8250 | cbradney | 227 | <source>&Y</source> |
228 | <translation type="obsolete">&Y</translation> |
||
229 | </message> |
||
230 | <message> |
||
9729 | cbradney | 231 | <location filename="" line="136966688"/> |
8250 | cbradney | 232 | <source><<</source> |
233 | <translation type="obsolete"><<</translation> |
||
234 | </message> |
||
235 | <message> |
||
9729 | cbradney | 236 | <location filename="" line="136966688"/> |
8250 | cbradney | 237 | <source>>></source> |
238 | <translation type="obsolete">>></translation> |
||
239 | </message> |
||
240 | <message> |
||
9729 | cbradney | 241 | <location filename="" line="136966688"/> |
8250 | cbradney | 242 | <source>B:</source> |
243 | <translation type="obsolete">B:</translation> |
||
244 | </message> |
||
245 | <message> |
||
9729 | cbradney | 246 | <location filename="" line="136966688"/> |
8250 | cbradney | 247 | <source>C:</source> |
248 | <translation type="obsolete">C:</translation> |
||
249 | </message> |
||
250 | <message> |
||
9729 | cbradney | 251 | <location filename="" line="136966688"/> |
8250 | cbradney | 252 | <source>G:</source> |
253 | <translation type="obsolete">G:</translation> |
||
254 | </message> |
||
255 | <message> |
||
9729 | cbradney | 256 | <location filename="" line="136966688"/> |
8250 | cbradney | 257 | <source>H:</source> |
258 | <translation type="obsolete">H:</translation> |
||
259 | </message> |
||
260 | <message> |
||
9729 | cbradney | 261 | <location filename="" line="136966688"/> |
8250 | cbradney | 262 | <source>K:</source> |
263 | <translation type="obsolete">K:</translation> |
||
264 | </message> |
||
265 | <message> |
||
9729 | cbradney | 266 | <location filename="" line="136966688"/> |
8250 | cbradney | 267 | <source>M:</source> |
268 | <translation type="obsolete">M:</translation> |
||
269 | </message> |
||
270 | <message> |
||
9729 | cbradney | 271 | <location filename="" line="136966688"/> |
8250 | cbradney | 272 | <source>OK</source> |
273 | <translation type="obsolete">Ok</translation> |
||
274 | </message> |
||
275 | <message> |
||
9729 | cbradney | 276 | <location filename="" line="136966688"/> |
8250 | cbradney | 277 | <source>No</source> |
278 | <translation type="obsolete">Não</translation> |
||
279 | </message> |
||
280 | <message> |
||
9729 | cbradney | 281 | <location filename="" line="136966688"/> |
8250 | cbradney | 282 | <source>R:</source> |
283 | <translation type="obsolete">R:</translation> |
||
284 | </message> |
||
285 | <message> |
||
9729 | cbradney | 286 | <location filename="" line="136966688"/> |
8250 | cbradney | 287 | <source>S:</source> |
288 | <translation type="obsolete">S:</translation> |
||
289 | </message> |
||
290 | <message> |
||
9729 | cbradney | 291 | <location filename="" line="136966688"/> |
8250 | cbradney | 292 | <source>V:</source> |
293 | <translation type="obsolete">V:</translation> |
||
294 | </message> |
||
295 | <message> |
||
9729 | cbradney | 296 | <location filename="" line="136966688"/> |
8250 | cbradney | 297 | <source>To</source> |
298 | <translation type="obsolete">Até</translation> |
||
299 | </message> |
||
300 | <message> |
||
9729 | cbradney | 301 | <location filename="" line="136966688"/> |
8250 | cbradney | 302 | <source>X:</source> |
303 | <translation type="obsolete">X:</translation> |
||
304 | </message> |
||
305 | <message> |
||
9729 | cbradney | 306 | <location filename="" line="136966688"/> |
8250 | cbradney | 307 | <source>Y:</source> |
308 | <translation type="obsolete">Y:</translation> |
||
309 | </message> |
||
310 | <message> |
||
9729 | cbradney | 311 | <location filename="" line="136966688"/> |
8250 | cbradney | 312 | <source>cm</source> |
313 | <translation type="obsolete">cm</translation> |
||
314 | </message> |
||
315 | <message> |
||
9729 | cbradney | 316 | <location filename="" line="136966688"/> |
8250 | cbradney | 317 | <source>ff</source> |
318 | <translation type="obsolete">ff</translation> |
||
319 | </message> |
||
320 | <message> |
||
9729 | cbradney | 321 | <location filename="" line="136966688"/> |
8250 | cbradney | 322 | <source>fi</source> |
323 | <translation type="obsolete">fi</translation> |
||
324 | </message> |
||
325 | <message> |
||
9729 | cbradney | 326 | <location filename="" line="136966688"/> |
8250 | cbradney | 327 | <source>fl</source> |
328 | <translation type="obsolete">fl</translation> |
||
329 | </message> |
||
330 | <message> |
||
9729 | cbradney | 331 | <location filename="" line="136966688"/> |
8250 | cbradney | 332 | <source>ft</source> |
333 | <translation type="obsolete">ft</translation> |
||
334 | </message> |
||
335 | <message> |
||
9729 | cbradney | 336 | <location filename="" line="136966688"/> |
8250 | cbradney | 337 | <source>in</source> |
338 | <translation type="obsolete">pol</translation> |
||
339 | </message> |
||
340 | <message> |
||
9729 | cbradney | 341 | <location filename="" line="136966688"/> |
8250 | cbradney | 342 | <source>mm</source> |
343 | <translation type="obsolete">mm</translation> |
||
344 | </message> |
||
345 | <message> |
||
9729 | cbradney | 346 | <location filename="" line="136966688"/> |
8250 | cbradney | 347 | <source>pt</source> |
348 | <translation type="obsolete">pt</translation> |
||
349 | </message> |
||
350 | <message> |
||
9729 | cbradney | 351 | <location filename="" line="136966688"/> |
8250 | cbradney | 352 | <source>st</source> |
353 | <translation type="obsolete">st</translation> |
||
354 | </message> |
||
355 | <message> |
||
9729 | cbradney | 356 | <location filename="" line="136966688"/> |
8250 | cbradney | 357 | <source>to</source> |
358 | <translation type="obsolete">para</translation> |
||
359 | </message> |
||
360 | <message> |
||
9729 | cbradney | 361 | <location filename="" line="136966688"/> |
8250 | cbradney | 362 | <source> cm</source> |
363 | <translation type="obsolete"> cm</translation> |
||
364 | </message> |
||
365 | <message> |
||
9729 | cbradney | 366 | <location filename="" line="136966688"/> |
8250 | cbradney | 367 | <source> in</source> |
368 | <translation type="obsolete"> pol</translation> |
||
369 | </message> |
||
370 | <message> |
||
9729 | cbradney | 371 | <location filename="" line="136966688"/> |
8250 | cbradney | 372 | <source> mm</source> |
373 | <translation type="obsolete"> mm</translation> |
||
374 | </message> |
||
375 | <message> |
||
9729 | cbradney | 376 | <location filename="" line="136966688"/> |
8250 | cbradney | 377 | <source> ms</source> |
378 | <translation type="obsolete"> cm</translation> |
||
379 | </message> |
||
380 | <message> |
||
9729 | cbradney | 381 | <location filename="" line="136966688"/> |
8250 | cbradney | 382 | <source> pt</source> |
383 | <translation type="obsolete"> pt</translation> |
||
384 | </message> |
||
385 | <message> |
||
9729 | cbradney | 386 | <location filename="" line="136966688"/> |
8250 | cbradney | 387 | <source> px</source> |
388 | <translation type="obsolete"> px </translation> |
||
389 | </message> |
||
390 | <message> |
||
9729 | cbradney | 391 | <location filename="" line="136966688"/> |
8250 | cbradney | 392 | <source>&<<</source> |
393 | <translation type="obsolete">&<<</translation> |
||
394 | </message> |
||
395 | <message> |
||
9729 | cbradney | 396 | <location filename="" line="136966688"/> |
8250 | cbradney | 397 | <source>&>></source> |
398 | <translation type="obsolete">&>></translation> |
||
399 | </message> |
||
400 | <message> |
||
9729 | cbradney | 401 | <location filename="" line="136966688"/> |
8250 | cbradney | 402 | <source>&OK</source> |
403 | <translation type="obsolete">&Ok</translation> |
||
404 | </message> |
||
405 | <message> |
||
9729 | cbradney | 406 | <location filename="" line="136966688"/> |
8250 | cbradney | 407 | <source>&No</source> |
408 | <translation type="obsolete">&Não</translation> |
||
409 | </message> |
||
410 | <message> |
||
9729 | cbradney | 411 | <location filename="" line="136966688"/> |
8250 | cbradney | 412 | <source>...</source> |
413 | <translation type="obsolete">...</translation> |
||
414 | </message> |
||
415 | <message> |
||
9729 | cbradney | 416 | <location filename="" line="136966688"/> |
8250 | cbradney | 417 | <source>2A0</source> |
418 | <translation type="obsolete">2A0</translation> |
||
419 | </message> |
||
420 | <message> |
||
9729 | cbradney | 421 | <location filename="" line="136966688"/> |
8250 | cbradney | 422 | <source>4A0</source> |
423 | <translation type="obsolete">4A0</translation> |
||
424 | </message> |
||
425 | <message> |
||
9729 | cbradney | 426 | <location filename="" line="136966688"/> |
8250 | cbradney | 427 | <source>All</source> |
428 | <translation type="obsolete">Todos</translation> |
||
429 | </message> |
||
430 | <message> |
||
9729 | cbradney | 431 | <location filename="" line="136966688"/> |
8250 | cbradney | 432 | <source>Alt</source> |
433 | <translation type="obsolete">Alt</translation> |
||
434 | </message> |
||
435 | <message> |
||
9729 | cbradney | 436 | <location filename="" line="136966688"/> |
8250 | cbradney | 437 | <source>DLE</source> |
438 | <translation type="obsolete">DLE</translation> |
||
439 | </message> |
||
440 | <message> |
||
9729 | cbradney | 441 | <location filename="" line="136966688"/> |
8250 | cbradney | 442 | <source>DPI</source> |
443 | <translation type="obsolete">DPI</translation> |
||
444 | </message> |
||
445 | <message> |
||
9729 | cbradney | 446 | <location filename="" line="136966688"/> |
8250 | cbradney | 447 | <source>Box</source> |
448 | <translation type="obsolete">Caixa</translation> |
||
449 | </message> |
||
450 | <message> |
||
9729 | cbradney | 451 | <location filename="" line="136966688"/> |
8250 | cbradney | 452 | <source>DX:</source> |
453 | <translation type="obsolete">DX:</translation> |
||
454 | </message> |
||
455 | <message> |
||
9729 | cbradney | 456 | <location filename="" line="136966688"/> |
8250 | cbradney | 457 | <source>DY:</source> |
458 | <translation type="obsolete">DY:</translation> |
||
459 | </message> |
||
460 | <message> |
||
9729 | cbradney | 461 | <location filename="" line="136966688"/> |
8250 | cbradney | 462 | <source>Cut</source> |
463 | <translation type="obsolete">Cortar</translation> |
||
464 | </message> |
||
465 | <message> |
||
9729 | cbradney | 466 | <location filename="" line="136966688"/> |
8250 | cbradney | 467 | <source>Dir</source> |
468 | <translation type="obsolete">Dir</translation> |
||
469 | </message> |
||
470 | <message> |
||
9729 | cbradney | 471 | <location filename="" line="136966688"/> |
8250 | cbradney | 472 | <source>Doc</source> |
473 | <translation type="obsolete">Doc</translation> |
||
474 | </message> |
||
475 | <message> |
||
9729 | cbradney | 476 | <location filename="" line="136966688"/> |
8250 | cbradney | 477 | <source>Dot</source> |
478 | <translation type="obsolete">Ponto</translation> |
||
479 | </message> |
||
480 | <message> |
||
9729 | cbradney | 481 | <location filename="" line="136966688"/> |
8250 | cbradney | 482 | <source>HSV</source> |
483 | <translation type="obsolete">HSV</translation> |
||
484 | </message> |
||
485 | <message> |
||
9729 | cbradney | 486 | <location filename="" line="136966688"/> |
8250 | cbradney | 487 | <source>Hex</source> |
488 | <translation type="obsolete">Hex</translation> |
||
489 | </message> |
||
490 | <message> |
||
9729 | cbradney | 491 | <location filename="" line="136966688"/> |
8250 | cbradney | 492 | <source>Hue</source> |
493 | <translation type="obsolete">Matiz</translation> |
||
494 | </message> |
||
495 | <message> |
||
9729 | cbradney | 496 | <location filename="" line="136966688"/> |
8250 | cbradney | 497 | <source>Low</source> |
498 | <translation type="obsolete">Baixa</translation> |
||
499 | </message> |
||
500 | <message> |
||
9729 | cbradney | 501 | <location filename="" line="136966688"/> |
8250 | cbradney | 502 | <source>May</source> |
503 | <translation type="obsolete">Maio</translation> |
||
504 | </message> |
||
505 | <message> |
||
9729 | cbradney | 506 | <location filename="" line="136966688"/> |
8250 | cbradney | 507 | <source>PDF</source> |
508 | <translation type="obsolete">PDF</translation> |
||
509 | </message> |
||
510 | <message> |
||
9729 | cbradney | 511 | <location filename="" line="136966688"/> |
8250 | cbradney | 512 | <source>New</source> |
513 | <translation type="obsolete">Novo</translation> |
||
514 | </message> |
||
515 | <message> |
||
9729 | cbradney | 516 | <location filename="" line="136966688"/> |
8250 | cbradney | 517 | <source>Old</source> |
518 | <translation type="obsolete">Antigo</translation> |
||
519 | </message> |
||
520 | <message> |
||
9729 | cbradney | 521 | <location filename="" line="136966688"/> |
8250 | cbradney | 522 | <source>RGB</source> |
523 | <translation type="obsolete">RGB</translation> |
||
524 | </message> |
||
525 | <message> |
||
9729 | cbradney | 526 | <location filename="" line="136966688"/> |
8250 | cbradney | 527 | <source>To:</source> |
528 | <translation type="obsolete">para:</translation> |
||
529 | </message> |
||
530 | <message> |
||
9729 | cbradney | 531 | <location filename="" line="136966688"/> |
8250 | cbradney | 532 | <source>Apply unbreakable space on:</source> |
533 | <translation type="obsolete">Aplicar espaço não separável em:</translation> |
||
534 | </message> |
||
535 | <message> |
||
9729 | cbradney | 536 | <location filename="" line="136966688"/> |
8250 | cbradney | 537 | <source>X1:</source> |
538 | <translation type="obsolete">X1:</translation> |
||
539 | </message> |
||
540 | <message> |
||
9729 | cbradney | 541 | <location filename="" line="136966688"/> |
8250 | cbradney | 542 | <source>X2:</source> |
543 | <translation type="obsolete">X2:</translation> |
||
544 | </message> |
||
545 | <message> |
||
9729 | cbradney | 546 | <location filename="" line="136966688"/> |
8250 | cbradney | 547 | <source>Top</source> |
548 | <translation type="obsolete">Topo</translation> |
||
549 | </message> |
||
550 | <message> |
||
9729 | cbradney | 551 | <location filename="" line="136966688"/> |
8250 | cbradney | 552 | <source>Y1:</source> |
553 | <translation type="obsolete">Y1:</translation> |
||
554 | </message> |
||
555 | <message> |
||
9729 | cbradney | 556 | <location filename="" line="136966688"/> |
8250 | cbradney | 557 | <source>Y2:</source> |
558 | <translation type="obsolete">Y2:</translation> |
||
559 | </message> |
||
560 | <message> |
||
9729 | cbradney | 561 | <location filename="" line="136966688"/> |
8250 | cbradney | 562 | <source>Use</source> |
563 | <translation type="obsolete">Usar</translation> |
||
564 | </message> |
||
565 | <message> |
||
9729 | cbradney | 566 | <location filename="" line="136966688"/> |
8250 | cbradney | 567 | <source>Yes</source> |
568 | <translation type="obsolete">Sim</translation> |
||
569 | </message> |
||
570 | <message> |
||
9729 | cbradney | 571 | <location filename="" line="136966688"/> |
8250 | cbradney | 572 | <source>and</source> |
573 | <translation type="obsolete">e</translation> |
||
574 | </message> |
||
575 | <message> |
||
9729 | cbradney | 576 | <location filename="" line="136966688"/> |
8250 | cbradney | 577 | <source>ffi</source> |
578 | <translation type="obsolete">ffi</translation> |
||
579 | </message> |
||
580 | <message> |
||
9729 | cbradney | 581 | <location filename="" line="136966688"/> |
8250 | cbradney | 582 | <source>ffl</source> |
583 | <translation type="obsolete">ffl</translation> |
||
584 | </message> |
||
585 | <message> |
||
9729 | cbradney | 586 | <location filename="" line="136966688"/> |
8250 | cbradney | 587 | <source>min</source> |
588 | <translation type="obsolete">min</translation> |
||
589 | </message> |
||
590 | <message> |
||
9729 | cbradney | 591 | <location filename="" line="136966688"/> |
8250 | cbradney | 592 | <source>sum</source> |
593 | <translation type="obsolete">a soma</translation> |
||
594 | </message> |
||
595 | <message> |
||
9729 | cbradney | 596 | <location filename="" line="136966688"/> |
8250 | cbradney | 597 | <source>to:</source> |
598 | <translation type="obsolete">a:</translation> |
||
599 | </message> |
||
600 | <message> |
||
9729 | cbradney | 601 | <location filename="" line="136966688"/> |
8250 | cbradney | 602 | <source>Destination</source> |
603 | <translation type="obsolete">Destino</translation> |
||
604 | </message> |
||
605 | <message> |
||
9729 | cbradney | 606 | <location filename="" line="136966688"/> |
8250 | cbradney | 607 | <source> dpi</source> |
608 | <translation type="obsolete"> dpi</translation> |
||
609 | </message> |
||
610 | <message> |
||
9729 | cbradney | 611 | <location filename="" line="136966688"/> |
8250 | cbradney | 612 | <source> pt </source> |
613 | <translation type="obsolete"> pt </translation> |
||
614 | </message> |
||
615 | <message> |
||
9729 | cbradney | 616 | <location filename="" line="136966688"/> |
8250 | cbradney | 617 | <source> sec</source> |
618 | <translation type="obsolete"> sec</translation> |
||
619 | </message> |
||
620 | <message> |
||
9729 | cbradney | 621 | <location filename="" line="136966688"/> |
8250 | cbradney | 622 | <source>&50%</source> |
623 | <translation type="obsolete">&50%</translation> |
||
624 | </message> |
||
625 | <message> |
||
9729 | cbradney | 626 | <location filename="" line="136966688"/> |
8250 | cbradney | 627 | <source>&75%</source> |
628 | <translation type="obsolete">&75%</translation> |
||
629 | </message> |
||
630 | <message> |
||
9729 | cbradney | 631 | <location filename="" line="136966688"/> |
8250 | cbradney | 632 | <source>&Add</source> |
633 | <translation type="obsolete">&Adicionar</translation> |
||
634 | </message> |
||
635 | <message> |
||
9729 | cbradney | 636 | <location filename="" line="136966688"/> |
8250 | cbradney | 637 | <source>&New</source> |
638 | <translation type="obsolete">&Novo</translation> |
||
639 | </message> |
||
640 | <message> |
||
9729 | cbradney | 641 | <location filename="" line="136966688"/> |
8250 | cbradney | 642 | <source>&Run</source> |
643 | <translation type="obsolete">Executa&r</translation> |
||
644 | </message> |
||
645 | <message> |
||
9729 | cbradney | 646 | <location filename="" line="136966688"/> |
8250 | cbradney | 647 | <source>&X1:</source> |
648 | <translation type="obsolete">&X1:</translation> |
||
649 | </message> |
||
650 | <message> |
||
9729 | cbradney | 651 | <location filename="" line="136966688"/> |
8250 | cbradney | 652 | <source>&Y2:</source> |
653 | <translation type="obsolete">&Y2:</translation> |
||
654 | </message> |
||
655 | <message> |
||
9729 | cbradney | 656 | <location filename="" line="136966688"/> |
8250 | cbradney | 657 | <source>&Yes</source> |
658 | <translation type="obsolete">&Sim</translation> |
||
659 | </message> |
||
660 | <message> |
||
9729 | cbradney | 661 | <location filename="" line="136966688"/> |
8250 | cbradney | 662 | <source>A&dd</source> |
663 | <translation type="obsolete">A&dicionar</translation> |
||
664 | </message> |
||
665 | <message> |
||
9729 | cbradney | 666 | <location filename="" line="136966688"/> |
8250 | cbradney | 667 | <source>CMYK</source> |
668 | <translation type="obsolete">CMYK</translation> |
||
669 | </message> |
||
670 | <message> |
||
9729 | cbradney | 671 | <location filename="" line="136966688"/> |
8250 | cbradney | 672 | <source>Alt+</source> |
673 | <translation type="obsolete">Alt+</translation> |
||
674 | </message> |
||
675 | <message> |
||
9729 | cbradney | 676 | <location filename="" line="136966688"/> |
8250 | cbradney | 677 | <source>Back</source> |
678 | <translation type="obsolete">Voltar</translation> |
||
679 | </message> |
||
680 | <message> |
||
9729 | cbradney | 681 | <location filename="" line="136966688"/> |
8250 | cbradney | 682 | <source>Auto</source> |
683 | <translation type="obsolete">Automático</translation> |
||
684 | </message> |
||
685 | <message> |
||
9729 | cbradney | 686 | <location filename="" line="136966688"/> |
8250 | cbradney | 687 | <source>Blur</source> |
688 | <translation type="obsolete">Desfoque</translation> |
||
689 | </message> |
||
690 | <message> |
||
9729 | cbradney | 691 | <location filename="" line="136966688"/> |
8250 | cbradney | 692 | <source>Cu&t</source> |
693 | <translation type="obsolete">Cor&tar</translation> |
||
694 | </message> |
||
695 | <message> |
||
9729 | cbradney | 696 | <location filename="" line="136966688"/> |
8250 | cbradney | 697 | <source>Date</source> |
698 | <translation type="obsolete">Data</translation> |
||
699 | </message> |
||
700 | <message> |
||
9729 | cbradney | 701 | <location filename="" line="136966688"/> |
8250 | cbradney | 702 | <source>Ctrl</source> |
703 | <translation type="obsolete">Ctrl</translation> |
||
704 | </message> |
||
705 | <message> |
||
9729 | cbradney | 706 | <location filename="" line="136966688"/> |
8250 | cbradney | 707 | <source>Cyan</source> |
708 | <translation type="obsolete">Ciano</translation> |
||
709 | </message> |
||
710 | <message> |
||
9729 | cbradney | 711 | <location filename="" line="136966688"/> |
8250 | cbradney | 712 | <source>Edit</source> |
713 | <translation type="obsolete">Editar</translation> |
||
714 | </message> |
||
715 | <message> |
||
9729 | cbradney | 716 | <location filename="" line="136966688"/> |
8250 | cbradney | 717 | <source>End:</source> |
718 | <translation type="obsolete">Fim:</translation> |
||
719 | </message> |
||
720 | <message> |
||
9729 | cbradney | 721 | <location filename="" line="136966688"/> |
8250 | cbradney | 722 | <source>File</source> |
723 | <translation type="obsolete">Ficheiro</translation> |
||
724 | </message> |
||
725 | <message> |
||
9729 | cbradney | 726 | <location filename="" line="136966688"/> |
8250 | cbradney | 727 | <source>Find</source> |
728 | <translation type="obsolete">Localizar</translation> |
||
729 | </message> |
||
730 | <message> |
||
9729 | cbradney | 731 | <location filename="" line="136966688"/> |
8250 | cbradney | 732 | <source>Font</source> |
733 | <translation type="obsolete">Fonte</translation> |
||
734 | </message> |
||
735 | <message> |
||
9729 | cbradney | 736 | <location filename="" line="136966688"/> |
8250 | cbradney | 737 | <source>Gap:</source> |
738 | <translation type="obsolete">&Espaço:</translation> |
||
739 | </message> |
||
740 | <message> |
||
9729 | cbradney | 741 | <location filename="" line="136966688"/> |
8250 | cbradney | 742 | <source>HSV:</source> |
743 | <translation type="obsolete">HSV</translation> |
||
744 | </message> |
||
745 | <message> |
||
9729 | cbradney | 746 | <location filename="" line="136966688"/> |
8250 | cbradney | 747 | <source>From</source> |
748 | <translation type="obsolete">De</translation> |
||
749 | </message> |
||
750 | <message> |
||
9729 | cbradney | 751 | <location filename="" line="136966688"/> |
8250 | cbradney | 752 | <source>Goto</source> |
753 | <translation type="obsolete">Ir para</translation> |
||
754 | </message> |
||
755 | <message> |
||
9729 | cbradney | 756 | <location filename="" line="136966688"/> |
8250 | cbradney | 757 | <source>High</source> |
758 | <translation type="obsolete">Alta</translation> |
||
759 | </message> |
||
760 | <message> |
||
9729 | cbradney | 761 | <location filename="" line="136966688"/> |
8250 | cbradney | 762 | <source>Icon</source> |
763 | <translation type="obsolete">Ícone</translation> |
||
764 | </message> |
||
765 | <message> |
||
9729 | cbradney | 766 | <location filename="" line="136966688"/> |
8250 | cbradney | 767 | <source>July</source> |
768 | <translation type="obsolete">Julho</translation> |
||
769 | </message> |
||
770 | <message> |
||
9729 | cbradney | 771 | <location filename="" line="136966688"/> |
8250 | cbradney | 772 | <source>June</source> |
773 | <translation type="obsolete">Junho</translation> |
||
774 | </message> |
||
775 | <message> |
||
9729 | cbradney | 776 | <location filename="" line="136966688"/> |
8250 | cbradney | 777 | <source>Left</source> |
778 | <translation type="obsolete">Esquerda</translation> |
||
779 | </message> |
||
780 | <message> |
||
9729 | cbradney | 781 | <location filename="" line="136966688"/> |
8250 | cbradney | 782 | <source>Line</source> |
783 | <translation type="obsolete">Linha</translation> |
||
784 | </message> |
||
785 | <message> |
||
9729 | cbradney | 786 | <location filename="" line="136966688"/> |
8250 | cbradney | 787 | <source>Link</source> |
788 | <translation type="obsolete">Ligação</translation> |
||
789 | </message> |
||
790 | <message> |
||
9729 | cbradney | 791 | <location filename="" line="136966688"/> |
8250 | cbradney | 792 | <source>Load</source> |
793 | <translation type="obsolete">Carregar</translation> |
||
794 | </message> |
||
795 | <message> |
||
9729 | cbradney | 796 | <location filename="" line="136966688"/> |
8250 | cbradney | 797 | <source>Lock</source> |
798 | <translation type="obsolete">Bloquear</translation> |
||
799 | </message> |
||
800 | <message> |
||
9729 | cbradney | 801 | <location filename="" line="136966688"/> |
8250 | cbradney | 802 | <source>Main</source> |
803 | <translation type="obsolete">Principal</translation> |
||
804 | </message> |
||
805 | <message> |
||
9729 | cbradney | 806 | <location filename="" line="136966688"/> |
8250 | cbradney | 807 | <source>Meta</source> |
808 | <translation type="obsolete">Meta</translation> |
||
809 | </message> |
||
810 | <message> |
||
9729 | cbradney | 811 | <location filename="" line="136966688"/> |
8250 | cbradney | 812 | <source>Move</source> |
813 | <translation type="obsolete">Mover</translation> |
||
814 | </message> |
||
815 | <message> |
||
9729 | cbradney | 816 | <location filename="" line="136966688"/> |
8250 | cbradney | 817 | <source>Name</source> |
818 | <translation type="obsolete">Nome</translation> |
||
819 | </message> |
||
820 | <message> |
||
9729 | cbradney | 821 | <location filename="" line="136966688"/> |
8250 | cbradney | 822 | <source>None</source> |
823 | <translation type="obsolete">Nenhum</translation> |
||
824 | </message> |
||
825 | <message> |
||
9729 | cbradney | 826 | <location filename="" line="136966688"/> |
8250 | cbradney | 827 | <source>Open</source> |
828 | <translation type="obsolete">Abrir</translation> |
||
829 | </message> |
||
830 | <message> |
||
9729 | cbradney | 831 | <location filename="" line="136966688"/> |
8250 | cbradney | 832 | <source>Page</source> |
833 | <translation type="obsolete">Página</translation> |
||
834 | </message> |
||
835 | <message> |
||
9729 | cbradney | 836 | <location filename="" line="136966688"/> |
8250 | cbradney | 837 | <source>Path</source> |
838 | <translation type="obsolete">Caminho</translation> |
||
839 | </message> |
||
840 | <message> |
||
9729 | cbradney | 841 | <location filename="" line="136966688"/> |
8250 | cbradney | 842 | <source>RGB:</source> |
843 | <translation type="obsolete">RGB</translation> |
||
844 | </message> |
||
845 | <message> |
||
9729 | cbradney | 846 | <location filename="" line="136966688"/> |
8250 | cbradney | 847 | <source>Post</source> |
848 | <translation type="obsolete">Posters</translation> |
||
849 | </message> |
||
850 | <message> |
||
9729 | cbradney | 851 | <location filename="" line="136966688"/> |
8250 | cbradney | 852 | <source>Push</source> |
853 | <translation type="obsolete">Apertar</translation> |
||
854 | </message> |
||
855 | <message> |
||
9729 | cbradney | 856 | <location filename="" line="136966688"/> |
8250 | cbradney | 857 | <source>Se&t</source> |
858 | <translation type="obsolete">Defin&ir</translation> |
||
859 | </message> |
||
860 | <message> |
||
9729 | cbradney | 861 | <location filename="" line="136966688"/> |
8250 | cbradney | 862 | <source>Save</source> |
863 | <translation type="obsolete">Salvar</translation> |
||
864 | </message> |
||
865 | <message> |
||
9729 | cbradney | 866 | <location filename="" line="136966688"/> |
8250 | cbradney | 867 | <source>Size</source> |
868 | <translation type="obsolete">Tamanho</translation> |
||
869 | </message> |
||
870 | <message> |
||
9729 | cbradney | 871 | <location filename="" line="136966688"/> |
8250 | cbradney | 872 | <source>Skip</source> |
873 | <translation type="obsolete">Ignorar</translation> |
||
874 | </message> |
||
875 | <message> |
||
9729 | cbradney | 876 | <location filename="" line="136966688"/> |
8250 | cbradney | 877 | <source>Sort</source> |
878 | <translation type="obsolete">Ordenar</translation> |
||
879 | </message> |
||
880 | <message> |
||
9729 | cbradney | 881 | <location filename="" line="136966688"/> |
8250 | cbradney | 882 | <source>X&2:</source> |
883 | <translation type="obsolete">X&2:</translation> |
||
884 | </message> |
||
885 | <message> |
||
9729 | cbradney | 886 | <location filename="" line="136966688"/> |
8250 | cbradney | 887 | <source>Star</source> |
888 | <translation type="obsolete">Estrela</translation> |
||
889 | </message> |
||
890 | <message> |
||
9729 | cbradney | 891 | <location filename="" line="136966688"/> |
8250 | cbradney | 892 | <source>Text</source> |
893 | <translation type="obsolete">Texto</translation> |
||
894 | </message> |
||
895 | <message> |
||
9729 | cbradney | 896 | <location filename="" line="136966688"/> |
8250 | cbradney | 897 | <source>Thai</source> |
898 | <translation type="obsolete">Tailandês</translation> |
||
899 | </message> |
||
900 | <message> |
||
9729 | cbradney | 901 | <location filename="" line="136966688"/> |
8250 | cbradney | 902 | <source>Thin</source> |
903 | <translation type="obsolete">Estreito</translation> |
||
904 | </message> |
||
905 | <message> |
||
9729 | cbradney | 906 | <location filename="" line="136966688"/> |
8250 | cbradney | 907 | <source>Time</source> |
908 | <translation type="obsolete">Hora</translation> |
||
909 | </message> |
||
910 | <message> |
||
9729 | cbradney | 911 | <location filename="" line="136966688"/> |
8250 | cbradney | 912 | <source>Top:</source> |
913 | <translation type="obsolete">Cimo:</translation> |
||
914 | </message> |
||
915 | <message> |
||
9729 | cbradney | 916 | <location filename="" line="136966688"/> |
8250 | cbradney | 917 | <source>Y&1:</source> |
918 | <translation type="obsolete">Y&1:</translation> |
||
919 | </message> |
||
920 | <message> |
||
9729 | cbradney | 921 | <location filename="" line="136966688"/> |
8250 | cbradney | 922 | <source>Type</source> |
923 | <translation type="obsolete">Tipo</translation> |
||
924 | </message> |
||
925 | <message> |
||
9729 | cbradney | 926 | <location filename="" line="136966688"/> |
8250 | cbradney | 927 | <source>User</source> |
928 | <translation type="obsolete">Usuário</translation> |
||
929 | </message> |
||
930 | <message> |
||
9729 | cbradney | 931 | <location filename="" line="136966688"/> |
8250 | cbradney | 932 | <source>Wide</source> |
933 | <translation type="obsolete">Largo</translation> |
||
934 | </message> |
||
935 | <message> |
||
9729 | cbradney | 936 | <location filename="" line="136966688"/> |
8250 | cbradney | 937 | <source>Wiki</source> |
938 | <translation type="obsolete">Wiki</translation> |
||
939 | </message> |
||
940 | <message> |
||
9729 | cbradney | 941 | <location filename="" line="136966688"/> |
8250 | cbradney | 942 | <source>Wipe</source> |
943 | <translation type="obsolete">Apagar</translation> |
||
944 | </message> |
||
945 | <message> |
||
9729 | cbradney | 946 | <location filename="" line="136966688"/> |
8250 | cbradney | 947 | <source>Zoom</source> |
948 | <translation type="obsolete">Ampliar</translation> |
||
949 | </message> |
||
950 | <message> |
||
9729 | cbradney | 951 | <location filename="" line="136966688"/> |
8250 | cbradney | 952 | <source>html</source> |
953 | <translation type="obsolete">html</translation> |
||
954 | </message> |
||
955 | <message> |
||
9729 | cbradney | 956 | <location filename="" line="136966688"/> |
8250 | cbradney | 957 | <source>page</source> |
958 | <translation type="obsolete">página</translation> |
||
959 | </message> |
||
960 | <message> |
||
9729 | cbradney | 961 | <location filename="" line="136966688"/> |
8250 | cbradney | 962 | <source>with</source> |
963 | <translation type="obsolete">com</translation> |
||
964 | </message> |
||
965 | <message> |
||
9729 | cbradney | 966 | <location filename="" line="136966688"/> |
8250 | cbradney | 967 | <source>Cannot set style on a non-text frame.</source> |
968 | <translation type="obsolete">Não é possível configurar um estilo em um quadro que não seja de texto.</translation> |
||
969 | </message> |
||
970 | <message> |
||
9729 | cbradney | 971 | <location filename="" line="136966688"/> |
8250 | cbradney | 972 | <source>Shortcut for Selected Action</source> |
973 | <translation type="obsolete">Atalho para a acção seleccionada</translation> |
||
974 | </message> |
||
975 | <message> |
||
9729 | cbradney | 976 | <location filename="" line="136966688"/> |
8250 | cbradney | 977 | <source>Select for easier reading of light colored text styles</source> |
978 | <translation type="obsolete">Seleccione para uma leitura mais fácil dos estilos de texto que usam cores claras</translation> |
||
979 | </message> |
||
980 | <message> |
||
9729 | cbradney | 981 | <location filename="" line="136966688"/> |
8250 | cbradney | 982 | <source>Importing: %1</source> |
983 | <translation type="obsolete">Importando texto</translation> |
||
984 | </message> |
||
985 | <message> |
||
9729 | cbradney | 986 | <location filename="" line="136966688"/> |
8250 | cbradney | 987 | <source>Set start arrow</source> |
988 | <translation type="obsolete">Define a seta de início</translation> |
||
989 | </message> |
||
990 | <message> |
||
9729 | cbradney | 991 | <location filename="" line="136966688"/> |
8250 | cbradney | 992 | <source>Moves to your Document Directory. |
993 | This can be set in the Preferences.</source> |
||
994 | <translation type="obsolete">Move para seu directório de documentos. |
||
995 | Isto pode ser definido nas Preferências.</translation> |
||
996 | </message> |
||
997 | <message> |
||
9729 | cbradney | 998 | <location filename="" line="136966688"/> |
8250 | cbradney | 999 | <source>A&lternative Printer Command</source> |
1000 | <translation type="obsolete">Comando &alternativo para impressão</translation> |
||
1001 | </message> |
||
1002 | <message> |
||
9729 | cbradney | 1003 | <location filename="" line="136966688"/> |
8250 | cbradney | 1004 | <source>New Font found, checking...</source> |
1005 | <translation type="obsolete">Nova fonte encontrada, analisando...</translation> |
||
1006 | </message> |
||
1007 | <message> |
||
9729 | cbradney | 1008 | <location filename="" line="136966688"/> |
8250 | cbradney | 1009 | <source>Alternative Printer Command</source> |
1010 | <translation type="obsolete">Comando &alternativo para impressão</translation> |
||
1011 | </message> |
||
1012 | <message> |
||
9729 | cbradney | 1013 | <location filename="" line="136966688"/> |
8250 | cbradney | 1014 | <source>Strikethru</source> |
1015 | <translation type="obsolete">Riscado</translation> |
||
1016 | </message> |
||
1017 | <message> |
||
9729 | cbradney | 1018 | <location filename="" line="136966688"/> |
8250 | cbradney | 1019 | <source>&Get Field Names</source> |
1020 | <translation type="obsolete">&Obter os nomes dos campos</translation> |
||
1021 | </message> |
||
1022 | <message> |
||
9729 | cbradney | 1023 | <location filename="" line="136966688"/> |
8250 | cbradney | 1024 | <source>Range of Pages</source> |
1025 | <translation type="obsolete">Organizar as páginas</translation> |
||
1026 | </message> |
||
1027 | <message> |
||
9729 | cbradney | 1028 | <location filename="" line="136966688"/> |
8250 | cbradney | 1029 | <source>Print Preview</source> |
1030 | <translation type="obsolete">Visualizar impressão</translation> |
||
1031 | </message> |
||
1032 | <message> |
||
9729 | cbradney | 1033 | <location filename="" line="136966688"/> |
8250 | cbradney | 1034 | <source>Short &Words...</source> |
1035 | <translation type="obsolete">&Abreviaturas...</translation> |
||
1036 | </message> |
||
1037 | <message> |
||
9729 | cbradney | 1038 | <location filename="" line="136966688"/> |
8250 | cbradney | 1039 | <source>Offset to baseline of characters</source> |
1040 | <translation type="obsolete">Espaço entre a pauta e os caracteres</translation> |
||
1041 | </message> |
||
1042 | <message> |
||
9729 | cbradney | 1043 | <location filename="" line="136966688"/> |
8250 | cbradney | 1044 | <source>Start searching</source> |
1045 | <translation type="obsolete">Iniciar procura</translation> |
||
1046 | </message> |
||
1047 | <message> |
||
9729 | cbradney | 1048 | <location filename="" line="136966688"/> |
8250 | cbradney | 1049 | <source>Could not open output file %1</source> |
1050 | <translation type="obsolete">Não foi possível abrir o ficheiro de saída: %1</translation> |
||
1051 | </message> |
||
1052 | <message> |
||
9729 | cbradney | 1053 | <location filename="" line="136966688"/> |
8250 | cbradney | 1054 | <source>Cannot collect the file: |
1055 | %1</source> |
||
1056 | <translation type="obsolete">Não foi possível recolher o ficheiro: |
||
1057 | %1</translation> |
||
1058 | </message> |
||
1059 | <message> |
||
9729 | cbradney | 1060 | <location filename="" line="136966688"/> |
8250 | cbradney | 1061 | <source>Freetype2 library not available</source> |
1062 | <translation type="obsolete">A biblioteca Freetype2 não está disponível</translation> |
||
1063 | </message> |
||
1064 | <message> |
||
9729 | cbradney | 1065 | <location filename="" line="136966688"/> |
8250 | cbradney | 1066 | <source>Search Directory</source> |
1067 | <translation type="obsolete">Pesquise um directório</translation> |
||
1068 | </message> |
||
1069 | <message> |
||
9729 | cbradney | 1070 | <location filename="" line="136966688"/> |
8250 | cbradney | 1071 | <source>Build ID:</source> |
1072 | <translation type="obsolete">ID da versão:</translation> |
||
1073 | </message> |
||
1074 | <message> |
||
9729 | cbradney | 1075 | <location filename="" line="136966688"/> |
8250 | cbradney | 1076 | <source>User settings</source> |
1077 | <translation type="obsolete">Configurações de utilizador</translation> |
||
1078 | </message> |
||
1079 | <message> |
||
9729 | cbradney | 1080 | <location filename="" line="136966688"/> |
8250 | cbradney | 1081 | <source>%1 pt</source> |
1082 | <translation type="obsolete">%1 pt</translation> |
||
1083 | </message> |
||
1084 | <message> |
||
9729 | cbradney | 1085 | <location filename="" line="136966688"/> |
8250 | cbradney | 1086 | <source>&%1 %</source> |
1087 | <translation type="obsolete">&%1 %</translation> |
||
1088 | </message> |
||
1089 | <message> |
||
9729 | cbradney | 1090 | <location filename="" line="136966688"/> |
8250 | cbradney | 1091 | <source>S&tyles...</source> |
1092 | <translation type="obsolete">E&stilos...</translation> |
||
1093 | </message> |
||
1094 | <message> |
||
9729 | cbradney | 1095 | <location filename="" line="136966688"/> |
8250 | cbradney | 1096 | <source>F&ill Color:</source> |
1097 | <translation type="obsolete">Cor do preench&imento:</translation> |
||
1098 | </message> |
||
1099 | <message> |
||
9729 | cbradney | 1100 | <location filename="" line="136966688"/> |
8250 | cbradney | 1101 | <source>&100%</source> |
1102 | <translation type="obsolete">&100%</translation> |
||
1103 | </message> |
||
1104 | <message> |
||
9729 | cbradney | 1105 | <location filename="" line="136966688"/> |
8250 | cbradney | 1106 | <source>&200%</source> |
1107 | <translation type="obsolete">&200%</translation> |
||
1108 | </message> |
||
1109 | <message> |
||
9729 | cbradney | 1110 | <location filename="" line="136966688"/> |
8250 | cbradney | 1111 | <source>&Copy</source> |
1112 | <translation type="obsolete">&Copiar</translation> |
||
1113 | </message> |
||
1114 | <message> |
||
9729 | cbradney | 1115 | <location filename="" line="136966688"/> |
8250 | cbradney | 1116 | <source>&Done</source> |
1117 | <translation type="obsolete">&Feito</translation> |
||
1118 | </message> |
||
1119 | <message> |
||
9729 | cbradney | 1120 | <location filename="" line="136966688"/> |
8250 | cbradney | 1121 | <source>&Edit</source> |
1122 | <translation type="obsolete">&Editar</translation> |
||
1123 | </message> |
||
1124 | <message> |
||
9729 | cbradney | 1125 | <location filename="" line="136966688"/> |
8250 | cbradney | 1126 | <source>+strikeout </source> |
1127 | <translation type="obsolete">+riscado </translation> |
||
1128 | </message> |
||
1129 | <message> |
||
9729 | cbradney | 1130 | <location filename="" line="136966688"/> |
8250 | cbradney | 1131 | <source>&Exit</source> |
1132 | <translation type="obsolete">&Sair</translation> |
||
1133 | </message> |
||
1134 | <message> |
||
9729 | cbradney | 1135 | <location filename="" line="136966688"/> |
8250 | cbradney | 1136 | <source>&File</source> |
1137 | <translation type="obsolete">&Ficheiro</translation> |
||
1138 | </message> |
||
1139 | <message> |
||
9729 | cbradney | 1140 | <location filename="" line="136966688"/> |
8250 | cbradney | 1141 | <source>&Font</source> |
1142 | <translation type="obsolete">&Fonte</translation> |
||
1143 | </message> |
||
1144 | <message> |
||
9729 | cbradney | 1145 | <location filename="" line="136966688"/> |
8250 | cbradney | 1146 | <source>&Gap:</source> |
1147 | <translation type="obsolete">&Espaço:</translation> |
||
1148 | </message> |
||
1149 | <message> |
||
9729 | cbradney | 1150 | <location filename="" line="136966688"/> |
8250 | cbradney | 1151 | <source>&Help</source> |
1152 | <translation type="obsolete">&Ajuda</translation> |
||
1153 | </message> |
||
1154 | <message> |
||
9729 | cbradney | 1155 | <location filename="" line="136966688"/> |
8250 | cbradney | 1156 | <source>&Item</source> |
1157 | <translation type="obsolete">&Item</translation> |
||
1158 | </message> |
||
1159 | <message> |
||
9729 | cbradney | 1160 | <location filename="" line="136966688"/> |
8250 | cbradney | 1161 | <source>&Left</source> |
1162 | <translation type="obsolete">&Esquerda</translation> |
||
1163 | </message> |
||
1164 | <message> |
||
9729 | cbradney | 1165 | <location filename="" line="136966688"/> |
8250 | cbradney | 1166 | <source>&Line</source> |
1167 | <translation type="obsolete">&Linha</translation> |
||
1168 | </message> |
||
1169 | <message> |
||
9729 | cbradney | 1170 | <location filename="" line="136966688"/> |
8250 | cbradney | 1171 | <source>&Load</source> |
1172 | <translation type="obsolete">&Abrir</translation> |
||
1173 | </message> |
||
1174 | <message> |
||
9729 | cbradney | 1175 | <location filename="" line="136966688"/> |
8250 | cbradney | 1176 | <source>&Misc</source> |
1177 | <translation type="obsolete">&Misc</translation> |
||
1178 | </message> |
||
1179 | <message> |
||
9729 | cbradney | 1180 | <location filename="" line="136966688"/> |
8250 | cbradney | 1181 | <source>&Move</source> |
1182 | <translation type="obsolete">&Mover</translation> |
||
1183 | </message> |
||
1184 | <message> |
||
9729 | cbradney | 1185 | <location filename="" line="136966688"/> |
8250 | cbradney | 1186 | <source>&Open</source> |
1187 | <translation type="obsolete">&Abrir</translation> |
||
1188 | </message> |
||
1189 | <message> |
||
9729 | cbradney | 1190 | <location filename="" line="136966688"/> |
8250 | cbradney | 1191 | <source>&Page</source> |
1192 | <translation type="obsolete">&Página</translation> |
||
1193 | </message> |
||
1194 | <message> |
||
9729 | cbradney | 1195 | <location filename="" line="136966688"/> |
8250 | cbradney | 1196 | <source>&Red:</source> |
1197 | <translation type="obsolete">Ve&rmelho:</translation> |
||
1198 | </message> |
||
1199 | <message> |
||
9729 | cbradney | 1200 | <location filename="" line="136966688"/> |
8250 | cbradney | 1201 | <source>&Redo</source> |
1202 | <translation type="obsolete">&Refazer</translation> |
||
1203 | </message> |
||
1204 | <message> |
||
9729 | cbradney | 1205 | <location filename="" line="136966688"/> |
8250 | cbradney | 1206 | <source>&Quit</source> |
1207 | <translation type="obsolete">&Sair</translation> |
||
1208 | </message> |
||
1209 | <message> |
||
9729 | cbradney | 1210 | <location filename="" line="136966688"/> |
8250 | cbradney | 1211 | <source>&Sat:</source> |
1212 | <translation type="obsolete">&Sat:</translation> |
||
1213 | </message> |
||
1214 | <message> |
||
9729 | cbradney | 1215 | <location filename="" line="136966688"/> |
8250 | cbradney | 1216 | <source>&Save</source> |
1217 | <translation type="obsolete">&Salvar</translation> |
||
1218 | </message> |
||
1219 | <message> |
||
9729 | cbradney | 1220 | <location filename="" line="136966688"/> |
8250 | cbradney | 1221 | <source>&Size</source> |
1222 | <translation type="obsolete">&Tamanho</translation> |
||
1223 | </message> |
||
1224 | <message> |
||
9729 | cbradney | 1225 | <location filename="" line="136966688"/> |
8250 | cbradney | 1226 | <source>&Text</source> |
1227 | <translation type="obsolete">&Texto</translation> |
||
1228 | </message> |
||
1229 | <message> |
||
9729 | cbradney | 1230 | <location filename="" line="136966688"/> |
8250 | cbradney | 1231 | <source>&Tile</source> |
1232 | <translation type="obsolete">&Lado-a-lado</translation> |
||
1233 | </message> |
||
1234 | <message> |
||
9729 | cbradney | 1235 | <location filename="" line="136966688"/> |
8250 | cbradney | 1236 | <source>&Top:</source> |
1237 | <translation type="obsolete">&Superior:</translation> |
||
1238 | </message> |
||
1239 | <message> |
||
9729 | cbradney | 1240 | <location filename="" line="136966688"/> |
8250 | cbradney | 1241 | <source>&Undo</source> |
1242 | <translation type="obsolete">&Desfazer</translation> |
||
1243 | </message> |
||
1244 | <message> |
||
9729 | cbradney | 1245 | <location filename="" line="136966688"/> |
8250 | cbradney | 1246 | <source>&Val:</source> |
1247 | <translation type="obsolete">&Val:</translation> |
||
1248 | </message> |
||
1249 | <message> |
||
9729 | cbradney | 1250 | <location filename="" line="136966688"/> |
8250 | cbradney | 1251 | <source>&View</source> |
1252 | <translation type="obsolete">&Visualizar</translation> |
||
1253 | </message> |
||
1254 | <message> |
||
9729 | cbradney | 1255 | <location filename="" line="136966688"/> |
8250 | cbradney | 1256 | <source>filename</source> |
1257 | <translation type="obsolete">nome de ficheiro</translation> |
||
1258 | </message> |
||
1259 | <message> |
||
9729 | cbradney | 1260 | <location filename="" line="136966688"/> |
8250 | cbradney | 1261 | <source>(TAB)</source> |
1262 | <translation type="obsolete">(TAB)</translation> |
||
1263 | </message> |
||
1264 | <message> |
||
9729 | cbradney | 1265 | <location filename="" line="136966688"/> |
8250 | cbradney | 1266 | <source>Antialias text for EPS and PDF onscreen rendering</source> |
1267 | <translation type="obsolete">Suaviza o texto para a renderização no ecrã de EPS e PDF</translation> |
||
1268 | </message> |
||
1269 | <message> |
||
9729 | cbradney | 1270 | <location filename="" line="136966688"/> |
8250 | cbradney | 1271 | <source>&Compress File</source> |
1272 | <translation type="obsolete">&Compactar o ficheiro</translation> |
||
1273 | </message> |
||
1274 | <message> |
||
9729 | cbradney | 1275 | <location filename="" line="136966688"/> |
8250 | cbradney | 1276 | <source>-strikeout </source> |
1277 | <translation type="obsolete">-riscado </translation> |
||
1278 | </message> |
||
1279 | <message> |
||
9729 | cbradney | 1280 | <location filename="" line="136966688"/> |
8250 | cbradney | 1281 | <source>Load the selected shortcut set</source> |
1282 | <translation type="obsolete">Carrega o conjunto de teclas de atalho selecionado</translation> |
||
1283 | </message> |
||
1284 | <message> |
||
9729 | cbradney | 1285 | <location filename="" line="136966688"/> |
8250 | cbradney | 1286 | <source>Prepend Currency Symbol</source> |
1287 | <translation type="obsolete">Adicionar à frente do símbolo da moeda</translation> |
||
1288 | </message> |
||
1289 | <message> |
||
9729 | cbradney | 1290 | <location filename="" line="136966688"/> |
8250 | cbradney | 1291 | <source>Annotation P&roperties</source> |
1292 | <translation type="obsolete">P&ropriedades da anotação</translation> |
||
1293 | </message> |
||
1294 | <message> |
||
9729 | cbradney | 1295 | <location filename="" line="136966688"/> |
8250 | cbradney | 1296 | <source>Images:</source> |
1297 | <translation type="obsolete">Imagens:</translation> |
||
1298 | </message> |
||
1299 | <message> |
||
9729 | cbradney | 1300 | <location filename="" line="136966688"/> |
8250 | cbradney | 1301 | <source>Set fill color transparency</source> |
1302 | <translation type="obsolete">Define a cor de preenchimento da transparência</translation> |
||
1303 | </message> |
||
1304 | <message> |
||
9729 | cbradney | 1305 | <location filename="" line="136966688"/> |
8250 | cbradney | 1306 | <source>Font %1 has broken glyph %2 (charcode %3)</source> |
1307 | <translation type="obsolete">A fonte %1 possui caracteres %2 problemáticos (charcode%3)</translation> |
||
1308 | </message> |
||
1309 | <message> |
||
9729 | cbradney | 1310 | <location filename="" line="136966688"/> |
8250 | cbradney | 1311 | <source>&Add Bookmark</source> |
1312 | <translation type="obsolete">&Adicionar marcador</translation> |
||
1313 | </message> |
||
1314 | <message> |
||
9729 | cbradney | 1315 | <location filename="" line="136966688"/> |
8250 | cbradney | 1316 | <source>Loads a curve</source> |
1317 | <translation type="obsolete">Carrega uma curva</translation> |
||
1318 | </message> |
||
1319 | <message> |
||
9729 | cbradney | 1320 | <location filename="" line="136966688"/> |
8250 | cbradney | 1321 | <source>Page &Number</source> |
1322 | <translation type="obsolete">Página &número</translation> |
||
1323 | </message> |
||
1324 | <message> |
||
9729 | cbradney | 1325 | <location filename="" line="136966688"/> |
8250 | cbradney | 1326 | <source>Submit Form</source> |
1327 | <translation type="obsolete">Enviar formulário</translation> |
||
1328 | </message> |
||
1329 | <message> |
||
9729 | cbradney | 1330 | <location filename="" line="136966688"/> |
8250 | cbradney | 1331 | <source>&Update Text Frame and Exit</source> |
1332 | <translation type="obsolete">At&ualizar o quadro de texto e sair</translation> |
||
1333 | </message> |
||
1334 | <message> |
||
9729 | cbradney | 1335 | <location filename="" line="136966688"/> |
8250 | cbradney | 1336 | <source>Limit of</source> |
1337 | <translation type="obsolete">Limite de</translation> |
||
1338 | </message> |
||
1339 | <message> |
||
9729 | cbradney | 1340 | <location filename="" line="136966688"/> |
8250 | cbradney | 1341 | <source>Preview Settings</source> |
1342 | <translation type="obsolete">Configurações de visualização</translation> |
||
1343 | </message> |
||
1344 | <message> |
||
9729 | cbradney | 1345 | <location filename="" line="136966688"/> |
8250 | cbradney | 1346 | <source>Source and target are the same object.</source> |
1347 | <translation type="obsolete">A origem e o destino são os mesmos objetos.</translation> |
||
1348 | </message> |
||
1349 | <message> |
||
9729 | cbradney | 1350 | <location filename="" line="136966688"/> |
8250 | cbradney | 1351 | <source>Show Text Control Characters</source> |
1352 | <translation type="obsolete">Mostrar invisíveis de texto</translation> |
||
1353 | </message> |
||
1354 | <message> |
||
9729 | cbradney | 1355 | <location filename="" line="136966688"/> |
8250 | cbradney | 1356 | <source>Add a page numbering section to the document. The new section will be added after the currently selected section.</source> |
1357 | <translation type="obsolete">Adiciona uma seção numérica de página ao documento. A nova seção será adicionada após a atual seleção.</translation> |
||
1358 | </message> |
||
1359 | <message> |
||
9729 | cbradney | 1360 | <location filename="" line="136966688"/> |
8250 | cbradney | 1361 | <source>E&xit</source> |
1362 | <translation type="obsolete">Sai&r</translation> |
||
1363 | </message> |
||
1364 | <message> |
||
9729 | cbradney | 1365 | <location filename="" line="136966688"/> |
8250 | cbradney | 1366 | <source>CMYK:</source> |
1367 | <translation type="obsolete">CMYK</translation> |
||
1368 | </message> |
||
1369 | <message> |
||
9729 | cbradney | 1370 | <location filename="" line="136966688"/> |
8250 | cbradney | 1371 | <source>Align</source> |
1372 | <translation type="obsolete">Alinhar</translation> |
||
1373 | </message> |
||
1374 | <message> |
||
9729 | cbradney | 1375 | <location filename="" line="136966688"/> |
8250 | cbradney | 1376 | <source>Alt+A</source> |
1377 | <translation type="obsolete">Alt+T</translation> |
||
1378 | </message> |
||
1379 | <message> |
||
9729 | cbradney | 1380 | <location filename="" line="136966688"/> |
8250 | cbradney | 1381 | <source>Alt+B</source> |
1382 | <translation type="obsolete">Alt+B</translation> |
||
1383 | </message> |
||
1384 | <message> |
||
9729 | cbradney | 1385 | <location filename="" line="136966688"/> |
8250 | cbradney | 1386 | <source>Alt+C</source> |
1387 | <translation type="obsolete">Alt+C</translation> |
||
1388 | </message> |
||
1389 | <message> |
||
9729 | cbradney | 1390 | <location filename="" line="136966688"/> |
8250 | cbradney | 1391 | <source>Alt+D</source> |
1392 | <translation type="obsolete">Alt+X</translation> |
||
1393 | </message> |
||
1394 | <message> |
||
9729 | cbradney | 1395 | <location filename="" line="136966688"/> |
8250 | cbradney | 1396 | <source>Alt+E</source> |
1397 | <translation type="obsolete">Alt+E</translation> |
||
1398 | </message> |
||
1399 | <message> |
||
9729 | cbradney | 1400 | <location filename="" line="136966688"/> |
8250 | cbradney | 1401 | <source>Alt+G</source> |
1402 | <translation type="obsolete">Alt+G</translation> |
||
1403 | </message> |
||
1404 | <message> |
||
9729 | cbradney | 1405 | <location filename="" line="136966688"/> |
8250 | cbradney | 1406 | <source>Alt+H</source> |
1407 | <translation type="obsolete">Alt+H</translation> |
||
1408 | </message> |
||
1409 | <message> |
||
9729 | cbradney | 1410 | <location filename="" line="136966688"/> |
8250 | cbradney | 1411 | <source>Alt+I</source> |
1412 | <translation type="obsolete">Alt+I</translation> |
||
1413 | </message> |
||
1414 | <message> |
||
9729 | cbradney | 1415 | <location filename="" line="136966688"/> |
8250 | cbradney | 1416 | <source>Alt+K</source> |
1417 | <translation type="obsolete">Alt+K</translation> |
||
1418 | </message> |
||
1419 | <message> |
||
9729 | cbradney | 1420 | <location filename="" line="136966688"/> |
8250 | cbradney | 1421 | <source>Alt+L</source> |
1422 | <translation type="obsolete">Alt+L</translation> |
||
1423 | </message> |
||
1424 | <message> |
||
9729 | cbradney | 1425 | <location filename="" line="136966688"/> |
8250 | cbradney | 1426 | <source>Alt+M</source> |
1427 | <translation type="obsolete">Alt+</translation> |
||
1428 | </message> |
||
1429 | <message> |
||
9729 | cbradney | 1430 | <location filename="" line="136966688"/> |
8250 | cbradney | 1431 | <source>Alt+N</source> |
1432 | <translation type="obsolete">Alt+N</translation> |
||
1433 | </message> |
||
1434 | <message> |
||
9729 | cbradney | 1435 | <location filename="" line="136966688"/> |
8250 | cbradney | 1436 | <source>Alt+O</source> |
1437 | <translation type="obsolete">Alt+O</translation> |
||
1438 | </message> |
||
1439 | <message> |
||
9729 | cbradney | 1440 | <location filename="" line="136966688"/> |
8250 | cbradney | 1441 | <source>Alt+P</source> |
1442 | <translation type="obsolete">Alt+P</translation> |
||
1443 | </message> |
||
1444 | <message> |
||
9729 | cbradney | 1445 | <location filename="" line="136966688"/> |
8250 | cbradney | 1446 | <source>Alt+R</source> |
1447 | <translation type="obsolete">Alt+R</translation> |
||
1448 | </message> |
||
1449 | <message> |
||
9729 | cbradney | 1450 | <location filename="" line="136966688"/> |
8250 | cbradney | 1451 | <source>Alt+S</source> |
1452 | <translation type="obsolete">Alt+S</translation> |
||
1453 | </message> |
||
1454 | <message> |
||
9729 | cbradney | 1455 | <location filename="" line="136966688"/> |
8250 | cbradney | 1456 | <source>Alt+T</source> |
1457 | <translation type="obsolete">Alt+T</translation> |
||
1458 | </message> |
||
1459 | <message> |
||
9729 | cbradney | 1460 | <location filename="" line="136966688"/> |
8250 | cbradney | 1461 | <source>Alt+U</source> |
1462 | <translation type="obsolete">Alt+U</translation> |
||
1463 | </message> |
||
1464 | <message> |
||
9729 | cbradney | 1465 | <location filename="" line="136966688"/> |
8250 | cbradney | 1466 | <source>Alt+W</source> |
1467 | <translation type="obsolete">Alt+W</translation> |
||
1468 | </message> |
||
1469 | <message> |
||
9729 | cbradney | 1470 | <location filename="" line="136966688"/> |
8250 | cbradney | 1471 | <source>Alt+Y</source> |
1472 | <translation type="obsolete">Alt+Y</translation> |
||
1473 | </message> |
||
1474 | <message> |
||
9729 | cbradney | 1475 | <location filename="" line="136966688"/> |
8250 | cbradney | 1476 | <source>Angle</source> |
1477 | <translation type="obsolete">Ângulo</translation> |
||
1478 | </message> |
||
1479 | <message> |
||
9729 | cbradney | 1480 | <location filename="" line="136966688"/> |
8250 | cbradney | 1481 | <source>Apply</source> |
1482 | <translation type="obsolete">Aplicar</translation> |
||
1483 | </message> |
||
1484 | <message> |
||
9729 | cbradney | 1485 | <location filename="" line="136966688"/> |
8250 | cbradney | 1486 | <source>April</source> |
1487 | <translation type="obsolete">Abril</translation> |
||
1488 | </message> |
||
1489 | <message> |
||
9729 | cbradney | 1490 | <location filename="" line="136966688"/> |
8250 | cbradney | 1491 | <source>Black</source> |
1492 | <translation type="obsolete">Preto</translation> |
||
1493 | </message> |
||
1494 | <message> |
||
9729 | cbradney | 1495 | <location filename="" line="136966688"/> |
8250 | cbradney | 1496 | <source>Block</source> |
1497 | <translation type="obsolete">Bloco</translation> |
||
1498 | </message> |
||
1499 | <message> |
||
9729 | cbradney | 1500 | <location filename="" line="136966688"/> |
8250 | cbradney | 1501 | <source>Cards</source> |
1502 | <translation type="obsolete">Cartões</translation> |
||
1503 | </message> |
||
1504 | <message> |
||
9729 | cbradney | 1505 | <location filename="" line="136966688"/> |
8250 | cbradney | 1506 | <source>Check</source> |
1507 | <translation type="obsolete">X</translation> |
||
1508 | </message> |
||
1509 | <message> |
||
9729 | cbradney | 1510 | <location filename="" line="136966688"/> |
8250 | cbradney | 1511 | <source>Clear</source> |
1512 | <translation type="obsolete">Limpar</translation> |
||
1513 | </message> |
||
1514 | <message> |
||
9729 | cbradney | 1515 | <location filename="" line="136966688"/> |
8250 | cbradney | 1516 | <source>Clone</source> |
1517 | <translation type="obsolete">Clonar</translation> |
||
1518 | </message> |
||
1519 | <message> |
||
9729 | cbradney | 1520 | <location filename="" line="136966688"/> |
8250 | cbradney | 1521 | <source>Close</source> |
1522 | <translation type="obsolete">Fechar</translation> |
||
1523 | </message> |
||
1524 | <message> |
||
9729 | cbradney | 1525 | <location filename="" line="136966688"/> |
8250 | cbradney | 1526 | <source>Color</source> |
1527 | <translation type="obsolete">Cor</translation> |
||
1528 | </message> |
||
1529 | <message> |
||
9729 | cbradney | 1530 | <location filename="" line="136966688"/> |
8250 | cbradney | 1531 | <source>Comma</source> |
1532 | <translation type="obsolete">Vírgula</translation> |
||
1533 | </message> |
||
1534 | <message> |
||
9729 | cbradney | 1535 | <location filename="" line="136966688"/> |
8250 | cbradney | 1536 | <source>Date:</source> |
1537 | <translation type="obsolete">Data:</translation> |
||
1538 | </message> |
||
1539 | <message> |
||
9729 | cbradney | 1540 | <location filename="" line="136966688"/> |
8250 | cbradney | 1541 | <source>Cross</source> |
1542 | <translation type="obsolete">Cruz</translation> |
||
1543 | </message> |
||
1544 | <message> |
||
9729 | cbradney | 1545 | <location filename="" line="136966688"/> |
8250 | cbradney | 1546 | <source>Crown</source> |
1547 | <translation type="obsolete">Coroa</translation> |
||
1548 | </message> |
||
1549 | <message> |
||
9729 | cbradney | 1550 | <location filename="" line="136966688"/> |
8250 | cbradney | 1551 | <source>Ctrl+</source> |
1552 | <translation type="obsolete">Ctrl+</translation> |
||
1553 | </message> |
||
1554 | <message> |
||
9729 | cbradney | 1555 | <location filename="" line="136966688"/> |
8250 | cbradney | 1556 | <source>&Binding:</source> |
1557 | <translation type="obsolete">&Encadernação:</translation> |
||
1558 | </message> |
||
1559 | <message> |
||
9729 | cbradney | 1560 | <location filename="" line="136966688"/> |
8250 | cbradney | 1561 | <source>Czech</source> |
1562 | <translation type="obsolete">Tcheco</translation> |
||
1563 | </message> |
||
1564 | <message> |
||
9729 | cbradney | 1565 | <location filename="" line="136966688"/> |
8250 | cbradney | 1566 | <source>Dutch</source> |
1567 | <translation type="obsolete">Holandês</translation> |
||
1568 | </message> |
||
1569 | <message> |
||
9729 | cbradney | 1570 | <location filename="" line="136966688"/> |
8250 | cbradney | 1571 | <source>Reload the default Scribus shortcuts</source> |
1572 | <translation type="obsolete">Recarrega o padrão de teclas de atalhos do Scribus</translation> |
||
1573 | </message> |
||
1574 | <message> |
||
9729 | cbradney | 1575 | <location filename="" line="136966688"/> |
8250 | cbradney | 1576 | <source>Email</source> |
1577 | <translation type="obsolete">E-mail</translation> |
||
1578 | </message> |
||
1579 | <message> |
||
9729 | cbradney | 1580 | <location filename="" line="136966688"/> |
8250 | cbradney | 1581 | <source>Error</source> |
1582 | <translation type="obsolete">Erro</translation> |
||
1583 | </message> |
||
1584 | <message> |
||
9729 | cbradney | 1585 | <location filename="" line="136966688"/> |
8250 | cbradney | 1586 | <source>Saving PDF</source> |
1587 | <translation type="obsolete">Salvando PDF</translation> |
||
1588 | </message> |
||
1589 | <message> |
||
9729 | cbradney | 1590 | <location filename="" line="136966688"/> |
8250 | cbradney | 1591 | <source>On Focus</source> |
1592 | <translation type="obsolete">On focus</translation> |
||
1593 | </message> |
||
1594 | <message> |
||
9729 | cbradney | 1595 | <location filename="" line="136966688"/> |
8250 | cbradney | 1596 | <source>Folds</source> |
1597 | <translation type="obsolete">Dobras</translation> |
||
1598 | </message> |
||
1599 | <message> |
||
9729 | cbradney | 1600 | <location filename="" line="136966688"/> |
8250 | cbradney | 1601 | <source>Font:</source> |
1602 | <translation type="obsolete">Fonte:</translation> |
||
1603 | </message> |
||
1604 | <message> |
||
9729 | cbradney | 1605 | <location filename="" line="136966688"/> |
8250 | cbradney | 1606 | <source>Fonts</source> |
1607 | <translation type="obsolete">Fontes</translation> |
||
1608 | </message> |
||
1609 | <message> |
||
9729 | cbradney | 1610 | <location filename="" line="136966688"/> |
8250 | cbradney | 1611 | <source>Form1</source> |
1612 | <translation type="obsolete">Formulário1</translation> |
||
1613 | </message> |
||
1614 | <message> |
||
9729 | cbradney | 1615 | <location filename="" line="136966688"/> |
8250 | cbradney | 1616 | <source>Page Placement</source> |
1617 | <translation type="obsolete">Colocação da página</translation> |
||
1618 | </message> |
||
1619 | <message> |
||
9729 | cbradney | 1620 | <location filename="" line="136966688"/> |
8250 | cbradney | 1621 | <source>Dingbats</source> |
1622 | <translation type="obsolete">Bobeiras</translation> |
||
1623 | </message> |
||
1624 | <message> |
||
9729 | cbradney | 1625 | <location filename="" line="136966688"/> |
8250 | cbradney | 1626 | <source>From:</source> |
1627 | <translation type="obsolete">De:</translation> |
||
1628 | </message> |
||
1629 | <message> |
||
9729 | cbradney | 1630 | <location filename="" line="136966688"/> |
8250 | cbradney | 1631 | <source>Go To</source> |
1632 | <translation type="obsolete">Ir para</translation> |
||
1633 | </message> |
||
1634 | <message> |
||
9729 | cbradney | 1635 | <location filename="" line="136966688"/> |
8250 | cbradney | 1636 | <source>Greek</source> |
1637 | <translation type="obsolete">Grego</translation> |
||
1638 | </message> |
||
1639 | <message> |
||
9729 | cbradney | 1640 | <location filename="" line="136966688"/> |
8250 | cbradney | 1641 | <source>Group</source> |
1642 | <translation type="obsolete">Agrupar</translation> |
||
1643 | </message> |
||
1644 | <message> |
||
9729 | cbradney | 1645 | <location filename="" line="136966688"/> |
8250 | cbradney | 1646 | <source>Guide</source> |
1647 | <translation type="obsolete">Guias</translation> |
||
1648 | </message> |
||
1649 | <message> |
||
9729 | cbradney | 1650 | <location filename="" line="136966688"/> |
8250 | cbradney | 1651 | <source>Hu&e:</source> |
1652 | <translation type="obsolete">&Matiz:</translation> |
||
1653 | </message> |
||
1654 | <message> |
||
9729 | cbradney | 1655 | <location filename="" line="136966688"/> |
8250 | cbradney | 1656 | <source>Icons</source> |
1657 | <translation type="obsolete">Ícones</translation> |
||
1658 | </message> |
||
1659 | <message> |
||
9729 | cbradney | 1660 | <location filename="" line="136966688"/> |
8250 | cbradney | 1661 | <source>In&fo</source> |
1662 | <translation type="obsolete">In&formações</translation> |
||
1663 | </message> |
||
1664 | <message> |
||
9729 | cbradney | 1665 | <location filename="" line="136966688"/> |
8250 | cbradney | 1666 | <source>Image</source> |
1667 | <translation type="obsolete">Imagem</translation> |
||
1668 | </message> |
||
1669 | <message> |
||
9729 | cbradney | 1670 | <location filename="" line="136966688"/> |
8250 | cbradney | 1671 | <source>Move to back</source> |
1672 | <translation type="obsolete">Move para trás</translation> |
||
1673 | </message> |
||
1674 | <message> |
||
9729 | cbradney | 1675 | <location filename="" line="136966688"/> |
8250 | cbradney | 1676 | <source>Minimize</source> |
1677 | <translation type="obsolete">Minimizar</translation> |
||
1678 | </message> |
||
1679 | <message> |
||
9729 | cbradney | 1680 | <location filename="" line="136966688"/> |
8250 | cbradney | 1681 | <source>Inset</source> |
1682 | <translation type="obsolete">Recuada</translation> |
||
1683 | </message> |
||
1684 | <message> |
||
9729 | cbradney | 1685 | <location filename="" line="136966688"/> |
8250 | cbradney | 1686 | <source>Distribute left sides equidistantly</source> |
1687 | <translation type="obsolete">Distribuir os lados esquerdos uniformemente</translation> |
||
1688 | </message> |
||
1689 | <message> |
||
9729 | cbradney | 1690 | <location filename="" line="136966688"/> |
8250 | cbradney | 1691 | <source>Items</source> |
1692 | <translation type="obsolete">Ítems</translation> |
||
1693 | </message> |
||
1694 | <message> |
||
9729 | cbradney | 1695 | <location filename="" line="136966688"/> |
8250 | cbradney | 1696 | <source>R&ound |
1697 | Corners:</source> |
||
1698 | <translation type="obsolete">C&antos |
||
1699 | Arredondados:</translation> |
||
1700 | </message> |
||
1701 | <message> |
||
9729 | cbradney | 1702 | <location filename="" line="136966688"/> |
8250 | cbradney | 1703 | <source>Print Layer - Uncheck to disable printing. </source> |
1704 | <translation type="obsolete">Imprimir camada - desassinale para desactivar a impressão</translation> |
||
1705 | </message> |
||
1706 | <message> |
||
9729 | cbradney | 1707 | <location filename="" line="136966688"/> |
8250 | cbradney | 1708 | <source>An object with the requested name already exists.</source> |
1709 | <translation type="obsolete">Já existe um objeto com o nome requisitado.</translation> |
||
1710 | </message> |
||
1711 | <message> |
||
9729 | cbradney | 1712 | <location filename="" line="136966688"/> |
8250 | cbradney | 1713 | <source>Latin</source> |
1714 | <translation type="obsolete">Latim</translation> |
||
1715 | </message> |
||
1716 | <message> |
||
9729 | cbradney | 1717 | <location filename="" line="136966688"/> |
8250 | cbradney | 1718 | <source>Even Pages</source> |
1719 | <translation type="obsolete">Páginas pares</translation> |
||
1720 | </message> |
||
1721 | <message> |
||
9729 | cbradney | 1722 | <location filename="" line="136966688"/> |
8250 | cbradney | 1723 | <source>Left:</source> |
1724 | <translation type="obsolete">Esquerda:</translation> |
||
1725 | </message> |
||
1726 | <message> |
||
9729 | cbradney | 1727 | <location filename="" line="136966688"/> |
8250 | cbradney | 1728 | <source>Legal</source> |
1729 | <translation type="obsolete">Ofício</translation> |
||
1730 | </message> |
||
1731 | <message> |
||
9729 | cbradney | 1732 | <location filename="" line="136966688"/> |
8250 | cbradney | 1733 | <source>Level</source> |
1734 | <translation type="obsolete">Nível</translation> |
||
1735 | </message> |
||
1736 | <message> |
||
9729 | cbradney | 1737 | <location filename="" line="136966688"/> |
8250 | cbradney | 1738 | <source>Lines</source> |
1739 | <translation type="obsolete">Linhas</translation> |
||
1740 | </message> |
||
1741 | <message> |
||
9729 | cbradney | 1742 | <location filename="" line="136966688"/> |
8250 | cbradney | 1743 | <source>March</source> |
1744 | <translation type="obsolete">Março</translation> |
||
1745 | </message> |
||
1746 | <message> |
||
9729 | cbradney | 1747 | <location filename="" line="136966688"/> |
8250 | cbradney | 1748 | <source>Marks</source> |
1749 | <translation type="obsolete">Miras</translation> |
||
1750 | </message> |
||
1751 | <message> |
||
9729 | cbradney | 1752 | <location filename="" line="136966688"/> |
8250 | cbradney | 1753 | <source>Luminosity</source> |
1754 | <translation type="obsolete">Luminosidade</translation> |
||
1755 | </message> |
||
1756 | <message> |
||
9729 | cbradney | 1757 | <location filename="" line="136966688"/> |
8250 | cbradney | 1758 | <source>Menus</source> |
1759 | <translation type="obsolete">Menus</translation> |
||
1760 | </message> |
||
1761 | <message> |
||
9729 | cbradney | 1762 | <location filename="" line="136966688"/> |
8250 | cbradney | 1763 | <source>Meta+</source> |
1764 | <translation type="obsolete">Meta+</translation> |
||
1765 | </message> |
||
1766 | <message> |
||
9729 | cbradney | 1767 | <location filename="" line="136966688"/> |
8250 | cbradney | 1768 | <source>Name:</source> |
1769 | <translation type="obsolete">Nome:</translation> |
||
1770 | </message> |
||
1771 | <message> |
||
9729 | cbradney | 1772 | <location filename="" line="136966688"/> |
8250 | cbradney | 1773 | <source>Even Pages only</source> |
1774 | <translation type="obsolete">Somente páginas pares</translation> |
||
1775 | </message> |
||
1776 | <message> |
||
9729 | cbradney | 1777 | <location filename="" line="136966688"/> |
8250 | cbradney | 1778 | <source>Never</source> |
1779 | <translation type="obsolete">Nunca</translation> |
||
1780 | </message> |
||
1781 | <message> |
||
9729 | cbradney | 1782 | <location filename="" line="136966688"/> |
8250 | cbradney | 1783 | <source>Nodes</source> |
1784 | <translation type="obsolete">Nós</translation> |
||
1785 | </message> |
||
1786 | <message> |
||
9729 | cbradney | 1787 | <location filename="" line="136966688"/> |
8250 | cbradney | 1788 | <source>Page </source> |
1789 | <translation type="obsolete">Página </translation> |
||
1790 | </message> |
||
1791 | <message> |
||
9729 | cbradney | 1792 | <location filename="" line="136966688"/> |
8250 | cbradney | 1793 | <source>Page:</source> |
1794 | <translation type="obsolete">Página:</translation> |
||
1795 | </message> |
||
1796 | <message> |
||
9729 | cbradney | 1797 | <location filename="" line="136966688"/> |
8250 | cbradney | 1798 | <source>Paste</source> |
1799 | <translation type="obsolete">Colar</translation> |
||
1800 | </message> |
||
1801 | <message> |
||
9729 | cbradney | 1802 | <location filename="" line="136966688"/> |
8250 | cbradney | 1803 | <source>Paths</source> |
1804 | <translation type="obsolete">Caminhos</translation> |
||
1805 | </message> |
||
1806 | <message> |
||
9729 | cbradney | 1807 | <location filename="" line="136966688"/> |
8250 | cbradney | 1808 | <source>Other</source> |
1809 | <translation type="obsolete">Outro</translation> |
||
1810 | </message> |
||
1811 | <message> |
||
9729 | cbradney | 1812 | <location filename="" line="136966688"/> |
8250 | cbradney | 1813 | <source>T&ype</source> |
1814 | <translation type="obsolete">T&ipo</translation> |
||
1815 | </message> |
||
1816 | <message> |
||
9729 | cbradney | 1817 | <location filename="" line="136966688"/> |
8250 | cbradney | 1818 | <source>Plain</source> |
1819 | <translation type="obsolete">Texto simples</translation> |
||
1820 | </message> |
||
1821 | <message> |
||
9729 | cbradney | 1822 | <location filename="" line="136966688"/> |
8250 | cbradney | 1823 | <source>Print</source> |
1824 | <translation type="obsolete">Imprimir</translation> |
||
1825 | </message> |
||
1826 | <message> |
||
9729 | cbradney | 1827 | <location filename="" line="136966688"/> |
8250 | cbradney | 1828 | <source>File %1 is not in an acceptable format</source> |
1829 | <translation type="obsolete">O ficheiro %1 não está num formato aceitável</translation> |
||
1830 | </message> |
||
1831 | <message> |
||
9729 | cbradney | 1832 | <location filename="" line="136966688"/> |
8250 | cbradney | 1833 | <source>Insert PDF Push Button</source> |
1834 | <translation type="obsolete">Inserir um botão de acção PDF</translation> |
||
1835 | </message> |
||
1836 | <message> |
||
9729 | cbradney | 1837 | <location filename="" line="136966688"/> |
8250 | cbradney | 1838 | <source>Range</source> |
1839 | <translation type="obsolete">Intervalo</translation> |
||
1840 | </message> |
||
1841 | <message> |
||
9729 | cbradney | 1842 | <location filename="" line="136966688"/> |
8250 | cbradney | 1843 | <source>Color profile that you have generated or received from the manufacturer. |
1844 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
||
1845 | <translation type="obsolete">O perfil de cores que gerou ou recebeu do fabricante. |
||
1846 | Este perfil deve ser específico para o seu monitor e não genérico (ex. sRGB).</translation> |
||
1847 | </message> |
||
1848 | <message> |
||
9729 | cbradney | 1849 | <location filename="" line="136966688"/> |
8250 | cbradney | 1850 | <source>Ready</source> |
1851 | <translation type="obsolete">Pronto</translation> |
||
1852 | </message> |
||
1853 | <message> |
||
9729 | cbradney | 1854 | <location filename="" line="136966688"/> |
8250 | cbradney | 1855 | <source>Quote</source> |
1856 | <translation type="obsolete">Citação</translation> |
||
1857 | </message> |
||
1858 | <message> |
||
9729 | cbradney | 1859 | <location filename="" line="136966688"/> |
8250 | cbradney | 1860 | <source>Reset</source> |
1861 | <translation type="obsolete">Reconfigurar</translation> |
||
1862 | </message> |
||
1863 | <message> |
||
9729 | cbradney | 1864 | <location filename="" line="136966688"/> |
8250 | cbradney | 1865 | <source>Right</source> |
1866 | <translation type="obsolete">Direita</translation> |
||
1867 | </message> |
||
1868 | <message> |
||
9729 | cbradney | 1869 | <location filename="" line="136966688"/> |
8250 | cbradney | 1870 | <source>Round</source> |
1871 | <translation type="obsolete">Arredondado</translation> |
||
1872 | </message> |
||
1873 | <message> |
||
9729 | cbradney | 1874 | <location filename="" line="136966688"/> |
8250 | cbradney | 1875 | <source>3rd. Split</source> |
1876 | <translation type="obsolete">3° Separação</translation> |
||
1877 | </message> |
||
1878 | <message> |
||
9729 | cbradney | 1879 | <location filename="" line="136966688"/> |
8250 | cbradney | 1880 | <source>Shade</source> |
1881 | <translation type="obsolete">Intensidade</translation> |
||
1882 | </message> |
||
1883 | <message> |
||
9729 | cbradney | 1884 | <location filename="" line="136966688"/> |
8250 | cbradney | 1885 | <source>Shape</source> |
1886 | <translation type="obsolete">Forma</translation> |
||
1887 | </message> |
||
1888 | <message> |
||
9729 | cbradney | 1889 | <location filename="" line="136966688"/> |
8250 | cbradney | 1890 | <source>4th. Split</source> |
1891 | <translation type="obsolete">4° Separação</translation> |
||
1892 | </message> |
||
1893 | <message> |
||
9729 | cbradney | 1894 | <location filename="" line="136966688"/> |
8250 | cbradney | 1895 | <source>Shift</source> |
1896 | <translation type="obsolete">Shift</translation> |
||
1897 | </message> |
||
1898 | <message> |
||
9729 | cbradney | 1899 | <location filename="" line="136966688"/> |
8250 | cbradney | 1900 | <source>Shown</source> |
1901 | <translation type="obsolete">Exibir</translation> |
||
1902 | </message> |
||
1903 | <message> |
||
9729 | cbradney | 1904 | <location filename="" line="136966688"/> |
8250 | cbradney | 1905 | <source>&Inside:</source> |
1906 | <translation type="obsolete">&Interna:</translation> |
||
1907 | </message> |
||
1908 | <message> |
||
9729 | cbradney | 1909 | <location filename="" line="136966688"/> |
8250 | cbradney | 1910 | <source>1st. Split</source> |
1911 | <translation type="obsolete">1° Separação</translation> |
||
1912 | </message> |
||
1913 | <message> |
||
9729 | cbradney | 1914 | <location filename="" line="136966688"/> |
8250 | cbradney | 1915 | <source>Inside:</source> |
1916 | <translation type="obsolete">Interna:</translation> |
||
1917 | </message> |
||
1918 | <message> |
||
9729 | cbradney | 1919 | <location filename="" line="136966688"/> |
8250 | cbradney | 1920 | <source>Signs</source> |
1921 | <translation type="obsolete">Letreiros</translation> |
||
1922 | </message> |
||
1923 | <message> |
||
9729 | cbradney | 1924 | <location filename="" line="136966688"/> |
8250 | cbradney | 1925 | <source>2nd. Split</source> |
1926 | <translation type="obsolete">2° Separação</translation> |
||
1927 | </message> |
||
1928 | <message> |
||
9729 | cbradney | 1929 | <location filename="" line="136966688"/> |
8250 | cbradney | 1930 | <source>Size:</source> |
1931 | <translation type="obsolete">Tamanho:</translation> |
||
1932 | </message> |
||
1933 | <message> |
||
9729 | cbradney | 1934 | <location filename="" line="136966688"/> |
8250 | cbradney | 1935 | <source>Exiting now.</source> |
1936 | <translation type="obsolete">Saindo agora.</translation> |
||
1937 | </message> |
||
1938 | <message> |
||
9729 | cbradney | 1939 | <location filename="" line="136966688"/> |
8250 | cbradney | 1940 | <source>Solid</source> |
1941 | <translation type="obsolete">Sólido</translation> |
||
1942 | </message> |
||
1943 | <message> |
||
9729 | cbradney | 1944 | <location filename="" line="136966688"/> |
8250 | cbradney | 1945 | <source>En Space</source> |
1946 | <translation type="obsolete">Espaço en</translation> |
||
1947 | </message> |
||
1948 | <message> |
||
9729 | cbradney | 1949 | <location filename="" line="136966688"/> |
8250 | cbradney | 1950 | <source>Space</source> |
1951 | <translation type="obsolete">Espaço</translation> |
||
1952 | </message> |
||
1953 | <message> |
||
9729 | cbradney | 1954 | <location filename="" line="136966688"/> |
8250 | cbradney | 1955 | <source>Split</source> |
1956 | <translation type="obsolete">Separação</translation> |
||
1957 | </message> |
||
1958 | <message> |
||
9729 | cbradney | 1959 | <location filename="" line="136966688"/> |
8250 | cbradney | 1960 | <source>Start</source> |
1961 | <translation type="obsolete">Início</translation> |
||
1962 | </message> |
||
1963 | <message> |
||
9729 | cbradney | 1964 | <location filename="" line="136966688"/> |
8250 | cbradney | 1965 | <source>instead</source> |
1966 | <translation type="obsolete">no lugar</translation> |
||
1967 | </message> |
||
1968 | <message> |
||
9729 | cbradney | 1969 | <location filename="" line="136966688"/> |
8250 | cbradney | 1970 | <source>Integer</source> |
1971 | <translation type="obsolete">Numérico</translation> |
||
1972 | </message> |
||
1973 | <message> |
||
9729 | cbradney | 1974 | <location filename="" line="136966688"/> |
8250 | cbradney | 1975 | <source>Style</source> |
1976 | <translation type="obsolete">Estilo</translation> |
||
1977 | </message> |
||
1978 | <message> |
||
9729 | cbradney | 1979 | <location filename="" line="136966688"/> |
8250 | cbradney | 1980 | <source>Text:</source> |
1981 | <translation type="obsolete">Texto:</translation> |
||
1982 | </message> |
||
1983 | <message> |
||
9729 | cbradney | 1984 | <location filename="" line="136966688"/> |
8250 | cbradney | 1985 | <source>To&p:</source> |
1986 | <translation type="obsolete">&Superior:</translation> |
||
1987 | </message> |
||
1988 | <message> |
||
9729 | cbradney | 1989 | <location filename="" line="136966688"/> |
8250 | cbradney | 1990 | <source>Tools</source> |
1991 | <translation type="obsolete">Ferramentas</translation> |
||
1992 | </message> |
||
1993 | <message> |
||
9729 | cbradney | 1994 | <location filename="" line="136966688"/> |
8250 | cbradney | 1995 | <source>Type:</source> |
1996 | <translation type="obsolete">Tipo:</translation> |
||
1997 | </message> |
||
1998 | <message> |
||
9729 | cbradney | 1999 | <location filename="" line="136966688"/> |
8250 | cbradney | 2000 | <source>Value</source> |
2001 | <translation type="obsolete">Valor</translation> |
||
2002 | </message> |
||
2003 | <message> |
||
9729 | cbradney | 2004 | <location filename="" line="136966688"/> |
8250 | cbradney | 2005 | <source>Usage</source> |
2006 | <translation type="obsolete">Uso</translation> |
||
2007 | </message> |
||
2008 | <message> |
||
9729 | cbradney | 2009 | <location filename="" line="136966688"/> |
8250 | cbradney | 2010 | <source>&Even pages</source> |
2011 | <translation type="obsolete">Páginas par&es</translation> |
||
2012 | </message> |
||
2013 | <message> |
||
9729 | cbradney | 2014 | <location filename="" line="136966688"/> |
8250 | cbradney | 2015 | <source>There are no fonts found on your system.</source> |
2016 | <translation type="obsolete">Não foram encontradas fontes no seu sistema.</translation> |
||
2017 | </message> |
||
2018 | <message> |
||
9729 | cbradney | 2019 | <location filename="" line="136966688"/> |
8250 | cbradney | 2020 | <source>Welsh</source> |
2021 | <translation type="obsolete">Galês</translation> |
||
2022 | </message> |
||
2023 | <message> |
||
9729 | cbradney | 2024 | <location filename="" line="136966688"/> |
8250 | cbradney | 2025 | <source>Clear All Text</source> |
2026 | <translation type="obsolete">Apagar todo o texto</translation> |
||
2027 | </message> |
||
2028 | <message> |
||
9729 | cbradney | 2029 | <location filename="" line="136966688"/> |
8250 | cbradney | 2030 | <source>Width</source> |
2031 | <translation type="obsolete">Largura</translation> |
||
2032 | </message> |
||
2033 | <message> |
||
9729 | cbradney | 2034 | <location filename="" line="136966688"/> |
8250 | cbradney | 2035 | <source>Draw arrows to be sure of space next the code</source> |
2036 | <translation type="obsolete">Desenha setas para reafirmar o espaço próximo ao código</translation> |
||
2037 | </message> |
||
2038 | <message> |
||
9729 | cbradney | 2039 | <location filename="" line="136966688"/> |
8250 | cbradney | 2040 | <source>Thin Space</source> |
2041 | <translation type="obsolete">Espaço fino</translation> |
||
2042 | </message> |
||
2043 | <message> |
||
9729 | cbradney | 2044 | <location filename="" line="136966688"/> |
8250 | cbradney | 2045 | <source>1, 2, 3, ...</source> |
2046 | <translation type="obsolete">1, 2, 3, ...</translation> |
||
2047 | </message> |
||
2048 | <message> |
||
9729 | cbradney | 2049 | <location filename="" line="136966688"/> |
8250 | cbradney | 2050 | <source>a, b, c, ...</source> |
2051 | <translation type="obsolete">a, b, c, ...</translation> |
||
2052 | </message> |
||
2053 | <message> |
||
9729 | cbradney | 2054 | <location filename="" line="136966688"/> |
8250 | cbradney | 2055 | <source>A, B, C, ...</source> |
2056 | <translation type="obsolete">A, B, C, ...</translation> |
||
2057 | </message> |
||
2058 | <message> |
||
9729 | cbradney | 2059 | <location filename="" line="136966688"/> |
8250 | cbradney | 2060 | <source>Some fonts used by this document have been substituted:</source> |
2061 | <translation type="obsolete">Algumas fonte utilizadas por este documento foram substituidas:</translation> |
||
2062 | </message> |
||
2063 | <message> |
||
9729 | cbradney | 2064 | <location filename="" line="136966688"/> |
8250 | cbradney | 2065 | <source>Variable number of hexadecimal characters</source> |
2066 | <translation type="obsolete">Número variável de caracteres hexadecimais</translation> |
||
2067 | </message> |
||
2068 | <message> |
||
9729 | cbradney | 2069 | <location filename="" line="136966688"/> |
8250 | cbradney | 2070 | <source>Importing failed</source> |
2071 | <translation type="obsolete">A importação falhou</translation> |
||
2072 | </message> |
||
2073 | <message> |
||
9729 | cbradney | 2074 | <location filename="" line="136966688"/> |
8250 | cbradney | 2075 | <source>&Name of Executable:</source> |
2076 | <translation type="obsolete">&Nome do executável:</translation> |
||
2077 | </message> |
||
2078 | <message> |
||
9729 | cbradney | 2079 | <location filename="" line="136966688"/> |
8250 | cbradney | 2080 | <source>&Line Styles...</source> |
2081 | <translation type="obsolete">Estilos de &linha...</translation> |
||
2082 | </message> |
||
2083 | <message> |
||
9729 | cbradney | 2084 | <location filename="" line="136966688"/> |
8250 | cbradney | 2085 | <source>Initializing...</source> |
2086 | <translation type="obsolete">Iniciando...</translation> |
||
2087 | </message> |
||
2088 | <message> |
||
9729 | cbradney | 2089 | <location filename="" line="136966688"/> |
8250 | cbradney | 2090 | <source>Page Display</source> |
2091 | <translation type="obsolete">Exibir página</translation> |
||
2092 | </message> |
||
2093 | <message> |
||
9729 | cbradney | 2094 | <location filename="" line="136966688"/> |
8250 | cbradney | 2095 | <source>Target frame links to another frame.</source> |
2096 | <translation type="obsolete">O quadro alvo associa-se a outro quadro.</translation> |
||
2097 | </message> |
||
2098 | <message> |
||
9729 | cbradney | 2099 | <location filename="" line="136966688"/> |
8250 | cbradney | 2100 | <source>Page Information</source> |
2101 | <translation type="obsolete">Informação de página</translation> |
||
2102 | </message> |
||
2103 | <message> |
||
9729 | cbradney | 2104 | <location filename="" line="136966688"/> |
8250 | cbradney | 2105 | <source>Choose a scrapbook file to import</source> |
2106 | <translation type="obsolete">Seleccione um ficheiro de Bloco de Rascunhos a importar</translation> |
||
2107 | </message> |
||
2108 | <message> |
||
9729 | cbradney | 2109 | <location filename="" line="136966688"/> |
8250 | cbradney | 2110 | <source>Double Left Guillemet</source> |
2111 | <translation type="obsolete">Guillemet dupla à esquerda</translation> |
||
2112 | </message> |
||
2113 | <message> |
||
9729 | cbradney | 2114 | <location filename="" line="136966688"/> |
8250 | cbradney | 2115 | <source>Scribus was not able to load its preferences:<br>%1<br>Default settings will be loaded.</source> |
2116 | <translation type="obsolete">O Scribus não conseguiu carregar estas preferências:<br>%1<br>As configurações padrões serão carregadas.</translation> |
||
2117 | </message> |
||
2118 | <message> |
||
9729 | cbradney | 2119 | <location filename="" line="136966688"/> |
8250 | cbradney | 2120 | <source>memcpy table: %1 %2 %3</source> |
2121 | <translation type="obsolete">tabela do memcpy : %1 %2 %3</translation> |
||
2122 | </message> |
||
2123 | <message> |
||
9729 | cbradney | 2124 | <location filename="" line="136966688"/> |
8250 | cbradney | 2125 | <source>words</source> |
2126 | <translation type="obsolete">palavras</translation> |
||
2127 | </message> |
||
2128 | <message> |
||
9729 | cbradney | 2129 | <location filename="" line="136966688"/> |
8250 | cbradney | 2130 | <source>Unable to find the requested color. You have probably selected black, gray or white. There is no way to process this color.</source> |
2131 | <translation type="obsolete">Não foi possível encontrar a cor requisitada. Você provavelmente selecionou a cor preta, cinza ou branca. Não há maneiras de processar essas cores.</translation> |
||
2132 | </message> |
||
2133 | <message> |
||
9729 | cbradney | 2134 | <location filename="" line="136966688"/> |
8250 | cbradney | 2135 | <source>Join style</source> |
2136 | <translation type="obsolete">Sem estilo</translation> |
||
2137 | </message> |
||
2138 | <message> |
||
9729 | cbradney | 2139 | <location filename="" line="136966688"/> |
8250 | cbradney | 2140 | <source>Shear the Path Vertically Down</source> |
2141 | <translation type="obsolete">Deforma o caminho verticalmente para baixo</translation> |
||
2142 | </message> |
||
2143 | <message> |
||
9729 | cbradney | 2144 | <location filename="" line="136966688"/> |
8250 | cbradney | 2145 | <source>Transparency used</source> |
2146 | <translation type="obsolete">Transparência utilizada</translation> |
||
2147 | </message> |
||
2148 | <message> |
||
9729 | cbradney | 2149 | <location filename="" line="136966688"/> |
8250 | cbradney | 2150 | <source>Align Text Left</source> |
2151 | <translation type="obsolete">Alinhar o texto à esquerda</translation> |
||
2152 | </message> |
||
2153 | <message> |
||
9729 | cbradney | 2154 | <location filename="" line="136966688"/> |
8250 | cbradney | 2155 | <source>Do not use custom line style</source> |
2156 | <translation type="obsolete">Não utiliza estilos de linhas personalizados</translation> |
||
2157 | </message> |
||
2158 | <message> |
||
9729 | cbradney | 2159 | <location filename="" line="136966688"/> |
8250 | cbradney | 2160 | <source>January</source> |
2161 | <translation type="obsolete">Janeiro</translation> |
||
2162 | </message> |
||
2163 | <message> |
||
9729 | cbradney | 2164 | <location filename="" line="136966688"/> |
8250 | cbradney | 2165 | <source>Set font height</source> |
2166 | <translation type="obsolete">Definir altura da fonte</translation> |
||
2167 | </message> |
||
2168 | <message> |
||
9729 | cbradney | 2169 | <location filename="" line="136966688"/> |
8250 | cbradney | 2170 | <source>Automatic &Line Spacing</source> |
2171 | <translation type="obsolete">Espaçamento automático de &linhas</translation> |
||
2172 | </message> |
||
2173 | <message> |
||
9729 | cbradney | 2174 | <location filename="" line="136966688"/> |
8250 | cbradney | 2175 | <source>Copyright:</source> |
2176 | <translation type="obsolete">Direitos de autor:</translation> |
||
2177 | </message> |
||
2178 | <message> |
||
9729 | cbradney | 2179 | <location filename="" line="136966688"/> |
8250 | cbradney | 2180 | <source>Send to Scrapbook</source> |
2181 | <translation type="obsolete">Enviar para o Bloco de Rascunhos</translation> |
||
2182 | </message> |
||
2183 | <message> |
||
9729 | cbradney | 2184 | <location filename="" line="136966688"/> |
8250 | cbradney | 2185 | <source>&Options...</source> |
2186 | <translation type="obsolete">&Opções...</translation> |
||
2187 | </message> |
||
2188 | <message> |
||
9729 | cbradney | 2189 | <location filename="" line="136966688"/> |
8250 | cbradney | 2190 | <source>Size of the selected font</source> |
2191 | <translation type="obsolete">Tamanho da fonte selecionada</translation> |
||
2192 | </message> |
||
2193 | <message> |
||
9729 | cbradney | 2194 | <location filename="" line="136966688"/> |
8250 | cbradney | 2195 | <source>Document page size, either a standard size or a custom size</source> |
2196 | <translation type="obsolete">Tamanho da página, pode ser um tamanho padrão ou personalizado</translation> |
||
2197 | </message> |
||
2198 | <message> |
||
9729 | cbradney | 2199 | <location filename="" line="136966688"/> |
8250 | cbradney | 2200 | <source>Cyrillic</source> |
2201 | <translation type="obsolete">Cirílico</translation> |
||
2202 | </message> |
||
2203 | <message> |
||
9729 | cbradney | 2204 | <location filename="" line="136966688"/> |
8250 | cbradney | 2205 | <source>Display Layers Tab</source> |
2206 | <translation type="obsolete">Exibir aba de camadas</translation> |
||
2207 | </message> |
||
2208 | <message> |
||
9729 | cbradney | 2209 | <location filename="" line="136966688"/> |
8250 | cbradney | 2210 | <source>Variable number of digits</source> |
2211 | <translation type="obsolete">Número de dígitos variáveis</translation> |
||
2212 | </message> |
||
2213 | <message> |
||
9729 | cbradney | 2214 | <location filename="" line="136966688"/> |
8250 | cbradney | 2215 | <source>Color not found.</source> |
2216 | <translation type="obsolete">Cor não encontrada.</translation> |
||
2217 | </message> |
||
2218 | <message> |
||
9729 | cbradney | 2219 | <location filename="" line="136966688"/> |
8250 | cbradney | 2220 | <source>Target frame is linked to by another frame.</source> |
2221 | <translation type="obsolete">O quadro alvo está associado a outro quadro.</translation> |
||
2222 | </message> |
||
2223 | <message> |
||
9729 | cbradney | 2224 | <location filename="" line="136966688"/> |
8250 | cbradney | 2225 | <source>&Save to File...</source> |
2226 | <translation type="obsolete">&Salvar para ficheiro...</translation> |
||
2227 | </message> |
||
2228 | <message> |
||
9729 | cbradney | 2229 | <location filename="" line="136966688"/> |
8250 | cbradney | 2230 | <source>Disabled</source> |
2231 | <translation type="obsolete">Desabilitado</translation> |
||
2232 | </message> |
||
2233 | <message> |
||
9729 | cbradney | 2234 | <location filename="" line="136966688"/> |
8250 | cbradney | 2235 | <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
2236 | <translation type="obsolete">Documentos (*.sla *.sla.gz *.scd *.scd.gz);;Todos os ficheiros (*)</translation> |
||
2237 | </message> |
||
2238 | <message> |
||
9729 | cbradney | 2239 | <location filename="" line="136966688"/> |
8250 | cbradney | 2240 | <source>The following programs are missing:</source> |
2241 | <translation type="obsolete">Os seguintes programas estão faltando:</translation> |
||
2242 | </message> |
||
2243 | <message> |
||
9729 | cbradney | 2244 | <location filename="" line="136966688"/> |
8250 | cbradney | 2245 | <source>Insert Bezier Curve</source> |
2246 | <translation type="obsolete">Inserir uma curva de Bezier</translation> |
||
2247 | </message> |
||
2248 | <message> |
||
9729 | cbradney | 2249 | <location filename="" line="136966688"/> |
8250 | cbradney | 2250 | <source>Baseline offset</source> |
2251 | <translation type="obsolete">&Deslocamento da pauta:</translation> |
||
2252 | </message> |
||
2253 | <message> |
||
9729 | cbradney | 2254 | <location filename="" line="136966688"/> |
8250 | cbradney | 2255 | <source>Do not show this dialog again</source> |
2256 | <translation type="obsolete">Não exibir esta janela novamente</translation> |
||
2257 | </message> |
||
2258 | <message> |
||
9729 | cbradney | 2259 | <location filename="" line="136966688"/> |
8250 | cbradney | 2260 | <source>Output &Profile:</source> |
2261 | <translation type="obsolete">&Perfil de saída:</translation> |
||
2262 | </message> |
||
2263 | <message> |
||
9729 | cbradney | 2264 | <location filename="" line="136966688"/> |
8250 | cbradney | 2265 | <source>Choose a filename to open</source> |
2266 | <translation type="obsolete">Escolha um nome de ficheiro para abrir</translation> |
||
2267 | </message> |
||
2268 | <message> |
||
9729 | cbradney | 2269 | <location filename="" line="136966688"/> |
8250 | cbradney | 2270 | <source>Default Character Style</source> |
2271 | <translation type="obsolete">Estilo de caracter padrão</translation> |
||
2272 | </message> |
||
2273 | <message> |
||
9729 | cbradney | 2274 | <location filename="" line="136966688"/> |
8250 | cbradney | 2275 | <source>Color %1 appended.</source> |
2276 | <translation type="obsolete">A cor %1 foi adicionada.</translation> |
||
2277 | </message> |
||
2278 | <message> |
||
9729 | cbradney | 2279 | <location filename="" line="136966688"/> |
8250 | cbradney | 2280 | <source>Keep aspect ratio</source> |
2281 | <translation type="obsolete">Manter proporção</translation> |
||
2282 | </message> |
||
2283 | <message> |
||
9729 | cbradney | 2284 | <location filename="" line="136966688"/> |
8250 | cbradney | 2285 | <source>Keep the X and Y scaling the same</source> |
2286 | <translation type="obsolete">Mantém a mesma escala entre X e Y</translation> |
||
2287 | </message> |
||
2288 | <message> |
||
9729 | cbradney | 2289 | <location filename="" line="136966688"/> |
8250 | cbradney | 2290 | <source>List Box</source> |
2291 | <translation type="obsolete">Caixa de listagem</translation> |
||
2292 | </message> |
||
2293 | <message> |
||
9729 | cbradney | 2294 | <location filename="" line="136966688"/> |
8250 | cbradney | 2295 | <source>Edit the text with the Story Editor</source> |
2296 | <translation type="obsolete">Editar o texto com o Editor de História</translation> |
||
2297 | </message> |
||
2298 | <message> |
||
9729 | cbradney | 2299 | <location filename="" line="136966688"/> |
8250 | cbradney | 2300 | <source>Collecting...</source> |
2301 | <translation type="obsolete">Recolhendo...</translation> |
||
2302 | </message> |
||
2303 | <message> |
||
9729 | cbradney | 2304 | <location filename="" line="136966688"/> |
8250 | cbradney | 2305 | <source>Italian</source> |
2306 | <translation type="obsolete">Italiano</translation> |
||
2307 | </message> |
||
2308 | <message> |
||
9729 | cbradney | 2309 | <location filename="" line="136966688"/> |
8250 | cbradney | 2310 | <source>Write: %1</source> |
2311 | <translation type="obsolete">Escrever: %1</translation> |
||
2312 | </message> |
||
2313 | <message> |
||
9729 | cbradney | 2314 | <location filename="" line="136966688"/> |
8250 | cbradney | 2315 | <source>Do you really want to lose all your changes?</source> |
2316 | <translation type="obsolete">Você realmente deseja perder todas as suas alterações?</translation> |
||
2317 | </message> |
||
2318 | <message> |
||
9729 | cbradney | 2319 | <location filename="" line="136966688"/> |
8250 | cbradney | 2320 | <source>Imports SVG Files</source> |
2321 | <translation type="obsolete">Importa ficheiros SVG</translation> |
||
2322 | </message> |
||
2323 | <message> |
||
9729 | cbradney | 2324 | <location filename="" line="136966688"/> |
8250 | cbradney | 2325 | <source>Dissolve</source> |
2326 | <translation type="obsolete">Dissolução</translation> |
||
2327 | </message> |
||
2328 | <message> |
||
9729 | cbradney | 2329 | <location filename="" line="136966688"/> |
8250 | cbradney | 2330 | <source>Top Left of Page</source> |
2331 | <translation type="obsolete">Página esquerda</translation> |
||
2332 | </message> |
||
2333 | <message> |
||
9729 | cbradney | 2334 | <location filename="" line="136966688"/> |
8250 | cbradney | 2335 | <source>The item %1 is currently being edited by Story Editor. The convert to outlines operation for this item will be skipped</source> |
2336 | <translation type="obsolete">O item %1 está atualmente sendo editado pelo Editor de História. A operação de conversão para traços será ignorada para este item</translation> |
||
2337 | </message> |
||
2338 | <message> |
||
9729 | cbradney | 2339 | <location filename="" line="136966688"/> |
8250 | cbradney | 2340 | <source>Starting position for the box and split effects.</source> |
2341 | <translation type="obsolete">Posição inicial dos efeitos Caixa e Separação.</translation> |
||
2342 | </message> |
||
2343 | <message> |
||
9729 | cbradney | 2344 | <location filename="" line="136966688"/> |
8250 | cbradney | 2345 | <source>Use Currency Symbol</source> |
2346 | <translation type="obsolete">Usar símbolo de moeda</translation> |
||
2347 | </message> |
||
2348 | <message> |
||
9729 | cbradney | 2349 | <location filename="" line="136966688"/> |
8250 | cbradney | 2350 | <source>This document does not seem to be an OpenOffice Draw file.</source> |
2351 | <translation type="obsolete">Este documento não parece ser um ficheiro do OpenOffice Draw.</translation> |
||
2352 | </message> |
||
2353 | <message> |
||
9729 | cbradney | 2354 | <location filename="" line="136966688"/> |
8250 | cbradney | 2355 | <source>Exports SVG Files</source> |
2356 | <translation type="obsolete">Exporta ficheiros SVG</translation> |
||
2357 | </message> |
||
2358 | <message> |
||
9729 | cbradney | 2359 | <location filename="" line="136966688"/> |
8250 | cbradney | 2360 | <source>Selected Page Border:</source> |
2361 | <translation type="obsolete">Borda de página seleccionada</translation> |
||
2362 | </message> |
||
2363 | <message> |
||
9729 | cbradney | 2364 | <location filename="" line="136966688"/> |
8250 | cbradney | 2365 | <source>Style Settings</source> |
2366 | <translation type="obsolete">Configurações do estilo</translation> |
||
2367 | </message> |
||
2368 | <message> |
||
9729 | cbradney | 2369 | <location filename="" line="136966688"/> |
8250 | cbradney | 2370 | <source>Normal Vision</source> |
2371 | <translation type="obsolete">Visão normal</translation> |
||
2372 | </message> |
||
2373 | <message> |
||
9729 | cbradney | 2374 | <location filename="" line="136966688"/> |
8250 | cbradney | 2375 | <source>Mirror the Path Horizontally</source> |
2376 | <translation type="obsolete">Espelha o caminho horizontalmente</translation> |
||
2377 | </message> |
||
2378 | <message> |
||
9729 | cbradney | 2379 | <location filename="" line="136966688"/> |
8250 | cbradney | 2380 | <source>&Import Page(s):</source> |
2381 | <translation type="obsolete">&Importar página(s):</translation> |
||
2382 | </message> |
||
2383 | <message> |
||
9729 | cbradney | 2384 | <location filename="" line="136966688"/> |
8250 | cbradney | 2385 | <source>Enable/disable the M (Magenta) ink plate</source> |
2386 | <translation type="obsolete">Activa/Desabilita a visualização da tinta M (Magenta)</translation> |
||
2387 | </message> |
||
2388 | <message> |
||
9729 | cbradney | 2389 | <location filename="" line="136966688"/> |
8250 | cbradney | 2390 | <source>Horizontal displacement of page items</source> |
2391 | <translation type="obsolete">Deslocação horizontal dos itens de página</translation> |
||
2392 | </message> |
||
2393 | <message> |
||
9729 | cbradney | 2394 | <location filename="" line="136966688"/> |
8250 | cbradney | 2395 | <source>First line indent</source> |
2396 | <translation type="obsolete">Indentação da primeira linha</translation> |
||
2397 | </message> |
||
2398 | <message> |
||
9729 | cbradney | 2399 | <location filename="" line="136966688"/> |
8250 | cbradney | 2400 | <source>Font search paths can only be set in File > Preferences, and only when there is no document currently open. Close any open documents, then use File > Preferences > Fonts to change the font search path.</source> |
2401 | <translation type="obsolete">O caminho de busca das fontes só pode ser configurado pelas Preferências e apenas quando não há documentos abertos. |
||
2402 | Feche todos os documentos e então use o menu Ficheiro->Preferências->Fontes para alterar o caminho de busca das fontes.</translation> |
||
2403 | </message> |
||
2404 | <message> |
||
9729 | cbradney | 2405 | <location filename="" line="136966688"/> |
8250 | cbradney | 2406 | <source>The filename should not be empty string.</source> |
2407 | <translation type="obsolete">O nome do ficheiro não deve ser nulo.</translation> |
||
2408 | </message> |
||
2409 | <message> |
||
9729 | cbradney | 2410 | <location filename="" line="136966688"/> |
8250 | cbradney | 2411 | <source>Portuguese (BR)</source> |
2412 | <translation type="obsolete">Português (BR)</translation> |
||
2413 | </message> |
||
2414 | <message> |
||
9729 | cbradney | 2415 | <location filename="" line="136966688"/> |
8250 | cbradney | 2416 | <source>Chan&ge...</source> |
2417 | <translation type="obsolete">&Alterar...</translation> |
||
2418 | </message> |
||
2419 | <message> |
||
9729 | cbradney | 2420 | <location filename="" line="136966688"/> |
8250 | cbradney | 2421 | <source>Select bottom left for basepoint</source> |
2422 | <translation type="obsolete">Seleciona o ponto-base abaixo e à esquerda</translation> |
||
2423 | </message> |
||
2424 | <message> |
||
9729 | cbradney | 2425 | <location filename="" line="136966688"/> |
8250 | cbradney | 2426 | <source>Using Ghostscript version %1</source> |
2427 | <translation type="obsolete">Usando a versão %1 do GhostScript</translation> |
||
2428 | </message> |
||
2429 | <message> |
||
9729 | cbradney | 2430 | <location filename="" line="136966688"/> |
8250 | cbradney | 2431 | <source>User configuration exists elready. Do you really want to overwrite it?</source> |
2432 | <translation type="obsolete">Já existe uma configuração do utilizador. Você realmente deseja sobrescrevê-la?</translation> |
||
2433 | </message> |
||
2434 | <message> |
||
9729 | cbradney | 2435 | <location filename="" line="136966688"/> |
8250 | cbradney | 2436 | <source>Text &Flow Around Frame</source> |
2437 | <translation type="obsolete">O texto &flui à volta da caixa</translation> |
||
2438 | </message> |
||
2439 | <message> |
||
9729 | cbradney | 2440 | <location filename="" line="136966688"/> |
8250 | cbradney | 2441 | <source>The filename must be a string.</source> |
2442 | <translation type="obsolete">O nome do ficheiro deve ser uma sequência de caracteres.</translation> |
||
2443 | </message> |
||
2444 | <message> |
||
9729 | cbradney | 2445 | <location filename="" line="136966688"/> |
8250 | cbradney | 2446 | <source>Set font effect</source> |
2447 | <translation type="obsolete">Definir efeito de fonte</translation> |
||
2448 | </message> |
||
2449 | <message> |
||
9729 | cbradney | 2450 | <location filename="" line="136966688"/> |
8250 | cbradney | 2451 | <source>Line style not found.</source> |
2452 | <translation type="obsolete">Estilo de linha não encontrado.</translation> |
||
2453 | </message> |
||
2454 | <message> |
||
9729 | cbradney | 2455 | <location filename="" line="136966688"/> |
8250 | cbradney | 2456 | <source>&User Defined Key</source> |
2457 | <translation type="obsolete">Tecla definida pelo &utilizador</translation> |
||
2458 | </message> |
||
2459 | <message> |
||
9729 | cbradney | 2460 | <location filename="" line="136966688"/> |
8250 | cbradney | 2461 | <source>Failed to save document.</source> |
2462 | <translation type="obsolete">Não foi possível salvar o documento.</translation> |
||
2463 | </message> |
||
2464 | <message> |
||
9729 | cbradney | 2465 | <location filename="" line="136966688"/> |
8250 | cbradney | 2466 | <source>Field P&roperties</source> |
2467 | <translation type="obsolete">Propriedades do &campo</translation> |
||
2468 | </message> |
||
2469 | <message> |
||
9729 | cbradney | 2470 | <location filename="" line="136966688"/> |
8250 | cbradney | 2471 | <source>Types matched, but setting property failed.</source> |
2472 | <translation type="obsolete">Os tipos se casam, mas a configuração de propriedade falhou.</translation> |
||
2473 | </message> |
||
2474 | <message> |
||
9729 | cbradney | 2475 | <location filename="" line="136966688"/> |
8250 | cbradney | 2476 | <source>Use ICC Profile</source> |
2477 | <translation type="obsolete">Usar perfil ICC</translation> |
||
2478 | </message> |
||
2479 | <message> |
||
9729 | cbradney | 2480 | <location filename="" line="136966688"/> |
8250 | cbradney | 2481 | <source>Smart &Hyphen</source> |
2482 | <translation type="obsolete">&Hifenização inteligente</translation> |
||
2483 | </message> |
||
2484 | <message> |
||
9729 | cbradney | 2485 | <location filename="" line="136966688"/> |
8250 | cbradney | 2486 | <source>Plugin Manager</source> |
2487 | <translation type="obsolete">Gestão de plugin</translation> |
||
2488 | </message> |
||
2489 | <message> |
||
9729 | cbradney | 2490 | <location filename="" line="136966688"/> |
8250 | cbradney | 2491 | <source>Polygon Drawing Properties</source> |
2492 | <translation type="obsolete">Propriedades do desenho de polígonos</translation> |
||
2493 | </message> |
||
2494 | <message> |
||
9729 | cbradney | 2495 | <location filename="" line="136966688"/> |
8250 | cbradney | 2496 | <source>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source> |
2497 | <translation type="obsolete">Um resumo do conteúdo do documento.Esse campo é usado para uma descrição breve ou um resumo do documento. Ele é Incorporado ao PDF durante a exportação</translation> |
||
2498 | </message> |
||
2499 | <message> |
||
9729 | cbradney | 2500 | <location filename="" line="136966688"/> |
8250 | cbradney | 2501 | <source>Hide Viewers Menubar</source> |
2502 | <translation type="obsolete">Ocultar visualização da barra do menu</translation> |
||
2503 | </message> |
||
2504 | <message> |
||
9729 | cbradney | 2505 | <location filename="" line="136966688"/> |
8250 | cbradney | 2506 | <source>Allow &Changing the Document</source> |
2507 | <translation type="obsolete">Permite a &alteração no documento</translation> |
||
2508 | </message> |
||
2509 | <message> |
||
9729 | cbradney | 2510 | <location filename="" line="136966688"/> |
8250 | cbradney | 2511 | <source>Importing text</source> |
2512 | <translation type="obsolete">Importando texto</translation> |
||
2513 | </message> |
||
2514 | <message> |
||
9729 | cbradney | 2515 | <location filename="" line="136966688"/> |
8250 | cbradney | 2516 | <source>Profile Name:</source> |
2517 | <translation type="obsolete">Nome do perfil:</translation> |
||
2518 | </message> |
||
2519 | <message> |
||
9729 | cbradney | 2520 | <location filename="" line="136966688"/> |
8250 | cbradney | 2521 | <source>Export successful</source> |
2522 | <translation type="obsolete">A exportação foi bem-sucedida.</translation> |
||
2523 | </message> |
||
2524 | <message> |
||
9729 | cbradney | 2525 | <location filename="" line="136966688"/> |
8250 | cbradney | 2526 | <source>Output profile for printing. If possible, get some guidance from your printer on profile selection.</source> |
2527 | <translation type="obsolete">Perfil de saída para impressão. Se possível, obtenha alguma referência da sua impressora na seleção do perfil.</translation> |
||
2528 | </message> |
||
2529 | <message> |
||
9729 | cbradney | 2530 | <location filename="" line="136966688"/> |
8250 | cbradney | 2531 | <source>Paste Recent</source> |
2532 | <translation type="obsolete">Colar &recente</translation> |
||
2533 | </message> |
||
2534 | <message> |
||
9729 | cbradney | 2535 | <location filename="" line="136966688"/> |
8250 | cbradney | 2536 | <source>&Keywords:</source> |
2537 | <translation type="obsolete">&Palavras-chave:</translation> |
||
2538 | </message> |
||
2539 | <message> |
||
9729 | cbradney | 2540 | <location filename="" line="136966688"/> |
8250 | cbradney | 2541 | <source>Generate PDF Articles, which is useful for navigating linked articles in a PDF.</source> |
2542 | <translation type="obsolete">Gera Artigos PDF, que são úteis para navegar por artigos associados em um PDF.</translation> |
||
2543 | </message> |
||
2544 | <message> |
||
9729 | cbradney | 2545 | <location filename="" line="136966688"/> |
8250 | cbradney | 2546 | <source>Keywords:</source> |
2547 | <translation type="obsolete">Palavras-chave:</translation> |
||
2548 | </message> |
||
2549 | <message> |
||
9729 | cbradney | 2550 | <location filename="" line="136966688"/> |
8250 | cbradney | 2551 | <source>Bezier curve</source> |
2552 | <translation type="obsolete">Curva de Bezier</translation> |
||
2553 | </message> |
||
2554 | <message> |
||
9729 | cbradney | 2555 | <location filename="" line="136966688"/> |
8250 | cbradney | 2556 | <source>&Define Custom Colors >></source> |
2557 | <translation type="obsolete">&Definir cores personalizadas >></translation> |
||
2558 | </message> |
||
2559 | <message> |
||
9729 | cbradney | 2560 | <location filename="" line="136966688"/> |
8250 | cbradney | 2561 | <source>New Document</source> |
2562 | <translation type="obsolete">Novo documento</translation> |
||
2563 | </message> |
||
2564 | <message> |
||
9729 | cbradney | 2565 | <location filename="" line="136966688"/> |
8250 | cbradney | 2566 | <source>Color profile for solid colors</source> |
2567 | <translation type="obsolete">Perfil de cores para cores sólidas</translation> |
||
2568 | </message> |
||
2569 | <message> |
||
9729 | cbradney | 2570 | <location filename="" line="136966688"/> |
8250 | cbradney | 2571 | <source>&Select File...</source> |
2572 | <translation type="obsolete">&Seleccione ficheiro...</translation> |
||
2573 | </message> |
||
2574 | <message> |
||
9729 | cbradney | 2575 | <location filename="" line="136966688"/> |
8250 | cbradney | 2576 | <source>Tab Fill Character:</source> |
2577 | <translation type="obsolete">Preenchimento de caracter:</translation> |
||
2578 | </message> |
||
2579 | <message> |
||
9729 | cbradney | 2580 | <location filename="" line="136966688"/> |
8250 | cbradney | 2581 | <source>Color profile for your printer model from the manufacturer. |
2582 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
||
2583 | <translation type="obsolete">O perfil de cores do fabricante para o seu modelo de impressora. |
||
2584 | Este perfil deve ser específico para a sua impressora e não genérico (ex. sRGB).</translation> |
||
2585 | </message> |
||
2586 | <message> |
||
9729 | cbradney | 2587 | <location filename="" line="136966688"/> |
8250 | cbradney | 2588 | <source>Line S&tyle:</source> |
2589 | <translation type="obsolete">Es&tilos de linha:</translation> |
||
2590 | </message> |
||
2591 | <message> |
||
9729 | cbradney | 2592 | <location filename="" line="136966688"/> |
8250 | cbradney | 2593 | <source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source> |
2594 | <translation type="obsolete">Diferença entre o valor selecionado e o contado. Veja a documentação para maiores detalhes.</translation> |
||
2595 | </message> |
||
2596 | <message> |
||
9729 | cbradney | 2597 | <location filename="" line="136966688"/> |
8250 | cbradney | 2598 | <source>Guides are visible above all objects on the page</source> |
2599 | <translation type="obsolete">AS guias são visíveis através de objetos na página</translation> |
||
2600 | </message> |
||
2601 | <message> |
||
9729 | cbradney | 2602 | <location filename="" line="136966688"/> |
8250 | cbradney | 2603 | <source>Select a file to import</source> |
2604 | <translation type="obsolete">Seleccione um ficheiro para importar</translation> |
||
2605 | </message> |
||
2606 | <message> |
||
9729 | cbradney | 2607 | <location filename="" line="136966688"/> |
8250 | cbradney | 2608 | <source>remove match</source> |
2609 | <translation type="obsolete">remover correspondência</translation> |
||
2610 | </message> |
||
2611 | <message> |
||
9729 | cbradney | 2612 | <location filename="" line="136966688"/> |
8250 | cbradney | 2613 | <source>Enabling this will overwrite existing styles in the current Scribus document</source> |
2614 | <translation type="obsolete">Activar isso irá sobrescrever os estilos existentes no documento atual</translation> |
||
2615 | </message> |
||
2616 | <message> |
||
9729 | cbradney | 2617 | <location filename="" line="136966688"/> |
8250 | cbradney | 2618 | <source>Full Color Blindness</source> |
2619 | <translation type="obsolete">Perda de total da perc. de cores</translation> |
||
2620 | </message> |
||
2621 | <message> |
||
9729 | cbradney | 2622 | <location filename="" line="136966688"/> |
8250 | cbradney | 2623 | <source>Path Text Properties</source> |
2624 | <translation type="obsolete">Propriedades do caminho do texto</translation> |
||
2625 | </message> |
||
2626 | <message> |
||
9729 | cbradney | 2627 | <location filename="" line="136966688"/> |
8250 | cbradney | 2628 | <source>&Quick Search:</source> |
2629 | <translation type="obsolete">Busca &rápida:</translation> |
||
2630 | </message> |
||
2631 | <message> |
||
9729 | cbradney | 2632 | <location filename="" line="136966688"/> |
8250 | cbradney | 2633 | <source>size %1 </source> |
2634 | <translation type="obsolete">tamanho %1 </translation> |
||
2635 | </message> |
||
2636 | <message> |
||
9729 | cbradney | 2637 | <location filename="" line="136966688"/> |
8250 | cbradney | 2638 | <source>&Deselect All</source> |
2639 | <translation type="obsolete">&Deselecionar tudo</translation> |
||
2640 | </message> |
||
2641 | <message> |
||
9729 | cbradney | 2642 | <location filename="" line="136966688"/> |
8250 | cbradney | 2643 | <source>Shear the Path Horizontally to the Right</source> |
2644 | <translation type="obsolete">Deforma o caminho horizontalmente para a direita</translation> |
||
2645 | </message> |
||
2646 | <message> |
||
9729 | cbradney | 2647 | <location filename="" line="136966688"/> |
8250 | cbradney | 2648 | <source>&Tabulators...</source> |
2649 | <translation type="obsolete">&Tabulações...</translation> |
||
2650 | </message> |
||
2651 | <message> |
||
9729 | cbradney | 2652 | <location filename="" line="136966688"/> |
8250 | cbradney | 2653 | <source>Number Forms</source> |
2654 | <translation type="obsolete">Formulários numéricos</translation> |
||
2655 | </message> |
||
2656 | <message> |
||
9729 | cbradney | 2657 | <location filename="" line="136966688"/> |
8250 | cbradney | 2658 | <source>Line: %1 Column: %2</source> |
2659 | <translation type="obsolete">Linhas: %1, Colunas: %2</translation> |
||
2660 | </message> |
||
2661 | <message> |
||
9729 | cbradney | 2662 | <location filename="" line="136966688"/> |
8250 | cbradney | 2663 | <source>Story Editor</source> |
2664 | <translation type="obsolete">Editor de História</translation> |
||
2665 | </message> |
||
2666 | <message> |
||
9729 | cbradney | 2667 | <location filename="" line="136966688"/> |
8250 | cbradney | 2668 | <source>&Import Master Page</source> |
2669 | <translation type="obsolete">&Importar Página Mestre</translation> |
||
2670 | </message> |
||
2671 | <message> |
||
9729 | cbradney | 2672 | <location filename="" line="136966688"/> |
8250 | cbradney | 2673 | <source>Horizontal</source> |
2674 | <translation type="obsolete">Horizontal</translation> |
||
2675 | </message> |
||
2676 | <message> |
||
9729 | cbradney | 2677 | <location filename="" line="136966688"/> |
8250 | cbradney | 2678 | <source>Writing to preferences file "%1" failed: QIODevice status code %2</source> |
2679 | <translation type="obsolete">A gravação do ficheiro de preferências "%1" falhou: QIODevice, código de status %2</translation> |
||
2680 | </message> |
||
2681 | <message> |
||
9729 | cbradney | 2682 | <location filename="" line="136966688"/> |
8250 | cbradney | 2683 | <source>Number Format</source> |
2684 | <translation type="obsolete">Formato do número</translation> |
||
2685 | </message> |
||
2686 | <message> |
||
9729 | cbradney | 2687 | <location filename="" line="136966688"/> |
8250 | cbradney | 2688 | <source>Sn&ap to Grid</source> |
2689 | <translation type="obsolete">&Atrair à grelha</translation> |
||
2690 | </message> |
||
2691 | <message> |
||
9729 | cbradney | 2692 | <location filename="" line="136966688"/> |
8250 | cbradney | 2693 | <source>Can't get info from a non-text frame</source> |
2694 | <translation type="obsolete">Não é possível obter informações de um quadro que não seja de texto</translation> |
||
2695 | </message> |
||
2696 | <message> |
||
9729 | cbradney | 2697 | <location filename="" line="136966688"/> |
8250 | cbradney | 2698 | <source>2nd. Tetradic (angle)</source> |
2699 | <translation type="obsolete">2° Quadritônico (ângulo)</translation> |
||
2700 | </message> |
||
2701 | <message> |
||
9729 | cbradney | 2702 | <location filename="" line="136966688"/> |
8250 | cbradney | 2703 | <source>Change settings for left or end points</source> |
2704 | <translation type="obsolete">Altera as configurações para os pontos esquerdos ou finais</translation> |
||
2705 | </message> |
||
2706 | <message> |
||
9729 | cbradney | 2707 | <location filename="" line="136966688"/> |
8250 | cbradney | 2708 | <source>Start Arrow:</source> |
2709 | <translation type="obsolete">Seta inicial:</translation> |
||
2710 | </message> |
||
2711 | <message> |
||
9729 | cbradney | 2712 | <location filename="" line="136966688"/> |
8250 | cbradney | 2713 | <source>Plugin: %1 initialized ok </source> |
2714 | <translation type="obsolete">Plugin: %1 iniciado sem erros</translation> |
||
2715 | </message> |
||
2716 | <message> |
||
9729 | cbradney | 2717 | <location filename="../plugins/fileloader/scribus12format/scribus12format.cpp" line="1593"/> |
8250 | cbradney | 2718 | <source>Copy #%1 of </source> |
9729 | cbradney | 2719 | <translation type="unfinished">Copiar #%1 de </translation> |
8250 | cbradney | 2720 | </message> |
2721 | <message> |
||
9729 | cbradney | 2722 | <location filename="" line="136966688"/> |
8250 | cbradney | 2723 | <source>Edit Master Pages</source> |
2724 | <translation type="obsolete">Editar páginas modelo</translation> |
||
2725 | </message> |
||
2726 | <message> |
||
9729 | cbradney | 2727 | <location filename="" line="136966688"/> |
8250 | cbradney | 2728 | <source>Single Left Guillemet</source> |
2729 | <translation type="obsolete">Guillemet simples à esquerda</translation> |
||
2730 | </message> |
||
2731 | <message> |
||
9729 | cbradney | 2732 | <location filename="" line="136966688"/> |
8250 | cbradney | 2733 | <source>Barcode Generator</source> |
2734 | <translation type="obsolete">Gerador de código de barras</translation> |
||
2735 | </message> |
||
2736 | <message> |
||
9729 | cbradney | 2737 | <location filename="" line="136966688"/> |
8250 | cbradney | 2738 | <source>Caption overlays Icon</source> |
2739 | <translation type="obsolete">Legenda sobreposta ao ícone</translation> |
||
2740 | </message> |
||
2741 | <message> |
||
9729 | cbradney | 2742 | <location filename="" line="136966688"/> |
8250 | cbradney | 2743 | <source>N&umber of Copies:</source> |
2744 | <translation type="obsolete">Número de &cópias:</translation> |
||
2745 | </message> |
||
2746 | <message> |
||
9729 | cbradney | 2747 | <location filename="" line="136966688"/> |
8250 | cbradney | 2748 | <source>Horizontal:</source> |
2749 | <translation type="obsolete">Horizontal:</translation> |
||
2750 | </message> |
||
2751 | <message> |
||
9729 | cbradney | 2752 | <location filename="" line="136966688"/> |
8250 | cbradney | 2753 | <source>Horizontals</source> |
2754 | <translation type="obsolete">Horizontais</translation> |
||
2755 | </message> |
||
2756 | <message> |
||
9729 | cbradney | 2757 | <location filename="" line="136966688"/> |
8250 | cbradney | 2758 | <source>Image size in Pixels</source> |
2759 | <translation type="obsolete">Tamanho da imagem em pixels</translation> |
||
2760 | </message> |
||
2761 | <message> |
||
9729 | cbradney | 2762 | <location filename="" line="136966688"/> |
8250 | cbradney | 2763 | <source>German (Trad.)</source> |
2764 | <translation type="obsolete">Alemão (Tradi.)</translation> |
||
2765 | </message> |
||
2766 | <message> |
||
9729 | cbradney | 2767 | <location filename="" line="136966688"/> |
8250 | cbradney | 2768 | <source>Preview of the Paragraph Style</source> |
2769 | <translation type="obsolete">Visualizar o estilo de parágrafo</translation> |
||
2770 | </message> |
||
2771 | <message> |
||
9729 | cbradney | 2772 | <location filename="" line="136966688"/> |
8250 | cbradney | 2773 | <source>Cannot set text alignment on a non-text frame.</source> |
2774 | <translation type="obsolete">Não é possível definir o alinhamento de texto em um quadro que não seja de texto.</translation> |
||
2775 | </message> |
||
2776 | <message> |
||
9729 | cbradney | 2777 | <location filename="" line="136966688"/> |
8250 | cbradney | 2778 | <source>New Bookmark</source> |
2779 | <translation type="obsolete">Novo marcador</translation> |
||
2780 | </message> |
||
2781 | <message> |
||
9729 | cbradney | 2782 | <location filename="" line="136966688"/> |
8250 | cbradney | 2783 | <source>Rendering Settings</source> |
2784 | <translation type="obsolete">Configurações de renderização</translation> |
||
2785 | </message> |
||
2786 | <message> |
||
9729 | cbradney | 2787 | <location filename="" line="136966688"/> |
8250 | cbradney | 2788 | <source>Flip Horizontal</source> |
2789 | <translation type="obsolete">Espelhamento horizontal</translation> |
||
2790 | </message> |
||
2791 | <message> |
||
9729 | cbradney | 2792 | <location filename="" line="136966688"/> |
8250 | cbradney | 2793 | <source><pdfVersion> invalid</source> |
2794 | <translation type="obsolete"><pdfVersion> inválido</translation> |
||
2795 | </message> |
||
2796 | <message> |
||
9729 | cbradney | 2797 | <location filename="" line="136966688"/> |
8250 | cbradney | 2798 | <source>Startup Script:</source> |
2799 | <translation type="obsolete">Script de inicialização:</translation> |
||
2800 | </message> |
||
2801 | <message> |
||
9729 | cbradney | 2802 | <location filename="" line="136966688"/> |
8250 | cbradney | 2803 | <source>No object frame</source> |
2804 | <translation type="obsolete">Moldura sem objecto</translation> |
||
2805 | </message> |
||
2806 | <message> |
||
9729 | cbradney | 2807 | <location filename="" line="136966688"/> |
8250 | cbradney | 2808 | <source>Check Style:</source> |
2809 | <translation type="obsolete">Estilo da marca:</translation> |
||
2810 | </message> |
||
2811 | <message> |
||
9729 | cbradney | 2812 | <location filename="" line="136966688"/> |
8250 | cbradney | 2813 | <source>Disable Item Printing</source> |
2814 | <translation type="obsolete">Desactivar impressão do item</translation> |
||
2815 | </message> |
||
2816 | <message> |
||
9729 | cbradney | 2817 | <location filename="" line="136966688"/> |
8250 | cbradney | 2818 | <source>Default ICC profiles directory. This cannot be changed with a document open. By default, Scribus will look in the System Directories under Mac OSX and Windows. On Linux and Unix, Scribus will search $home/.color/icc,/usr/share/color/icc and /usr/local/share/color/icc </source> |
2819 | <translation type="obsolete">Diretório padrão dos perfis ICC. Isto não pode ser alterado com um documento aberto. Por padrão, o Scribus irá procurar nos diretórios do sistema no MAC OSX e no Windows. No Linux e no Unix, o Scribus irá procurar em $home/.color/icc,/usr/share/color/icc e /usr/local/share/color/icc</translation> |
||
2820 | </message> |
||
2821 | <message> |
||
9729 | cbradney | 2822 | <location filename="" line="136966688"/> |
8250 | cbradney | 2823 | <source>Insert Smart Hyphen</source> |
2824 | <translation type="obsolete">Inserir Hifenização inteligente</translation> |
||
2825 | </message> |
||
2826 | <message> |
||
9729 | cbradney | 2827 | <location filename="" line="136966688"/> |
8250 | cbradney | 2828 | <source>Absolute Colorimetric</source> |
2829 | <translation type="obsolete">Absoluta Colorimétrica</translation> |
||
2830 | </message> |
||
2831 | <message> |
||
9729 | cbradney | 2832 | <location filename="" line="136966688"/> |
8250 | cbradney | 2833 | <source>The template creator should also make sure that the Installing Templates section above applies to their templates as well. This means a user should be able to download a template package and be able to extract them to the template directory and start using them.</source> |
2834 | <translation type="obsolete">O criador de modelo também deve certificar-se de que a seção Instalando Modelos acima aplica-se também ao seus modelos. Isso significa que um utilizador deve ser capaz de transferir um pacote de modelo e ser capaz de extrai-lo ao directório de modelos e começar a usá-lo.</translation> |
||
2835 | </message> |
||
2836 | <message> |
||
9729 | cbradney | 2837 | <location filename="" line="136966688"/> |
8250 | cbradney | 2838 | <source>Zoom in or out</source> |
2839 | <translation type="obsolete">Amplia ou reduz a visualização</translation> |
||
2840 | </message> |
||
2841 | <message> |
||
9729 | cbradney | 2842 | <location filename="" line="136966688"/> |
8250 | cbradney | 2843 | <source>Initializing Plugins</source> |
2844 | <translation type="obsolete">Iniciando plugins</translation> |
||
2845 | </message> |
||
2846 | <message> |
||
9729 | cbradney | 2847 | <location filename="" line="136966688"/> |
8250 | cbradney | 2848 | <source>You are trying to link to a filled frame, or a frame to itself.</source> |
2849 | <translation type="obsolete">Você está tentando ligar à um quadro preenchido ou ao próprio quadro.</translation> |
||
2850 | </message> |
||
2851 | <message> |
||
9729 | cbradney | 2852 | <location filename="" line="136966688"/> |
8250 | cbradney | 2853 | <source>German (Swiss)</source> |
2854 | <translation type="obsolete">Alemão (Suiço)</translation> |
||
2855 | </message> |
||
2856 | <message> |
||
9729 | cbradney | 2857 | <location filename="" line="136966688"/> |
8250 | cbradney | 2858 | <source>Sort by &Size</source> |
2859 | <translation type="obsolete">Ordenar por &tamanho</translation> |
||
2860 | </message> |
||
2861 | <message> |
||
9729 | cbradney | 2862 | <location filename="" line="136966688"/> |
8250 | cbradney | 2863 | <source>An error occurred while looking for updates for Scribus, please check your internet connection.</source> |
2864 | <translation type="obsolete">Ocorreu um erro ao procurar actualizações para o Scribus, por favor verifique a sua ligação à internet:</translation> |
||
2865 | </message> |
||
2866 | <message> |
||
9729 | cbradney | 2867 | <location filename="" line="136966688"/> |
8250 | cbradney | 2868 | <source>&Moving Lines:</source> |
2869 | <translation type="obsolete">Linhas &móveis:</translation> |
||
2870 | </message> |
||
2871 | <message> |
||
9729 | cbradney | 2872 | <location filename="" line="136966688"/> |
8250 | cbradney | 2873 | <source>Import styles from another document</source> |
2874 | <translation type="obsolete">Importar estilos doutro documento</translation> |
||
2875 | </message> |
||
2876 | <message> |
||
9729 | cbradney | 2877 | <location filename="" line="136966688"/> |
8250 | cbradney | 2878 | <source>Sort by &Date</source> |
2879 | <translation type="obsolete">Ordenar por &data</translation> |
||
2880 | </message> |
||
2881 | <message> |
||
9729 | cbradney | 2882 | <location filename="" line="136966688"/> |
8250 | cbradney | 2883 | <source>Sort by &Name</source> |
2884 | <translation type="obsolete">Ordenar por &nome</translation> |
||
2885 | </message> |
||
2886 | <message> |
||
9729 | cbradney | 2887 | <location filename="" line="136966688"/> |
8250 | cbradney | 2888 | <source>Align bottoms</source> |
2889 | <translation type="obsolete">Alinhar ao fundo</translation> |
||
2890 | </message> |
||
2891 | <message> |
||
9729 | cbradney | 2892 | <location filename="" line="136966688"/> |
8250 | cbradney | 2893 | <source>Previous Translation Contributors:</source> |
2894 | <translation type="obsolete">Colaboradores das traduções anteriores:</translation> |
||
2895 | </message> |
||
2896 | <message> |
||
9729 | cbradney | 2897 | <location filename="" line="136966688"/> |
8250 | cbradney | 2898 | <source>All items in document processed.</source> |
2899 | <translation type="obsolete">Todos os ítens do documento são processados.</translation> |
||
2900 | </message> |
||
2901 | <message> |
||
9729 | cbradney | 2902 | <location filename="" line="136966688"/> |
8250 | cbradney | 2903 | <source>Enable printing of layer</source> |
2904 | <translation type="obsolete">Activar impressão da camada</translation> |
||
2905 | </message> |
||
2906 | <message> |
||
9729 | cbradney | 2907 | <location filename="" line="136966688"/> |
8250 | cbradney | 2908 | <source>Scribus: About Plug-ins</source> |
2909 | <translation type="obsolete">Scribus - Sobre os Plug-ins</translation> |
||
2910 | </message> |
||
2911 | <message> |
||
9729 | cbradney | 2912 | <location filename="" line="136966688"/> |
8250 | cbradney | 2913 | <source>To File:</source> |
2914 | <translation type="obsolete">Para o ficheiro:</translation> |
||
2915 | </message> |
||
2916 | <message> |
||
9729 | cbradney | 2917 | <location filename="" line="136966688"/> |
8250 | cbradney | 2918 | <source>Standard configuration: </source> |
2919 | <translation type="obsolete">Configuração padrão: </translation> |
||
2920 | </message> |
||
2921 | <message> |
||
9729 | cbradney | 2922 | <location filename="" line="136966688"/> |
8250 | cbradney | 2923 | <source>Comma Separated List</source> |
2924 | <translation type="obsolete">Lista de valores separados por vírgulas</translation> |
||
2925 | </message> |
||
2926 | <message> |
||
9729 | cbradney | 2927 | <location filename="" line="136966688"/> |
8250 | cbradney | 2928 | <source>Destroys the selected group</source> |
2929 | <translation type="obsolete">Apagar o grupo seleccionado</translation> |
||
2930 | </message> |
||
2931 | <message> |
||
9729 | cbradney | 2932 | <location filename="" line="136966688"/> |
8250 | cbradney | 2933 | <source>&Scribus Scripts</source> |
2934 | <translation type="obsolete">Scripts do &Scribus</translation> |
||
2935 | </message> |
||
2936 | <message> |
||
9729 | cbradney | 2937 | <location filename="" line="136966688"/> |
8250 | cbradney | 2938 | <source>No Print</source> |
2939 | <translation type="obsolete">Sem impressão</translation> |
||
2940 | </message> |
||
2941 | <message> |
||
9729 | cbradney | 2942 | <location filename="" line="136966688"/> |
8250 | cbradney | 2943 | <source>No Style</source> |
2944 | <translation type="obsolete">Sem estilo</translation> |
||
2945 | </message> |
||
2946 | <message> |
||
9729 | cbradney | 2947 | <location filename="" line="136966688"/> |
8250 | cbradney | 2948 | <source>No Title</source> |
2949 | <translation type="obsolete">Sem título</translation> |
||
2950 | </message> |
||
2951 | <message> |
||
9729 | cbradney | 2952 | <location filename="" line="136966688"/> |
8250 | cbradney | 2953 | <source>Convert all glyphs in the document to outlines.</source> |
2954 | <translation type="obsolete">Não é possível converter em contorno um quadro que não seja de texto.</translation> |
||
2955 | </message> |
||
2956 | <message> |
||
9729 | cbradney | 2957 | <location filename="" line="136966688"/> |
8250 | cbradney | 2958 | <source>Number of copies: %1 |
2959 | Horizontal gap: %2 |
||
2960 | Vertical gap: %3</source> |
||
2961 | <translation type="obsolete">Números de cópias: %1 |
||
2962 | Deslocamento horizontal: %2 |
||
2963 | Deslocamento vertical: %3</translation> |
||
2964 | </message> |
||
2965 | <message> |
||
9729 | cbradney | 2966 | <location filename="" line="136966688"/> |
8250 | cbradney | 2967 | <source>Imports most OpenOffice.org Draw files into the current document, converting their vector data into Scribus objects.</source> |
2968 | <translation type="obsolete">Importa a maioria dos ficheiros OpenOffice.org Draw para o documento actual, convertendo seus dados vectoriais em objectos do Scribus.</translation> |
||
2969 | </message> |
||
2970 | <message> |
||
9729 | cbradney | 2971 | <location filename="" line="136966688"/> |
8250 | cbradney | 2972 | <source>Unicode Search</source> |
2973 | <translation type="obsolete">Pesquisa Unicode</translation> |
||
2974 | </message> |
||
2975 | <message> |
||
9729 | cbradney | 2976 | <location filename="" line="136966688"/> |
8250 | cbradney | 2977 | <source>Dzongkha</source> |
2978 | <translation type="obsolete">Dzongkha</translation> |
||
2979 | </message> |
||
2980 | <message> |
||
9729 | cbradney | 2981 | <location filename="" line="136966688"/> |
8250 | cbradney | 2982 | <source>Zoom in</source> |
2983 | <translation type="obsolete">Ampliar</translation> |
||
2984 | </message> |
||
2985 | <message> |
||
9729 | cbradney | 2986 | <location filename="" line="136966688"/> |
8250 | cbradney | 2987 | <source>New Folder 1</source> |
2988 | <translation type="obsolete">Nova pasta 1</translation> |
||
2989 | </message> |
||
2990 | <message> |
||
9729 | cbradney | 2991 | <location filename="" line="136966688"/> |
8250 | cbradney | 2992 | <source>Free Objects</source> |
2993 | <translation type="obsolete">Objetos livres</translation> |
||
2994 | </message> |
||
2995 | <message> |
||
9729 | cbradney | 2996 | <location filename="" line="136966688"/> |
8250 | cbradney | 2997 | <source>&Strike Through</source> |
2998 | <translation type="obsolete">Risca&do</translation> |
||
2999 | </message> |
||
3000 | <message> |
||
9729 | cbradney | 3001 | <location filename="" line="136966688"/> |
8250 | cbradney | 3002 | <source>All Master Pages</source> |
3003 | <translation type="obsolete">Todas as páginas Modelo</translation> |
||
3004 | </message> |
||
3005 | <message> |
||
9729 | cbradney | 3006 | <location filename="" line="136966688"/> |
8250 | cbradney | 3007 | <source>Embed a color profile for solid colors</source> |
3008 | <translation type="obsolete">Incorpora um perfil de cores para cores sólidas</translation> |
||
3009 | </message> |
||
3010 | <message> |
||
9729 | cbradney | 3011 | <location filename="" line="136966688"/> |
8250 | cbradney | 3012 | <source>Original Font</source> |
3013 | <translation type="obsolete">Fonte original</translation> |
||
3014 | </message> |
||
3015 | <message> |
||
9729 | cbradney | 3016 | <location filename="" line="136966688"/> |
8250 | cbradney | 3017 | <source>&Normal Resolution</source> |
3018 | <translation type="obsolete">&Média resolução</translation> |
||
3019 | </message> |
||
3020 | <message> |
||
9729 | cbradney | 3021 | <location filename="" line="136966688"/> |
8250 | cbradney | 3022 | <source>Master Pages</source> |
3023 | <translation type="obsolete">Páginas Mestre</translation> |
||
3024 | </message> |
||
3025 | <message> |
||
9729 | cbradney | 3026 | <location filename="" line="136966688"/> |
8250 | cbradney | 3027 | <source>Master Page:</source> |
3028 | <translation type="obsolete">Página modelo:</translation> |
||
3029 | </message> |
||
3030 | <message> |
||
9729 | cbradney | 3031 | <location filename="" line="136966688"/> |
8250 | cbradney | 3032 | <source>Master Page </source> |
3033 | <translation type="obsolete">Página modelo</translation> |
||
3034 | </message> |
||
3035 | <message> |
||
9729 | cbradney | 3036 | <location filename="" line="136966688"/> |
8250 | cbradney | 3037 | <source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
3038 | <translation type="obsolete">Copie um template.xml existente para um ficheiro chamado template.idioma_PAÍS.xml (use o mesmo código de idioma que está presente no ficheiro qm do seu idioma). Por exemplo, template.fi.xml para o idioma finlandês. A cópia deve estar localizada no mesmo directório do template.xml original assim, o Scribus poderá abri-la.</translation> |
||
3039 | </message> |
||
3040 | <message> |
||
9729 | cbradney | 3041 | <location filename="" line="136966688"/> |
8250 | cbradney | 3042 | <source>&Resolution:</source> |
3043 | <translation type="obsolete">&Resolução:</translation> |
||
3044 | </message> |
||
3045 | <message> |
||
9729 | cbradney | 3046 | <location filename="" line="136966688"/> |
8250 | cbradney | 3047 | <source>&Use Encryption</source> |
3048 | <translation type="obsolete">&Usar criptografia</translation> |
||
3049 | </message> |
||
3050 | <message> |
||
9729 | cbradney | 3051 | <location filename="" line="136966688"/> |
8250 | cbradney | 3052 | <source>Displacement below the baseline of the normal font on a line</source> |
3053 | <translation type="obsolete">Deslocamento da fonte abaixo da pauta em uma linha</translation> |
||
3054 | </message> |
||
3055 | <message> |
||
9729 | cbradney | 3056 | <location filename="" line="136966688"/> |
8250 | cbradney | 3057 | <source>Drop cap offset</source> |
3058 | <translation type="obsolete">Capitulação</translation> |
||
3059 | </message> |
||
3060 | <message> |
||
9729 | cbradney | 3061 | <location filename="" line="136966688"/> |
8250 | cbradney | 3062 | <source>No style</source> |
3063 | <translation type="obsolete">Sem estilo</translation> |
||
3064 | </message> |
||
3065 | <message> |
||
9729 | cbradney | 3066 | <location filename="" line="136966688"/> |
8250 | cbradney | 3067 | <source>Check for used transparencies</source> |
3068 | <translation type="obsolete">Procurar as transparências utilizadas</translation> |
||
3069 | </message> |
||
3070 | <message> |
||
9729 | cbradney | 3071 | <location filename="" line="136966688"/> |
8250 | cbradney | 3072 | <source>Short Words processing. Wait please...</source> |
3073 | <translation type="obsolete">Processando abreviaturas. Por favor, aguarde...</translation> |
||
3074 | </message> |
||
3075 | <message> |
||
9729 | cbradney | 3076 | <location filename="" line="136966688"/> |
8250 | cbradney | 3077 | <source>Enables the Preview Mode</source> |
3078 | <translation type="obsolete">Activa pré-visualização</translation> |
||
3079 | </message> |
||
3080 | <message> |
||
9729 | cbradney | 3081 | <location filename="" line="136966688"/> |
8250 | cbradney | 3082 | <source>You are running a development version of Scribus 1.3.x. The document you are working with was created in Scribus 1.2.x. Saving the current file under 1.3.x renders it unable to be edited in Scribus 1.2.x versions. To preserve the ability to edit in 1.2.x, save this file under a different name and further edit the newly named file and the original will be untouched. Are you sure you wish to proceed with this operation?</source> |
3083 | <translation type="obsolete">Você está executando uma versão de desenvolvimento do Scribus 1.3.X. O documento com o qual você está trabalhando foi criado com o Scribus 1.2.3 ou anterior. O processo de salvamento tornará este ficheiro inutilizável no Scribus 1.2.3, ao menos que você use 'Ficheiro' > 'Salvar como'. Tem acerteza que deseja prosseguir com essa operação?</translation> |
||
3084 | </message> |
||
3085 | <message> |
||
9729 | cbradney | 3086 | <location filename="" line="136966688"/> |
8250 | cbradney | 3087 | <source>Fill shade out of bounds, must be 0 <= shade <= 100.</source> |
3088 | <translation type="obsolete">A intensidade do preenchimento está fora do limite, deve ser >=0 e <=100.</translation> |
||
3089 | </message> |
||
3090 | <message> |
||
9729 | cbradney | 3091 | <location filename="" line="136966688"/> |
8250 | cbradney | 3092 | <source>Enable/disable the K (Black) ink plate</source> |
3093 | <translation type="obsolete">Activar/Desactivar a visualização da tinta K (Preto)</translation> |
||
3094 | </message> |
||
3095 | <message> |
||
9729 | cbradney | 3096 | <location filename="" line="136966688"/> |
8250 | cbradney | 3097 | <source>Leave colors untouched</source> |
3098 | <translation type="obsolete">Não alterar as cores</translation> |
||
3099 | </message> |
||
3100 | <message> |
||
9729 | cbradney | 3101 | <location filename="" line="136966688"/> |
8250 | cbradney | 3102 | <source>Scanner Manufacturer:</source> |
3103 | <translation type="obsolete">Fabricante do digitalizador:</translation> |
||
3104 | </message> |
||
3105 | <message> |
||
9729 | cbradney | 3106 | <location filename="" line="136966688"/> |
8250 | cbradney | 3107 | <source>Print help (this message) and exit</source> |
3108 | <translation type="obsolete">Ajuda de impressão (essa mensagem) e sai</translation> |
||
3109 | </message> |
||
3110 | <message> |
||
9729 | cbradney | 3111 | <location filename="" line="136966688"/> |
8250 | cbradney | 3112 | <source>Typing the text here provides quick searching in the font names. Searching is case insensitive. You can provide a common wild cards (*, ?, [...]) in your phrase. Examples: t* will list all fonts starting with t or T. *bold* will list all fonts with word bold, bolder etc. in the name.</source> |
3113 | <translation type="obsolete">Digite um nome de uma fonte para encontra-lá rapidamente. A busca é insensitiva à maiúsculas e minúsculas. Você pode usar funções como (*, ?, [...]) nas sua composição. Exemplos: t* listará todas as fontes começando com t ou T. 'Bold' listará todas as fonte que possuam Bold em seu nome.</translation> |
||
3114 | </message> |
||
3115 | <message> |
||
9729 | cbradney | 3116 | <location filename="" line="136966688"/> |
8250 | cbradney | 3117 | <source>Set kerning</source> |
3118 | <translation type="obsolete">Definir entre-letras</translation> |
||
3119 | </message> |
||
3120 | <message> |
||
9729 | cbradney | 3121 | <location filename="" line="136966688"/> |
8250 | cbradney | 3122 | <source>&Horizontal Shift:</source> |
3123 | <translation type="obsolete">Mudança &horizontal:</translation> |
||
3124 | </message> |
||
3125 | <message> |
||
9729 | cbradney | 3126 | <location filename="" line="136966688"/> |
8250 | cbradney | 3127 | <source>Angle of Rotation</source> |
3128 | <translation type="obsolete">Ângulo de rotação</translation> |
||
3129 | </message> |
||
3130 | <message> |
||
9729 | cbradney | 3131 | <location filename="" line="136966688"/> |
8250 | cbradney | 3132 | <source>Same as the Bleed</source> |
3133 | <translation type="obsolete">Tal como a sangria</translation> |
||
3134 | </message> |
||
3135 | <message> |
||
9729 | cbradney | 3136 | <location filename="" line="136966688"/> |
8250 | cbradney | 3137 | <source>Distribute bottoms equidistantly</source> |
3138 | <translation type="obsolete">Distribuir os fundos uniformemente</translation> |
||
3139 | </message> |
||
3140 | <message> |
||
9729 | cbradney | 3141 | <location filename="" line="136966688"/> |
8250 | cbradney | 3142 | <source>EPS Files (*.eps);;All Files (*)</source> |
3143 | <translation type="obsolete">Ficheiros EPS (*.eps);;Todos os ficheiros (*)</translation> |
||
3144 | </message> |
||
3145 | <message> |
||
9729 | cbradney | 3146 | <location filename="" line="136966688"/> |
8250 | cbradney | 3147 | <source>Import the margins for the selected page size from the available printers.</source> |
3148 | <translation type="obsolete">Importa as margens das impressoras disponíveis para o tamanho de página selecionado.</translation> |
||
3149 | </message> |
||
3150 | <message> |
||
9729 | cbradney | 3151 | <location filename="" line="136966688"/> |
8250 | cbradney | 3152 | <source>Distance for bleed from the left of the physical page</source> |
3153 | <translation type="obsolete">Distância para sangria do lado esquerdo da página física</translation> |
||
3154 | </message> |
||
3155 | <message> |
||
9729 | cbradney | 3156 | <location filename="" line="136966688"/> |
8250 | cbradney | 3157 | <source>Plugin: %1 failed post initialization</source> |
3158 | <translation type="obsolete">Plugin: %1 falhou após a iniciação</translation> |
||
3159 | </message> |
||
3160 | <message> |
||
9729 | cbradney | 3161 | <location filename="" line="136966688"/> |
8250 | cbradney | 3162 | <source>Unable to save pixmap</source> |
3163 | <translation type="obsolete">Não foi possível salvar a imagem</translation> |
||
3164 | </message> |
||
3165 | <message> |
||
9729 | cbradney | 3166 | <location filename="" line="136966688"/> |
8250 | cbradney | 3167 | <source>Color Management</source> |
3168 | <translation type="obsolete">Gestão de cor</translation> |
||
3169 | </message> |
||
3170 | <message> |
||
9729 | cbradney | 3171 | <location filename="" line="136966688"/> |
8250 | cbradney | 3172 | <source>Scribus frontend for Pure Postscript Barcode Writer</source> |
3173 | <translation type="obsolete">Interface do Scribus para o criador de códigos de barras totalmente em Postscript</translation> |
||
3174 | </message> |
||
3175 | <message> |
||
9729 | cbradney | 3176 | <location filename="" line="136966688"/> |
8250 | cbradney | 3177 | <source>Current Profile:</source> |
3178 | <translation type="obsolete">Perfil atual:</translation> |
||
3179 | </message> |
||
3180 | <message> |
||
9729 | cbradney | 3181 | <location filename="" line="136966688"/> |
8250 | cbradney | 3182 | <source>Object is a PDF Annotation or Field</source> |
3183 | <translation type="obsolete">O objeto é uma anotação ou campo PDF</translation> |
||
3184 | </message> |
||
3185 | <message> |
||
9729 | cbradney | 3186 | <location filename="" line="136966688"/> |
8250 | cbradney | 3187 | <source>Variable number of digits and capital letters</source> |
3188 | <translation type="obsolete">Número de dígitos variáveis e letras maiúsculas</translation> |
||
3189 | </message> |
||
3190 | <message> |
||
9729 | cbradney | 3191 | <location filename="" line="136966688"/> |
8250 | cbradney | 3192 | <source>Distance between the bottom margin guide and the edge of the page</source> |
3193 | <translation type="obsolete">Distância entre a guia da margem inferior e a borda da página</translation> |
||
3194 | </message> |
||
3195 | <message> |
||
9729 | cbradney | 3196 | <location filename="" line="136966688"/> |
8250 | cbradney | 3197 | <source>Character Palette</source> |
3198 | <translation type="obsolete">Paleta de Caracteres</translation> |
||
3199 | </message> |
||
3200 | <message> |
||
9729 | cbradney | 3201 | <location filename="" line="136966688"/> |
8250 | cbradney | 3202 | <source>Cannot set text shade on a non-text frame.</source> |
3203 | <translation type="obsolete">Não é possível definir a intensidade do texto em um quadro que não seja de texto.</translation> |
||
3204 | </message> |
||
3205 | <message> |
||
9729 | cbradney | 3206 | <location filename="" line="136966688"/> |
8250 | cbradney | 3207 | <source>+color </source> |
3208 | <translation type="obsolete">+cor </translation> |
||
3209 | </message> |
||
3210 | <message> |
||
9729 | cbradney | 3211 | <location filename="" line="136966688"/> |
8250 | cbradney | 3212 | <source>Stay on &Top</source> |
3213 | <translation type="obsolete">Ficar no &alto</translation> |
||
3214 | </message> |
||
3215 | <message> |
||
9729 | cbradney | 3216 | <location filename="" line="136966688"/> |
8250 | cbradney | 3217 | <source>Input Dialog</source> |
3218 | <translation type="obsolete">Diálogo de entrada:</translation> |
||
3219 | </message> |
||
3220 | <message> |
||
9729 | cbradney | 3221 | <location filename="" line="136966688"/> |
8250 | cbradney | 3222 | <source>Flip Vertical</source> |
3223 | <translation type="obsolete">Espelhamento vertical</translation> |
||
3224 | </message> |
||
3225 | <message> |
||
9729 | cbradney | 3226 | <location filename="" line="136966688"/> |
8250 | cbradney | 3227 | <source>Distance between the minor grid lines</source> |
3228 | <translation type="obsolete">Distância entre as linhas da grelha menor</translation> |
||
3229 | </message> |
||
3230 | <message> |
||
9729 | cbradney | 3231 | <location filename="" line="136966688"/> |
8250 | cbradney | 3232 | <source>Distance between the major grid lines</source> |
3233 | <translation type="obsolete">Distância entre as linhas da grelha maior</translation> |
||
3234 | </message> |
||
3235 | <message> |
||
9729 | cbradney | 3236 | <location filename="" line="136966688"/> |
8250 | cbradney | 3237 | <source>Enable the security features in your exported PDF. If you selected PDF 1.3, the PDF will be protected by 40 bit encryption. If you selected PDF 1.4, the PDF will be protected by 128 bit encryption. Disclaimer: PDF encryption is not as reliable as GPG or PGP encryption and does have some limitations.</source> |
3238 | <translation type="obsolete">Activa os recursos de segurança no seu PDF a ser exportado. Se você selecionar PDF 1.3, o PDF será protegido por uma criptografia de 40 bit. Se você selecionar PDF 1.4, o PDF será protegido por uma criptografia de 128 bit.Aviso: a criptografia PDF não é tão confiável quanto a encriptação GPG ou PGP e possui algumas limitações.</translation> |
||
3239 | </message> |
||
3240 | <message> |
||
9729 | cbradney | 3241 | <location filename="" line="136966688"/> |
8250 | cbradney | 3242 | <source>Remember association</source> |
3243 | <translation type="obsolete">Lembrar da associação</translation> |
||
3244 | </message> |
||
3245 | <message> |
||
9729 | cbradney | 3246 | <location filename="" line="136966688"/> |
8250 | cbradney | 3247 | <source>Mailing List</source> |
3248 | <translation type="obsolete">Lista de discussão</translation> |
||
3249 | </message> |
||
3250 | <message> |
||
9729 | cbradney | 3251 | <location filename="" line="136966688"/> |
8250 | cbradney | 3252 | <source>Range of Pages:</source> |
3253 | <translation type="obsolete">Gama de páginas</translation> |
||
3254 | </message> |
||
3255 | <message> |
||
9729 | cbradney | 3256 | <location filename="" line="136966688"/> |
8250 | cbradney | 3257 | <source>Appl&y to All Pages</source> |
3258 | <translation type="obsolete">Apl&icar em todas as páginas</translation> |
||
3259 | </message> |
||
3260 | <message> |
||
9729 | cbradney | 3261 | <location filename="" line="136966688"/> |
8250 | cbradney | 3262 | <source>Show &Console</source> |
3263 | <translation type="obsolete">Mostrar &console</translation> |
||
3264 | </message> |
||
3265 | <message> |
||
9729 | cbradney | 3266 | <location filename="" line="136966688"/> |
8250 | cbradney | 3267 | <source>Name of the style is not unique</source> |
3268 | <translation type="obsolete">Já existe um estilo com esse nome</translation> |
||
3269 | </message> |
||
3270 | <message> |
||
9729 | cbradney | 3271 | <location filename="" line="136966688"/> |
8250 | cbradney | 3272 | <source>Select top right for basepoint</source> |
3273 | <translation type="obsolete">Seleciona o ponto-base acima e à direita</translation> |
||
3274 | </message> |
||
3275 | <message> |
||
9729 | cbradney | 3276 | <location filename="" line="136966688"/> |
8250 | cbradney | 3277 | <source>&Info String:</source> |
3278 | <translation type="obsolete">Seqüência de &informação:</translation> |
||
3279 | </message> |
||
3280 | <message> |
||
9729 | cbradney | 3281 | <location filename="" line="136966688"/> |
8250 | cbradney | 3282 | <source>Scribus detected some errors. |
3283 | Consider using the Preflight Verifier to correct them.</source> |
||
3284 | <translation type="obsolete">O Scribus detectou alguns erros. |
||
3285 | Considere o uso do Verificador pré-vôo para corrigi-los.</translation> |
||
3286 | </message> |
||
3287 | <message> |
||
9729 | cbradney | 3288 | <location filename="" line="136966688"/> |
8250 | cbradney | 3289 | <source>&Background</source> |
3290 | <translation type="obsolete">&Plano de Fundo</translation> |
||
3291 | </message> |
||
3292 | <message> |
||
9729 | cbradney | 3293 | <location filename="" line="136966688"/> |
8250 | cbradney | 3294 | <source>Cannot get font of non-text frame.</source> |
3295 | <translation type="obsolete">Não é possível obter uma fonte de um quadro que não seja de texto.</translation> |
||
3296 | </message> |
||
3297 | <message> |
||
9729 | cbradney | 3298 | <location filename="" line="136966688"/> |
8250 | cbradney | 3299 | <source>Use &Blackpoint Compensation</source> |
3300 | <translation type="obsolete">Usar Compensação de &Pontos Negros</translation> |
||
3301 | </message> |
||
3302 | <message> |
||
9729 | cbradney | 3303 | <location filename="" line="136966688"/> |
8250 | cbradney | 3304 | <source>Set line color transparency</source> |
3305 | <translation type="obsolete">Define a cor da transparência da linha</translation> |
||
3306 | </message> |
||
3307 | <message> |
||
9729 | cbradney | 3308 | <location filename="" line="136966688"/> |
8250 | cbradney | 3309 | <source>Print Previe&w</source> |
3310 | <translation type="obsolete">&Visualizar impressão</translation> |
||
3311 | </message> |
||
3312 | <message> |
||
9729 | cbradney | 3313 | <location filename="" line="136966688"/> |
8250 | cbradney | 3314 | <source>Current Page</source> |
3315 | <translation type="obsolete">Página actual</translation> |
||
3316 | </message> |
||
3317 | <message> |
||
9729 | cbradney | 3318 | <location filename="" line="136966688"/> |
8250 | cbradney |