1,14 → 1,13 |
<!DOCTYPE TS> |
<TS> |
<context> |
<!DOCTYPE TS><TS> |
<context> |
<name></name> |
<message> |
<source>getColorNames() -> list |
<source>getColorNames() -> list |
|
Returns a list containing the names of all defined colors in the document. |
If no document is open, returns a list of the default document colors. |
</source> |
<translation>getColorNames() -> list |
<translation>getColorNames() -> list |
|
Returns a list containing the names of all defined colours in the document. |
If no document is open, returns a list of the default document colours. |
15,13 → 14,13 |
</translation> |
</message> |
<message> |
<source>newDocDialog() -> bool |
<source>newDocDialog() -> bool |
|
Displays the "New Document" dialog box. Creates a new document if the user |
accepts the settings. Does not create a document if the user presses cancel. |
Returns true if a new document was created. |
</source> |
<translation>newDocDialog() -> bool |
<translation>newDocDialog() -> bool |
|
Displays the "New Document" dialog box. Creates a new document if the user |
accepts the settings. Does not create a document if the user presses cancel. |
29,14 → 28,14 |
</translation> |
</message> |
<message> |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
44,8 → 43,8 |
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
62,14 → 61,14 |
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</source> |
<translation>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
<translation>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
77,8 → 76,8 |
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
97,12 → 96,12 |
</translation> |
</message> |
<message> |
<source>getFillColor(["name"]) -> string |
<source>getFillColor(["name"]) -> string |
|
Returns the name of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getFillColor(["name"]) -> string |
<translation>getFillColor(["name"]) -> string |
|
Returns the name of the fill colour of the object "name". |
If "name" is not given the currently selected item is used. |
109,7 → 108,7 |
</translation> |
</message> |
<message> |
<source>moveObject(dx, dy [, "name"]) |
<source>moveObject(dx, dy [, "name"]) |
|
Moves the object "name" by dx and dy relative to its current position. The |
distances are expressed in the current measurement unit of the document (see |
116,7 → 115,7 |
UNIT constants). If "name" is not given the currently selected item is used. |
If the object "name" belongs to a group, the whole group is moved. |
</source> |
<translation>moveObject(dx, dy [, "name"]) |
<translation>moveObject(dx, dy [, "name"]) |
|
Moves the object "name" by dx and dy relative to its current position. The |
distances are expressed in the current measurement unit of the document (see |
125,13 → 124,13 |
</translation> |
</message> |
<message> |
<source>setRedraw(bool) |
<source>setRedraw(bool) |
|
Disables page redraw when bool = False, otherwise redrawing is enabled. |
This change will persist even after the script exits, so make sure to call |
setRedraw(True) in a finally: clause at the top level of your script. |
</source> |
<translation>setRedraw(bool) |
<translation>setRedraw(bool) |
|
Disables page redraw when bool = False, otherwise redrawing is enabled. |
This change will persist even after the script exits, so make sure to call |
139,7 → 138,7 |
</translation> |
</message> |
<message> |
<source>createRect(x, y, width, height, ["name"]) -> string |
<source>createRect(x, y, width, height, ["name"]) -> string |
|
Creates a new rectangle on the current page and returns its name. The |
coordinates are given in the current measurement units of the document |
147,9 → 146,9 |
because you need this name to reference that object in future. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation>createRect(x, y, width, height, ["name"]) -> string |
<translation>createRect(x, y, width, height, ["name"]) -> string |
|
Creates a new rectangle on the current page and returns its name. The |
coordinates are given in the current measurement units of the document |
157,11 → 156,11 |
because you need this name to reference that object in future. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</translation> |
</message> |
<message> |
<source>newPage(where [,"masterpage"]) |
<source>newPage(where [,"masterpage"]) |
|
Creates a new page. If "where" is -1 the new Page is appended to the |
document, otherwise the new page is inserted before "where". Page numbers are |
171,7 → 170,7 |
|
May raise IndexError if the page number is out of range |
</source> |
<translation>newPage(where [,"masterpage"]) |
<translation>newPage(where [,"masterpage"]) |
|
Creates a new page. If "where" is -1 the new Page is appended to the |
document, otherwise the new page is inserted before "where". Page numbers are |
183,21 → 182,21 |
</translation> |
</message> |
<message> |
<source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
<source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
|
Sets the gradient fill of the object "name" to type. Color descriptions are |
the same as for setFillColor() and setFillShade(). See the constants for |
available types (FILL_<type>). |
available types (FILL_<type>). |
</source> |
<translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
<translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
|
Sets the gradient fill of the object "name" to type. Colour descriptions are |
the same as for setFillColor() and setFillShade(). See the constants for |
available types (FILL_<type>). |
available types (FILL_<type>). |
</translation> |
</message> |
<message> |
<source>getFontSize(["name"]) -> float |
<source>getFontSize(["name"]) -> float |
|
Returns the font size in points for the text frame "name". If this text |
frame has some text selected the value assigned to the first character of |
204,7 → 203,7 |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getFontSize(["name"]) -> float |
<translation>getFontSize(["name"]) -> float |
|
Returns the font size in points for the text frame "name". If this text |
frame has some text selected the value assigned to the first character of |
213,54 → 212,54 |
</translation> |
</message> |
<message> |
<source>messagebarText("string") |
<source>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation>messagebarText("string") |
<translation>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
must be UTF8 encoded or 'unicode' string(recommended). |
</translation> |
</message> |
<message> |
<source>importSVG("string") |
<source>importSVG("string") |
|
The "string" must be a valid filename for a SVG image. The text |
must be UTF8 encoded or 'unicode' string(recommended). |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation>importSVG("string") |
<translation>importSVG("string") |
|
The "string" must be a valid filename for a SVG image. The text |
must be UTF8 encoded or 'unicode' string(recommended). |
must be UTF8 encoded or 'unicode' string(recommended). |
</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>@default</name> |
<message> |
<source>getColor("name") -> tuple |
<source>getColor("name") -> tuple |
|
Returns a tuple (C, M, Y, K) containing the four color components of the |
color "name" from the current document. If no document is open, returns |
the value of the named color from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>getColor("name") -> tuple |
<translation>getColor("name") -> tuple |
|
Returns a tuple (C, M, Y, K) containing the four colour components of the |
colour "name" from the current document. If no document is open, returns |
the value of the named colour from the default document colours. |
|
May raise NotFoundError if the named colour wasn't found. |
May raise NotFoundError if the named colour wasn't found. |
May raise ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>getColorAsRGB("name") -> tuple |
<source>getColorAsRGB("name") -> tuple |
|
Returns a tuple (R,G,B) containing the three color components of the |
color "name" from the current document, converted to the RGB color |
267,10 → 266,10 |
space. If no document is open, returns the value of the named color |
from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>getColorAsRGB("name") -> tuple |
<translation>getColorAsRGB("name") -> tuple |
|
Returns a tuple (R,G,B) containing the three colour components of the |
colour "name" from the current document, converted to the RGB colour |
277,32 → 276,32 |
space. If no document is open, returns the value of the named colour |
from the default document colours. |
|
May raise NotFoundError if the named colour wasn't found. |
May raise NotFoundError if the named colour wasn't found. |
May raise ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>changeColor("name", c, m, y, k) |
<source>changeColor("name", c, m, y, k) |
|
Changes the color "name" to the specified CMYK value. The color value is |
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
Color components should be in the range from 0 to 255. |
|
May raise NotFoundError if the named color wasn't found. |
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>changeColour("name", c, m, y, k) |
<translation>changeColour("name", c, m, y, k) |
|
Changes the colour "name" to the specified CMYK value. The colour value is |
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
Colour components should be in the range from 0 to 255. |
|
May raise NotFoundError if the named colour wasn't found. |
May raise NotFoundError if the named colour wasn't found. |
May raise ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>defineColor("name", c, m, y, k) |
<source>defineColor("name", c, m, y, k) |
|
Defines a new color "name". The color Value is defined via four components: |
c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
310,7 → 309,7 |
|
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>defineColor("name", c, m, y, k) |
<translation>defineColor("name", c, m, y, k) |
|
Defines a new colour "name". The colour Value is defined via four components: |
c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in |
320,7 → 319,7 |
</translation> |
</message> |
<message> |
<source>deleteColor("name", "replace") |
<source>deleteColor("name", "replace") |
|
Deletes the color "name". Every occurence of that color is replaced by the |
color "replace". If not specified, "replace" defaults to the color |
329,10 → 328,10 |
deleteColor works on the default document colors if there is no document open. |
In that case, "replace", if specified, has no effect. |
|
May raise NotFoundError if a named color wasn't found. |
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>deleteColor("name", "replace") |
<translation>deleteColor("name", "replace") |
|
Deletes the colour "name". Every occurence of that colour is replaced by the |
colour "replace". If not specified, "replace" defaults to the colour |
341,32 → 340,32 |
deleteColor works on the default document colours if there is no document open. |
In that case, "replace", if specified, has no effect. |
|
May raise NotFoundError if a named colour wasn't found. |
May raise NotFoundError if a named colour wasn't found. |
May raise ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>replaceColor("name", "replace") |
<source>replaceColor("name", "replace") |
|
Every occurence of the color "name" is replaced by the color "replace". |
|
May raise NotFoundError if a named color wasn't found. |
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation>replaceColor("name", "replace") |
<translation>replaceColor("name", "replace") |
|
Every occurence of the colour "name" is replaced by the colour "replace". |
|
May raise NotFoundError if a named colour wasn't found. |
May raise NotFoundError if a named colour wasn't found. |
May raise ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
<source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
|
Shows a File Open dialog box with the caption "caption". Files are filtered |
with the filter string "filter". A default filename or file path can also |
supplied, leave this string empty when you don't want to use it. A value of |
supplied, leave this string empty when you don't want to use it. A value of |
True for haspreview enables a small preview widget in the FileSelect box. When |
the issave parameter is set to True the dialog acts like a "Save As" dialog |
otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
373,19 → 372,19 |
the dialog shows and returns only directories. The default for all of the |
opional parameters is False. |
|
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
|
Refer to the Qt-Documentation for QFileDialog for details on filters. |
|
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
</source> |
<translation>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
<translation>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
|
Shows a File Open dialog box with the caption "caption". Files are filtered |
with the filter string "filter". A default filename or file path can also |
supplied, leave this string empty when you don't want to use it. A value of |
supplied, leave this string empty when you don't want to use it. A value of |
True for haspreview enables a small preview widget in the FileSelect box. When |
the issave parameter is set to True the dialog acts like a "Save As" dialog |
otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
392,19 → 391,19 |
the dialog shows and returns only directories. The default for all of the |
opional parameters is False. |
|
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
|
Refer to the Qt-Documentation for QFileDialog for details on filters. |
|
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
</translation> |
</message> |
<message> |
<source>messageBox("caption", "message", |
<source>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
|
Displays a message box with the title "caption", the message "message", and |
an icon "icon" and up to 3 buttons. By default no icon is used and a single |
423,10 → 422,10 |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
ICON_ERROR) |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
435,9 → 434,9 |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</source> |
<translation>messageBox("caption", "message", |
<translation>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
|
Displays a message box with the title "caption", the message "message", and |
an icon "icon" and up to 3 buttons. By default no icon is used and a single |
456,10 → 455,10 |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
ICON_ERROR) |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
470,29 → 469,29 |
</translation> |
</message> |
<message> |
<source>valueDialog(caption, message [,defaultvalue]) -> string |
<source>valueDialog(caption, message [,defaultvalue]) -> string |
|
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
Example: valueDialog('title', 'text in the window', 'optional') |
</source> |
<translation>valueDialog(caption, message [,defaultvalue]) -> string |
<translation>valueDialog(caption, message [,defaultvalue]) -> string |
|
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
Example: valueDialog('title', 'text in the window', 'optional') |
</translation> |
</message> |
<message> |
<source>closeDoc() |
<source>closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</source> |
<translation>closeDoc() |
<translation>closeDoc() |
|
Closes the current document without prompting to save. |
|
500,23 → 499,23 |
</translation> |
</message> |
<message> |
<source>haveDoc() -> bool |
<source>haveDoc() -> bool |
|
Returns true if there is a document open. |
</source> |
<translation>haveDoc() -> bool |
<translation>haveDoc() -> bool |
|
Returns true if there is a document open. |
</translation> |
</message> |
<message> |
<source>openDoc("name") |
<source>openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</source> |
<translation>openDoc("name") |
<translation>openDoc("name") |
|
Opens the document "name". |
|
524,7 → 523,7 |
</translation> |
</message> |
<message> |
<source>saveDoc() |
<source>saveDoc() |
|
Saves the current document with its current name, returns true if successful. |
If the document has not already been saved, this may bring up an interactive |
532,7 → 531,7 |
|
If the save fails, there is currently no way to tell. |
</source> |
<translation>saveDoc() |
<translation>saveDoc() |
|
Saves the current document with its current name, returns true if successful. |
If the document has not already been saved, this may bring up an interactive |
542,7 → 541,7 |
</translation> |
</message> |
<message> |
<source>saveDocAs("name") |
<source>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
549,7 → 548,7 |
|
May raise ScribusError if the save fails. |
</source> |
<translation>saveDocAs("name") |
<translation>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
558,12 → 557,12 |
</translation> |
</message> |
<message> |
<source>saveDocAs("author", "info", "description") -> bool |
<source>saveDocAs("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</source> |
<translation>saveDocAs("author", "info", "description") -> bool |
<translation>saveDocAs("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
570,43 → 569,43 |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation>setMargins(lr, rr, tr, br) |
<translation>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</translation> |
</message> |
<message> |
<source>setUnit(type) |
<source>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</source> |
<translation>setUnit(type) |
<translation>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</translation> |
</message> |
<message> |
<source>getUnit() -> integer (Scribus unit constant) |
<source>getUnit() -> integer (Scribus unit constant) |
|
Returns the measurement units of the document. The returned value will be one |
of the UNIT_* constants: |
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
</source> |
<translation>getUnit() -> integer (Scribus unit constant) |
<translation>getUnit() -> integer (Scribus unit constant) |
|
Returns the measurement units of the document. The returned value will be one |
of the UNIT_* constants: |
614,12 → 613,12 |
</translation> |
</message> |
<message> |
<source>loadStylesFromFile("filename") |
<source>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</source> |
<translation>loadStylesFromFile("filename") |
<translation>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
626,7 → 625,7 |
</translation> |
</message> |
<message> |
<source>setDocType(facingPages, firstPageLeft) |
<source>setDocType(facingPages, firstPageLeft) |
|
Sets the document type. To get facing pages set the first parameter to |
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
633,7 → 632,7 |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</source> |
<translation>setDocType(facingPages, firstPageLeft) |
<translation>setDocType(facingPages, firstPageLeft) |
|
Sets the document type. To get facing pages set the first parameter to |
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
642,12 → 641,12 |
</translation> |
</message> |
<message> |
<source>getLineColor(["name"]) -> string |
<source>getLineColor(["name"]) -> string |
|
Returns the name of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getLineColor(["name"]) -> string |
<translation>getLineColor(["name"]) -> string |
|
Returns the name of the line colour of the object "name". |
If "name" is not given the currently selected item is used. |
654,12 → 653,12 |
</translation> |
</message> |
<message> |
<source>getLineWidth(["name"]) -> integer |
<source>getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation>getLineWidth(["name"]) -> integer |
<translation>getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
666,12 → 665,12 |
</translation> |
</message> |
<message> |
<source>getLineShade(["name"]) -> integer |
<source>getLineShade(["name"]) -> integer |
|
Returns the shading value of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getLineShade(["name"]) -> integer |
<translation>getLineShade(["name"]) -> integer |
|
Returns the shading value of the line colour of the object "name". |
If "name" is not given the currently selected item is used. |
678,13 → 677,13 |
</translation> |
</message> |
<message> |
<source>getLineJoin(["name"]) -> integer (see contants) |
<source>getLineJoin(["name"]) -> integer (see contants) |
|
Returns the line join style of the object "name". If "name" is not given |
the currently selected item is used. The join types are: |
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
</source> |
<translation>getLineJoin(["name"]) -> integer (see contants) |
<translation>getLineJoin(["name"]) -> integer (see contants) |
|
Returns the line join style of the object "name". If "name" is not given |
the currently selected item is used. The join types are: |
692,13 → 691,13 |
</translation> |
</message> |
<message> |
<source>getLineEnd(["name"]) -> integer (see constants) |
<source>getLineEnd(["name"]) -> integer (see constants) |
|
Returns the line cap style of the object "name". If "name" is not given the |
currently selected item is used. The cap types are: |
CAP_FLAT, CAP_ROUND, CAP_SQUARE |
</source> |
<translation>getLineEnd(["name"]) -> integer (see constants) |
<translation>getLineEnd(["name"]) -> integer (see constants) |
|
Returns the line cap style of the object "name". If "name" is not given the |
currently selected item is used. The cap types are: |
706,13 → 705,13 |
</translation> |
</message> |
<message> |
<source>getLineStyle(["name"]) -> integer (see constants) |
<source>getLineStyle(["name"]) -> integer (see constants) |
|
Returns the line style of the object "name". If "name" is not given the |
currently selected item is used. Line style constants are: |
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
</source> |
<translation>getLineStyle(["name"]) -> integer (see constants) |
<translation>getLineStyle(["name"]) -> integer (see constants) |
|
Returns the line style of the object "name". If "name" is not given the |
currently selected item is used. Line style constants are: |
720,12 → 719,12 |
</translation> |
</message> |
<message> |
<source>getFillShade(["name"]) -> integer |
<source>getFillShade(["name"]) -> integer |
|
Returns the shading value of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getFillShade(["name"]) -> integer |
<translation>getFillShade(["name"]) -> integer |
|
Returns the shading value of the fill colour of the object "name". |
If "name" is not given the currently selected item is used. |
732,22 → 731,22 |
</translation> |
</message> |
<message> |
<source>getCornerRadius(["name"]) -> integer |
<source>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
</source> |
<translation>getCornerRadius(["name"]) -> integer |
<translation>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
</translation> |
</message> |
<message> |
<source>getImageScale(["name"]) -> (x,y) |
<source>getImageScale(["name"]) -> (x,y) |
|
Returns a (x, y) tuple containing the scaling values of the image frame |
"name". If "name" is not given the currently selected item is used. |
</source> |
<translation>getImageScale(["name"]) -> (x,y) |
<translation>getImageScale(["name"]) -> (x,y) |
|
Returns a (x, y) tuple containing the scaling values of the image frame |
"name". If "name" is not given the currently selected item is used. |
754,12 → 753,12 |
</translation> |
</message> |
<message> |
<source>getImageName(["name"]) -> string |
<source>getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
</source> |
<translation>getImageName(["name"]) -> string |
<translation>getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
766,43 → 765,43 |
</translation> |
</message> |
<message> |
<source>getPosition(["name"]) -> (x,y) |
<source>getPosition(["name"]) -> (x,y) |
|
Returns a (x, y) tuple with the position of the object "name". |
If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
- see UNIT_<type> for reference. |
- see UNIT_<type> for reference. |
</source> |
<translation>getPosition(["name"]) -> (x,y) |
<translation>getPosition(["name"]) -> (x,y) |
|
Returns a (x, y) tuple with the position of the object "name". |
If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
- see UNIT_<type> for reference. |
- see UNIT_<type> for reference. |
</translation> |
</message> |
<message> |
<source>getSize(["name"]) -> (width,height) |
<source>getSize(["name"]) -> (width,height) |
|
Returns a (width, height) tuple with the size of the object "name". |
If "name" is not given the currently selected item is used. The size is |
expressed in the current measurement unit of the document - see UNIT_<type> |
expressed in the current measurement unit of the document - see UNIT_<type> |
for reference. |
</source> |
<translation>getSize(["name"]) -> (width,height) |
<translation>getSize(["name"]) -> (width,height) |
|
Returns a (width, height) tuple with the size of the object "name". |
If "name" is not given the currently selected item is used. The size is |
expressed in the current measurement unit of the document - see UNIT_<type> |
expressed in the current measurement unit of the document - see UNIT_<type> |
for reference. |
</translation> |
</message> |
<message> |
<source>getRotation(["name"]) -> integer |
<source>getRotation(["name"]) -> integer |
|
Returns the rotation of the object "name". The value is expressed in degrees, |
and clockwise is positive. If "name" is not given the currently selected item |
is used. |
</source> |
<translation>getRotation(["name"]) -> integer |
<translation>getRotation(["name"]) -> integer |
|
Returns the rotation of the object "name". The value is expressed in degrees, |
and clockwise is positive. If "name" is not given the currently selected item |
810,86 → 809,86 |
</translation> |
</message> |
<message> |
<source>getAllObjects() -> list |
<source>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</source> |
<translation>getAllObjects() -> list |
<translation>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</translation> |
</message> |
<message> |
<source>getPropertyCType(object, property, includesuper=True) |
<source>getPropertyCType(object, property, includesuper=True) |
|
Returns the name of the C type of `property' of `object'. See getProperty() |
Returns the name of the C type of `property' of `object'. See getProperty() |
for details of arguments. |
|
If `includesuper' is true, search inherited properties too. |
If `includesuper' is true, search inherited properties too. |
</source> |
<translation>getPropertyCType(object, property, includesuper=True) |
<translation>getPropertyCType(object, property, includesuper=True) |
|
Returns the name of the C type of `property' of `object'. See getProperty() |
Returns the name of the C type of `property' of `object'. See getProperty() |
for details of arguments. |
|
If `includesuper' is true, search inherited properties too. |
If `includesuper' is true, search inherited properties too. |
</translation> |
</message> |
<message> |
<source>getPropertyNames(object, includesuper=True) |
<source>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</source> |
<translation>getPropertyNames(object, includesuper=True) |
<translation>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</translation> |
</message> |
<message> |
<source>getProperty(object, property) |
<source>getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
Return the value of the property `property' of the passed `object'. |
|
The `object' argument may be a string, in which case the named PageItem |
The `object' argument may be a string, in which case the named PageItem |
is searched for. It may also be a PyCObject, which may point to any |
C++ QObject instance. |
|
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
|
The return value varies depending on the type of the property. |
</source> |
<translation>getProperty(object, property) |
<translation>getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
Return the value of the property `property' of the passed `object'. |
|
The `object' argument may be a string, in which case the named PageItem |
The `object' argument may be a string, in which case the named PageItem |
is searched for. It may also be a PyCObject, which may point to any |
C++ QObject instance. |
|
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
|
The return value varies depending on the type of the property. |
</translation> |
</message> |
<message> |
<source>setProperty(object, property, value) |
<source>setProperty(object, property, value) |
|
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</source> |
<translation>setProperty(object, property, value) |
<translation>setProperty(object, property, value) |
|
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
896,18 → 895,18 |
</translation> |
</message> |
<message> |
<source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
<source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
|
Return a list of children of `object', possibly restricted to children |
of class named `ofclass' or children named `ofname'. If `recursive' is true, |
Return a list of children of `object', possibly restricted to children |
of class named `ofclass' or children named `ofname'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
|
See QObject::children() in the Qt docs for more information. |
</source> |
<translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
<translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
|
Return a list of children of `object', possibly restricted to children |
of class named `ofclass' or children named `ofname'. If `recursive' is true, |
Return a list of children of `object', possibly restricted to children |
of class named `ofclass' or children named `ofname'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
|
See QObject::children() in the Qt docs for more information. |
914,21 → 913,21 |
</translation> |
</message> |
<message> |
<source>getChild(object, childname, ofclass=None, recursive=True) |
<source>getChild(object, childname, ofclass=None, recursive=True) |
|
Return the first child of `object' named `childname', possibly restricting |
the search to children of type name `ofclass'. If `recursive' is true, |
Return the first child of `object' named `childname', possibly restricting |
the search to children of type name `ofclass'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
</source> |
<translation>getChild(object, childname, ofclass=None, recursive=True) |
<translation>getChild(object, childname, ofclass=None, recursive=True) |
|
Return the first child of `object' named `childname', possibly restricting |
the search to children of type name `ofclass'. If `recursive' is true, |
Return the first child of `object' named `childname', possibly restricting |
the search to children of type name `ofclass'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
</translation> |
</message> |
<message> |
<source>moveObjectAbs(x, y [, "name"]) |
<source>moveObjectAbs(x, y [, "name"]) |
|
Moves the object "name" to a new location. The coordinates are expressed in |
the current measurement unit of the document (see UNIT constants). If "name" |
935,7 → 934,7 |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</source> |
<translation>moveObjectAbs(x, y [, "name"]) |
<translation>moveObjectAbs(x, y [, "name"]) |
|
Moves the object "name" to a new location. The coordinates are expressed in |
the current measurement unit of the document (see UNIT constants). If "name" |
944,7 → 943,7 |
</translation> |
</message> |
<message> |
<source>rotateObject(rot [, "name"]) |
<source>rotateObject(rot [, "name"]) |
|
Rotates the object "name" by "rot" degrees relatively. The object is |
rotated by the vertex that is currently selected as the rotation point - by |
952,7 → 951,7 |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</source> |
<translation>rotateObject(rot [, "name"]) |
<translation>rotateObject(rot [, "name"]) |
|
Rotates the object "name" by "rot" degrees relatively. The object is |
rotated by the vertex that is currently selected as the rotation point - by |
962,13 → 961,13 |
</translation> |
</message> |
<message> |
<source>rotateObjectAbs(rot [, "name"]) |
<source>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positve values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</source> |
<translation>rotateObjectAbs(rot [, "name"]) |
<translation>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positve values |
mean counter clockwise rotation. If "name" is not given the currently |
976,12 → 975,12 |
</translation> |
</message> |
<message> |
<source>sizeObject(width, height [, "name"]) |
<source>sizeObject(width, height [, "name"]) |
|
Resizes the object "name" to the given width and height. If "name" |
is not given the currently selected item is used. |
</source> |
<translation>sizeObject(width, height [, "name"]) |
<translation>sizeObject(width, height [, "name"]) |
|
Resizes the object "name" to the given width and height. If "name" |
is not given the currently selected item is used. |
988,13 → 987,13 |
</translation> |
</message> |
<message> |
<source>getSelectedObject([nr]) -> string |
<source>getSelectedObject([nr]) -> string |
|
Returns the name of the selected object. "nr" if given indicates the number |
of the selected object, e.g. 0 means the first selected object, 1 means the |
second selected Object and so on. |
</source> |
<translation>getSelectedObject([nr]) -> string |
<translation>getSelectedObject([nr]) -> string |
|
Returns the name of the selected object. "nr" if given indicates the number |
of the selected object, e.g. 0 means the first selected object, 1 means the |
1002,43 → 1001,43 |
</translation> |
</message> |
<message> |
<source>selectionCount() -> integer |
<source>selectionCount() -> integer |
|
Returns the number of selected objects. |
</source> |
<translation>selectionCount() -> integer |
<translation>selectionCount() -> integer |
|
Returns the number of selected objects. |
</translation> |
</message> |
<message> |
<source>selectObject("name") |
<source>selectObject("name") |
|
Selects the object with the given "name". |
</source> |
<translation>selectObject("name") |
<translation>selectObject("name") |
|
Selects the object with the given "name". |
</translation> |
</message> |
<message> |
<source>deselectAll() |
<source>deselectAll() |
|
Deselects all objects in the whole document. |
</source> |
<translation>deselectAll() |
<translation>deselectAll() |
|
Deselects all objects in the whole document. |
</translation> |
</message> |
<message> |
<source>groupObjects(list) |
<source>groupObjects(list) |
|
Groups the objects named in "list" together. "list" must contain the names |
of the objects to be grouped. If "list" is not given the currently selected |
items are used. |
</source> |
<translation>groupObjects(list) |
<translation>groupObjects(list) |
|
Groups the objects named in "list" together. "list" must contain the names |
of the objects to be grouped. If "list" is not given the currently selected |
1046,15 → 1045,15 |
</translation> |
</message> |
<message> |
<source>unGroupObjects("name") |
<source>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
<translation>unGroupObjects("name") |
<translation>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation> |
</message> |
<message> |
<source>scaleGroup(factor [,"name"]) |
<source>scaleGroup(factor [,"name"]) |
|
Scales the group the object "name" belongs to. Values greater than 1 enlarge |
the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
1064,7 → 1063,7 |
|
May raise ValueError if an invalid scale factor is passed. |
</source> |
<translation>scaleGroup(factor [,"name"]) |
<translation>scaleGroup(factor [,"name"]) |
|
Scales the group the object "name" belongs to. Values greater than 1 enlarge |
the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
1076,7 → 1075,7 |
</translation> |
</message> |
<message> |
<source>loadImage("filename" [, "name"]) |
<source>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
1083,7 → 1082,7 |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation>loadImage("filename" [, "name"]) |
<translation>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
1092,7 → 1091,7 |
</translation> |
</message> |
<message> |
<source>scaleImage(x, y [, "name"]) |
<source>scaleImage(x, y [, "name"]) |
|
Sets the scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
1100,7 → 1099,7 |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation>scaleImage(x, y [, "name"]) |
<translation>scaleImage(x, y [, "name"]) |
|
Sets the scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
1110,26 → 1109,26 |
</translation> |
</message> |
<message> |
<source>lockObject(["name"]) -> bool |
<source>lockObject(["name"]) -> bool |
|
Locks the object "name" if it's unlocked or unlock it if it's locked. |
Locks the object "name" if it's unlocked or unlock it if it's locked. |
If "name" is not given the currently selected item is used. Returns true |
if locked. |
</source> |
<translation>lockObject(["name"]) -> bool |
<translation>lockObject(["name"]) -> bool |
|
Locks the object "name" if it's unlocked or unlock it if it's locked. |
Locks the object "name" if it's unlocked or unlock it if it's locked. |
If "name" is not given the currently selected item is used. Returns true |
if locked. |
</translation> |
</message> |
<message> |
<source>isLocked(["name"]) -> bool |
<source>isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</source> |
<translation>isLocked(["name"]) -> bool |
<translation>isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
1136,47 → 1135,47 |
</translation> |
</message> |
<message> |
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
|
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
|
May raise WrongFrameTypeError. |
</source> |
<translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
<translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
|
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
|
May raise WrongFrameTypeError. |
</translation> |
</message> |
<message> |
<source>getFontNames() -> list |
<source>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</source> |
<translation>getFontNames() -> list |
<translation>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</translation> |
</message> |
<message> |
<source>getXFontNames() -> list of tuples |
<source>getXFontNames() -> list of tuples |
|
Returns a larger font info. It's a list of the tuples with: |
Returns a larger font info. It's a list of the tuples with: |
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
</source> |
<translation>getXFontNames() -> list of tuples |
<translation>getXFontNames() -> list of tuples |
|
Returns a larger font info. It's a list of the tuples with: |
Returns a larger font info. It's a list of the tuples with: |
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
</translation> |
</message> |
<message> |
<source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
<source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
1184,10 → 1183,10 |
specifies the image format to generate, and supports any format allowed |
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
|
May raise NotFoundError if the specified font can't be found. |
May raise NotFoundError if the specified font can't be found. |
May raise ValueError if an empty sample or filename is passed. |
</source> |
<translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
<translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
1195,184 → 1194,184 |
specifies the image format to generate, and supports any format allowed |
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
|
May raise NotFoundError if the specified font can't be found. |
May raise NotFoundError if the specified font can't be found. |
May raise ValueError if an empty sample or filename is passed. |
</translation> |
</message> |
<message> |
<source>getLayers() -> list |
<source>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</source> |
<translation>getLayers() -> list |
<translation>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</translation> |
</message> |
<message> |
<source>setActiveLayer("name") |
<source>setActiveLayer("name") |
|
Sets the active layer to the layer named "name". |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>setActiveLayer("name") |
<translation>setActiveLayer("name") |
|
Sets the active layer to the layer named "name". |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getActiveLayer() -> string |
<source>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</source> |
<translation>getActiveLayer() -> string |
<translation>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</translation> |
</message> |
<message> |
<source>sentToLayer("layer" [, "name"]) |
<source>sentToLayer("layer" [, "name"]) |
|
Sends the object "name" to the layer "layer". The layer must exist. |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>sentToLayer("layer" [, "name"]) |
<translation>sentToLayer("layer" [, "name"]) |
|
Sends the object "name" to the layer "layer". The layer must exist. |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerVisible("layer", visible) |
<source>setLayerVisible("layer", visible) |
|
Sets the layer "layer" to be visible or not. If is the visible set to false |
the layer is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>setLayerVisible("layer", visible) |
<translation>setLayerVisible("layer", visible) |
|
Sets the layer "layer" to be visible or not. If is the visible set to false |
the layer is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerPrintable("layer", printable) |
<source>setLayerPrintable("layer", printable) |
|
Sets the layer "layer" to be printable or not. If is the printable set to |
false the layer won't be printed. |
false the layer won't be printed. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>setLayerPrintable("layer", printable) |
<translation>setLayerPrintable("layer", printable) |
|
Sets the layer "layer" to be printable or not. If is the printable set to |
false the layer won't be printed. |
false the layer won't be printed. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerPrintable("layer") -> bool |
<source>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is visible or not, a value of True means |
that the layer "layer" is visible, a value of False means that the layer |
"layer" is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>isLayerPrintable("layer") -> bool |
<translation>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is visible or not, a value of True means |
that the layer "layer" is visible, a value of False means that the layer |
"layer" is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerPrintable("layer") -> bool |
<source>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is printable or not, a value of True means |
that the layer "layer" can be printed, a value of False means that printing |
the layer "layer" is disabled. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>isLayerPrintable("layer") -> bool |
<translation>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is printable or not, a value of True means |
that the layer "layer" can be printed, a value of False means that printing |
the layer "layer" is disabled. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>deleteLayer("layer") |
<source>deleteLayer("layer") |
|
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>deleteLayer("layer") |
<translation>deleteLayer("layer") |
|
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>createLayer(layer) |
<source>createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation>createLayer(layer) |
<translation>createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getGuiLanguage() -> string |
<source>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</source> |
<translation>getGuiLanguage() -> string |
<translation>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</translation> |
</message> |
<message> |
<source>createEllipse(x, y, width, height, ["name"]) -> string |
<source>createEllipse(x, y, width, height, ["name"]) -> string |
|
Creates a new ellipse on the current page and returns its name. |
The coordinates are given in the current measurement units of the document |
1380,9 → 1379,9 |
because you need this name for further referencing of that object. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation>createEllipse(x, y, width, height, ["name"]) -> string |
<translation>createEllipse(x, y, width, height, ["name"]) -> string |
|
Creates a new ellipse on the current page and returns its name. |
The coordinates are given in the current measurement units of the document |
1390,11 → 1389,11 |
because you need this name for further referencing of that object. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</translation> |
</message> |
<message> |
<source>createImage(x, y, width, height, ["name"]) -> string |
<source>createImage(x, y, width, height, ["name"]) -> string |
|
Creates a new picture frame on the current page and returns its name. The |
coordinates are given in the current measurement units of the document. |
1402,9 → 1401,9 |
name for further access to that object. If "name" is not given Scribus will |
create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation>createImage(x, y, width, height, ["name"]) -> string |
<translation>createImage(x, y, width, height, ["name"]) -> string |
|
Creates a new picture frame on the current page and returns its name. The |
coordinates are given in the current measurement units of the document. |
1412,11 → 1411,11 |
name for further access to that object. If "name" is not given Scribus will |
create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</translation> |
</message> |
<message> |
<source>createText(x, y, width, height, ["name"]) -> string |
<source>createText(x, y, width, height, ["name"]) -> string |
|
Creates a new text frame on the actual page and returns its name. |
The coordinates are given in the actual measurement unit of the document (see |
1424,9 → 1423,9 |
you need this name for further referencing of that object. If "name" is not |
given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation>createText(x, y, width, height, ["name"]) -> string |
<translation>createText(x, y, width, height, ["name"]) -> string |
|
Creates a new text frame on the actual page and returns its name. |
The coordinates are given in the actual measurement unit of the document (see |
1434,11 → 1433,11 |
you need this name for further referencing of that object. If "name" is not |
given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</translation> |
</message> |
<message> |
<source>createLine(x1, y1, x2, y2, ["name"]) -> string |
<source>createLine(x1, y1, x2, y2, ["name"]) -> string |
|
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
its name. The coordinates are given in the current measurement unit of the |
1446,9 → 1445,9 |
object because you need this name for further access to that object. If |
"name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
<translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
|
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
its name. The coordinates are given in the current measurement unit of the |
1456,11 → 1455,11 |
object because you need this name for further access to that object. If |
"name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
</translation> |
</message> |
<message> |
<source>createPolyLine(list, ["name"]) -> string |
<source>createPolyLine(list, ["name"]) -> string |
|
Creates a new polyline and returns its name. The points for the polyline are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
1469,11 → 1468,11 |
you need this name for further access to that object. If "name" is not given |
Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</source> |
<translation>createPolyLine(list, ["name"]) -> string |
<translation>createPolyLine(list, ["name"]) -> string |
|
Creates a new polyline and returns its name. The points for the polyline are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
1482,13 → 1481,13 |
you need this name for further access to that object. If "name" is not given |
Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<source>createPolygon(list, ["name"]) -> string |
<source>createPolygon(list, ["name"]) -> string |
|
Creates a new polygon and returns its name. The points for the polygon are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
1499,11 → 1498,11 |
identifier for the object because you need this name for further access to that |
object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</source> |
<translation>createPolygon(list, ["name"]) -> string |
<translation>createPolygon(list, ["name"]) -> string |
|
Creates a new polygon and returns its name. The points for the polygon are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
1514,13 → 1513,13 |
identifier for the object because you need this name for further access to that |
object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<source>createBezierLine(list, ["name"]) -> string |
<source>createBezierLine(list, ["name"]) -> string |
|
Creates a new bezier curve and returns its name. The points for the bezier |
curve are stored in the list "list" in the following order: |
1532,11 → 1531,11 |
further access to that object. If "name" is not given Scribus will create one |
for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</source> |
<translation>createBezierLine(list, ["name"]) -> string |
<translation>createBezierLine(list, ["name"]) -> string |
|
Creates a new bezier curve and returns its name. The points for the bezier |
curve are stored in the list "list" in the following order: |
1548,13 → 1547,13 |
further access to that object. If "name" is not given Scribus will create one |
for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
|
Creates a new pathText by merging the two objects "textbox" and |
"beziercurve" and returns its name. The coordinates are given in the current |
1562,10 → 1561,10 |
unique identifier for the object because you need this name for further access |
to that object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
</source> |
<translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
<translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
|
Creates a new pathText by merging the two objects "textbox" and |
"beziercurve" and returns its name. The coordinates are given in the current |
1573,17 → 1572,17 |
unique identifier for the object because you need this name for further access |
to that object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
</translation> |
</message> |
<message> |
<source>deleteObject(["name"]) |
<source>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</source> |
<translation>deleteObject(["name"]) |
<translation>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
1590,13 → 1589,13 |
</translation> |
</message> |
<message> |
<source>textFlowsAroundFrame("name" [, state]) |
<source>textFlowsAroundFrame("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional boolean "state". If "state" |
is not passed, text flow is toggled. |
</source> |
<translation>textFlowsAroundFrame("name" [, state]) |
<translation>textFlowsAroundFrame("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional boolean "state". If "state" |
1604,13 → 1603,13 |
</translation> |
</message> |
<message> |
<source>objectExists(["name"]) -> bool |
<source>objectExists(["name"]) -> bool |
|
Test if an object with specified name really exists in the document. |
The optional parameter is the object name. When no object name is given, |
returns True if there is something selected. |
</source> |
<translation>objectExists(["name"]) -> bool |
<translation>objectExists(["name"]) -> bool |
|
Test if an object with specified name really exists in the document. |
The optional parameter is the object name. When no object name is given, |
1618,34 → 1617,34 |
</translation> |
</message> |
<message> |
<source>setStyle("style" [, "name"]) |
<source>setStyle("style" [, "name"]) |
|
Apply the named "style" to the object named "name". If is no object name |
given, it's applied on the selected object. |
given, it's applied on the selected object. |
</source> |
<translation>setStyle("style" [, "name"]) |
<translation>setStyle("style" [, "name"]) |
|
Apply the named "style" to the object named "name". If is no object name |
given, it's applied on the selected object. |
given, it's applied on the selected object. |
</translation> |
</message> |
<message> |
<source>getAllStyles() -> list |
<source>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</source> |
<translation>getAllStyles() -> list |
<translation>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</translation> |
</message> |
<message> |
<source>currentPage() -> integer |
<source>currentPage() -> integer |
|
Returns the number of the current working page. Page numbers are counted from 1 |
upwards, no matter what the displayed first page number of your document is. |
</source> |
<translation>currentPage() -> integer |
<translation>currentPage() -> integer |
|
Returns the number of the current working page. Page numbers are counted from 1 |
upwards, no matter what the displayed first page number of your document is. |
1652,23 → 1651,23 |
</translation> |
</message> |
<message> |
<source>redrawAll() |
<source>redrawAll() |
|
Redraws all pages. |
</source> |
<translation>redrawAll() |
<translation>redrawAll() |
|
Redraws all pages. |
</translation> |
</message> |
<message> |
<source>savePageAsEPS("name") |
<source>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</source> |
<translation>savePageAsEPS("name") |
<translation>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
1676,7 → 1675,7 |
</translation> |
</message> |
<message> |
<source>deletePage(nr) |
<source>deletePage(nr) |
|
Deletes the given page. Does nothing if the document contains only one page. |
Page numbers are counted from 1 upwards, no matter what the displayed first |
1684,7 → 1683,7 |
|
May raise IndexError if the page number is out of range |
</source> |
<translation>deletePage(nr) |
<translation>deletePage(nr) |
|
Deletes the given page. Does nothing if the document contains only one page. |
Page numbers are counted from 1 upwards, no matter what the displayed first |
1694,18 → 1693,18 |
</translation> |
</message> |
<message> |
<source>gotoPage(nr) |
<source>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (curently) change the page the user's view is displaying, it |
gotoPage doesn't (curently) change the page the user's view is displaying, it |
just sets the page that script commands will operates on. |
|
May raise IndexError if the page number is out of range. |
</source> |
<translation>gotoPage(nr) |
<translation>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (curently) change the page the user's view is displaying, it |
gotoPage doesn't (curently) change the page the user's view is displaying, it |
just sets the page that script commands will operates on. |
|
May raise IndexError if the page number is out of range. |
1712,40 → 1711,40 |
</translation> |
</message> |
<message> |
<source>pageCount() -> integer |
<source>pageCount() -> integer |
|
Returns the number of pages in the document. |
</source> |
<translation>pageCount() -> integer |
<translation>pageCount() -> integer |
|
Returns the number of pages in the document. |
</translation> |
</message> |
<message> |
<source>getHGuides() -> list |
<source>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
document's current units - see UNIT_<type> constants. |
</source> |
<translation>getHGuides() -> list |
<translation>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
document's current units - see UNIT_<type> constants. |
</translation> |
</message> |
<message> |
<source>setHGuides(list) |
<source>setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
measured in the current document units - see UNIT_<type> constants. |
measured in the current document units - see UNIT_<type> constants. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
</source> |
<translation>setHGuides(list) |
<translation>setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
measured in the current document units - see UNIT_<type> constants. |
measured in the current document units - see UNIT_<type> constants. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
1752,73 → 1751,73 |
</translation> |
</message> |
<message> |
<source>getVGuides() |
<source>getVGuides() |
|
See getHGuides. |
</source> |
<translation>getVGuides() |
<translation>getVGuides() |
|
See getHGuides. |
</translation> |
</message> |
<message> |
<source>setVGuides() |
<source>setVGuides() |
|
See setHGuides. |
</source> |
<translation>setVGuides() |
<translation>setVGuides() |
|
See setHGuides. |
</translation> |
</message> |
<message> |
<source>getPageSize() -> tuple |
<source>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</source> |
<translation>getPageSize() -> tuple |
<translation>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</translation> |
</message> |
<message> |
<source>getPageItems() -> list |
<source>getPageItems() -> list |
|
Returns a list of tuples with items on the current page. The tuple is: |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
the page... |
</source> |
<translation>getPageItems() -> list |
<translation>getPageItems() -> list |
|
Returns a list of tuples with items on the current page. The tuple is: |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
the page... |
</translation> |
</message> |
<message> |
<source>getPageMargins() |
<source>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
units. See UNIT_<type> constants and getPageSize(). |
</source> |
<translation>getPageMargins() |
<translation>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
units. See UNIT_<type> constants and getPageSize(). |
</translation> |
</message> |
<message> |
<source>setFillColor("color", ["name"]) |
<source>setFillColor("color", ["name"]) |
|
Sets the fill color of the object "name" to the color "color". "color" |
is the name of one of the defined colors. If "name" is not given the |
currently selected item is used. |
</source> |
<translation>setFillColor("color", ["name"]) |
<translation>setFillColor("color", ["name"]) |
|
Sets the fill colour of the object "name" to the colour "color". "color" |
is the name of one of the defined colours. If "name" is not given the |
1826,12 → 1825,12 |
</translation> |
</message> |
<message> |
<source>setLineColor("color", ["name"]) |
<source>setLineColor("color", ["name"]) |
|
Sets the line color of the object "name" to the color "color". If "name" |
is not given the currently selected item is used. |
</source> |
<translation>setLineColor("color", ["name"]) |
<translation>setLineColor("color", ["name"]) |
|
Sets the line colour of the object "name" to the colour "color". If "name" |
is not given the currently selected item is used. |
1838,7 → 1837,7 |
</translation> |
</message> |
<message> |
<source>setLineWidth(width, ["name"]) |
<source>setLineWidth(width, ["name"]) |
|
Sets line width of the object "name" to "width". "width" must be in the |
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
1846,7 → 1845,7 |
|
May raise ValueError if the line width is out of bounds. |
</source> |
<translation>setLineWidth(width, ["name"]) |
<translation>setLineWidth(width, ["name"]) |
|
Sets line width of the object "name" to "width". "width" must be in the |
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
1856,7 → 1855,7 |
</translation> |
</message> |
<message> |
<source>setLineShade(shade, ["name"]) |
<source>setLineShade(shade, ["name"]) |
|
Sets the shading of the line color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
1865,7 → 1864,7 |
|
May raise ValueError if the line shade is out of bounds. |
</source> |
<translation>setLineShade(shade, ["name"]) |
<translation>setLineShade(shade, ["name"]) |
|
Sets the shading of the line colour of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
1876,49 → 1875,49 |
</translation> |
</message> |
<message> |
<source>setLineJoin(join, ["name"]) |
<source>setLineJoin(join, ["name"]) |
|
Sets the line join style of the object "name" to the style "join". |
If "name" is not given the currently selected item is used. There are |
predefined constants for join - JOIN_<type>. |
predefined constants for join - JOIN_<type>. |
</source> |
<translation>setLineJoin(join, ["name"]) |
<translation>setLineJoin(join, ["name"]) |
|
Sets the line join style of the object "name" to the style "join". |
If "name" is not given the currently selected item is used. There are |
predefined constants for join - JOIN_<type>. |
predefined constants for join - JOIN_<type>. |
</translation> |
</message> |
<message> |
<source>setLineEnd(endtype, ["name"]) |
<source>setLineEnd(endtype, ["name"]) |
|
Sets the line cap style of the object "name" to the style "cap". |
If "name" is not given the currently selected item is used. There are |
predefined constants for "cap" - CAP_<type>. |
predefined constants for "cap" - CAP_<type>. |
</source> |
<translation>setLineEnd(endtype, ["name"]) |
<translation>setLineEnd(endtype, ["name"]) |
|
Sets the line cap style of the object "name" to the style "cap". |
If "name" is not given the currently selected item is used. There are |
predefined constants for "cap" - CAP_<type>. |
predefined constants for "cap" - CAP_<type>. |
</translation> |
</message> |
<message> |
<source>setLineStyle(style, ["name"]) |
<source>setLineStyle(style, ["name"]) |
|
Sets the line style of the object "name" to the style "style". If "name" |
is not given the currently selected item is used. There are predefined |
constants for "style" - LINE_<style>. |
constants for "style" - LINE_<style>. |
</source> |
<translation>setLineStyle(style, ["name"]) |
<translation>setLineStyle(style, ["name"]) |
|
Sets the line style of the object "name" to the style "style". If "name" |
is not given the currently selected item is used. There are predefined |
constants for "style" - LINE_<style>. |
constants for "style" - LINE_<style>. |
</translation> |
</message> |
<message> |
<source>setFillShade(shade, ["name"]) |
<source>setFillShade(shade, ["name"]) |
|
Sets the shading of the fill color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
1927,7 → 1926,7 |
|
May raise ValueError if the fill shade is out of bounds. |
</source> |
<translation>setFillShade(shade, ["name"]) |
<translation>setFillShade(shade, ["name"]) |
|
Sets the shading of the fill colour of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
1938,7 → 1937,7 |
</translation> |
</message> |
<message> |
<source>setCornerRadius(radius, ["name"]) |
<source>setCornerRadius(radius, ["name"]) |
|
Sets the corner radius of the object "name". The radius is expressed |
in points. If "name" is not given the currently selected item is used. |
1945,7 → 1944,7 |
|
May raise ValueError if the corner radius is negative. |
</source> |
<translation>setCornerRadius(radius, ["name"]) |
<translation>setCornerRadius(radius, ["name"]) |
|
Sets the corner radius of the object "name". The radius is expressed |
in points. If "name" is not given the currently selected item is used. |
1954,23 → 1953,23 |
</translation> |
</message> |
<message> |
<source>setMultiLine("namedStyle", ["name"]) |
<source>setMultiLine("namedStyle", ["name"]) |
|
Sets the line style of the object "name" to the named style "namedStyle". |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the line style doesn't exist. |
May raise NotFoundError if the line style doesn't exist. |
</source> |
<translation>setMultiLine("namedStyle", ["name"]) |
<translation>setMultiLine("namedStyle", ["name"]) |
|
Sets the line style of the object "name" to the named style "namedStyle". |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the line style doesn't exist. |
May raise NotFoundError if the line style doesn't exist. |
</translation> |
</message> |
<message> |
<source>getFont(["name"]) -> string |
<source>getFont(["name"]) -> string |
|
Returns the font name for the text frame "name". If this text frame |
has some text selected the value assigned to the first character |
1977,7 → 1976,7 |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation>getFont(["name"]) -> string |
<translation>getFont(["name"]) -> string |
|
Returns the font name for the text frame "name". If this text frame |
has some text selected the value assigned to the first character |
1986,12 → 1985,12 |
</translation> |
</message> |
<message> |
<source>getTextLength(["name"]) -> integer |
<source>getTextLength(["name"]) -> integer |
|
Returns the length of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation>getTextLength(["name"]) -> integer |
<translation>getTextLength(["name"]) -> integer |
|
Returns the length of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
1998,7 → 1997,7 |
</translation> |
</message> |
<message> |
<source>getText(["name"]) -> string |
<source>getText(["name"]) -> string |
|
Returns the text of the text frame "name". If this text frame has some text |
selected, the selected text is returned. All text in the frame, not just |
2005,7 → 2004,7 |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation>getText(["name"]) -> string |
<translation>getText(["name"]) -> string |
|
Returns the text of the text frame "name". If this text frame has some text |
selected, the selected text is returned. All text in the frame, not just |
2014,7 → 2013,7 |
</translation> |
</message> |
<message> |
<source>getAllText(["name"]) -> string |
<source>getAllText(["name"]) -> string |
|
Returns the text of the text frame "name" and of all text frames which are |
linked with this frame. If this textframe has some text selected, the selected |
2021,7 → 2020,7 |
text is returned. If "name" is not given the currently selected item is |
used. |
</source> |
<translation>getAllText(["name"]) -> string |
<translation>getAllText(["name"]) -> string |
|
Returns the text of the text frame "name" and of all text frames which are |
linked with this frame. If this textframe has some text selected, the selected |
2030,12 → 2029,12 |
</translation> |
</message> |
<message> |
<source>getLineSpacing(["name"]) -> float |
<source>getLineSpacing(["name"]) -> float |
|
Returns the line spacing ("leading") of the text frame "name" expressed in |
points. If "name" is not given the currently selected item is used. |
</source> |
<translation>getLineSpacing(["name"]) -> float |
<translation>getLineSpacing(["name"]) -> float |
|
Returns the line spacing ("leading") of the text frame "name" expressed in |
points. If "name" is not given the currently selected item is used. |
2042,12 → 2041,12 |
</translation> |
</message> |
<message> |
<source>getColumnGap(["name"]) -> float |
<source>getColumnGap(["name"]) -> float |
|
Returns the column gap size of the text frame "name" expressed in points. If |
"name" is not given the currently selected item is used. |
</source> |
<translation>getColumnGap(["name"]) -> float |
<translation>getColumnGap(["name"]) -> float |
|
Returns the column gap size of the text frame "name" expressed in points. If |
"name" is not given the currently selected item is used. |
2054,12 → 2053,12 |
</translation> |
</message> |
<message> |
<source>getColumns(["name"]) -> integer |
<source>getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
</source> |
<translation>getColumns(["name"]) -> integer |
<translation>getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
2066,23 → 2065,23 |
</translation> |
</message> |
<message> |
<source>setText("text", ["name"]) |
<source>setText("text", ["name"]) |
|
Sets the text of the text frame "name" to the text of the string "text". |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
for more details. If "name" is not given the currently selected item is |
used. |
</source> |
<translation>setText("text", ["name"]) |
<translation>setText("text", ["name"]) |
|
Sets the text of the text frame "name" to the text of the string "text". |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
for more details. If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<source>insertText("text", pos, ["name"]) |
<source>insertText("text", pos, ["name"]) |
|
Inserts the text "text" at the position "pos" into the text frame "name". |
Text must be UTF encoded (see setText() as reference) The first character has an |
2091,7 → 2090,7 |
|
May throw IndexError for an insertion out of bounds. |
</source> |
<translation>insertText("text", pos, ["name"]) |
<translation>insertText("text", pos, ["name"]) |
|
Inserts the text "text" at the position "pos" into the text frame "name". |
Text must be UTF encoded (see setText() as reference) The first character has an |
2102,7 → 2101,7 |
</translation> |
</message> |
<message> |
<source>setFont("font", ["name"]) |
<source>setFont("font", ["name"]) |
|
Sets the font of the text frame "name" to "font". If there is some text |
selected only the selected text is changed. If "name" is not given the |
2110,7 → 2109,7 |
|
May throw ValueError if the font cannot be found. |
</source> |
<translation>setFont("font", ["name"]) |
<translation>setFont("font", ["name"]) |
|
Sets the font of the text frame "name" to "font". If there is some text |
selected only the selected text is changed. If "name" is not given the |
2120,7 → 2119,7 |
</translation> |
</message> |
<message> |
<source>setFontSize(size, ["name"]) |
<source>setFontSize(size, ["name"]) |
|
Sets the font size of the text frame "name" to "size". "size" is treated |
as a value in points. If there is some text selected only the selected text is |
2127,9 → 2126,9 |
changed. "size" must be in the range 1 to 512. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError for a font size that's out of bounds. |
May throw ValueError for a font size that's out of bounds. |
</source> |
<translation>setFontSize(size, ["name"]) |
<translation>setFontSize(size, ["name"]) |
|
Sets the font size of the text frame "name" to "size". "size" is treated |
as a value in points. If there is some text selected only the selected text is |
2136,11 → 2135,11 |
changed. "size" must be in the range 1 to 512. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError for a font size that's out of bounds. |
May throw ValueError for a font size that's out of bounds. |
</translation> |
</message> |
<message> |
<source>setLineSpacing(size, ["name"]) |
<source>setLineSpacing(size, ["name"]) |
|
Sets the line spacing ("leading") of the text frame "name" to "size". |
"size" is a value in points. If "name" is not given the currently selected |
2148,7 → 2147,7 |
|
May throw ValueError if the line spacing is out of bounds. |
</source> |
<translation>setLineSpacing(size, ["name"]) |
<translation>setLineSpacing(size, ["name"]) |
|
Sets the line spacing ("leading") of the text frame "name" to "size". |
"size" is a value in points. If "name" is not given the currently selected |
2158,7 → 2157,7 |
</translation> |
</message> |
<message> |
<source>setColumnGap(size, ["name"]) |
<source>setColumnGap(size, ["name"]) |
|
Sets the column gap of the text frame "name" to the value "size". If |
"name" is not given the currently selected item is used. |
2165,7 → 2164,7 |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</source> |
<translation>setColumnGap(size, ["name"]) |
<translation>setColumnGap(size, ["name"]) |
|
Sets the column gap of the text frame "name" to the value "size". If |
"name" is not given the currently selected item is used. |
2174,7 → 2173,7 |
</translation> |
</message> |
<message> |
<source>setColumns(nr, ["name"]) |
<source>setColumns(nr, ["name"]) |
|
Sets the number of columns of the text frame "name" to the integer "nr". |
If "name" is not given the currently selected item is used. |
2181,7 → 2180,7 |
|
May throw ValueError if number of columns is not at least one. |
</source> |
<translation>setColumns(nr, ["name"]) |
<translation>setColumns(nr, ["name"]) |
|
Sets the number of columns of the text frame "name" to the integer "nr". |
If "name" is not given the currently selected item is used. |
2190,7 → 2189,7 |
</translation> |
</message> |
<message> |
<source>setTextAlignment(align, ["name"]) |
<source>setTextAlignment(align, ["name"]) |
|
Sets the text alignment of the text frame "name" to the specified alignment. |
If "name" is not given the currently selected item is used. "align" should |
2198,7 → 2197,7 |
|
May throw ValueError for an invalid alignment constant. |
</source> |
<translation>setTextAlignment(align, ["name"]) |
<translation>setTextAlignment(align, ["name"]) |
|
Sets the text alignment of the text frame "name" to the specified alignment. |
If "name" is not given the currently selected item is used. "align" should |
2208,7 → 2207,7 |
</translation> |
</message> |
<message> |
<source>selectText(start, count, ["name"]) |
<source>selectText(start, count, ["name"]) |
|
Selects "count" characters of text in the text frame "name" starting from the |
character "start". Character counting starts at 0. If "count" is zero, any |
2217,7 → 2216,7 |
|
May throw IndexError if the selection is outside the bounds of the text. |
</source> |
<translation>selectText(start, count, ["name"]) |
<translation>selectText(start, count, ["name"]) |
|
Selects "count" characters of text in the text frame "name" starting from the |
character "start". Character counting starts at 0. If "count" is zero, any |
2228,13 → 2227,13 |
</translation> |
</message> |
<message> |
<source>deleteText(["name"]) |
<source>deleteText(["name"]) |
|
Deletes any text in the text frame "name". If there is some text selected, |
only the selected text will be deleted. If "name" is not given the currently |
selected item is used. |
</source> |
<translation>deleteText(["name"]) |
<translation>deleteText(["name"]) |
|
Deletes any text in the text frame "name". If there is some text selected, |
only the selected text will be deleted. If "name" is not given the currently |
2242,13 → 2241,13 |
</translation> |
</message> |
<message> |
<source>setTextColor("color", ["name"]) |
<source>setTextColor("color", ["name"]) |
|
Sets the text color of the text frame "name" to the color "color". If there |
is some text selected only the selected text is changed. If "name" is not |
given the currently selected item is used. |
</source> |
<translation>setTextColor("color", ["name"]) |
<translation>setTextColor("color", ["name"]) |
|
Sets the text colour of the text frame "name" to the colour "color". If there |
is some text selected only the selected text is changed. If "name" is not |
2256,12 → 2255,12 |
</translation> |
</message> |
<message> |
<source>setTextStroke("color", ["name"]) |
<source>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</source> |
<translation>setTextStroke("color", ["name"]) |
<translation>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
2268,7 → 2267,7 |
</translation> |
</message> |
<message> |
<source>setTextShade(shade, ["name"]) |
<source>setTextShade(shade, ["name"]) |
|
Sets the shading of the text color of the object "name" to "shade". If |
there is some text selected only the selected text is changed. "shade" must |
2276,7 → 2275,7 |
intensity). If "name" is not given the currently selected item is |
used. |
</source> |
<translation>setTextShade(shade, ["name"]) |
<translation>setTextShade(shade, ["name"]) |
|
Sets the shading of the text colour of the object "name" to "shade". If |
there is some text selected only the selected text is changed. "shade" must |
2286,7 → 2285,7 |
</translation> |
</message> |
<message> |
<source>linkTextFrames("fromname", "toname") |
<source>linkTextFrames("fromname", "toname") |
|
Link two text frames. The frame named "fromname" is linked to the |
frame named "toname". The target frame must be an empty text frame |
2294,7 → 2293,7 |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation>linkTextFrames("fromname", "toname") |
<translation>linkTextFrames("fromname", "toname") |
|
Link two text frames. The frame named "fromname" is linked to the |
frame named "toname". The target frame must be an empty text frame |
2304,46 → 2303,46 |
</translation> |
</message> |
<message> |
<source>unlinkTextFrames("name") |
<source>unlinkTextFrames("name") |
|
Remove the specified (named) object from the text frame flow/linkage. If the |
frame was in the middle of a chain, the previous and next frames will be |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation>unlinkTextFrames("name") |
<translation>unlinkTextFrames("name") |
|
Remove the specified (named) object from the text frame flow/linkage. If the |
frame was in the middle of a chain, the previous and next frames will be |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
|
May throw ScribusException if linking rules are violated. |
</translation> |
</message> |
<message> |
<source>traceText(["name"]) |
<source>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</source> |
<translation>traceText(["name"]) |
<translation>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</translation> |
</message> |
<message> |
<source>textOverflows(["name", nolinks]) -> integer |
<source>textOverflows(["name", nolinks]) -> integer |
|
Returns the actual number of overflowing characters in text frame "name". |
If is nolinks set to non zero value it takes only one frame - it doesn't |
If is nolinks set to non zero value it takes only one frame - it doesn't |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
</source> |
<translation>textOverflows(["name", nolinks]) -> integer |
<translation>textOverflows(["name", nolinks]) -> integer |
|
Returns the actual number of overflowing characters in text frame "name". |
If is nolinks set to non zero value it takes only one frame - it doesn't |
If is nolinks set to non zero value it takes only one frame - it doesn't |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
2350,7 → 2349,7 |
</translation> |
</message> |
<message> |
<source>setPDFBookmark("toggle", ["name"]) |
<source>setPDFBookmark("toggle", ["name"]) |
|
Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
2357,7 → 2356,7 |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation>setPDFBookmark("toggle", ["name"]) |
<translation>setPDFBookmark("toggle", ["name"]) |
|
Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
2366,7 → 2365,7 |
</translation> |
</message> |
<message> |
<source>isPDFBookmark(["name"]) -> bool |
<source>isPDFBookmark(["name"]) -> bool |
|
Returns true if the text frame "name" is a PDF bookmark. |
If "name" is not given the currently selected item is used. |
2373,7 → 2372,7 |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation>isPDFBookmark(["name"]) -> bool |
<translation>isPDFBookmark(["name"]) -> bool |
|
Returns true if the text frame "name" is a PDF bookmark. |
If "name" is not given the currently selected item is used. |
2382,12 → 2381,12 |
</translation> |
</message> |
<message> |
<source>progressReset() |
<source>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</source> |
<translation>progressReset() |
<translation>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
2394,19 → 2393,19 |
</translation> |
</message> |
<message> |
<source>progressTotal(max) |
<source>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</source> |
<translation>progressTotal(max) |
<translation>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</translation> |
</message> |
<message> |
<source>progressSet(nr) |
<source>progressSet(nr) |
|
Set the progress bar position to "nr", a value relative to the previously set |
progressTotal. The progress bar uses the concept of steps; you give it the |
2414,9 → 2413,9 |
display the percentage of steps that have been completed. You can specify the |
total number of steps with progressTotal(). The current number of steps is set |
with progressSet(). The progress bar can be rewound to the beginning with |
progressReset(). [based on info taken from Trolltech's Qt docs] |
progressReset(). [based on info taken from Trolltech's Qt docs] |
</source> |
<translation>progressSet(nr) |
<translation>progressSet(nr) |
|
Set the progress bar position to "nr", a value relative to the previously set |
progressTotal. The progress bar uses the concept of steps; you give it the |
2424,980 → 2423,972 |
display the percentage of steps that have been completed. You can specify the |
total number of steps with progressTotal(). The current number of steps is set |
with progressSet(). The progress bar can be rewound to the beginning with |
progressReset(). [based on info taken from Trolltech's Qt docs] |
progressReset(). [based on info taken from Trolltech's Qt docs] |
</translation> |
</message> |
<message> |
<source>setCursor() |
<source>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</source> |
<translation>setCursor() |
<translation>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</translation> |
</message> |
<message> |
<source>docChanged(bool) |
<source>docChanged(bool) |
|
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
</source> |
<translation>docChanged(bool) |
<translation>docChanged(bool) |
|
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>About</name> |
<message> |
<source>Build-ID:</source> |
<translation>Build-ID:</translation> |
<source>Build-ID:</source> |
<translation>Build-ID:</translation> |
</message> |
<message> |
<source>Contributions from:</source> |
<translation>Contributions from:</translation> |
<source>Contributions from:</source> |
<translation>Contributions from:</translation> |
</message> |
<message> |
<source>&About</source> |
<translation>&About</translation> |
<source>&About</source> |
<translation>&About</translation> |
</message> |
<message> |
<source>A&uthors</source> |
<translation>A&uthors</translation> |
<source>A&uthors</source> |
<translation>A&uthors</translation> |
</message> |
<message> |
<source>&Translations</source> |
<translation>&Translations</translation> |
<source>&Translations</source> |
<translation>&Translations</translation> |
</message> |
<message> |
<source>&Online</source> |
<translation>&Online</translation> |
<source>&Online</source> |
<translation>&Online</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>&Close</translation> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<source>Development Team:</source> |
<translation>Development Team:</translation> |
<source>Development Team:</source> |
<translation>Development Team:</translation> |
</message> |
<message> |
<source>Official Documentation:</source> |
<translation>Official Documentation:</translation> |
<source>Official Documentation:</source> |
<translation>Official Documentation:</translation> |
</message> |
<message> |
<source>Other Documentation:</source> |
<translation>Other Documentation:</translation> |
<source>Other Documentation:</source> |
<translation>Other Documentation:</translation> |
</message> |
<message> |
<source>Homepage</source> |
<translation>Homepage</translation> |
<source>Homepage</source> |
<translation>Homepage</translation> |
</message> |
<message> |
<source>Online Reference</source> |
<translation>Online Reference</translation> |
<source>Online Reference</source> |
<translation>Online Reference</translation> |
</message> |
<message> |
<source>Bugs and Feature Requests</source> |
<translation>Bugs and Feature Requests</translation> |
<source>Bugs and Feature Requests</source> |
<translation>Bugs and Feature Requests</translation> |
</message> |
<message> |
<source>Mailing List</source> |
<translation>Mailing List</translation> |
<source>Mailing List</source> |
<translation>Mailing List</translation> |
</message> |
<message> |
<source>Official Translations and Translators:</source> |
<translation>Official Translations and Translators:</translation> |
<source>Official Translations and Translators:</source> |
<translation>Official Translations and Translators:</translation> |
</message> |
<message> |
<source>Previous Translation Contributors:</source> |
<translation>Previous Translation Contributors:</translation> |
<source>Previous Translation Contributors:</source> |
<translation>Previous Translation Contributors:</translation> |
</message> |
<message> |
<source>About Scribus %1</source> |
<translation>About Scribus %1</translation> |
<source>About Scribus %1</source> |
<translation>About Scribus %1</translation> |
</message> |
<message> |
<source>%1 %2 %3 </source> |
<translation>%1 %2 %3 </translation> |
<source>%1 %2 %3 </source> |
<translation>%1 %2 %3 </translation> |
</message> |
<message> |
<source>Windows Port:</source> |
<translation>Windows Port:</translation> |
<source>Windows Port:</source> |
<translation>Windows Port:</translation> |
</message> |
<message> |
<source>Mac OSX Aqua Port:</source> |
<translation>Mac OSX Aqua Port:</translation> |
<source>Mac OSX Aqua Port:</source> |
<translation>Mac OSX Aqua Port:</translation> |
</message> |
<message> |
<source>Wiki</source> |
<translation>Wiki</translation> |
<source>Wiki</source> |
<translation>Wiki</translation> |
</message> |
<message> |
<source>Using GhostScript version %1</source> |
<translation>Using GhostScript version %1</translation> |
<source>Using GhostScript version %1</source> |
<translation>Using GhostScript version %1</translation> |
</message> |
<message> |
<source>No GS version available</source> |
<translation>No GS version available</translation> |
<source>No GS version available</source> |
<translation>No GS version available</translation> |
</message> |
<message> |
<source>Scribus Version %1 |
<source>Scribus Version %1 |
%2 %3 (%4)</source> |
<translation>Scribus Version %1 |
<translation>Scribus Version %1 |
%2 %3 (%4)</translation> |
</message> |
<message> |
<source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</source> |
<translation>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</translation> |
<source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</source> |
<translation>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ActionManager</name> |
<message> |
<source>&Image Effects</source> |
<translation>&Image Effects</translation> |
<source>&Image Effects</source> |
<translation>&Image Effects</translation> |
</message> |
<message> |
<source>&Tabulators...</source> |
<translation>&Tabulators...</translation> |
<source>&Tabulators...</source> |
<translation>&Tabulators...</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&New</translation> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<source>&Open...</source> |
<translation>&Open...</translation> |
<source>&Open...</source> |
<translation>&Open...</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>&Close</translation> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<source>&Save</source> |
<translation>&Save</translation> |
<source>&Save</source> |
<translation>&Save</translation> |
</message> |
<message> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
</message> |
<message> |
<source>Re&vert to Saved</source> |
<translation>Re&vert to Saved</translation> |
<source>Re&vert to Saved</source> |
<translation>Re&vert to Saved</translation> |
</message> |
<message> |
<source>Collect for O&utput...</source> |
<translation>Collect for O&utput...</translation> |
<source>Collect for O&utput...</source> |
<translation>Collect for O&utput...</translation> |
</message> |
<message> |
<source>Get Text...</source> |
<translation>Get Text...</translation> |
<source>Get Text...</source> |
<translation>Get Text...</translation> |
</message> |
<message> |
<source>Append &Text...</source> |
<translation>Append &Text...</translation> |
<source>Append &Text...</source> |
<translation>Append &Text...</translation> |
</message> |
<message> |
<source>Get Image...</source> |
<translation>Get Image...</translation> |
<source>Get Image...</source> |
<translation>Get Image...</translation> |
</message> |
<message> |
<source>Save &Text...</source> |
<translation>Save &Text...</translation> |
<source>Save &Text...</source> |
<translation>Save &Text...</translation> |
</message> |
<message> |
<source>Save Page as &EPS...</source> |
<translation>Save Page as &EPS...</translation> |
<source>Save Page as &EPS...</source> |
<translation>Save Page as &EPS...</translation> |
</message> |
<message> |
<source>Save as P&DF...</source> |
<translation>Save as P&DF...</translation> |
<source>Save as P&DF...</source> |
<translation>Save as P&DF...</translation> |
</message> |
<message> |
<source>Document &Setup...</source> |
<translation>Document &Setup...</translation> |
<source>Document &Setup...</source> |
<translation>Document &Setup...</translation> |
</message> |
<message> |
<source>&Print...</source> |
<translation>&Print...</translation> |
<source>&Print...</source> |
<translation>&Print...</translation> |
</message> |
<message> |
<source>&Quit</source> |
<translation>&Quit</translation> |
<source>&Quit</source> |
<translation>&Quit</translation> |
</message> |
<message> |
<source>&Undo</source> |
<translation>&Undo</translation> |
<source>&Undo</source> |
<translation>&Undo</translation> |
</message> |
<message> |
<source>&Redo</source> |
<translation>&Redo</translation> |
<source>&Redo</source> |
<translation>&Redo</translation> |
</message> |
<message> |
<source>&Item Action Mode</source> |
<translation>&Item Action Mode</translation> |
<source>&Item Action Mode</source> |
<translation>&Item Action Mode</translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation>Cu&t</translation> |
<source>Cu&t</source> |
<translation>Cu&t</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation>&Copy</translation> |
<source>&Copy</source> |
<translation>&Copy</translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation>&Paste</translation> |
<source>&Paste</source> |
<translation>&Paste</translation> |
</message> |
<message> |
<source>C&lear Contents</source> |
<translation>C&lear Contents</translation> |
<source>C&lear Contents</source> |
<translation>C&lear Contents</translation> |
</message> |
<message> |
<source>Select &All</source> |
<translation>Select &All</translation> |
<source>Select &All</source> |
<translation>Select &All</translation> |
</message> |
<message> |
<source>&Deselect All</source> |
<translation>&Deselect All</translation> |
<source>&Deselect All</source> |
<translation>&Deselect All</translation> |
</message> |
<message> |
<source>&Search/Replace...</source> |
<translation>&Search/Replace...</translation> |
<source>&Search/Replace...</source> |
<translation>&Search/Replace...</translation> |
</message> |
<message> |
<source>C&olors...</source> |
<translation>C&olours...</translation> |
<source>C&olors...</source> |
<translation>C&olours...</translation> |
</message> |
<message> |
<source>&Paragraph Styles...</source> |
<translation>&Paragraph Styles...</translation> |
<source>&Paragraph Styles...</source> |
<translation>&Paragraph Styles...</translation> |
</message> |
<message> |
<source>&Line Styles...</source> |
<translation>&Line Styles...</translation> |
<source>&Line Styles...</source> |
<translation>&Line Styles...</translation> |
</message> |
<message> |
<source>&Master Pages...</source> |
<translation>&Master Pages...</translation> |
<source>&Master Pages...</source> |
<translation>&Master Pages...</translation> |
</message> |
<message> |
<source>&Javascripts...</source> |
<translation>&Javascripts...</translation> |
<source>&Javascripts...</source> |
<translation>&Javascripts...</translation> |
</message> |
<message> |
<source>P&references...</source> |
<translation>P&references...</translation> |
<source>P&references...</source> |
<translation>P&references...</translation> |
</message> |
<message> |
<source>%1 pt</source> |
<translation>%1 pt</translation> |
<source>%1 pt</source> |
<translation>%1 pt</translation> |
</message> |
<message> |
<source>&Other...</source> |
<translation>&Other...</translation> |
<source>&Other...</source> |
<translation>&Other...</translation> |
</message> |
<message> |
<source>&Left</source> |
<translation>&Left</translation> |
<source>&Left</source> |
<translation>&Left</translation> |
</message> |
<message> |
<source>&Center</source> |
<translation>&Centre</translation> |
<source>&Center</source> |
<translation>&Centre</translation> |
</message> |
<message> |
<source>&Right</source> |
<translation>&Right</translation> |
<source>&Right</source> |
<translation>&Right</translation> |
</message> |
<message> |
<source>&Block</source> |
<translation>&Block</translation> |
<source>&Block</source> |
<translation>&Block</translation> |
</message> |
<message> |
<source>&Forced</source> |
<translation>&Forced</translation> |
<source>&Forced</source> |
<translation>&Forced</translation> |
</message> |
<message> |
<source>&%1 %</source> |
<translation>&%1 %</translation> |
<source>&%1 %</source> |
<translation>&%1 %</translation> |
</message> |
<message> |
<source>&Normal</source> |
<translation>&Normal</translation> |
<source>&Normal</source> |
<translation>&Normal</translation> |
</message> |
<message> |
<source>&Underline</source> |
<translation>&Underline</translation> |
<source>&Underline</source> |
<translation>&Underline</translation> |
</message> |
<message> |
<source>Underline &Words</source> |
<translation>Underline &Words</translation> |
<source>Underline &Words</source> |
<translation>Underline &Words</translation> |
</message> |
<message> |
<source>&Strike Through</source> |
<translation>&Strike Through</translation> |
<source>&Strike Through</source> |
<translation>&Strike Through</translation> |
</message> |
<message> |
<source>&All Caps</source> |
<translation>&All Caps</translation> |
<source>&All Caps</source> |
<translation>&All Caps</translation> |
</message> |
<message> |
<source>Small &Caps</source> |
<translation>Small &Caps</translation> |
<source>Small &Caps</source> |
<translation>Small &Caps</translation> |
</message> |
<message> |
<source>Su&perscript</source> |
<translation>Su&perscript</translation> |
<source>Su&perscript</source> |
<translation>Su&perscript</translation> |
</message> |
<message> |
<source>Su&bscript</source> |
<translation>Su&bscript</translation> |
<source>Su&bscript</source> |
<translation>Su&bscript</translation> |
</message> |
<message> |
<source>&Outline</source> |
<translation>&Outline</translation> |
<source>&Outline</source> |
<translation>&Outline</translation> |
</message> |
<message> |
<source>D&uplicate</source> |
<translation>D&uplicate</translation> |
<source>D&uplicate</source> |
<translation>D&uplicate</translation> |
</message> |
<message> |
<source>&Multiple Duplicate</source> |
<translation>&Multiple Duplicate</translation> |
<source>&Multiple Duplicate</source> |
<translation>&Multiple Duplicate</translation> |
</message> |
<message> |
<source>&Delete</source> |
<translation>&Delete</translation> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<source>&Group</source> |
<translation>&Group</translation> |
<source>&Group</source> |
<translation>&Group</translation> |
</message> |
<message> |
<source>&Ungroup</source> |
<translation>&Ungroup</translation> |
<source>&Ungroup</source> |
<translation>&Ungroup</translation> |
</message> |
<message> |
<source>Is &Locked</source> |
<translation>Is &Locked</translation> |
<source>Is &Locked</source> |
<translation>Is &Locked</translation> |
</message> |
<message> |
<source>Si&ze is Locked</source> |
<translation>Si&ze is Locked</translation> |
<source>Si&ze is Locked</source> |
<translation>Si&ze is Locked</translation> |
</message> |
<message> |
<source>Lower to &Bottom</source> |
<translation>Lower to &Bottom</translation> |
<source>Lower to &Bottom</source> |
<translation>Lower to &Bottom</translation> |
</message> |
<message> |
<source>Raise to &Top</source> |
<translation>Raise to &Top</translation> |
<source>Raise to &Top</source> |
<translation>Raise to &Top</translation> |
</message> |
<message> |
<source>&Lower</source> |
<translation>&Lower</translation> |
<source>&Lower</source> |
<translation>&Lower</translation> |
</message> |
<message> |
<source>&Raise</source> |
<translation>&Raise</translation> |
<source>&Raise</source> |
<translation>&Raise</translation> |
</message> |
<message> |
<source>Send to S&crapbook</source> |
<translation>Send to S&crapbook</translation> |
<source>Send to S&crapbook</source> |
<translation>Send to S&crapbook</translation> |
</message> |
<message> |
<source>&Attributes...</source> |
<translation>&Attributes...</translation> |
<source>&Attributes...</source> |
<translation>&Attributes...</translation> |
</message> |
<message> |
<source>I&mage Visible</source> |
<translation>I&mage Visible</translation> |
<source>I&mage Visible</source> |
<translation>I&mage Visible</translation> |
</message> |
<message> |
<source>Is PDF &Bookmark</source> |
<translation>Is PDF &Bookmark</translation> |
<source>Is PDF &Bookmark</source> |
<translation>Is PDF &Bookmark</translation> |
</message> |
<message> |
<source>Is PDF A&nnotation</source> |
<translation>Is PDF A&nnotation</translation> |
<source>Is PDF A&nnotation</source> |
<translation>Is PDF A&nnotation</translation> |
</message> |
<message> |
<source>Annotation P&roperties</source> |
<translation>Annotation P&roperties</translation> |
<source>Annotation P&roperties</source> |
<translation>Annotation P&roperties</translation> |
</message> |
<message> |
<source>Field P&roperties</source> |
<translation>Field P&roperties</translation> |
<source>Field P&roperties</source> |
<translation>Field P&roperties</translation> |
</message> |
<message> |
<source>&Edit Shape...</source> |
<translation>&Edit Shape...</translation> |
<source>&Edit Shape...</source> |
<translation>&Edit Shape...</translation> |
</message> |
<message> |
<source>&Attach Text to Path</source> |
<translation>&Attach Text to Path</translation> |
<source>&Attach Text to Path</source> |
<translation>&Attach Text to Path</translation> |
</message> |
<message> |
<source>&Detach Text from Path</source> |
<translation>&Detach Text from Path</translation> |
<source>&Detach Text from Path</source> |
<translation>&Detach Text from Path</translation> |
</message> |
<message> |
<source>&Combine Polygons</source> |
<translation>&Combine Polygons</translation> |
<source>&Combine Polygons</source> |
<translation>&Combine Polygons</translation> |
</message> |
<message> |
<source>Split &Polygons</source> |
<translation>Split &Polygons</translation> |
<source>Split &Polygons</source> |
<translation>Split &Polygons</translation> |
</message> |
<message> |
<source>&Bezier Curve</source> |
<translation>&Bezier Curve</translation> |
<source>&Bezier Curve</source> |
<translation>&Bezier Curve</translation> |
</message> |
<message> |
<source>&Image Frame</source> |
<translation>&Image Frame</translation> |
<source>&Image Frame</source> |
<translation>&Image Frame</translation> |
</message> |
<message> |
<source>&Outlines</source> |
<translation>&Outlines</translation> |
<source>&Outlines</source> |
<translation>&Outlines</translation> |
</message> |
<message> |
<source>&Polygon</source> |
<translation>&Polygon</translation> |
<source>&Polygon</source> |
<translation>&Polygon</translation> |
</message> |
<message> |
<source>&Text Frame</source> |
<translation>&Text Frame</translation> |
<source>&Text Frame</source> |
<translation>&Text Frame</translation> |
</message> |
<message> |
<source>&Glyph...</source> |
<translation>&Glyph...</translation> |
<source>&Glyph...</source> |
<translation>&Glyph...</translation> |
</message> |
<message> |
<source>Sample Text</source> |
<translation>Sample Text</translation> |
<source>Sample Text</source> |
<translation>Sample Text</translation> |
</message> |
<message> |
<source>&Insert...</source> |
<translation>&Insert...</translation> |
<source>&Insert...</source> |
<translation>&Insert...</translation> |
</message> |
<message> |
<source>Im&port...</source> |
<translation>Im&port...</translation> |
<source>Im&port...</source> |
<translation>Im&port...</translation> |
</message> |
<message> |
<source>&Delete...</source> |
<translation>&Delete...</translation> |
<source>&Delete...</source> |
<translation>&Delete...</translation> |
</message> |
<message> |
<source>&Copy...</source> |
<translation>&Copy...</translation> |
<source>&Copy...</source> |
<translation>&Copy...</translation> |
</message> |
<message> |
<source>&Move...</source> |
<translation>&Move...</translation> |
<source>&Move...</source> |
<translation>&Move...</translation> |
</message> |
<message> |
<source>&Apply Master Page...</source> |
<translation>&Apply Master Page...</translation> |
<source>&Apply Master Page...</source> |
<translation>&Apply Master Page...</translation> |
</message> |
<message> |
<source>Manage &Guides...</source> |
<translation>Manage &Guides...</translation> |
<source>Manage &Guides...</source> |
<translation>Manage &Guides...</translation> |
</message> |
<message> |
<source>&Fit in window</source> |
<translation>&Fit in window</translation> |
<source>&Fit in window</source> |
<translation>&Fit in window</translation> |
</message> |
<message> |
<source>&50%</source> |
<translation>&50%</translation> |
<source>&50%</source> |
<translation>&50%</translation> |
</message> |
<message> |
<source>&75%</source> |
<translation>&75%</translation> |
<source>&75%</source> |
<translation>&75%</translation> |
</message> |
<message> |
<source>&100%</source> |
<translation>&100%</translation> |
<source>&100%</source> |
<translation>&100%</translation> |
</message> |
<message> |
<source>&200%</source> |
<translation>&200%</translation> |
<source>&200%</source> |
<translation>&200%</translation> |
</message> |
<message> |
<source>&Thumbnails</source> |
<translation>&Thumbnails</translation> |
<source>&Thumbnails</source> |
<translation>&Thumbnails</translation> |
</message> |
<message> |
<source>Show &Margins</source> |
<translation>Show &Margins</translation> |
<source>Show &Margins</source> |
<translation>Show &Margins</translation> |
</message> |
<message> |
<source>Show &Frames</source> |
<translation>Show &Frames</translation> |
<source>Show &Frames</source> |
<translation>Show &Frames</translation> |
</message> |
<message> |
<source>Show &Images</source> |
<translation>Show &Images</translation> |
<source>Show &Images</source> |
<translation>Show &Images</translation> |
</message> |
<message> |
<source>Show &Grid</source> |
<translation>Show &Grid</translation> |
<source>Show &Grid</source> |
<translation>Show &Grid</translation> |
</message> |
<message> |
<source>Show G&uides</source> |
<translation>Show G&uides</translation> |
<source>Show G&uides</source> |
<translation>Show G&uides</translation> |
</message> |
<message> |
<source>Show &Baseline Grid</source> |
<translation>Show &Baseline Grid</translation> |
<source>Show &Baseline Grid</source> |
<translation>Show &Baseline Grid</translation> |
</message> |
<message> |
<source>Show &Text Chain</source> |
<translation>Show &Text Chain</translation> |
<source>Show &Text Chain</source> |
<translation>Show &Text Chain</translation> |
</message> |
<message> |
<source>Sn&ap to Grid</source> |
<translation>Sn&ap to Grid</translation> |
<source>Sn&ap to Grid</source> |
<translation>Sn&ap to Grid</translation> |
</message> |
<message> |
<source>Sna&p to Guides</source> |
<translation>Sna&p to Guides</translation> |
<source>Sna&p to Guides</source> |
<translation>Sna&p to Guides</translation> |
</message> |
<message> |
<source>&Properties</source> |
<translation>&Properties</translation> |
<source>&Properties</source> |
<translation>&Properties</translation> |
</message> |
<message> |
<source>&Scrapbook</source> |
<translation>&Scrapbook</translation> |
<source>&Scrapbook</source> |
<translation>&Scrapbook</translation> |
</message> |
<message> |
<source>&Layers</source> |
<translation>&Layers</translation> |
<source>&Layers</source> |
<translation>&Layers</translation> |
</message> |
<message> |
<source>&Bookmarks</source> |
<translation>&Bookmarks</translation> |
<source>&Bookmarks</source> |
<translation>&Bookmarks</translation> |
</message> |
<message> |
<source>&Measurements</source> |
<translation>&Measurements</translation> |
<source>&Measurements</source> |
<translation>&Measurements</translation> |
</message> |
<message> |
<source>Action &History</source> |
<translation>Action &History</translation> |
<source>Action &History</source> |
<translation>Action &History</translation> |
</message> |
<message> |
<source>Preflight &Verifier</source> |
<translation>Preflight &Verifier</translation> |
<source>Preflight &Verifier</source> |
<translation>Preflight &Verifier</translation> |
</message> |
<message> |
<source>&Tools</source> |
<translation>&Tools</translation> |
<source>&Tools</source> |
<translation>&Tools</translation> |
</message> |
<message> |
<source>P&DF Tools</source> |
<translation>P&DF Tools</translation> |
<source>P&DF Tools</source> |
<translation>P&DF Tools</translation> |
</message> |
<message> |
<source>Select Item</source> |
<translation>Select Item</translation> |
<source>Select Item</source> |
<translation>Select Item</translation> |
</message> |
<message> |
<source>T&able</source> |
<translation>T&able</translation> |
<source>T&able</source> |
<translation>T&able</translation> |
</message> |
<message> |
<source>&Shape</source> |
<translation>&Shape</translation> |
<source>&Shape</source> |
<translation>&Shape</translation> |
</message> |
<message> |
<source>&Line</source> |
<translation>&Line</translation> |
<source>&Line</source> |
<translation>&Line</translation> |
</message> |
<message> |
<source>&Freehand Line</source> |
<translation>&Freehand Line</translation> |
<source>&Freehand Line</source> |
<translation>&Freehand Line</translation> |
</message> |
<message> |
<source>Rotate Item</source> |
<translation>Rotate Item</translation> |
<source>Rotate Item</source> |
<translation>Rotate Item</translation> |
</message> |
<message> |
<source>Zoom in or out</source> |
<translation>Zoom in or out</translation> |
<source>Zoom in or out</source> |
<translation>Zoom in or out</translation> |
</message> |
<message> |
<source>Zoom in</source> |
<translation>Zoom in</translation> |
<source>Zoom in</source> |
<translation>Zoom in</translation> |
</message> |
<message> |
<source>Zoom out</source> |
<translation>Zoom out</translation> |
<source>Zoom out</source> |
<translation>Zoom out</translation> |
</message> |
<message> |
<source>Edit Contents of Frame</source> |
<translation>Edit Contents of Frame</translation> |
<source>Edit Contents of Frame</source> |
<translation>Edit Contents of Frame</translation> |
</message> |
<message> |
<source>Link Text Frames</source> |
<translation>Link Text Frames</translation> |
<source>Link Text Frames</source> |
<translation>Link Text Frames</translation> |
</message> |
<message> |
<source>Unlink Text Frames</source> |
<translation>Unlink Text Frames</translation> |
<source>Unlink Text Frames</source> |
<translation>Unlink Text Frames</translation> |
</message> |
<message> |
<source>&Eye Dropper</source> |
<translation>&Eye Dropper</translation> |
<source>&Eye Dropper</source> |
<translation>&Eye Dropper</translation> |
</message> |
<message> |
<source>Copy Item Properties</source> |
<translation>Copy Item Properties</translation> |
<source>Copy Item Properties</source> |
<translation>Copy Item Properties</translation> |
</message> |
<message> |
<source>Edit the text with the Story Editor</source> |
<translation>Edit the text with the Story Editor</translation> |
<source>Edit the text with the Story Editor</source> |
<translation>Edit the text with the Story Editor</translation> |
</message> |
<message> |
<source>Insert Text Frame</source> |
<translation>Insert Text Frame</translation> |
<source>Insert Text Frame</source> |
<translation>Insert Text Frame</translation> |
</message> |
<message> |
<source>Insert Image Frame</source> |
<translation>Insert Image Frame</translation> |
<source>Insert Image Frame</source> |
<translation>Insert Image Frame</translation> |
</message> |
<message> |
<source>Insert Table</source> |
<translation>Insert Table</translation> |
<source>Insert Table</source> |
<translation>Insert Table</translation> |
</message> |
<message> |
<source>Insert Shape</source> |
<translation>Insert Shape</translation> |
<source>Insert Shape</source> |
<translation>Insert Shape</translation> |
</message> |
<message> |
<source>Insert Polygon</source> |
<translation>Insert Polygon</translation> |
<source>Insert Polygon</source> |
<translation>Insert Polygon</translation> |
</message> |
<message> |
<source>Insert Line</source> |
<translation>Insert Line</translation> |
<source>Insert Line</source> |
<translation>Insert Line</translation> |
</message> |
<message> |
<source>Insert Bezier Curve</source> |
<translation>Insert Bezier Curve</translation> |
<source>Insert Bezier Curve</source> |
<translation>Insert Bezier Curve</translation> |
</message> |
<message> |
<source>Insert Freehand Line</source> |
<translation>Insert Freehand Line</translation> |
<source>Insert Freehand Line</source> |
<translation>Insert Freehand Line</translation> |
</message> |
<message> |
<source>&Manage Pictures</source> |
<translation>&Manage Pictures</translation> |
<source>&Manage Pictures</source> |
<translation>&Manage Pictures</translation> |
</message> |
<message> |
<source>&Hyphenate Text</source> |
<translation>&Hyphenate Text</translation> |
<source>&Hyphenate Text</source> |
<translation>&Hyphenate Text</translation> |
</message> |
<message> |
<source>&Generate Table Of Contents</source> |
<translation>&Generate Table Of Contents</translation> |
<source>&Generate Table Of Contents</source> |
<translation>&Generate Table Of Contents</translation> |
</message> |
<message> |
<source>&About Scribus</source> |
<translation>&About Scribus</translation> |
<source>&About Scribus</source> |
<translation>&About Scribus</translation> |
</message> |
<message> |
<source>About &Qt</source> |
<translation>About &Qt</translation> |
<source>About &Qt</source> |
<translation>About &Qt</translation> |
</message> |
<message> |
<source>Toolti&ps</source> |
<translation>Toolti&ps</translation> |
<source>Toolti&ps</source> |
<translation>Toolti&ps</translation> |
</message> |
<message> |
<source>Scribus &Manual...</source> |
<translation>Scribus &Manual...</translation> |
<source>Scribus &Manual...</source> |
<translation>Scribus &Manual...</translation> |
</message> |
<message> |
<source>Smart &Hyphen</source> |
<translation>Smart &Hyphen</translation> |
<source>Smart &Hyphen</source> |
<translation>Smart &Hyphen</translation> |
</message> |
<message> |
<source>Non Breaking &Space</source> |
<translation>Non Breaking &Space</translation> |
<source>Non Breaking &Space</source> |
<translation>Non Breaking &Space</translation> |
</message> |
<message> |
<source>Page &Number</source> |
<translation>Page &Number</translation> |
<source>Page &Number</source> |
<translation>Page &Number</translation> |
</message> |
<message> |
<source>Copyright</source> |
<translation>Copyright</translation> |
<source>Copyright</source> |
<translation>Copyright</translation> |
</message> |
<message> |
<source>Registered Trademark</source> |
<translation>Registered Trademark</translation> |
<source>Registered Trademark</source> |
<translation>Registered Trademark</translation> |
</message> |
<message> |
<source>Trademark</source> |
<translation>Trademark</translation> |
<source>Trademark</source> |
<translation>Trademark</translation> |
</message> |
<message> |
<source>Bullet</source> |
<translation>Bullet</translation> |
<source>Bullet</source> |
<translation>Bullet</translation> |
</message> |
<message> |
<source>Em Dash</source> |
<translation>Em Dash</translation> |
<source>Em Dash</source> |
<translation>Em Dash</translation> |
</message> |
<message> |
<source>En Dash</source> |
<translation>En Dash</translation> |
<source>En Dash</source> |
<translation>En Dash</translation> |
</message> |
<message> |
<source>Figure Dash</source> |
<translation>Figure Dash</translation> |
<source>Figure Dash</source> |
<translation>Figure Dash</translation> |
</message> |
<message> |
<source>Quotation Dash</source> |
<translation>Quotation Dash</translation> |
<source>Quotation Dash</source> |
<translation>Quotation Dash</translation> |
</message> |
<message> |
<source>Apostrophe</source> |
<translation>Apostrophe</translation> |
<source>Apostrophe</source> |
<translation>Apostrophe</translation> |
</message> |
<message> |
<source>Straight Double</source> |
<translation>Straight Double</translation> |
<source>Straight Double</source> |
<translation>Straight Double</translation> |
</message> |
<message> |
<source>Single Left</source> |
<translation>Single Left</translation> |
<source>Single Left</source> |
<translation>Single Left</translation> |
</message> |
<message> |
<source>Single Right</source> |
<translation>Single Right</translation> |
<source>Single Right</source> |
<translation>Single Right</translation> |
</message> |
<message> |
<source>Double Left</source> |
<translation>Double Left</translation> |
<source>Double Left</source> |
<translation>Double Left</translation> |
</message> |
<message> |
<source>Double Right</source> |
<translation>Double Right</translation> |
<source>Double Right</source> |
<translation>Double Right</translation> |
</message> |
<message> |
<source>Single Reversed</source> |
<translation>Single Reversed</translation> |
<source>Single Reversed</source> |
<translation>Single Reversed</translation> |
</message> |
<message> |
<source>Double Reversed</source> |
<translation>Double Reversed</translation> |
<source>Double Reversed</source> |
<translation>Double Reversed</translation> |
</message> |
<message> |
<source>Single Left Guillemet</source> |
<translation>Single Left Guillemet</translation> |
<source>Single Left Guillemet</source> |
<translation>Single Left Guillemet</translation> |
</message> |
<message> |
<source>Single Right Guillemet</source> |
<translation>Single Right Guillemet</translation> |
<source>Single Right Guillemet</source> |
<translation>Single Right Guillemet</translation> |
</message> |
<message> |
<source>Double Left Guillemet</source> |
<translation>Double Left Guillemet</translation> |
<source>Double Left Guillemet</source> |
<translation>Double Left Guillemet</translation> |
</message> |
<message> |
<source>Double Right Guillemet</source> |
<translation>Double Right Guillemet</translation> |
<source>Double Right Guillemet</source> |
<translation>Double Right Guillemet</translation> |
</message> |
<message> |
<source>Low Single Comma</source> |
<translation>Low Single Comma</translation> |
<source>Low Single Comma</source> |
<translation>Low Single Comma</translation> |
</message> |
<message> |
<source>Low Double Comma</source> |
<translation>Low Double Comma</translation> |
<source>Low Double Comma</source> |
<translation>Low Double Comma</translation> |
</message> |
<message> |
<source>Double Turned Comma</source> |
<translation>Double Turned Comma</translation> |
<source>Double Turned Comma</source> |
<translation>Double Turned Comma</translation> |
</message> |
<message> |
<source>CJK Single Left</source> |
<translation>CJK Single Left</translation> |
<source>CJK Single Left</source> |
<translation>CJK Single Left</translation> |
</message> |
<message> |
<source>CJK Single Right</source> |
<translation>CJK Single Right</translation> |
<source>CJK Single Right</source> |
<translation>CJK Single Right</translation> |
</message> |
<message> |
<source>CJK Double Left</source> |
<translation>CJK Double Left</translation> |
<source>CJK Double Left</source> |
<translation>CJK Double Left</translation> |
</message> |
<message> |
<source>CJK Double Right</source> |
<translation>CJK Double Right</translation> |
<source>CJK Double Right</source> |
<translation>CJK Double Right</translation> |
</message> |
<message> |
<source>Toggle Palettes</source> |
<translation>Toggle Palettes</translation> |
<source>Toggle Palettes</source> |
<translation>Toggle Palettes</translation> |
</message> |
<message> |
<source>S&hadow</source> |
<translation>S&hadow</translation> |
<source>S&hadow</source> |
<translation>S&hadow</translation> |
</message> |
<message> |
<source>&Low Resolution</source> |
<translation>&Low Resolution</translation> |
<source>&Low Resolution</source> |
<translation>&Low Resolution</translation> |
</message> |
<message> |
<source>&Normal Resolution</source> |
<translation>&Normal Resolution</translation> |
<source>&Normal Resolution</source> |
<translation>&Normal Resolution</translation> |
</message> |
<message> |
<source>&Full Resolution</source> |
<translation>&Full Resolution</translation> |
<source>&Full Resolution</source> |
<translation>&Full Resolution</translation> |
</message> |
<message> |
<source>Edit Image...</source> |
<translation>Edit Image...</translation> |
<source>Edit Image...</source> |
<translation>Edit Image...</translation> |
</message> |
<message> |
<source>&Update Image</source> |
<translation>&Update Image</translation> |
<source>&Update Image</source> |
<translation>&Update Image</translation> |
</message> |
<message> |
<source>Adjust Frame to Image</source> |
<translation>Adjust Frame to Image</translation> |
<source>Adjust Frame to Image</source> |
<translation>Adjust Frame to Image</translation> |
</message> |
<message> |
<source>Extended Image Properties</source> |
<translation>Extended Image Properties</translation> |
<source>Extended Image Properties</source> |
<translation>Extended Image Properties</translation> |
</message> |
<message> |
<source>Show Control Characters</source> |
<translation>Show Control Characters</translation> |
<source>Show Control Characters</source> |
<translation>Show Control Characters</translation> |
</message> |
<message> |
<source>&Align and Distribute</source> |
<translation>&Align and Distribute</translation> |
<source>&Align and Distribute</source> |
<translation>&Align and Distribute</translation> |
</message> |
<message> |
<source>Edit Text...</source> |
<translation>Edit Text...</translation> |
<source>Edit Text...</source> |
<translation>Edit Text...</translation> |
</message> |
<message> |
<source>New Line</source> |
<translation>New Line</translation> |
<source>New Line</source> |
<translation>New Line</translation> |
</message> |
<message> |
<source>Frame Break</source> |
<translation>Frame Break</translation> |
<source>Frame Break</source> |
<translation>Frame Break</translation> |
</message> |
<message> |
<source>Column Break</source> |
<translation>Column Break</translation> |
<source>Column Break</source> |
<translation>Column Break</translation> |
</message> |
<message> |
<source>Non Breaking Dash</source> |
<translation>Non Breaking Dash</translation> |
<source>Non Breaking Dash</source> |
<translation>Non Breaking Dash</translation> |
</message> |
<message> |
<source>Toggle Guides</source> |
<translation>Toggle Guides</translation> |
<source>Toggle Guides</source> |
<translation>Toggle Guides</translation> |
</message> |
<message> |
<source>&Arrange Pages</source> |
<translation>&Arrange Pages</translation> |
<source>&Arrange Pages</source> |
<translation>&Arrange Pages</translation> |
</message> |
<message> |
<source>Dehyphenate Text</source> |
<translation>Dehyphenate Text</translation> |
<source>Dehyphenate Text</source> |
<translation>Dehyphenate Text</translation> |
</message> |
<message> |
<source>Manage Page Properties...</source> |
<translation>Manage Page Properties...</translation> |
<source>Manage Page Properties...</source> |
<translation>Manage Page Properties...</translation> |
</message> |
<message> |
<source>Rulers relative to Page</source> |
<translation>Rulers relative to Page</translation> |
<source>Rulers relative to Page</source> |
<translation>Rulers relative to Page</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>AdvOptions</name> |
<message> |
<source>Advanced Options</source> |
<translation>Advanced Options</translation> |
<source>Advanced Options</source> |
<translation>Advanced Options</translation> |
</message> |
<message> |
<source>Creates PostScript Level 3</source> |
<translation>Creates PostScript Level 3</translation> |
<source>Creates PostScript Level 3</source> |
<translation>Creates PostScript Level 3</translation> |
</message> |
<message> |
<source>Creates PostScript Level 2 only, beware, |
<source>Creates PostScript Level 2 only, beware, |
this can create huge files</source> |
<translation>Creates PostScript Level 2 only, beware, |
<translation>Creates PostScript Level 2 only, beware, |
this can create huge files</translation> |
</message> |
<message> |
<source>Creates PostScript Level 1 only, beware, |
<source>Creates PostScript Level 1 only, beware, |
this can create huge files</source> |
<translation>Creates PostScript Level 1 only, beware, |
<translation>Creates PostScript Level 1 only, beware, |
this can create huge files</translation> |
</message> |
<message> |
<source>Mirror Page(s) &Horizontal</source> |
<translation>Mirror Page(s) &Horizontal</translation> |
<source>Mirror Page(s) &Horizontal</source> |
<translation>Mirror Page(s) &Horizontal</translation> |
</message> |
<message> |
<source>Mirror Page(s) &Vertical</source> |
<translation>Mirror Page(s) &Vertical</translation> |
<source>Mirror Page(s) &Vertical</source> |
<translation>Mirror Page(s) &Vertical</translation> |
</message> |
<message> |
<source>Apply &ICC Profiles</source> |
<translation>Apply &ICC Profiles</translation> |
<source>Apply &ICC Profiles</source> |
<translation>Apply &ICC Profiles</translation> |
</message> |
<message> |
<source>PostScript Level &1</source> |
<translation>PostScript Level &1</translation> |
<source>PostScript Level &1</source> |
<translation>PostScript Level &1</translation> |
</message> |
<message> |
<source>PostScript Level &2</source> |
<translation>PostScript Level &2</translation> |
<source>PostScript Level &2</source> |
<translation>PostScript Level &2</translation> |
</message> |
<message> |
<source>PostScript Level &3</source> |
<translation>PostScript Level &3</translation> |
<source>PostScript Level &3</source> |
<translation>PostScript Level &3</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Apply Under Color &Removal</source> |
<translation>Apply Under Colour &Removal</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<source>Apply Under Color &Removal</source> |
<translation>Apply Under Colour &Removal</translation> |
</message> |
<message> |
<source>A way of switching off some of the gray shades which are composed |
<source>A way of switching off some of the gray shades which are composed |
of cyan, yellow and magenta and using black instead. |
UCR most affects parts of images which are neutral and/or dark tones |
which are close to the gray. Use of this may improve printing some images |
and some experimentation and testing is need on a case by case basis. |
UCR reduces the possibility of over saturation with CMY inks.</source> |
<translation>A way of switching off some of the grey shades which are composed |
<translation>A way of switching off some of the grey shades which are composed |
of cyan, yellow and magenta and using black instead. |
UCR most affects parts of images which are neutral and/or dark tones |
which are close to the grey. Use of this may improve printing some images |
3405,5641 → 3396,5507 |
UCR reduces the possibility of over saturation with CMY inks.</translation> |
</message> |
<message> |
<source>Set Media Size</source> |
<translation>Set Media Size</translation> |
<source>Set Media Size</source> |
<translation>Set Media Size</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>Align</name> |
<message> |
<source>Distribute/Align</source> |
<translation>Distribute/Align</translation> |
<source>Distribute/Align</source> |
<translation>Distribute/Align</translation> |
</message> |
<message> |
<source>Align</source> |
<translation>Align</translation> |
<source>Align</source> |
<translation>Align</translation> |
</message> |
<message> |
<source>Horizontal</source> |
<translation>Horizontal</translation> |
<source>Horizontal</source> |
<translation>Horizontal</translation> |
</message> |
<message> |
<source>Left Sides</source> |
<translation>Left Sides</translation> |
<source>Left Sides</source> |
<translation>Left Sides</translation> |
</message> |
<message> |
<source>Middles</source> |
<translation>Middles</translation> |
<source>Middles</source> |
<translation>Middles</translation> |
</message> |
<message> |
<source>Right Sides</source> |
<translation>Right Sides</translation> |
<source>Right Sides</source> |
<translation>Right Sides</translation> |
</message> |
<message> |
<source>Vertical</source> |
<translation>Vertical</translation> |
<source>Vertical</source> |
<translation>Vertical</translation> |
</message> |
<message> |
<source>Top Sides</source> |
<translation>Top Sides</translation> |
<source>Top Sides</source> |
<translation>Top Sides</translation> |
</message> |
<message> |
<source>Bottom Sides</source> |
<translation>Bottom Sides</translation> |
<source>Bottom Sides</source> |
<translation>Bottom Sides</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>&Between:</source> |
<translation>&Between:</translation> |
</message> |
<message> |
<source>&Apply</source> |
<translation>&Apply</translation> |
<source>A&lign</source> |
<translation>A&lign</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>Di&splacement</source> |
<translation>Di&splacement</translation> |
</message> |
<message> |
<source>&Between:</source> |
<translation>&Between:</translation> |
<source>Distribute &Evenly</source> |
<translation>Distribute &Evenly</translation> |
</message> |
<message> |
<source>A&lign</source> |
<translation>A&lign</translation> |
<source>Bet&ween:</source> |
<translation>Bet&ween:</translation> |
</message> |
<message> |
<source>Di&splacement</source> |
<translation>Di&splacement</translation> |
<source>Do &Not Change</source> |
<translation>Do &Not Change</translation> |
</message> |
<message> |
<source>Distribute &Evenly</source> |
<translation>Distribute &Evenly</translation> |
<source>Al&ign</source> |
<translation>Al&ign</translation> |
</message> |
<message> |
<source>Bet&ween:</source> |
<translation>Bet&ween:</translation> |
<source>Dis&placement</source> |
<translation>Dis&placement</translation> |
</message> |
<message> |
<source>Do &Not Change</source> |
<translation>Do &Not Change</translation> |
<source>Distribute E&venly</source> |
<translation>Distribute E&venly</translation> |
</message> |
<message> |
<source>Al&ign</source> |
<translation>Al&ign</translation> |
<source>&Do Not Change</source> |
<translation>&Do Not Change</translation> |
</message> |
</context> |
<context> |
<name>AlignDistributePalette</name> |
<message> |
<source>Dis&placement</source> |
<translation>Dis&placement</translation> |
<source>Align and Distribute</source> |
<translation>Align and Distribute</translation> |
</message> |
<message> |
<source>Distribute E&venly</source> |
<translation>Distribute E&venly</translation> |
<source>Align</source> |
<translation>Align</translation> |
</message> |
<message> |
<source>&Do Not Change</source> |
<translation>&Do Not Change</translation> |
<source>&Relative to:</source> |
<translation>&Relative to:</translation> |
</message> |
</context> |
<context> |
<name>AlignDistributePalette</name> |
<message> |
<source>Align and Distribute</source> |
<translation>Align and Distribute</translation> |
<source>First Selected</source> |
<translation>First Selected</translation> |
</message> |
<message> |
<source>Align</source> |
<translation>Align</translation> |
<source>Last Selected</source> |
<translation>Last Selected</translation> |
</message> |
<message> |
<source>&Relative to:</source> |
<translation>&Relative to:</translation> |
<source>Page</source> |
<translation>Page</translation> |
</message> |
<message> |
<source>First Selected</source> |
<translation>First Selected</translation> |
<source>Margins</source> |
<translation>Margins</translation> |
</message> |
<message> |
<source>Last Selected</source> |
<translation>Last Selected</translation> |
<source>Selection</source> |
<translation>Selection</translation> |
</message> |
<message> |
<source>Page</source> |
<translation>Page</translation> |
<source>Align right sides of objects to left side of anchor</source> |
<translation>Align right sides of objects to left side of anchor</translation> |
</message> |
<message> |
<source>Margins</source> |
<translation>Margins</translation> |
<source>Align left sides of objects to right side of anchor</source> |
<translation>Align left sides of objects to right side of anchor</translation> |
</message> |
<message> |
<source>Selection</source> |
<translation>Selection</translation> |
<source>Align bottoms</source> |
<translation>Align bottoms</translation> |
</message> |
<message> |
<source>Align right sides of objects to left side of anchor</source> |
<translation>Align right sides of objects to left side of anchor</translation> |
<source>Align right sides</source> |
<translation>Align right sides</translation> |
</message> |
<message> |
<source>Align left sides of objects to right side of anchor</source> |
<translation>Align left sides of objects to right side of anchor</translation> |
<source>Align tops of objects to bottom of anchor</source> |
<translation>Align tops of objects to bottom of anchor</translation> |
</message> |
<message> |
<source>Align bottoms</source> |
<translation>Align bottoms</translation> |
<source>Center on vertical axis</source> |
<translation>Centre on vertical axis</translation> |
</message> |
<message> |
<source>Align right sides</source> |
<translation>Align right sides</translation> |
<source>Align left sides</source> |
<translation>Align left sides</translation> |
</message> |
<message> |
<source>Align tops of objects to bottom of anchor</source> |
<translation>Align tops of objects to bottom of anchor</translation> |
<source>Center on horizontal axis</source> |
<translation>Centre on horizontal axis</translation> |
</message> |
<message> |
<source>Center on vertical axis</source> |
<translation>Centre on vertical axis</translation> |
<source>Align bottoms of objects to top of anchor</source> |
<translation>Align bottoms of objects to top of anchor</translation> |
</message> |
<message> |
<source>Align left sides</source> |
<translation>Align left sides</translation> |
<source>Align tops</source> |
<translation>Align tops</translation> |
</message> |
<message> |
<source>Center on horizontal axis</source> |
<translation>Centre on horizontal axis</translation> |
<source>Distribute</source> |
<translation>Distribute</translation> |
</message> |
<message> |
<source>Align bottoms of objects to top of anchor</source> |
<translation>Align bottoms of objects to top of anchor</translation> |
<source>Distribute left sides equidistantly</source> |
<translation>Distribute left sides equidistantly</translation> |
</message> |
<message> |
<source>Align tops</source> |
<translation>Align tops</translation> |
<source>Distribute bottoms equidistantly</source> |
<translation>Distribute bottoms equidistantly</translation> |
</message> |
<message> |
<source>Distribute</source> |
<translation>Distribute</translation> |
<source>Distribute centers equidistantly horizontally</source> |
<translation>Distribute centres equidistantly horizontally</translation> |
</message> |
<message> |
<source>Distribute left sides equidistantly</source> |
<translation>Distribute left sides equidistantly</translation> |
<source>Make vertical gaps between objects equal</source> |
<translation>Make vertical gaps between objects equal</translation> |
</message> |
<message> |
<source>Distribute bottoms equidistantly</source> |
<translation>Distribute bottoms equidistantly</translation> |
<source>Distribute centers equidistantly vertically</source> |
<translation>Distribute centres equidistantly vertically</translation> |
</message> |
<message> |
<source>Distribute centers equidistantly horizontally</source> |
<translation>Distribute centres equidistantly horizontally</translation> |
<source>Distribute tops equidistantly</source> |
<translation>Distribute tops equidistantly</translation> |
</message> |
<message> |
<source>Make vertical gaps between objects equal</source> |
<translation>Make vertical gaps between objects equal</translation> |
<source>Distribute right sides equidistantly</source> |
<translation>Distribute right sides equidistantly</translation> |
</message> |
<message> |
<source>Distribute centers equidistantly vertically</source> |
<translation>Distribute centres equidistantly vertically</translation> |
<source>Guide</source> |
<translation>Guide</translation> |
</message> |
<message> |
<source>Distribute tops equidistantly</source> |
<translation>Distribute tops equidistantly</translation> |
<source>&Selected Guide:</source> |
<translation>&Selected Guide:</translation> |
</message> |
<message> |
<source>Distribute right sides equidistantly</source> |
<translation>Distribute right sides equidistantly</translation> |
<source>Make horizontal gaps between objects equal</source> |
<translation>Make horizontal gaps between objects equal</translation> |
</message> |
<message> |
<source>Distance</source> |
<translation>Distance</translation> |
<source>Make horizontal gaps between objects equal to the value specified</source> |
<translation>Make horizontal gaps between objects equal to the value specified</translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
<message> |
<source>Align Text Left</source> |
<translation>Align Text Left</translation> |
<source>Make vertical gaps between objects equal to the value specified</source> |
<translation>Make vertical gaps between objects equal to the value specified</translation> |
</message> |
<message> |
<source>Align Text Right</source> |
<translation>Align Text Right</translation> |
<source>&Distance:</source> |
<translation>&Distance:</translation> |
</message> |
<message> |
<source>Align Text Center</source> |
<translation>Align Text Centre</translation> |
<source>Distribute the items with the distance specified</source> |
<translation>Distribute the items with the distance specified</translation> |
</message> |
<message> |
<source>Align Text Justified</source> |
<translation>Align Text Justified</translation> |
<source>None Selected</source> |
<translation>None Selected</translation> |
</message> |
<message> |
<source>Align Text Forced Justified</source> |
<translation>Align Text Forced Justified</translation> |
<source>Warning</source> |
<translation>Warning</translation> |
</message> |
</context> |
<context> |
<name>Annot</name> |
<message> |
<source>Field Properties</source> |
<translation>Field Properties</translation> |
<source>Some objects are locked.</source> |
<translation>Some objects are locked.</translation> |
</message> |
<message> |
<source>Type:</source> |
<translation>Type:</translation> |
<source>&Unlock All</source> |
<translation>&Unlock All</translation> |
</message> |
<message> |
<source>Button</source> |
<translation>Button</translation> |
<source>Y: %1%2</source> |
<translation>Y: %1%2</translation> |
</message> |
<message> |
<source>Text Field</source> |
<translation>Text Field</translation> |
<source>X: %1%2</source> |
<translation>X: %1%2</translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
<message> |
<source>Check Box</source> |
<translation>Check Box</translation> |
<source>Align Text Left</source> |
<translation>Align Text Left</translation> |
</message> |
<message> |
<source>Combo Box</source> |
<translation>Combo Box</translation> |
<source>Align Text Right</source> |
<translation>Align Text Right</translation> |
</message> |
<message> |
<source>List Box</source> |
<translation>List Box</translation> |
<source>Align Text Center</source> |
<translation>Align Text Centre</translation> |
</message> |
<message> |
<source>Properties</source> |
<translation>Properties</translation> |
<source>Align Text Justified</source> |
<translation>Align Text Justified</translation> |
</message> |
<message> |
<source>Name:</source> |
<translation>Name:</translation> |
<source>Align Text Forced Justified</source> |
<translation>Align Text Forced Justified</translation> |
</message> |
</context> |
<context> |
<name>Annot</name> |
<message> |
<source>Tool-Tip:</source> |
<translation>Tool-Tip:</translation> |
<source>Field Properties</source> |
<translation>Field Properties</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Text</translation> |
<source>Type:</source> |
<translation>Type:</translation> |
</message> |
<message> |
<source>Border</source> |
<translation>Border</translation> |
<source>Button</source> |
<translation>Button</translation> |
</message> |
<message> |
<source>Color:</source> |
<translation>Colour:</translation> |
<source>Text Field</source> |
<translation>Text Field</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>Check Box</source> |
<translation>Check Box</translation> |
</message> |
<message> |
<source>Width:</source> |
<translation>Width:</translation> |
<source>Combo Box</source> |
<translation>Combo Box</translation> |
</message> |
<message> |
<source>Thin</source> |
<translation>Thin</translation> |
<source>List Box</source> |
<translation>List Box</translation> |
</message> |
<message> |
<source>Normal</source> |
<translation>Normal</translation> |
<source>Properties</source> |
<translation>Properties</translation> |
</message> |
<message> |
<source>Wide</source> |
<translation>Wide</translation> |
<source>Name:</source> |
<translation>Name:</translation> |
</message> |
<message> |
<source>Style:</source> |
<translation>Style:</translation> |
<source>Tool-Tip:</source> |
<translation>Tool-Tip:</translation> |
</message> |
<message> |
<source>Solid</source> |
<translation>Solid</translation> |
<source>Text</source> |
<translation>Text</translation> |
</message> |
<message> |
<source>Dashed</source> |
<translation>Dashed</translation> |
<source>Border</source> |
<translation>Border</translation> |
</message> |
<message> |
<source>Underline</source> |
<translation>Underline</translation> |
<source>Color:</source> |
<translation>Colour:</translation> |
</message> |
<message> |
<source>Beveled</source> |
<translation>Beveled</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>Inset</source> |
<translation>Inset</translation> |
<source>Width:</source> |
<translation>Width:</translation> |
</message> |
<message> |
<source>Other</source> |
<translation>Other</translation> |
<source>Thin</source> |
<translation>Thin</translation> |
</message> |
<message> |
<source>Read Only</source> |
<translation>Read Only</translation> |
<source>Normal</source> |
<translation>Normal</translation> |
</message> |
<message> |
<source>Required</source> |
<translation>Required</translation> |
<source>Wide</source> |
<translation>Wide</translation> |
</message> |
<message> |
<source>Don't Export Value</source> |
<translation>Don't Export Value</translation> |
<source>Style:</source> |
<translation>Style:</translation> |
</message> |
<message> |
<source>Visibility:</source> |
<translation>Visibility:</translation> |
<source>Solid</source> |
<translation>Solid</translation> |
</message> |
<message> |
<source>Visible</source> |
<translation>Visible</translation> |
<source>Dashed</source> |
<translation>Dashed</translation> |
</message> |
<message> |
<source>Hidden</source> |
<translation>Hidden</translation> |
<source>Underline</source> |
<translation>Underline</translation> |
</message> |
<message> |
<source>No Print</source> |
<translation>No Print</translation> |
<source>Beveled</source> |
<translation>Beveled</translation> |
</message> |
<message> |
<source>No View</source> |
<translation>No View</translation> |
<source>Inset</source> |
<translation>Inset</translation> |
</message> |
<message> |
<source>Appearance</source> |
<translation>Appearance</translation> |
<source>Other</source> |
<translation>Other</translation> |
</message> |
<message> |
<source>Text for Button Down</source> |
<translation>Text for Button Down</translation> |
<source>Read Only</source> |
<translation>Read Only</translation> |
</message> |
<message> |
<source>Text for Roll Over</source> |
<translation>Text for Roll Over</translation> |
<source>Required</source> |
<translation>Required</translation> |
</message> |
<message> |
<source>Icons</source> |
<translation>Icons</translation> |
<source>Don't Export Value</source> |
<translation>Don't Export Value</translation> |
</message> |
<message> |
<source>Use Icons</source> |
<translation>Use Icons</translation> |
<source>Visibility:</source> |
<translation>Visibility:</translation> |
</message> |
<message> |
<source>Remove</source> |
<translation>Remove</translation> |
<source>Visible</source> |
<translation>Visible</translation> |
</message> |
<message> |
<source>Pressed</source> |
<translation>Pressed</translation> |
<source>Hidden</source> |
<translation>Hidden</translation> |
</message> |
<message> |
<source>Roll Over</source> |
<translation>Roll Over</translation> |
<source>No Print</source> |
<translation>No Print</translation> |
</message> |
<message> |
<source>Icon Placement...</source> |
<translation>Icon Placement...</translation> |
<source>No View</source> |
<translation>No View</translation> |
</message> |
<message> |
<source>Highlight</source> |
<translation>Highlight</translation> |
<source>Appearance</source> |
<translation>Appearance</translation> |
</message> |
<message> |
<source>Invert</source> |
<translation>Invert</translation> |
<source>Text for Button Down</source> |
<translation>Text for Button Down</translation> |
</message> |
<message> |
<source>Outlined</source> |
<translation>Outlined</translation> |
<source>Text for Roll Over</source> |
<translation>Text for Roll Over</translation> |
</message> |
<message> |
<source>Push</source> |
<translation>Push</translation> |
<source>Icons</source> |
<translation>Icons</translation> |
</message> |
<message> |
<source>Multi-Line</source> |
<translation>Multi-Line</translation> |
<source>Use Icons</source> |
<translation>Use Icons</translation> |
</message> |
<message> |
<source>Password</source> |
<translation>Password</translation> |
<source>Remove</source> |
<translation>Remove</translation> |
</message> |
<message> |
<source>Limit of</source> |
<translation>Limit of</translation> |
<source>Pressed</source> |
<translation>Pressed</translation> |
</message> |
<message> |
<source>Characters</source> |
<translation>Characters</translation> |
<source>Roll Over</source> |
<translation>Roll Over</translation> |
</message> |
<message> |
<source>Do Not Scroll</source> |
<translation>Do Not Scroll</translation> |
<source>Icon Placement...</source> |
<translation>Icon Placement...</translation> |
</message> |
<message> |
<source>Do Not Spell Check</source> |
<translation>Do Not Spell Check</translation> |
<source>Highlight</source> |
<translation>Highlight</translation> |
</message> |
<message> |
<source>Check Style:</source> |
<translation>Check Style:</translation> |
<source>Invert</source> |
<translation>Invert</translation> |
</message> |
<message> |
<source>Check</source> |
<translation>Check</translation> |
<source>Outlined</source> |
<translation>Outlined</translation> |
</message> |
<message> |
<source>Cross</source> |
<translation>Cross</translation> |
<source>Push</source> |
<translation>Push</translation> |
</message> |
<message> |
<source>Diamond</source> |
<translation>Diamond</translation> |
<source>Multi-Line</source> |
<translation>Multi-Line</translation> |
</message> |
<message> |
<source>Circle</source> |
<translation>Circle</translation> |
<source>Password</source> |
<translation>Password</translation> |
</message> |
<message> |
<source>Star</source> |
<translation>Star</translation> |
<source>Limit of</source> |
<translation>Limit of</translation> |
</message> |
<message> |
<source>Square</source> |
<translation>Square</translation> |
<source>Characters</source> |
<translation>Characters</translation> |
</message> |
<message> |
<source>Default is Checked</source> |
<translation>Default is Checked</translation> |
<source>Do Not Scroll</source> |
<translation>Do Not Scroll</translation> |
</message> |
<message> |
<source>Editable</source> |
<translation>Editable</translation> |
<source>Do Not Spell Check</source> |
<translation>Do Not Spell Check</translation> |
</message> |
<message> |
<source>Options</source> |
<translation>Options</translation> |
<source>Check Style:</source> |
<translation>Check Style:</translation> |
</message> |
<message> |
<source>Java Script</source> |
<translation>Java Script</translation> |
<source>Check</source> |
<translation>Check</translation> |
</message> |
<message> |
<source>Go To</source> |
<translation>Go To</translation> |
<source>Cross</source> |
<translation>Cross</translation> |
</message> |
<message> |
<source>Submit Form</source> |
<translation>Submit Form</translation> |
<source>Diamond</source> |
<translation>Diamond</translation> |
</message> |
<message> |
<source>Reset Form</source> |
<translation>Reset Form</translation> |
<source>Circle</source> |
<translation>Circle</translation> |
</message> |
<message> |
<source>Import Data</source> |
<translation>Import Data</translation> |
<source>Star</source> |
<translation>Star</translation> |
</message> |
<message> |
<source>Event:</source> |
<translation>Event:</translation> |
<source>Square</source> |
<translation>Square</translation> |
</message> |
<message> |
<source>Mouse Up</source> |
<translation>Mouse Up</translation> |
<source>Default is Checked</source> |
<translation>Default is Checked</translation> |
</message> |
<message> |
<source>Mouse Down</source> |
<translation>Mouse Down</translation> |
<source>Editable</source> |
<translation>Editable</translation> |
</message> |
<message> |
<source>Mouse Enter</source> |
<translation>Mouse Enter</translation> |
<source>Options</source> |
<translation>Options</translation> |
</message> |
<message> |
<source>Mouse Exit</source> |
<translation>Mouse Exit</translation> |
<source>Java Script</source> |
<translation>Java Script</translation> |
</message> |
<message> |
<source>On Focus</source> |
<translation>On Focus</translation> |
<source>Go To</source> |
<translation>Go To</translation> |
</message> |
<message> |
<source>On Blur</source> |
<translation>On Blur</translation> |
<source>Submit Form</source> |
<translation>Submit Form</translation> |
</message> |
<message> |
<source>Script:</source> |
<translation>Script:</translation> |
<source>Reset Form</source> |
<translation>Reset Form</translation> |
</message> |
<message> |
<source>Edit...</source> |
<translation>Edit...</translation> |
<source>Import Data</source> |
<translation>Import Data</translation> |
</message> |
<message> |
<source>Submit to URL:</source> |
<translation>Submit to URL:</translation> |
<source>Event:</source> |
<translation>Event:</translation> |
</message> |
<message> |
<source>Submit Data as HTML</source> |
<translation>Submit Data as HTML</translation> |
<source>Mouse Up</source> |
<translation>Mouse Up</translation> |
</message> |
<message> |
<source>Import Data from:</source> |
<translation>Import Data from:</translation> |
<source>Mouse Down</source> |
<translation>Mouse Down</translation> |
</message> |
<message> |
<source>Destination</source> |
<translation>Destination</translation> |
<source>Mouse Enter</source> |
<translation>Mouse Enter</translation> |
</message> |
<message> |
<source>To File:</source> |
<translation>To File:</translation> |
<source>Mouse Exit</source> |
<translation>Mouse Exit</translation> |
</message> |
<message> |
<source>Change...</source> |
<translation>Change...</translation> |
<source>On Focus</source> |
<translation>On Focus</translation> |
</message> |
<message> |
<source>Page:</source> |
<translation>Page:</translation> |
<source>On Blur</source> |
<translation>On Blur</translation> |
</message> |
<message> |
<source>X-Pos:</source> |
<translation>X-Pos:</translation> |
<source>Script:</source> |
<translation>Script:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
<source>Edit...</source> |
<translation>Edit...</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation>Y-Pos:</translation> |
<source>Submit to URL:</source> |
<translation>Submit to URL:</translation> |
</message> |
<message> |
<source>Action</source> |
<translation>Action</translation> |
<source>Submit Data as HTML</source> |
<translation>Submit Data as HTML</translation> |
</message> |
<message> |
<source>Field is formatted as:</source> |
<translation>Field is formatted as:</translation> |
<source>Import Data from:</source> |
<translation>Import Data from:</translation> |
</message> |
<message> |
<source>Plain</source> |
<translation>Plain</translation> |
<source>Destination</source> |
<translation>Destination</translation> |
</message> |
<message> |
<source>Number</source> |
<translation>Number</translation> |
<source>To File:</source> |
<translation>To File:</translation> |
</message> |
<message> |
<source>Percentage</source> |
<translation>Percentage</translation> |
<source>Change...</source> |
<translation>Change...</translation> |
</message> |
<message> |
<source>Date</source> |
<translation>Date</translation> |
<source>Page:</source> |
<translation>Page:</translation> |
</message> |
<message> |
<source>Time</source> |
<translation>Time</translation> |
<source>X-Pos:</source> |
<translation>X-Pos:</translation> |
</message> |
<message> |
<source>Custom</source> |
<translation>Custom</translation> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<source>Number Format</source> |
<translation>Number Format</translation> |
<source>Y-Pos:</source> |
<translation>Y-Pos:</translation> |
</message> |
<message> |
<source>Decimals:</source> |
<translation>Decimals:</translation> |
<source>Action</source> |
<translation>Action</translation> |
</message> |
<message> |
<source>Use Currency Symbol</source> |
<translation>Use Currency Symbol</translation> |
<source>Field is formatted as:</source> |
<translation>Field is formatted as:</translation> |
</message> |
<message> |
<source>Prepend Currency Symbol</source> |
<translation>Prepend Currency Symbol</translation> |
<source>Plain</source> |
<translation>Plain</translation> |
</message> |
<message> |
<source>Formatting</source> |
<translation>Formatting</translation> |
<source>Number</source> |
<translation>Number</translation> |
</message> |
<message> |
<source>Percent Format</source> |
<translation>Percent Format</translation> |
<source>Percentage</source> |
<translation>Percentage</translation> |
</message> |
<message> |
<source>Date Format</source> |
<translation>Date Format</translation> |
<source>Date</source> |
<translation>Date</translation> |
</message> |
<message> |
<source>Time Format</source> |
<translation>Time Format</translation> |
<source>Time</source> |
<translation>Time</translation> |
</message> |
<message> |
<source>Custom Scripts</source> |
<translation>Custom Scripts</translation> |
<source>Custom</source> |
<translation>Custom</translation> |
</message> |
<message> |
<source>Format:</source> |
<translation>Format:</translation> |
<source>Number Format</source> |
<translation>Number Format</translation> |
</message> |
<message> |
<source>Keystroke:</source> |
<translation>Keystroke:</translation> |
<source>Decimals:</source> |
<translation>Decimals:</translation> |
</message> |
<message> |
<source>Format</source> |
<translation>Format</translation> |
<source>Use Currency Symbol</source> |
<translation>Use Currency Symbol</translation> |
</message> |
<message> |
<source>Value is not validated</source> |
<translation>Value is not validated</translation> |
<source>Prepend Currency Symbol</source> |
<translation>Prepend Currency Symbol</translation> |
</message> |
<message> |
<source>Value must be greater than or equal to:</source> |
<translation>Value must be greater than or equal to:</translation> |
<source>Formatting</source> |
<translation>Formatting</translation> |
</message> |
<message> |
<source>and less or equal to:</source> |
<translation>and less or equal to:</translation> |
<source>Percent Format</source> |
<translation>Percent Format</translation> |
</message> |
<message> |
<source>Custom validate script:</source> |
<translation>Custom validate script:</translation> |
<source>Date Format</source> |
<translation>Date Format</translation> |
</message> |
<message> |
<source>Validate</source> |
<translation>Validate</translation> |
<source>Time Format</source> |
<translation>Time Format</translation> |
</message> |
<message> |
<source>Value is not calculated</source> |
<translation>Value is not calculated</translation> |
<source>Custom Scripts</source> |
<translation>Custom Scripts</translation> |
</message> |
<message> |
<source>Value is the</source> |
<translation>Value is the</translation> |
<source>Format:</source> |
<translation>Format:</translation> |
</message> |
<message> |
<source>sum</source> |
<translation>sum</translation> |
<source>Keystroke:</source> |
<translation>Keystroke:</translation> |
</message> |
<message> |
<source>product</source> |
<translation>product</translation> |
<source>Format</source> |
<translation>Format</translation> |
</message> |
<message> |
<source>average</source> |
<translation>average</translation> |
<source>Value is not validated</source> |
<translation>Value is not validated</translation> |
</message> |
<message> |
<source>minimum</source> |
<translation>minimum</translation> |
<source>Value must be greater than or equal to:</source> |
<translation>Value must be greater than or equal to:</translation> |
</message> |
<message> |
<source>maximum</source> |
<translation>maximum</translation> |
<source>and less or equal to:</source> |
<translation>and less or equal to:</translation> |
</message> |
<message> |
<source>of the following fields:</source> |
<translation>of the following fields:</translation> |
<source>Custom validate script:</source> |
<translation>Custom validate script:</translation> |
</message> |
<message> |
<source>Pick...</source> |
<translation>Pick...</translation> |
<source>Validate</source> |
<translation>Validate</translation> |
</message> |
<message> |
<source>Custom calculation script:</source> |
<translation>Custom calculation script:</translation> |
<source>Value is not calculated</source> |
<translation>Value is not calculated</translation> |
</message> |
<message> |
<source>Calculate</source> |
<translation>Calculate</translation> |
<source>Value is the</source> |
<translation>Value is the</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<source>sum</source> |
<translation>sum</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>product</source> |
<translation>product</translation> |
</message> |
<message> |
<source>Enter a comma separated list of fields here</source> |
<translation>Enter a comma separated list of fields here</translation> |
<source>average</source> |
<translation>average</translation> |
</message> |
<message> |
<source>You need at least the Icon for Normal to use Icons for Buttons</source> |
<translation>You need at least the Icon for Normal to use Icons for Buttons</translation> |
<source>minimum</source> |
<translation>minimum</translation> |
</message> |
<message> |
<source>Open</source> |
<translation>Open</translation> |
<source>maximum</source> |
<translation>maximum</translation> |
</message> |
<message> |
<source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
<translation>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation> |
<source>of the following fields:</source> |
<translation>of the following fields:</translation> |
</message> |
<message> |
<source>Example:</source> |
<translation>Example:</translation> |
<source>Pick...</source> |
<translation>Pick...</translation> |
</message> |
<message> |
<source>Selection Change</source> |
<translation>Selection Change</translation> |
<source>Custom calculation script:</source> |
<translation>Custom calculation script:</translation> |
</message> |
<message> |
<source>Font for use with PDF 1.3:</source> |
<translation>Font for use with PDF 1.3:</translation> |
<source>Calculate</source> |
<translation>Calculate</translation> |
</message> |
<message> |
<source>Flag is ignored for PDF 1.3</source> |
<translation>Flag is ignored for PDF 1.3</translation> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation>PDF Files (*.pdf);;All Files (*)</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
<message> |
<source>Annotation Properties</source> |
<translation>Annotation Properties</translation> |
<source>Enter a comma separated list of fields here</source> |
<translation>Enter a comma separated list of fields here</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Text</translation> |
<source>You need at least the Icon for Normal to use Icons for Buttons</source> |
<translation>You need at least the Icon for Normal to use Icons for Buttons</translation> |
</message> |
<message> |
<source>Link</source> |
<translation>Link</translation> |
<source>Open</source> |
<translation>Open</translation> |
</message> |
<message> |
<source>External Link</source> |
<translation>External Link</translation> |
<source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
<translation>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation> |
</message> |
<message> |
<source>External Web-Link</source> |
<translation>External Web-Link</translation> |
<source>Example:</source> |
<translation>Example:</translation> |
</message> |
<message> |
<source>Destination</source> |
<translation>Destination</translation> |
<source>Selection Change</source> |
<translation>Selection Change</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
<source>Font for use with PDF 1.3:</source> |
<translation>Font for use with PDF 1.3:</translation> |
</message> |
<message> |
<source>Open</source> |
<translation>Open</translation> |
<source>Flag is ignored for PDF 1.3</source> |
<translation>Flag is ignored for PDF 1.3</translation> |
</message> |
<message> |
<source>PDF-Documents (*.pdf);;All Files (*)</source> |
<translation>PDF-Documents (*.pdf);;All Files (*)</translation> |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation>PDF Files (*.pdf);;All Files (*)</translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
<message> |
<source>&Type:</source> |
<translation>&Type:</translation> |
<source>Annotation Properties</source> |
<translation>Annotation Properties</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
<source>Text</source> |
<translation>Text</translation> |
</message> |
<message> |
<source>&Page:</source> |
<translation>&Page:</translation> |
<source>Link</source> |
<translation>Link</translation> |
</message> |
<message> |
<source>&X-Pos</source> |
<translation>&X-Pos</translation> |
<source>External Link</source> |
<translation>External Link</translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
<source>External Web-Link</source> |
<translation>External Web-Link</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Destination</source> |
<translation>Destination</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
</context> |
<context> |
<name>ApplyMasterPageDialog</name> |
<message> |
<source>Normal</source> |
<translation>Normal</translation> |
<source>Open</source> |
<translation>Open</translation> |
</message> |
<message> |
<source>Apply Master Page</source> |
<translation>Apply Master Page</translation> |
<source>PDF-Documents (*.pdf);;All Files (*)</source> |
<translation>PDF-Documents (*.pdf);;All Files (*)</translation> |
</message> |
<message> |
<source>&Master Page:</source> |
<translation>&Master Page:</translation> |
<source>&Type:</source> |
<translation>&Type:</translation> |
</message> |
<message> |
<source>Apply To</source> |
<translation>Apply To</translation> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
</message> |
<message> |
<source>Current &page</source> |
<translation>Current &page</translation> |
<source>&Page:</source> |
<translation>&Page:</translation> |
</message> |
<message> |
<source>Alt+P</source> |
<translation>Alt+P</translation> |
<source>&X-Pos</source> |
<translation>&X-Pos</translation> |
</message> |
<message> |
<source>&Even pages</source> |
<translation>&Even pages</translation> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
</message> |
</context> |
<context> |
<name>ApplyMasterPageDialog</name> |
<message> |
<source>Alt+E</source> |
<translation>Alt+E</translation> |
<source>Normal</source> |
<translation>Normal</translation> |
</message> |
<message> |
<source>O&dd pages</source> |
<translation>O&dd pages</translation> |
<source>Apply Master Page</source> |
<translation>Apply Master Page</translation> |
</message> |
<message> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
<source>&Master Page:</source> |
<translation>&Master Page:</translation> |
</message> |
<message> |
<source>&All pages</source> |
<translation>&All pages</translation> |
<source>Apply To</source> |
<translation>Apply To</translation> |
</message> |
<message> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
<source>Current &page</source> |
<translation>Current &page</translation> |
</message> |
<message> |
<source>&Within range</source> |
<translation>&Within range</translation> |
<source>Alt+P</source> |
<translation>Alt+P</translation> |
</message> |
<message> |
<source>Alt+W</source> |
<translation>Alt+W</translation> |
<source>&Even pages</source> |
<translation>&Even pages</translation> |
</message> |
<message> |
<source><qt>Apply the selected template to even, odd or all pages within the following range</qt></source> |
<translation><qt>Apply the selected template to even, odd or all pages within the following range</qt></translation> |
<source>Alt+E</source> |
<translation>Alt+E</translation> |
</message> |
<message> |
<source>to</source> |
<translation>to</translation> |
<source>O&dd pages</source> |
<translation>O&dd pages</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
</message> |
<message> |
<source>Alt+O</source> |
<translation>Alt+O</translation> |
<source>&All pages</source> |
<translation>&All pages</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
</message> |
<message> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
<source>&Within range</source> |
<translation>&Within range</translation> |
</message> |
</context> |
<context> |
<message> |
<source>Alt+W</source> |
<translation>Alt+W</translation> |
</message> |
<message> |
<source><qt>Apply the selected template to even, odd or all pages within the following range</qt></source> |
<translation><qt>Apply the selected template to even, odd or all pages within the following range</qt></translation> |
</message> |
<message> |
<source>to</source> |
<translation>to</translation> |
</message> |
<message> |
<source>Alt+O</source> |
<translation>Alt+O</translation> |
</message> |
<message> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
</message> |
</context> |
<context> |
<name>ArrowChooser</name> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>Biblio</name> |
<message> |
<source>Scrapbook</source> |
<translation>Scrapbook</translation> |
<source>Scrapbook</source> |
<translation>Scrapbook</translation> |
</message> |
<message> |
<source>Scrapbooks (*.scs);;All Files (*)</source> |
<translation>Scrapbooks (*.scs);;All Files (*)</translation> |
<source>Scrapbooks (*.scs);;All Files (*)</source> |
<translation>Scrapbooks (*.scs);;All Files (*)</translation> |
</message> |
<message> |
<source>Delete</source> |
<translation>Delete</translation> |
<source>Delete</source> |
<translation>Delete</translation> |
</message> |
<message> |
<source>Object</source> |
<translation>Object</translation> |
<source>Object</source> |
<translation>Object</translation> |
</message> |
<message> |
<source>New Entry</source> |
<translation>New Entry</translation> |
<source>New Entry</source> |
<translation>New Entry</translation> |
</message> |
<message> |
<source>Rename</source> |
<translation>Rename</translation> |
<source>Rename</source> |
<translation>Rename</translation> |
</message> |
<message> |
<source>Warning</source> |
<translation>Warning</translation> |
<source>Warning</source> |
<translation>Warning</translation> |
</message> |
<message> |
<source>Name "%1" isn't unique. |
<source>Name "%1" isn't unique. |
Please choose another.</source> |
<translation>Name "%1" isn't unique. |
<translation>Name "%1" isn't unique. |
Please choose another.</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&New</translation> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<source>&Load...</source> |
<translation>&Load...</translation> |
<source>&Load...</source> |
<translation>&Load...</translation> |
</message> |
<message> |
<source>&Save</source> |
<translation>&Save</translation> |
<source>&Save</source> |
<translation>&Save</translation> |
</message> |
<message> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>&Close</translation> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<source>&Small</source> |
<translation>&Small</translation> |
<source>&Small</source> |
<translation>&Small</translation> |
</message> |
<message> |
<source>&Medium</source> |
<translation>&Medium</translation> |
<source>&Medium</source> |
<translation>&Medium</translation> |
</message> |
<message> |
<source>&Large</source> |
<translation>&Large</translation> |
<source>&Large</source> |
<translation>&Large</translation> |
</message> |
<message> |
<source>&File</source> |
<translation>&File</translation> |
<source>&File</source> |
<translation>&File</translation> |
</message> |
<message> |
<source>&Preview</source> |
<translation>&Preview</translation> |
<source>&Preview</source> |
<translation>&Preview</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>BookMView</name> |
<message> |
<source>Bookmarks</source> |
<translation>Bookmarks</translation> |
<source>Bookmarks</source> |
<translation>Bookmarks</translation> |
</message> |
<message> |
<source>Move Bookmark</source> |
<translation>Move Bookmark</translation> |
<source>Move Bookmark</source> |
<translation>Move Bookmark</translation> |
</message> |
<message> |
<source>Insert Bookmark</source> |
<translation>Insert Bookmark</translation> |
<source>Insert Bookmark</source> |
<translation>Insert Bookmark</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>BookPalette</name> |
<message> |
<source>Bookmarks</source> |
<translation>Bookmarks</translation> |
<source>Bookmarks</source> |
<translation>Bookmarks</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ButtonIcon</name> |
<message> |
<source>Icon Placement</source> |
<translation>Icon Placement</translation> |
<source>Icon Placement</source> |
<translation>Icon Placement</translation> |
</message> |
<message> |
<source>Layout:</source> |
<translation>Layout:</translation> |
<source>Layout:</source> |
<translation>Layout:</translation> |
</message> |
<message> |
<source>Caption only</source> |
<translation>Caption only</translation> |
<source>Caption only</source> |
<translation>Caption only</translation> |
</message> |
<message> |
<source>Icon only</source> |
<translation>Icon only</translation> |
<source>Icon only</source> |
<translation>Icon only</translation> |
</message> |
<message> |
<source>Caption below Icon</source> |
<translation>Caption below Icon</translation> |
<source>Caption below Icon</source> |
<translation>Caption below Icon</translation> |
</message> |
<message> |
<source>Caption above Icon</source> |
<translation>Caption above Icon</translation> |
<source>Caption above Icon</source> |
<translation>Caption above Icon</translation> |
</message> |
<message> |
<source>Caption right to Icon</source> |
<translation>Caption right to Icon</translation> |
<source>Caption right to Icon</source> |
<translation>Caption right to Icon</translation> |
</message> |
<message> |
<source>Caption left to Icon</source> |
<translation>Caption left to Icon</translation> |
<source>Caption left to Icon</source> |
<translation>Caption left to Icon</translation> |
</message> |
<message> |
<source>Caption overlays Icon</source> |
<translation>Caption overlays Icon</translation> |
<source>Caption overlays Icon</source> |
<translation>Caption overlays Icon</translation> |
</message> |
<message> |
<source>Scale:</source> |
<translation>Scale:</translation> |
<source>Scale:</source> |
<translation>Scale:</translation> |
</message> |
<message> |
<source>Always</source> |
<translation>Always</translation> |
<source>Always</source> |
<translation>Always</translation> |
</message> |
<message> |
<source>When Icon is too big</source> |
<translation>When Icon is too big</translation> |
<source>When Icon is too big</source> |
<translation>When Icon is too big</translation> |
</message> |
<message> |
<source>Never</source> |
<translation>Never</translation> |
<source>Never</source> |
<translation>Never</translation> |
</message> |
<message> |
<source>Scale How:</source> |
<translation>Scale How:</translation> |
<source>Scale How:</source> |
<translation>Scale How:</translation> |
</message> |
<message> |
<source>Proportional</source> |
<translation>Proportional</translation> |
<source>Proportional</source> |
<translation>Proportional</translation> |
</message> |
<message> |
<source>Non Proportional</source> |
<translation>Non Proportional</translation> |
<source>Non Proportional</source> |
<translation>Non Proportional</translation> |
</message> |
<message> |
<source>Icon</source> |
<translation>Icon</translation> |
<source>Icon</source> |
<translation>Icon</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
<message> |
<source>Reset</source> |
<translation>Reset</translation> |
<source>Reset</source> |
<translation>Reset</translation> |
</message> |
<message> |
<source>When Icon is too small</source> |
<translation>When Icon is too small</translation> |
<source>When Icon is too small</source> |
<translation>When Icon is too small</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CMSPrefs</name> |
<message> |
<source>System Profiles</source> |
<translation>System Profiles</translation> |
<source>System Profiles</source> |
<translation>System Profiles</translation> |
</message> |
<message> |
<source>Rendering Intents</source> |
<translation>Rendering Intents</translation> |
<source>Rendering Intents</source> |
<translation>Rendering Intents</translation> |
</message> |
<message> |
<source>Perceptual</source> |
<translation>Perceptual</translation> |
<source>Perceptual</source> |
<translation>Perceptual</translation> |
</message> |
<message> |
<source>Relative Colorimetric</source> |
<translation>Relative Colourimetric</translation> |
<source>Relative Colorimetric</source> |
<translation>Relative Colourimetric</translation> |
</message> |
<message> |
<source>Saturation</source> |
<translation>Saturation</translation> |
<source>Saturation</source> |
<translation>Saturation</translation> |
</message> |
<message> |
<source>Absolute Colorimetric</source> |
<translation>Absolute Colourimetric</translation> |
<source>Absolute Colorimetric</source> |
<translation>Absolute Colourimetric</translation> |
</message> |
<message> |
<source>Default color profile for imported images</source> |
<translation>Default colour profile for imported images</translation> |
<source>Default color profile for imported images</source> |
<translation>Default colour profile for imported images</translation> |
</message> |
<message> |
<source>Default color profile for solid colors on the page</source> |
<translation>Default colour profile for solid colours on the page</translation> |
<source>Default color profile for solid colors on the page</source> |
<translation>Default colour profile for solid colours on the page</translation> |
</message> |
<message> |
<source>Color profile that you have generated or received from the manufacturer. |
<source>Color profile that you have generated or received from the manufacturer. |
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
<translation>Colour profile that you have generated or received from the manufacturer. |
<translation>Colour profile that you have generated or received from the manufacturer. |
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation> |
</message> |
<message> |
<source>Color profile for your printer model from the manufacturer. |
<source>Color profile for your printer model from the manufacturer. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
<translation>Colour profile for your printer model from the manufacturer. |
<translation>Colour profile for your printer model from the manufacturer. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation> |
</message> |
<message> |
<source>Black Point Compensation is a method of improving contrast in photos. |
<source>Black Point Compensation is a method of improving contrast in photos. |
It is recommended that you enable this if you have photos in your document.</source> |
<translation>Black Point Compensation is a method of improving contrast in photos. |
<translation>Black Point Compensation is a method of improving contrast in photos. |
It is recommended that you enable this if you have photos in your document.</translation> |
</message> |
<message> |
<source>Default rendering intent for your monitor. Unless you know why to change it, |
<source>Default rendering intent for your monitor. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Default rendering intent for your monitor. Unless you know why to change it, |
<translation>Default rendering intent for your monitor. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<source>Default rendering intent for your printer. Unless you know why to change it, |
<source>Default rendering intent for your printer. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Default rendering intent for your printer. Unless you know why to change it, |
<translation>Default rendering intent for your printer. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<source>Enable 'soft proofing' of how your document colors will print, |
<source>Enable 'soft proofing' of how your document colors will print, |
based on the chosen printer profile.</source> |
<translation>Enable 'soft proofing' of how your document colours will print, |
<translation>Enable 'soft proofing' of how your document colours will print, |
based on the chosen printer profile.</translation> |
</message> |
<message> |
<source>Method of showing colors on the screen which may not print properly. |
<source>Method of showing colors on the screen which may not print properly. |
This requires very accurate profiles and serves only as a warning.</source> |
<translation>Method of showing colours on the screen which may not print properly. |
<translation>Method of showing colours on the screen which may not print properly. |
This requires very accurate profiles and serves only as a warning.</translation> |
</message> |
<message> |
<source>&Activate Color Management</source> |
<translation>&Activate Colour Management</translation> |
<source>&Activate Color Management</source> |
<translation>&Activate Colour Management</translation> |
</message> |
<message> |
<source>&Pictures:</source> |
<translation>&Pictures:</translation> |
<source>&Pictures:</source> |
<translation>&Pictures:</translation> |
</message> |
<message> |
<source>&Solid Colors:</source> |
<translation>&Solid Colours:</translation> |
<source>&Solid Colors:</source> |
<translation>&Solid Colours:</translation> |
</message> |
<message> |
<source>&Monitor:</source> |
<translation>&Monitor:</translation> |
<source>&Monitor:</source> |
<translation>&Monitor:</translation> |
</message> |
<message> |
<source>P&rinter:</source> |
<translation>P&rinter:</translation> |
<source>P&rinter:</source> |
<translation>P&rinter:</translation> |
</message> |
<message> |
<source>M&onitor:</source> |
<translation>M&onitor:</translation> |
<source>M&onitor:</source> |
<translation>M&onitor:</translation> |
</message> |
<message> |
<source>Pr&inter:</source> |
<translation>Pr&inter:</translation> |
<source>Pr&inter:</source> |
<translation>Pr&inter:</translation> |
</message> |
<message> |
<source>Sim&ulate Printer on the Screen</source> |
<translation>Sim&ulate Printer on the Screen</translation> |
<source>Sim&ulate Printer on the Screen</source> |
<translation>Sim&ulate Printer on the Screen</translation> |
</message> |
<message> |
<source>Mark Colors out of &Gamut</source> |
<translation>Mark Colours out of &Gamut</translation> |
<source>Mark Colors out of &Gamut</source> |
<translation>Mark Colours out of &Gamut</translation> |
</message> |
<message> |
<source>Use &Blackpoint Compensation</source> |
<translation>Use &Blackpoint Compensation</translation> |
<source>Use &Blackpoint Compensation</source> |
<translation>Use &Blackpoint Compensation</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CMYKChoose</name> |
<message> |
<source>Edit Color</source> |
<translation>Edit Colour</translation> |
<source>Edit Color</source> |
<translation>Edit Colour</translation> |
</message> |
<message> |
<source>CMYK</source> |
<translation>CMYK</translation> |
<source>CMYK</source> |
<translation>CMYK</translation> |
</message> |
<message> |
<source>RGB</source> |
<translation>RGB</translation> |
<source>RGB</source> |
<translation>RGB</translation> |
</message> |
<message> |
<source>Web Safe RGB</source> |
<translation>Web Safe RGB</translation> |
<source>Web Safe RGB</source> |
<translation>Web Safe RGB</translation> |
</message> |
<message> |
<source>New</source> |
<translation>New</translation> |
<source>New</source> |
<translation>New</translation> |
</message> |
<message> |
<source>Old</source> |
<translation>Old</translation> |
<source>Old</source> |
<translation>Old</translation> |
</message> |
<message> |
<source>C:</source> |
<translation>C:</translation> |
<source>C:</source> |
<translation>C:</translation> |
</message> |
<message> |
<source>M:</source> |
<translation>M:</translation> |
<source>M:</source> |
<translation>M:</translation> |
</message> |
<message> |
<source>Y:</source> |
<translation>Y:</translation> |
<source>Y:</source> |
<translation>Y:</translation> |
</message> |
<message> |
<source>K:</source> |
<translation>K:</translation> |
<source>K:</source> |
<translation>K:</translation> |
</message> |
<message> |
<source>Dynamic Color Bars</source> |
<translation>Dynamic Colour Bars</translation> |
<source>Dynamic Color Bars</source> |
<translation>Dynamic Colour Bars</translation> |
</message> |
<message> |
<source>Static Color Bars</source> |
<translation>Static Colour Bars</translation> |
<source>Static Color Bars</source> |
<translation>Static Colour Bars</translation> |
</message> |
<message> |
<source>R:</source> |
<translation>R:</translation> |
<source>R:</source> |
<translation>R:</translation> |
</message> |
<message> |
<source>G:</source> |
<translation>G:</translation> |
<source>G:</source> |
<translation>G:</translation> |
</message> |
<message> |
<source>B:</source> |
<translation>B:</translation> |
<source>B:</source> |
<translation>B:</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>Warning</source> |
<translation>Warning</translation> |
<source>Warning</source> |
<translation>Warning</translation> |
</message> |
<message> |
<source>Name of the Color is not unique</source> |
<translation>Name of the colour is not unique</translation> |
<source>Name of the Color is not unique</source> |
<translation>Name of the colour is not unique</translation> |
</message> |
<message> |
<source>HSV-Colormap</source> |
<translation>HSV-Colourmap</translation> |
<source>HSV-Colormap</source> |
<translation>HSV-Colourmap</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>Color &Model</source> |
<translation>Colour &Model</translation> |
<source>Color &Model</source> |
<translation>Colour &Model</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>You cannot create a color named "%1". |
It's a reserved name for transparent color</source> |
<translation>You cannot create a colour named "%1". |
It's a reserved name for transparent colour</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>You cannot create a color named "%1". |
It's a reserved name for transparent color</source> |
<translation>You cannot create a colour named "%1". |
It's a reserved name for transparent colour</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ChTable</name> |
<message> |
<source>You can see a thumbnail if you press |
<source>You can see a thumbnail if you press |
and hold down the right mouse button |
|
The Insert key inserts a Glyph into the Selection below |
and the Delete key removes the last inserted one</source> |
<translation>You can see a thumbnail if you press |
<translation>You can see a thumbnail if you press |
and hold down the right mouse button |
|
The Insert key inserts a Glyph into the Selection below |
and the Delete key removes the last inserted one</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CharSelect</name> |
<message> |
<source>Select Character:</source> |
<translation>Select Character:</translation> |
<source>Select Character:</source> |
<translation>Select Character:</translation> |
</message> |
<message> |
<source>Font:</source> |
<translation>Font:</translation> |
<source>Font:</source> |
<translation>Font:</translation> |
</message> |
<message> |
<source>Character Class:</source> |
<translation>Character Class:</translation> |
<source>Character Class:</source> |
<translation>Character Class:</translation> |
</message> |
<message> |
<source>&Insert</source> |
<translation>&Insert</translation> |
<source>&Insert</source> |
<translation>&Insert</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation>C&lear</translation> |
<source>C&lear</source> |
<translation>C&lear</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>&Close</translation> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<source>Insert the characters at the cursor in the text</source> |
<translation>Insert the characters at the cursor in the text</translation> |
<source>Insert the characters at the cursor in the text</source> |
<translation>Insert the characters at the cursor in the text</translation> |
</message> |
<message> |
<source>Delete the current selection(s).</source> |
<translation>Delete the current selection(s).</translation> |
<source>Delete the current selection(s).</source> |
<translation>Delete the current selection(s).</translation> |
</message> |
<message> |
<source>Close this dialog and return to text editing.</source> |
<translation>Close this dialog and return to text editing.</translation> |
<source>Close this dialog and return to text editing.</source> |
<translation>Close this dialog and return to text editing.</translation> |
</message> |
<message> |
<source>Full Character Set</source> |
<translation>Full Character Set</translation> |
<source>Full Character Set</source> |
<translation>Full Character Set</translation> |
</message> |
<message> |
<source>Basic Latin</source> |
<translation>Basic Latin</translation> |
<source>Basic Latin</source> |
<translation>Basic Latin</translation> |
</message> |
<message> |
<source>Latin-1 Supplement</source> |
<translation>Latin-1 Supplement</translation> |
<source>Latin-1 Supplement</source> |
<translation>Latin-1 Supplement</translation> |
</message> |
<message> |
<source>Latin Extended-A</source> |
<translation>Latin Extended-A</translation> |
<source>Latin Extended-A</source> |
<translation>Latin Extended-A</translation> |
</message> |
<message> |
<source>Latin Extended-B</source> |
<translation>Latin Extended-B</translation> |
<source>Latin Extended-B</source> |
<translation>Latin Extended-B</translation> |
</message> |
<message> |
<source>General Punctuation</source> |
<translation>General Punctuation</translation> |
<source>General Punctuation</source> |
<translation>General Punctuation</translation> |
</message> |
<message> |
<source>Super- and Subscripts</source> |
<translation>Super- and Subscripts</translation> |
<source>Super- and Subscripts</source> |
<translation>Super- and Subscripts</translation> |
</message> |
<message> |
<source>Currency Symbols</source> |
<translation>Currency Symbols</translation> |
<source>Currency Symbols</source> |
<translation>Currency Symbols</translation> |
</message> |
<message> |
<source>Letterlike Symbols</source> |
<translation>Letterlike Symbols</translation> |
<source>Letterlike Symbols</source> |
<translation>Letterlike Symbols</translation> |
</message> |
<message> |
<source>Number Forms</source> |
<translation>Number Forms</translation> |
<source>Number Forms</source> |
<translation>Number Forms</translation> |
</message> |
<message> |
<source>Arrows</source> |
<translation>Arrows</translation> |
<source>Arrows</source> |
<translation>Arrows</translation> |
</message> |
<message> |
<source>Mathematical Operators</source> |
<translation>Mathematical Operators</translation> |
<source>Mathematical Operators</source> |
<translation>Mathematical Operators</translation> |
</message> |
<message> |
<source>Box Drawing</source> |
<translation>Box Drawing</translation> |
<source>Box Drawing</source> |
<translation>Box Drawing</translation> |
</message> |
<message> |
<source>Block Elements</source> |
<translation>Block Elements</translation> |
<source>Block Elements</source> |
<translation>Block Elements</translation> |
</message> |
<message> |
<source>Geometric Shapes</source> |
<translation>Geometric Shapes</translation> |
<source>Geometric Shapes</source> |
<translation>Geometric Shapes</translation> |
</message> |
<message> |
<source>Miscellaneous Symbols</source> |
<translation>Miscellaneous Symbols</translation> |
<source>Miscellaneous Symbols</source> |
<translation>Miscellaneous Symbols</translation> |
</message> |
<message> |
<source>Dingbats</source> |
<translation>Dingbats</translation> |
<source>Dingbats</source> |
<translation>Dingbats</translation> |
</message> |
<message> |
<source>Small Form Variants</source> |
<translation>Small Form Variants</translation> |
<source>Small Form Variants</source> |
<translation>Small Form Variants</translation> |
</message> |
<message> |
<source>Ligatures</source> |
<translation>Ligatures</translation> |
<source>Ligatures</source> |
<translation>Ligatures</translation> |
</message> |
<message> |
<source>Specials</source> |
<translation>Specials</translation> |
<source>Specials</source> |
<translation>Specials</translation> |
</message> |
<message> |
<source>Greek</source> |
<translation>Greek</translation> |
<source>Greek</source> |
<translation>Greek</translation> |
</message> |
<message> |
<source>Greek Extended</source> |
<translation>Greek Extended</translation> |
<source>Greek Extended</source> |
<translation>Greek Extended</translation> |
</message> |
<message> |
<source>Cyrillic</source> |
<translation>Cyrillic</translation> |
<source>Cyrillic</source> |
<translation>Cyrillic</translation> |
</message> |
<message> |
<source>Cyrillic Supplement</source> |
<translation>Cyrillic Supplement</translation> |
<source>Cyrillic Supplement</source> |
<translation>Cyrillic Supplement</translation> |
</message> |
<message> |
<source>Arabic</source> |
<translation>Arabic</translation> |
<source>Arabic</source> |
<translation>Arabic</translation> |
</message> |
<message> |
<source>Arabic Extended A</source> |
<translation>Arabic Extended A</translation> |
<source>Arabic Extended A</source> |
<translation>Arabic Extended A</translation> |
</message> |
<message> |
<source>Arabic Extended B</source> |
<translation>Arabic Extended B</translation> |
<source>Arabic Extended B</source> |
<translation>Arabic Extended B</translation> |
</message> |
<message> |
<source>Hebrew</source> |
<translation>Hebrew</translation> |
<source>Hebrew</source> |
<translation>Hebrew</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CheckDocument</name> |
<message> |
<source>Glyphs missing</source> |
<translation>Glyphs missing</translation> |
<source>Glyphs missing</source> |
<translation>Glyphs missing</translation> |
</message> |
<message> |
<source>Text overflow</source> |
<translation>Text overflow</translation> |
<source>Text overflow</source> |
<translation>Text overflow</translation> |
</message> |
<message> |
<source>Object is not on a Page</source> |
<translation>Object is not on a Page</translation> |
<source>Object is not on a Page</source> |
<translation>Object is not on a Page</translation> |
</message> |
<message> |
<source>Missing Image</source> |
<translation>Missing Image</translation> |
<source>Missing Image</source> |
<translation>Missing Image</translation> |
</message> |
<message> |
<source>Image has a DPI-Value less than %1 DPI</source> |
<translation>Image has a DPI-Value less than %1 DPI</translation> |
<source>Image has a DPI-Value less than %1 DPI</source> |
<translation>Image has a DPI-Value less than %1 DPI</translation> |
</message> |
<message> |
<source>Object has transparency</source> |
<translation>Object has transparency</translation> |
<source>Object has transparency</source> |
<translation>Object has transparency</translation> |
</message> |
<message> |
<source>Object is a PDF Annotation or Field</source> |
<translation>Object is a PDF Annotation or Field</translation> |
<source>Object is a PDF Annotation or Field</source> |
<translation>Object is a PDF Annotation or Field</translation> |
</message> |
<message> |
<source>Object is a placed PDF</source> |
<translation>Object is a placed PDF</translation> |
<source>Object is a placed PDF</source> |
<translation>Object is a placed PDF</translation> |
</message> |
<message> |
<source>Document</source> |
<translation>Document</translation> |
<source>Document</source> |
<translation>Document</translation> |
</message> |
<message> |
<source>No Problems found</source> |
<translation>No Problems found</translation> |
<source>No Problems found</source> |
<translation>No Problems found</translation> |
</message> |
<message> |
<source>Page </source> |
<translation>Page </translation> |
<source>Page </source> |
<translation>Page </translation> |
</message> |
<message> |
<source>Free Objects</source> |
<translation>Free Objects</translation> |
<source>Free Objects</source> |
<translation>Free Objects</translation> |
</message> |
<message> |
<source>Problems found</source> |
<translation>Problems found</translation> |
<source>Problems found</source> |
<translation>Problems found</translation> |
</message> |
<message> |
<source>Preflight Verifier</source> |
<translation>Preflight Verifier</translation> |
<source>Preflight Verifier</source> |
<translation>Preflight Verifier</translation> |
</message> |
<message> |
<source>Items</source> |
<translation>Items</translation> |
<source>Items</source> |
<translation>Items</translation> |
</message> |
<message> |
<source>Problems</source> |
<translation>Problems</translation> |
<source>Problems</source> |
<translation>Problems</translation> |
</message> |
<message> |
<source>Current Profile:</source> |
<translation>Current Profile:</translation> |
<source>Current Profile:</source> |
<translation>Current Profile:</translation> |
</message> |
<message> |
<source>&Ignore Errors</source> |
<translation>&Ignore Errors</translation> |
<source>&Ignore Errors</source> |
<translation>&Ignore Errors</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ChooseStyles</name> |
<message> |
<source>Choose Styles</source> |
<translation>Choose Styles</translation> |
<source>Choose Styles</source> |
<translation>Choose Styles</translation> |
</message> |
<message> |
<source>Available Styles</source> |
<translation>Available Styles</translation> |
<source>Available Styles</source> |
<translation>Available Styles</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ColorWheel</name> |
<message> |
<source>Monochromatic</source> |
<translation>Monochromatic</translation> |
<source>Monochromatic</source> |
<translation>Monochromatic</translation> |
</message> |
<message> |
<source>Analogous</source> |
<translation>Analogous</translation> |
<source>Analogous</source> |
<translation>Analogous</translation> |
</message> |
<message> |
<source>Complementary</source> |
<translation>Complementary</translation> |
<source>Complementary</source> |
<translation>Complementary</translation> |
</message> |
<message> |
<source>Split Complementary</source> |
<translation>Split Complementary</translation> |
<source>Split Complementary</source> |
<translation>Split Complementary</translation> |
</message> |
<message> |
<source>Triadic</source> |
<translation>Triadic</translation> |
<source>Triadic</source> |
<translation>Triadic</translation> |
</message> |
<message> |
<source>Tetradic (Double Complementary)</source> |
<translation>Tetradic (Double Complementary)</translation> |
<source>Tetradic (Double Complementary)</source> |
<translation>Tetradic (Double Complementary)</translation> |
</message> |
<message> |
<source>Base Color</source> |
<translation>Base Colour</translation> |
<source>Base Color</source> |
<translation>Base Colour</translation> |
</message> |
<message> |
<source>Monochromatic Light</source> |
<translation>Monochromatic Light</translation> |
<source>Monochromatic Light</source> |
<translation>Monochromatic Light</translation> |
</message> |
<message> |
<source>Monochromatic Dark</source> |
<translation>Monochromatic Dark</translation> |
<source>Monochromatic Dark</source> |
<translation>Monochromatic Dark</translation> |
</message> |
<message> |
<source>1st. Analogous</source> |
<translation>1st. Analogous</translation> |
<source>1st. Analogous</source> |
<translation>1st. Analogous</translation> |
</message> |
<message> |
<source>2nd. Analogous</source> |
<translation>2nd. Analogous</translation> |
<source>2nd. Analogous</source> |
<translation>2nd. Analogous</translation> |
</message> |
<message> |
<source>1st. Split</source> |
<translation>1st. Split</translation> |
<source>1st. Split</source> |
<translation>1st. Split</translation> |
</message> |
<message> |
<source>2nd. Split</source> |
<translation>2nd. Split</translation> |
<source>2nd. Split</source> |
<translation>2nd. Split</translation> |
</message> |
<message> |
<source>3rd. Split</source> |
<translation>3rd. Split</translation> |
<source>3rd. Split</source> |
<translation>3rd. Split</translation> |
</message> |
<message> |
<source>4th. Split</source> |
<translation>4th. Split</translation> |
<source>4th. Split</source> |
<translation>4th. Split</translation> |
</message> |
<message> |
<source>1st. Triadic</source> |
<translation>1st. Triadic</translation> |
<source>1st. Triadic</source> |
<translation>1st. Triadic</translation> |
</message> |
<message> |
<source>2nd. Triadic</source> |
<translation>2nd. Triadic</translation> |
<source>2nd. Triadic</source> |
<translation>2nd. Triadic</translation> |
</message> |
<message> |
<source>1st. Tetradic (base opposite)</source> |
<translation>1st. Tetradic (base opposite)</translation> |
<source>1st. Tetradic (base opposite)</source> |
<translation>1st. Tetradic (base opposite)</translation> |
</message> |
<message> |
<source>2nd. Tetradic (angle)</source> |
<translation>2nd. Tetradic (angle)</translation> |
<source>2nd. Tetradic (angle)</source> |
<translation>2nd. Tetradic (angle)</translation> |
</message> |
<message> |
<source>3rd. Tetradic (angle opposite)</source> |
<translation>3rd. Tetradic (angle opposite)</translation> |
<source>3rd. Tetradic (angle opposite)</source> |
<translation>3rd. Tetradic (angle opposite)</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ColorWheelDialog</name> |
<message> |
<source>Color Wheel</source> |
<translation>Colour Wheel</translation> |
<source>Color Wheel</source> |
<translation>Colour Wheel</translation> |
</message> |
<message> |
<source>Color</source> |
<translation>Colour</translation> |
<source>Color</source> |
<translation>Colour</translation> |
</message> |
<message> |
<source>Name</source> |
<translation>Name</translation> |
<source>Name</source> |
<translation>Name</translation> |
</message> |
<message> |
<source>C</source> |
<translation>C</translation> |
<source>C</source> |
<translation>C</translation> |
</message> |
<message> |
<source>M</source> |
<translation>M</translation> |
<source>M</source> |
<translation>M</translation> |
</message> |
<message> |
<source>Y</source> |
<translation>Y</translation> |
<source>Y</source> |
<translation>Y</translation> |
</message> |
<message> |
<source>K</source> |
<translation>K</translation> |
<source>K</source> |
<translation>K</translation> |
</message> |
<message> |
<source>Select Method:</source> |
<translation>Select Method:</translation> |
<source>Select Method:</source> |
<translation>Select Method:</translation> |
</message> |
<message> |
<source>Angle (0 - 90 degrees):</source> |
<translation>Angle (0 - 90 degrees):</translation> |
<source>Angle (0 - 90 degrees):</source> |
<translation>Angle (0 - 90 degrees):</translation> |
</message> |
<message> |
<source>&Merge Colors</source> |
<translation>&Merge Colours</translation> |
<source>&Merge Colors</source> |
<translation>&Merge Colours</translation> |
</message> |
<message> |
<source>&Replace Colors</source> |
<translation>&Replace Colours</translation> |
<source>&Replace Colors</source> |
<translation>&Replace Colours</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<source>Merge created colors into the document colors</source> |
<translation>Merge created colours into the document colours</translation> |
<source>Merge created colors into the document colors</source> |
<translation>Merge created colours into the document colours</translation> |
</message> |
<message> |
<source>Replace created colors in the document colors</source> |
<translation>Replace created colours in the document colours</translation> |
<source>Replace created colors in the document colors</source> |
<translation>Replace created colours in the document colours</translation> |
</message> |
<message> |
<source>Leave colors untouched</source> |
<translation>Leave colours untouched</translation> |
<source>Leave colors untouched</source> |
<translation>Leave colours untouched</translation> |
</message> |
<message> |
<source>Difference between selected value and counted ones. See documentation for more info</source> |
<translation>Difference between selected value and counted ones. See documentation for more info</translation> |
<source>Difference between selected value and counted ones. See documentation for more info</source> |
<translation>Difference between selected value and counted ones. See documentation for more info</translation> |
</message> |
<message> |
<source>Click the wheel to get base color</source> |
<translation>Click the wheel to get base colour</translation> |
<source>Click the wheel to get base color</source> |
<translation>Click the wheel to get base colour</translation> |
</message> |
<message> |
<source>Here you have the sample color schema</source> |
<translation>Here you have the sample colour schema</translation> |
<source>Here you have the sample color schema</source> |
<translation>Here you have the sample colour schema</translation> |
</message> |
<message> |
<source>Select one of the method to create color schema. See documentation for more info</source> |
<translation>Select one of the method to create colour schema. See documentation for more info</translation> |
<source>Select one of the method to create color schema. See documentation for more info</source> |
<translation>Select one of the method to create colour schema. See documentation for more info</translation> |
</message> |
<message> |
<source>Here you have the color of your chosen color schema</source> |
<translation>Here you have the colour of your chosen colour schema</translation> |
<source>Here you have the color of your chosen color schema</source> |
<translation>Here you have the colour of your chosen colour schema</translation> |
</message> |
<message> |
<source>Merging colors</source> |
<translation>Merging colours</translation> |
<source>Merging colors</source> |
<translation>Merging colours</translation> |
</message> |
<message> |
<source>Error: </source> |
<translation>Error: </translation> |
<source>Error: </source> |
<translation>Error: </translation> |
</message> |
<message> |
<source>Now opening the color manager.</source> |
<translation>Now opening the colour manager.</translation> |
<source>Now opening the color manager.</source> |
<translation>Now opening the colour manager.</translation> |
</message> |
<message> |
<source>Color Merging</source> |
<translation>Colour Merging</translation> |
<source>Color Merging</source> |
<translation>Colour Merging</translation> |
</message> |
<message> |
<source>Normal Vision</source> |
<translation>Normal Vision</translation> |
<source>Normal Vision</source> |
<translation>Normal Vision</translation> |
</message> |
<message> |
<source>Protanopy</source> |
<translation>Protanopy</translation> |
<source>Protanopy</source> |
<translation>Protanopy</translation> |
</message> |
<message> |
<source>Deuteranopy</source> |
<translation>Deuteranopy</translation> |
<source>Deuteranopy</source> |
<translation>Deuteranopy</translation> |
</message> |
<message> |
<source>Full Color Blindness</source> |
<translation>Full Colour Blindness</translation> |
<source>Full Color Blindness</source> |
<translation>Full Colour Blindness</translation> |
</message> |
<message> |
<source>Vision Defect:</source> |
<translation>Vision Defect:</translation> |
<source>Vision Defect:</source> |
<translation>Vision Defect:</translation> |
</message> |
<message> |
<source>You can simulate common vision defects here. Just select type of the defect</source> |
<translation>You can simulate common vision defects here. Just select type of the defect</translation> |
<source>You can simulate common vision defects here. Just select type of the defect</source> |
<translation>You can simulate common vision defects here. Just select type of the defect</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CommonStrings</name> |
<message> |
<source>&Apply</source> |
<translation>&Apply</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Save</source> |
<translation>&Save</translation> |
</message> |
</context> |
<context> |
<name>Cpalette</name> |
<message> |
<source>Normal</source> |
<translation>Normal</translation> |
<source>Normal</source> |
<translation>Normal</translation> |
</message> |
<message> |
<source>Horizontal Gradient</source> |
<translation>Horizontal Gradient</translation> |
<source>Horizontal Gradient</source> |
<translation>Horizontal Gradient</translation> |
</message> |
<message> |
<source>Vertical Gradient</source> |
<translation>Vertical Gradient</translation> |
<source>Vertical Gradient</source> |
<translation>Vertical Gradient</translation> |
</message> |
<message> |
<source>Diagonal Gradient</source> |
<translation>Diagonal Gradient</translation> |
<source>Diagonal Gradient</source> |
<translation>Diagonal Gradient</translation> |
</message> |
<message> |
<source>Cross Diagonal Gradient</source> |
<translation>Cross Diagonal Gradient</translation> |
<source>Cross Diagonal Gradient</source> |
<translation>Cross Diagonal Gradient</translation> |
</message> |
<message> |
<source>Radial Gradient</source> |
<translation>Radial Gradient</translation> |
<source>Radial Gradient</source> |
<translation>Radial Gradient</translation> |
</message> |
<message> |
<source>Opacity:</source> |
<translation>Opacity:</translation> |
<source>Opacity:</source> |
<translation>Opacity:</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>Shade:</source> |
<translation>Shade:</translation> |
<source>Shade:</source> |
<translation>Shade:</translation> |
</message> |
<message> |
<source>Edit Line Color Properties</source> |
<translation>Edit Line Colour Properties</translation> |
<source>Edit Line Color Properties</source> |
<translation>Edit Line Colour Properties</translation> |
</message> |
<message> |
<source>Edit Fill Color Properties</source> |
<translation>Edit Fill Colour Properties</translation> |
<source>Edit Fill Color Properties</source> |
<translation>Edit Fill Colour Properties</translation> |
</message> |
<message> |
<source>Saturation of color</source> |
<translation>Saturation of colour</translation> |
<source>Saturation of color</source> |
<translation>Saturation of colour</translation> |
</message> |
<message> |
<source>Normal or gradient fill method</source> |
<translation>Normal or gradient fill method</translation> |
<source>Normal or gradient fill method</source> |
<translation>Normal or gradient fill method</translation> |
</message> |
<message> |
<source>Set the transparency for the color selected</source> |
<translation>Set the transparency for the colour selected</translation> |
<source>Set the transparency for the color selected</source> |
<translation>Set the transparency for the colour selected</translation> |
</message> |
<message> |
<source>Color of selected object</source> |
<translation>Colour of selected object</translation> |
<source>Color of selected object</source> |
<translation>Colour of selected object</translation> |
</message> |
<message> |
<source>Free linear Gradient</source> |
<translation>Free linear Gradient</translation> |
<source>Free linear Gradient</source> |
<translation>Free linear Gradient</translation> |
</message> |
<message> |
<source>Free radial Gradient</source> |
<translation>Free radial Gradient</translation> |
<source>Free radial Gradient</source> |
<translation>Free radial Gradient</translation> |
</message> |
<message> |
<source>X1:</source> |
<translation>X1:</translation> |
<source>X1:</source> |
<translation>X1:</translation> |
</message> |
<message> |
<source>Y1:</source> |
<translation>Y1:</translation> |
<source>Y1:</source> |
<translation>Y1:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<source>X2:</source> |
<translation>X2:</translation> |
<source>X2:</source> |
<translation>X2:</translation> |
</message> |
<message> |
<source>Y2:</source> |
<translation>Y2:</translation> |
<source>Y2:</source> |
<translation>Y2:</translation> |
</message> |
<message> |
<source>Move Vector</source> |
<translation>Move Vector</translation> |
<source>Move Vector</source> |
<translation>Move Vector</translation> |
</message> |
<message> |
<source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source> |
<translation>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</translation> |
<source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source> |
<translation>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CsvDialog</name> |
<message> |
<source>CSV Importer Options</source> |
<translation>CSV Importer Options</translation> |
<source>CSV Importer Options</source> |
<translation>CSV Importer Options</translation> |
</message> |
<message> |
<source>Field delimiter:</source> |
<translation>Field delimiter:</translation> |
<source>Field delimiter:</source> |
<translation>Field delimiter:</translation> |
</message> |
<message> |
<source>(TAB)</source> |
<translation>(TAB)</translation> |
<source>(TAB)</source> |
<translation>(TAB)</translation> |
</message> |
<message> |
<source>Value delimiter:</source> |
<translation>Value delimiter:</translation> |
<source>Value delimiter:</source> |
<translation>Value delimiter:</translation> |
</message> |
<message> |
<source>First row is a header</source> |
<translation>First row is a header</translation> |
<source>First row is a header</source> |
<translation>First row is a header</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CupsOptions</name> |
<message> |
<source>Printer Options</source> |
<translation>Printer Options</translation> |
<source>Printer Options</source> |
<translation>Printer Options</translation> |
</message> |
<message> |
<source>Option</source> |
<translation>Option</translation> |
<source>Option</source> |
<translation>Option</translation> |
</message> |
<message> |
<source>Value</source> |
<translation>Value</translation> |
<source>Value</source> |
<translation>Value</translation> |
</message> |
<message> |
<source>Page Set</source> |
<translation>Page Set</translation> |
<source>Page Set</source> |
<translation>Page Set</translation> |
</message> |
<message> |
<source>All Pages</source> |
<translation>All Pages</translation> |
<source>All Pages</source> |
<translation>All Pages</translation> |
</message> |
<message> |
<source>Even Pages only</source> |
<translation>Even Pages only</translation> |
<source>Even Pages only</source> |
<translation>Even Pages only</translation> |
</message> |
<message> |
<source>Odd Pages only</source> |
<translation>Odd Pages only</translation> |
<source>Odd Pages only</source> |
<translation>Odd Pages only</translation> |
</message> |
<message> |
<source>Mirror</source> |
<translation>Mirror</translation> |
<source>Mirror</source> |
<translation>Mirror</translation> |
</message> |
<message> |
<source>No</source> |
<translation>No</translation> |
<source>No</source> |
<translation>No</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Yes</translation> |
<source>Yes</source> |
<translation>Yes</translation> |
</message> |
<message> |
<source>Orientation</source> |
<translation>Orientation</translation> |
<source>Orientation</source> |
<translation>Orientation</translation> |
</message> |
<message> |
<source>Portrait</source> |
<translation>Portrait</translation> |
<source>Portrait</source> |
<translation>Portrait</translation> |
</message> |
<message> |
<source>Landscape</source> |
<translation>Landscape</translation> |
<source>Landscape</source> |
<translation>Landscape</translation> |
</message> |
<message> |
<source>N-Up Printing</source> |
<translation>N-Up Printing</translation> |
<source>N-Up Printing</source> |
<translation>N-Up Printing</translation> |
</message> |
<message> |
<source>Page per Sheet</source> |
<translation>Page per Sheet</translation> |
<source>Page per Sheet</source> |
<translation>Page per Sheet</translation> |
</message> |
<message> |
<source>Pages per Sheet</source> |
<translation>Pages per Sheet</translation> |
<source>Pages per Sheet</source> |
<translation>Pages per Sheet</translation> |
</message> |
<message> |
<source>This panel displays various CUPS options when printing. |
<source>This panel displays various CUPS options when printing. |
The exact parameters available will depend on your printer driver. |
You can confirm CUPS support by selecting Help > About. |
You can confirm CUPS support by selecting Help > About. |
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support. |
Missing library support is indicated by a *</source> |
<translation>This panel displays various CUPS options when printing. |
<translation>This panel displays various CUPS options when printing. |
The exact parameters available will depend on your printer driver. |
You can confirm CUPS support by selecting Help > About. |
You can confirm CUPS support by selecting Help > About. |
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support. |
Missing library support is indicated by a *</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>CustomFDialog</name> |
<message> |
<source>Encoding:</source> |
<translation>Encoding:</translation> |
<source>Encoding:</source> |
<translation>Encoding:</translation> |
</message> |
<message> |
<source>Moves to your Document Directory. |
<source>Moves to your Document Directory. |
This can be set in the Preferences.</source> |
<translation>Moves to your Document Directory. |
<translation>Moves to your Document Directory. |
This can be set in the Preferences.</translation> |
</message> |
<message> |
<source>&Compress File</source> |
<translation>&Compress File</translation> |
<source>&Compress File</source> |
<translation>&Compress File</translation> |
</message> |
<message> |
<source>&Include Fonts</source> |
<translation>&Include Fonts</translation> |
<source>&Include Fonts</source> |
<translation>&Include Fonts</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>DeferredTask</name> |
<message> |
<source>Cancelled by user</source> |
<translation>Cancelled by user</translation> |
<source>Cancelled by user</source> |
<translation>Cancelled by user</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>DelColor</name> |
<message> |
<source>Delete Color</source> |
<translation>Delete Colour</translation> |
<source>Delete Color</source> |
<translation>Delete Colour</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Delete Color:</source> |
<translation>Delete Colour:</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>Replace With:</source> |
<translation>Replace With:</translation> |
</message> |
<message> |
<source>Delete Color:</source> |
<translation>Delete Colour:</translation> |
</message> |
<message> |
<source>Replace With:</source> |
<translation>Replace With:</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>DelPages</name> |
<message> |
<source>Delete Pages</source> |
<translation>Delete Pages</translation> |
<source>Delete Pages</source> |
<translation>Delete Pages</translation> |
</message> |
<message> |
<source>to:</source> |
<translation>to:</translation> |
<source>to:</source> |
<translation>to:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Delete From:</source> |
<translation>Delete From:</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<source>Delete From:</source> |
<translation>Delete From:</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>DocInfos</name> |
<message> |
<source>Document Information</source> |
<translation>Document Information</translation> |
<source>Document Information</source> |
<translation>Document Information</translation> |
</message> |
<message> |
<source>&Title:</source> |
<translation>&Title:</translation> |
<source>&Title:</source> |
<translation>&Title:</translation> |
</message> |
<message> |
<source>&Author:</source> |
<translation>&Author:</translation> |
<source>&Author:</source> |
<translation>&Author:</translation> |
</message> |
<message> |
<source>&Keywords:</source> |
<translation>&Keywords:</translation> |
<source>&Keywords:</source> |
<translation>&Keywords:</translation> |
</message> |
<message> |
<source>Descri&ption:</source> |
<translation>Descri&ption:</translation> |
<source>Descri&ption:</source> |
<translation>Descri&ption:</translation> |
</message> |
<message> |
<source>P&ublisher:</source> |
<translation>P&ublisher:</translation> |
<source>P&ublisher:</source> |
<translation>P&ublisher:</translation> |
</message> |
<message> |
<source>&Contributors:</source> |
<translation>&Contributors:</translation> |
<source>&Contributors:</source> |
<translation>&Contributors:</translation> |
</message> |
<message> |
<source>Dat&e:</source> |
<translation>Dat&e:</translation> |
<source>Dat&e:</source> |
<translation>Dat&e:</translation> |
</message> |
<message> |
<source>T&ype:</source> |
<translation>T&ype:</translation> |
<source>T&ype:</source> |
<translation>T&ype:</translation> |
</message> |
<message> |
<source>F&ormat:</source> |
<translation>F&ormat:</translation> |
<source>F&ormat:</source> |
<translation>F&ormat:</translation> |
</message> |
<message> |
<source>Identi&fier:</source> |
<translation>Identi&fier:</translation> |
<source>Identi&fier:</source> |
<translation>Identi&fier:</translation> |
</message> |
<message> |
<source>&Source:</source> |
<translation>&Source:</translation> |
<source>&Source:</source> |
<translation>&Source:</translation> |
</message> |
<message> |
<source>&Language:</source> |
<translation>&Language:</translation> |
<source>&Language:</source> |
<translation>&Language:</translation> |
</message> |
<message> |
<source>&Relation:</source> |
<translation>&Relation:</translation> |
<source>&Relation:</source> |
<translation>&Relation:</translation> |
</message> |
<message> |
<source>Co&verage:</source> |
<translation>Co&verage:</translation> |
<source>Co&verage:</source> |
<translation>Co&verage:</translation> |
</message> |
<message> |
<source>Ri&ghts:</source> |
<translation>Ri&ghts:</translation> |
<source>Ri&ghts:</source> |
<translation>Ri&ghts:</translation> |
</message> |
<message> |
<source>Further &Information</source> |
<translation>Further &Information</translation> |
<source>Further &Information</source> |
<translation>Further &Information</translation> |
</message> |
<message> |
<source>A person or organisation responsible for making the document available</source> |
<translation>A person or organisation responsible for making the document available</translation> |
<source>A person or organisation responsible for making the document available</source> |
<translation>A person or organisation responsible for making the document available</translation> |
</message> |
<message> |
<source>A person or organisation responsible for making contributions to the content of the document</source> |
<translation>A person or organisation responsible for making contributions to the content of the document</translation> |
<source>A person or organisation responsible for making contributions to the content of the document</source> |
<translation>A person or organisation responsible for making contributions to the content of the document</translation> |
</message> |
<message> |
<source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source> |
<translation>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation> |
<source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source> |
<translation>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation> |
</message> |
<message> |
<source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source> |
<translation>The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation> |
<source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source> |
<translation>The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation> |
</message> |
<message> |
<source>An unambiguous reference to the document within a given context such as ISBN or URI</source> |
<translation>An unambiguous reference to the document within a given context such as ISBN or URI</translation> |
<source>An unambiguous reference to the document within a given context such as ISBN or URI</source> |
<translation>An unambiguous reference to the document within a given context such as ISBN or URI</translation> |
</message> |
<message> |
<source>A reference to a document from which the present document is derived, eg. ISBN or URI</source> |
<translation>A reference to a document from which the present document is derived, eg. ISBN or URI</translation> |
<source>A reference to a document from which the present document is derived, eg. ISBN or URI</source> |
<translation>A reference to a document from which the present document is derived, eg. ISBN or URI</translation> |
</message> |
<message> |
<source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source> |
<translation>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation> |
<source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source> |
<translation>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation> |
</message> |
<message> |
<source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source> |
<translation>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation> |
<source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source> |
<translation>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation> |
</message> |
<message> |
<source>Information about rights held in and over the document, eg. copyright, patent or trademark</source> |
<translation>Information about rights held in and over the document, eg. copyright, patent or trademark</translation> |
<source>Information about rights held in and over the document, eg. copyright, patent or trademark</source> |
<translation>Information about rights held in and over the document, eg. copyright, patent or trademark</translation> |
</message> |
<message> |
<source>Documen&t</source> |
<translation>Documen&t</translation> |
<source>Documen&t</source> |
<translation>Documen&t</translation> |
</message> |
<message> |
<source>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
<translation>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation> |
<source>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
<translation>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation> |
</message> |
<message> |
<source>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
<translation>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation> |
<source>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
<translation>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation> |
</message> |
<message> |
<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> |
<translation>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</translation> |
<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> |
<translation>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</translation> |
</message> |
<message> |
<source>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source> |
<translation>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</translation> |
<source>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source> |
<translation>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</translation> |
</message> |
<message> |
<source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</source> |
<translation>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</translation> |
<source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</source> |
<translation>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</translation> |
</message> |
<message> |
<source>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source> |
<translation>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</translation> |
<source>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source> |
<translation>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>DocumentItemAttributes</name> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>Relates To</source> |
<translation>Relates To</translation> |
<source>Relates To</source> |
<translation>Relates To</translation> |
</message> |
<message> |
<source>Is Parent Of</source> |
<translation>Is Parent Of</translation> |
<source>Is Parent Of</source> |
<translation>Is Parent Of</translation> |
</message> |
<message> |
<source>Is Child Of</source> |
<translation>Is Child Of</translation> |
<source>Is Child Of</source> |
<translation>Is Child Of</translation> |
</message> |
<message> |
<source>Text Frames</source> |
<translation>Text Frames</translation> |
<source>Text Frames</source> |
<translation>Text Frames</translation> |
</message> |
<message> |
<source>Image Frames</source> |
<translation>Image Frames</translation> |
<source>Image Frames</source> |
<translation>Image Frames</translation> |
</message> |
<message> |
<source>Boolean</source> |
<translation>Boolean</translation> |
<source>Boolean</source> |
<translation>Boolean</translation> |
</message> |
<message> |
<source>Integer</source> |
<translation>Integer</translation> |
<source>Integer</source> |
<translation>Integer</translation> |
</message> |
<message> |
<source>String</source> |
<translation>String</translation> |
<source>String</source> |
<translation>String</translation> |
</message> |
<message> |
<source>Document Item Attributes</source> |
<translation>Document Item Attributes</translation> |
<source>Document Item Attributes</source> |
<translation>Document Item Attributes</translation> |
</message> |
<message> |
<source>Name</source> |
<translation>Name</translation> |
<source>Name</source> |
<translation>Name</translation> |
</message> |
<message> |
<source>Type</source> |
<translation>Type</translation> |
<source>Type</source> |
<translation>Type</translation> |
</message> |
<message> |
<source>Value</source> |
<translation>Value</translation> |
<source>Value</source> |
<translation>Value</translation> |
</message> |
<message> |
<source>Parameter</source> |
<translation>Parameter</translation> |
<source>Parameter</source> |
<translation>Parameter</translation> |
</message> |
<message> |
<source>Relationship</source> |
<translation>Relationship</translation> |
<source>Relationship</source> |
<translation>Relationship</translation> |
</message> |
<message> |
<source>Relationship To</source> |
<translation>Relationship To</translation> |
<source>Relationship To</source> |
<translation>Relationship To</translation> |
</message> |
<message> |
<source>Auto Add To</source> |
<translation>Auto Add To</translation> |
<source>Auto Add To</source> |
<translation>Auto Add To</translation> |
</message> |
<message> |
<source>&Add</source> |
<translation>&Add</translation> |
<source>&Add</source> |
<translation>&Add</translation> |
</message> |
<message> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation>&Copy</translation> |
<source>&Copy</source> |
<translation>&Copy</translation> |
</message> |
<message> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
</message> |
<message> |
<source>&Delete</source> |
<translation>&Delete</translation> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation>C&lear</translation> |
<source>C&lear</source> |
<translation>C&lear</translation> |
</message> |
<message> |
<source>Alt+L</source> |
<translation>Alt+L</translation> |
<source>Alt+L</source> |
<translation>Alt+L</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>Druck</name> |
<message> |
<source>Setup Printer</source> |
<translation>Setup Printer</translation> |
<source>Setup Printer</source> |
<translation>Setup Printer</translation> |
</message> |
<message> |
<source>File</source> |
<translation>File</translation> |
<source>File</source> |
<translation>File</translation> |
</message> |
<message> |
<source>Options</source> |
<translation>Options</translation> |
<source>Options</source> |
<translation>Options</translation> |
</message> |
<message> |
<source>All</source> |
<translation>All</translation> |
<source>All</source> |
<translation>All</translation> |
</message> |
<message> |
<source>Save as</source> |
<translation>Save as</translation> |
<source>Save as</source> |
<translation>Save as</translation> |
</message> |
<message> |
<source>Cyan</source> |
<translation>Cyan</translation> |
<source>Cyan</source> |
<translation>Cyan</translation> |
</message> |
<message> |
<source>Magenta</source> |
<translation>Magenta</translation> |
<source>Magenta</source> |
<translation>Magenta</translation> |
</message> |
<message> |
<source>Yellow</source> |
<translation>Yellow</translation> |
<source>Yellow</source> |
<translation>Yellow</translation> |
</message> |
<message> |
<source>Black</source> |
<translation>Black</translation> |
<source>Black</source> |
<translation>Black</translation> |
</message> |
<message> |
<source>Insert a comma separated list of tokens where |
<source>Insert a comma separated list of tokens where |
a token can be * for all the pages, 1-5 for |
a range of pages or a single page number.</source> |
<translation>Insert a comma separated list of tokens where |
<translation>Insert a comma separated list of tokens where |
a token can be * for all the pages, 1-5 for |
a range of pages or a single page number.</translation> |
</message> |
<message> |
<source>Print Destination</source> |
<translation>Print Destination</translation> |
<source>Print Destination</source> |
<translation>Print Destination</translation> |
</message> |
<message> |
<source>&Options...</source> |
<translation>&Options...</translation> |
<source>&Options...</source> |
<translation>&Options...</translation> |
</message> |
<message> |
<source>&File:</source> |
<translation>&File:</translation> |
<source>&File:</source> |
<translation>&File:</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
</message> |
<message> |
<source>A&lternative Printer Command</source> |
<translation>A&lternative Printer Command</translation> |
<source>A&lternative Printer Command</source> |
<translation>A&lternative Printer Command</translation> |
</message> |
<message> |
<source>Co&mmand:</source> |
<translation>Co&mmand:</translation> |
<source>Co&mmand:</source> |
<translation>Co&mmand:</translation> |
</message> |
<message> |
<source>Range</source> |
<translation>Range</translation> |
<source>Range</source> |
<translation>Range</translation> |
</message> |
<message> |
<source>Print &All</source> |
<translation>Print &All</translation> |
<source>Print &All</source> |
<translation>Print &All</translation> |
</message> |
<message> |
<source>Print Current Pa&ge</source> |
<translation>Print Current Pa&ge</translation> |
<source>Print Current Pa&ge</source> |
<translation>Print Current Pa&ge</translation> |
</message> |
<message> |
<source>Print &Range</source> |
<translation>Print &Range</translation> |
<source>Print &Range</source> |
<translation>Print &Range</translation> |
</message> |
<message> |
<source>N&umber of Copies:</source> |
<translation>N&umber of Copies:</translation> |
<source>N&umber of Copies:</source> |
<translation>N&umber of Copies:</translation> |
</message> |
<message> |
<source>Print &Normal</source> |
<translation>Print &Normal</translation> |
<source>Print &Normal</source> |
<translation>Print &Normal</translation> |
</message> |
<message> |
<source>Print &Separations</source> |
<translation>Print &Separations</translation> |
<source>Print &Separations</source> |
<translation>Print &Separations</translation> |
</message> |
<message> |
<source>Pr&int In Color If Available</source> |
<translation>Pr&int In Colour If Available</translation> |
<source>Pr&int In Color If Available</source> |
<translation>Pr&int In Colour If Available</translation> |
</message> |
<message> |
<source>Print In Gra&yscale</source> |
<translation>Print In Gre&yscale</translation> |
<source>Print In Gra&yscale</source> |
<translation>Print In Gre&yscale</translation> |
</message> |
<message> |
<source>Ad&vanced Options...</source> |
<translation>Ad&vanced Options...</translation> |
<source>Ad&vanced Options...</source> |
<translation>Ad&vanced Options...</translation> |
</message> |
<message> |
<source>&Print</source> |
<translation>&Print</translation> |
<source>&Print</source> |
<translation>&Print</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<source>Use an alternative print manager, such as kprinter or gtklp, |
<source>Use an alternative print manager, such as kprinter or gtklp, |
to utilize additional printing options</source> |
<translation>Use an alternative print manager, such as kprinter or gtklp, |
<translation>Use an alternative print manager, such as kprinter or gtklp, |
to utilise additional printing options</translation> |
</message> |
<message> |
<source>Postscript Files (*.ps);;All Files (*)</source> |
<translation>Postscript Files (*.ps);;All Files (*)</translation> |
<source>Postscript Files (*.ps);;All Files (*)</source> |
<translation>Postscript Files (*.ps);;All Files (*)</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>EPSPlug</name> |
<message> |
<source>Importing File: |
<source>Importing File: |
%1 |
failed!</source> |
<translation>Importing File: |
<translation>Importing File: |
%1 |
failed!</translation> |
</message> |
<message> |
<source>Fatal Error</source> |
<translation>Fatal Error</translation> |
<source>Fatal Error</source> |
<translation>Fatal Error</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>EditStyle</name> |
<message> |
<source>Edit Style</source> |
<translation>Edit Style</translation> |
<source>Edit Style</source> |
<translation>Edit Style</translation> |
</message> |
<message> |
<source>Character</source> |
<translation>Character</translation> |
<source>Character</source> |
<translation>Character</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>Line Spacing</source> |
<translation>Line Spacing</translation> |
<source>Line Spacing</source> |
<translation>Line Spacing</translation> |
</message> |
<message> |
<source>Warning</source> |
<translation>Warning</translation> |
<source>Warning</source> |
<translation>Warning</translation> |
</message> |
<message> |
<source>Name of the Style is not unique</source> |
<translation>Name of the Style is not unique</translation> |
<source>Name of the Style is not unique</source> |
<translation>Name of the Style is not unique</translation> |
</message> |
<message> |
<source>Name of your paragraph style</source> |
<translation>Name of your paragraph style</translation> |
<source>Name of your paragraph style</source> |
<translation>Name of your paragraph style</translation> |
</message> |
<message> |
<source>Font of selected text or object</source> |
<translation>Font of selected text or object</translation> |
<source>Font of selected text or object</source> |
<translation>Font of selected text or object</translation> |
</message> |
<message> |
<source>Font Size</source> |
<translation>Font Size</translation> |
<source>Font Size</source> |
<translation>Font Size</translation> |
</message> |
<message> |
<source>Color of text fill</source> |
<translation>Colour of text fill</translation> |
<source>Color of text fill</source> |
<translation>Colour of text fill</translation> |
</message> |
<message> |
<source>Color of text stroke</source> |
<translation>Colour of text stroke</translation> |
<source>Color of text stroke</source> |
<translation>Colour of text stroke</translation> |
</message> |
<message> |
<source>Determines the overall height, in line numbers, of the Drop Caps</source> |
<translation>Determines the overall height, in line numbers, of the Drop Caps</translation> |
<source>Determines the overall height, in line numbers, of the Drop Caps</source> |
<translation>Determines the overall height, in line numbers, of the Drop Caps</translation> |
</message> |
<message> |
<source>Spacing above the paragraph</source> |
<translation>Spacing above the paragraph</translation> |
<source>Spacing above the paragraph</source> |
<translation>Spacing above the paragraph</translation> |
</message> |
<message> |
<source>Spacing below the paragraph</source> |
<translation>Spacing below the paragraph</translation> |
<source>Spacing below the paragraph</source> |
<translation>Spacing below the paragraph</translation> |
</message> |
<message> |
<source>Tabulators and Indentation</source> |
<translation>Tabulators and Indentation</translation> |
<source>Tabulators and Indentation</source> |
<translation>Tabulators and Indentation</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>&Lines:</source> |
<translation>&Lines:</translation> |
<source>&Lines:</source> |
<translation>&Lines:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>Distances</source> |
<translation>Distances</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source>Fixed Linespacing</source> |
<translation>Fixed Linespacing</translation> |
</message> |
<message> |
<source>Distances</source> |
<translation>Distances</translation> |
<source>Automatic Linespacing</source> |
<translation>Automatic Linespacing</translation> |
</message> |
<message> |
<source>Fixed Linespacing</source> |
<translation>Fixed Linespacing</translation> |
<source>Align to Baseline Grid</source> |
<translation>Align to Baseline Grid</translation> |
</message> |
<message> |
<source>Automatic Linespacing</source> |
<translation>Automatic Linespacing</translation> |
<source>Drop Caps</source> |
<translation>Drop Caps</translation> |
</message> |
<message> |
<source>Align to Baseline Grid</source> |
<translation>Align to Baseline Grid</translation> |
<source>Distance from Text:</source> |
<translation>Distance from Text:</translation> |
</message> |
<message> |
<source>Drop Caps</source> |
<translation>Drop Caps</translation> |
<source>Preview of the Paragraph Style</source> |
<translation>Preview of the Paragraph Style</translation> |
</message> |
<message> |
<source>Distance from Text:</source> |
<translation>Distance from Text:</translation> |
<source>Determines the gap between the DropCaps and the Text</source> |
<translation>Determines the gap between the DropCaps and the Text</translation> |
</message> |
<message> |
<source>Preview of the Paragraph Style</source> |
<translation>Preview of the Paragraph Style</translation> |
<source>Toggles sample text of this paragraph style</source> |
<translation>Toggles sample text of this paragraph style</translation> |
</message> |
<message> |
<source>Determines the gap between the DropCaps and the Text</source> |
<translation>Determines the gap between the DropCaps and the Text</translation> |
</message> |
<message> |
<source>Toggles sample text of this paragraph style</source> |
<translation>Toggles sample text of this paragraph style</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>Editor</name> |
<message> |
<source>Editor</source> |
<translation>Editor</translation> |
<source>Editor</source> |
<translation>Editor</translation> |
</message> |
<message> |
<source>Javascripts (*.js);;All Files (*)</source> |
<translation>Javascripts (*.js);;All Files (*)</translation> |
<source>Javascripts (*.js);;All Files (*)</source> |
<translation>Javascripts (*.js);;All Files (*)</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&New</translation> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<source>&Open...</source> |
<translation>&Open...</translation> |
<source>&Open...</source> |
<translation>&Open...</translation> |
</message> |
<message> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
</message> |
<message> |
<source>&Save and Exit</source> |
<translation>&Save and Exit</translation> |
<source>&Save and Exit</source> |
<translation>&Save and Exit</translation> |
</message> |
<message> |
<source>&Exit without Saving</source> |
<translation>&Exit without Saving</translation> |
<source>&Exit without Saving</source> |
<translation>&Exit without Saving</translation> |
</message> |
<message> |
<source>&Undo</source> |
<translation>&Undo</translation> |
<source>&Undo</source> |
<translation>&Undo</translation> |
</message> |
<message> |
<source>&Redo</source> |
<translation>&Redo</translation> |
<source>&Redo</source> |
<translation>&Redo</translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation>Cu&t</translation> |
<source>Cu&t</source> |
<translation>Cu&t</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation>&Copy</translation> |
<source>&Copy</source> |
<translation>&Copy</translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation>&Paste</translation> |
<source>&Paste</source> |
<translation>&Paste</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation>C&lear</translation> |
<source>C&lear</source> |
<translation>C&lear</translation> |
</message> |
<message> |
<source>&Get Field Names</source> |
<translation>&Get Field Names</translation> |
<source>&Get Field Names</source> |
<translation>&Get Field Names</translation> |
</message> |
<message> |
<source>&File</source> |
<translation>&File</translation> |
<source>&File</source> |
<translation>&File</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation>&Edit</translation> |
<source>&Edit</source> |
<translation>&Edit</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>EffectsDialog</name> |
<message> |
<source>Image Effects</source> |
<translation>Image Effects</translation> |
<source>Image Effects</source> |
<translation>Image Effects</translation> |
</message> |
<message> |
<source>Options:</source> |
<translation>Options:</translation> |
<source>Options:</source> |
<translation>Options:</translation> |
</message> |
<message> |
<source>Color:</source> |
<translation>Colour:</translation> |
<source>Color:</source> |
<translation>Colour:</translation> |
</message> |
<message> |
<source>Shade:</source> |
<translation>Shade:</translation> |
<source>Shade:</source> |
<translation>Shade:</translation> |
</message> |
<message> |
<source>Brightness:</source> |
<translation>Brightness:</translation> |
<source>Brightness:</source> |
<translation>Brightness:</translation> |
</message> |
<message> |
<source>Contrast:</source> |
<translation>Contrast:</translation> |
<source>Contrast:</source> |
<translation>Contrast:</translation> |
</message> |
<message> |
<source>Radius:</source> |
<translation>Radius:</translation> |
<source>Radius:</source> |
<translation>Radius:</translation> |
</message> |
<message> |
<source>Value:</source> |
<translation>Value:</translation> |
<source>Value:</source> |
<translation>Value:</translation> |
</message> |
<message> |
<source>Posterize:</source> |
<translation>Posterise:</translation> |
<source>Posterize:</source> |
<translation>Posterise:</translation> |
</message> |
<message> |
<source>Available Effects</source> |
<translation>Available Effects</translation> |
<source>Available Effects</source> |
<translation>Available Effects</translation> |
</message> |
<message> |
<source>Blur</source> |
<translation>Blur</translation> |
<source>Blur</source> |
<translation>Blur</translation> |
</message> |
<message> |
<source>Brightness</source> |
<translation>Brightness</translation> |
<source>Brightness</source> |
<translation>Brightness</translation> |
</message> |
<message> |
<source>Colorize</source> |
<translation>Colourise</translation> |
<source>Colorize</source> |
<translation>Colourise</translation> |
</message> |
<message> |
<source>Contrast</source> |
<translation>Contrast</translation> |
<source>Contrast</source> |
<translation>Contrast</translation> |
</message> |
<message> |
<source>Grayscale</source> |
<translation>Greyscale</translation> |
<source>Grayscale</source> |
<translation>Greyscale</translation> |
</message> |
<message> |
<source>Invert</source> |
<translation>Invert</translation> |
<source>Invert</source> |
<translation>Invert</translation> |
</message> |
<message> |
<source>Posterize</source> |
<translation>Posterise</translation> |
<source>Posterize</source> |
<translation>Posterise</translation> |
</message> |
<message> |
<source>Sharpen</source> |
<translation>Sharpen</translation> |
<source>Sharpen</source> |
<translation>Sharpen</translation> |
</message> |
<message> |
<source>>></source> |
<translation>>></translation> |
<source>>></source> |
<translation>>></translation> |
</message> |
<message> |
<source><<</source> |
<translation><<</translation> |
<source><<</source> |
<translation><<</translation> |
</message> |
<message> |
<source>Effects in use</source> |
<translation>Effects in use</translation> |
<source>Effects in use</source> |
<translation>Effects in use</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ExportForm</name> |
<message> |
<source>&All pages</source> |
<translation>&All pages</translation> |
<source>&All pages</source> |
<translation>&All pages</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>Change the output directory</source> |
<translation>Change the output directory</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>The output directory - the place to store your images. |
Name of the export file will be 'documentname-pagenumber.filetype'</source> |
<translation>The output directory - the place to store your images. |
Name of the export file will be 'documentname-pagenumber.filetype'</translation> |
</message> |
<message> |
<source>Change the output directory</source> |
<translation>Change the output directory</translation> |
<source>Export only the current page</source> |
<translation>Export only the current page</translation> |
</message> |
<message> |
<source>The output directory - the place to store your images. |
Name of the export file will be 'documentname-pagenumber.filetype'</source> |
<translation>The output directory - the place to store your images. |
Name of the export file will be 'documentname-pagenumber.filetype'</translation> |
<source>Available export formats</source> |
<translation>Available export formats</translation> |
</message> |
<message> |
<source>Export only the current page</source> |
<translation>Export only the current page</translation> |
<source>Choose a Export Directory</source> |
<translation>Choose a Export Directory</translation> |
</message> |
<message> |
<source>Available export formats</source> |
<translation>Available export formats</translation> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
</message> |
<message> |
<source>Choose a Export Directory</source> |
<translation>Choose a Export Directory</translation> |
<source>&Export to Directory:</source> |
<translation>&Export to Directory:</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
<source>Image &Type:</source> |
<translation>Image &Type:</translation> |
</message> |
<message> |
<source>&Export to Directory:</source> |
<translation>&Export to Directory:</translation> |
<source>&Quality:</source> |
<translation>&Quality:</translation> |
</message> |
<message> |
<source>Image &Type:</source> |
<translation>Image &Type:</translation> |
<source>Export as Image(s)</source> |
<translation>Export as Image(s)</translation> |
</message> |
<message> |
<source>&Quality:</source> |
<translation>&Quality:</translation> |
<source>Options</source> |
<translation>Options</translation> |
</message> |
<message> |
<source>Export as Image(s)</source> |
<translation>Export as Image(s)</translation> |
<source>&Resolution:</source> |
<translation>&Resolution:</translation> |
</message> |
<message> |
<source>Options</source> |
<translation>Options</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>&Resolution:</source> |
<translation>&Resolution:</translation> |
<source> dpi</source> |
<translation> dpi</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source>Range</source> |
<translation>Range</translation> |
</message> |
<message> |
<source> dpi</source> |
<translation> dpi</translation> |
<source>&Current page</source> |
<translation>&Current page</translation> |
</message> |
<message> |
<source>Range</source> |
<translation>Range</translation> |
<source>&Range</source> |
<translation>&Range</translation> |
</message> |
<message> |
<source>&Current page</source> |
<translation>&Current page</translation> |
<source>C</source> |
<translation>C</translation> |
</message> |
<message> |
<source>&Range</source> |
<translation>&Range</translation> |
<source>Export a range of pages</source> |
<translation>Export a range of pages</translation> |
</message> |
<message> |
<source>C</source> |
<translation>C</translation> |
</message> |
<message> |
<source>Export a range of pages</source> |
<translation>Export a range of pages</translation> |
</message> |
<message> |
<source>Insert a comma separated list of tokens where |
<source>Insert a comma separated list of tokens where |
a token can be * for all the pages, 1-5 for |
a range of pages or a single page number.</source> |
<translation>Insert a comma separated list of tokens where |
<translation>Insert a comma separated list of tokens where |
a token can be * for all the pages, 1-5 for |
a range of pages or a single page number.</translation> |
</message> |
<message> |
<source>Export all pages</source> |
<translation>Export all pages</translation> |
<source>Export all pages</source> |
<translation>Export all pages</translation> |
</message> |
<message> |
<source>Resolution of the Images |
<source>Resolution of the Images |
Use 72 dpi for Images intended for the Screen</source> |
<translation>Resolution of the Images |
<translation>Resolution of the Images |
Use 72 dpi for Images intended for the Screen</translation> |
</message> |
<message> |
<source>The quality of your images - 100% is the best, 1% the lowest quality</source> |
<translation>The quality of your images - 100% is the best, 1% the lowest quality</translation> |
<source>The quality of your images - 100% is the best, 1% the lowest quality</source> |
<translation>The quality of your images - 100% is the best, 1% the lowest quality</translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation>&Size:</translation> |
<source>&Size:</source> |
<translation>&Size:</translation> |
</message> |
<message> |
<source>Size of the images. 100% for no changes, 200% for two times larger etc.</source> |
<translation>Size of the images. 100% for no changes, 200% for two times larger etc.</translation> |
<source>Size of the images. 100% for no changes, 200% for two times larger etc.</source> |
<translation>Size of the images. 100% for no changes, 200% for two times larger etc.</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>ExtImageProps</name> |
<message> |
<source>Extended Image Properties</source> |
<translation>Extended Image Properties</translation> |
<source>Extended Image Properties</source> |
<translation>Extended Image Properties</translation> |
</message> |
<message> |
<source>Normal</source> |
<translation>Normal</translation> |
<source>Normal</source> |
<translation>Normal</translation> |
</message> |
<message> |
<source>Darken</source> |
<translation>Darken</translation> |
<source>Darken</source> |
<translation>Darken</translation> |
</message> |
<message> |
<source>Lighten</source> |
<translation>Lighten</translation> |
<source>Lighten</source> |
<translation>Lighten</translation> |
</message> |
<message> |
<source>Hue</source> |
<translation>Hue</translation> |
<source>Hue</source> |
<translation>Hue</translation> |
</message> |
<message> |
<source>Saturation</source> |
<translation>Saturation</translation> |
<source>Saturation</source> |
<translation>Saturation</translation> |
</message> |
<message> |
<source>Color</source> |
<translation>Colour</translation> |
<source>Color</source> |
<translation>Colour</translation> |
</message> |
<message> |
<source>Luminosity</source> |
<translation>Luminosity</translation> |
<source>Luminosity</source> |
<translation>Luminosity</translation> |
</message> |
<message> |
<source>Multiply</source> |
<translation>Multiply</translation> |
<source>Multiply</source> |
<translation>Multiply</translation> |
</message> |
<message> |
<source>Screen</source> |
<translation>Screen</translation> |
<source>Screen</source> |
<translation>Screen</translation> |
</message> |
<message> |
<source>Dissolve</source> |
<translation>Dissolve</translation> |
<source>Dissolve</source> |
<translation>Dissolve</translation> |
</message> |
<message> |
<source>Overlay</source> |
<translation>Overlay</translation> |
<source>Overlay</source> |
<translation>Overlay</translation> |
</message> |
<message> |
<source>Hard Light</source> |
<translation>Hard Light</translation> |
<source>Hard Light</source> |
<translation>Hard Light</translation> |
</message> |
<message> |
<source>Soft Light</source> |
<translation>Soft Light</translation> |
<source>Soft Light</source> |
<translation>Soft Light</translation> |
</message> |
<message> |
<source>Difference</source> |
<translation>Difference</translation> |
<source>Difference</source> |
<translation>Difference</translation> |
</message> |
<message> |
<source>Exlusion</source> |
<translation>Exclusion</translation> |
<source>Exlusion</source> |
<translation>Exclusion</translation> |
</message> |
<message> |
<source>Color Dodge</source> |
<translation>Colour Dodge</translation> |
<source>Color Dodge</source> |
<translation>Colour Dodge</translation> |
</message> |
<message> |
<source>Color Burn</source> |
<translation>Colour Burn</translation> |
<source>Color Burn</source> |
<translation>Colour Burn</translation> |
</message> |
<message> |
<source>Blend Mode:</source> |
<translation>Blend Mode:</translation> |
<source>Blend Mode:</source> |
<translation>Blend Mode:</translation> |
</message> |
<message> |
<source>Opacity:</source> |
<translation>Opacity:</translation> |
<source>Opacity:</source> |
<translation>Opacity:</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>Name</source> |
<translation>Name</translation> |
<source>Name</source> |
<translation>Name</translation> |
</message> |
<message> |
<source>Background</source> |
<translation>Background</translation> |
<source>Background</source> |
<translation>Background</translation> |
</message> |
<message> |
<source>Layers</source> |
<translation>Layers</translation> |
<source>Layers</source> |
<translation>Layers</translation> |
</message> |
<message> |
<source>Don't use any Path</source> |
<translation>Don't use any Path</translation> |
<source>Don't use any Path</source> |
<translation>Don't use any Path</translation> |
</message> |
<message> |
<source>Paths</source> |
<translation>Paths</translation> |
<source>Paths</source> |
<translation>Paths</translation> |
</message> |
<message> |
<source>Exclusion</source> |
<translation>Exclusion</translation> |
<source>Exclusion</source> |
<translation>Exclusion</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>FDialogPreview</name> |
<message> |
<source>Size:</source> |
<translation>Size:</translation> |
<source>Size:</source> |
<translation>Size:</translation> |
</message> |
<message> |
<source>Title:</source> |
<translation>Title:</translation> |
<source>Title:</source> |
<translation>Title:</translation> |
</message> |
<message> |
<source>No Title</source> |
<translation>No Title</translation> |
<source>No Title</source> |
<translation>No Title</translation> |
</message> |
<message> |
<source>Author:</source> |
<translation>Author:</translation> |
<source>Author:</source> |
<translation>Author:</translation> |
</message> |
<message> |
<source>Unknown</source> |
<translation>Unknown</translation> |
<source>Unknown</source> |
<translation>Unknown</translation> |
</message> |
<message> |
<source>Scribus Document</source> |
<translation>Scribus Document</translation> |
<source>Scribus Document</source> |
<translation>Scribus Document</translation> |
</message> |
<message> |
<source>Resolution:</source> |
<translation>Resolution:</translation> |
<source>Resolution:</source> |
<translation>Resolution:</translation> |
</message> |
<message> |
<source>DPI</source> |
<translation>DPI</translation> |
<source>DPI</source> |
<translation>DPI</translation> |
</message> |
<message> |
<source>RGB</source> |
<translation>RGB</translation> |
<source>RGB</source> |
<translation>RGB</translation> |
</message> |
<message> |
<source>CMYK</source> |
<translation>CMYK</translation> |
<source>CMYK</source> |
<translation>CMYK</translation> |
</message> |
<message> |
<source>Grayscale</source> |
<translation>Greyscale</translation> |
<source>Grayscale</source> |
<translation>Greyscale</translation> |
</message> |
<message> |
<source>Colorspace:</source> |
<translation>Colourspace:</translation> |
<source>Colorspace:</source> |
<translation>Colourspace:</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>Farbmanager</name> |
<message> |
<source>Colors</source> |
<translation>Colours</translation> |
<source>Colors</source> |
<translation>Colours</translation> |
</message> |
<message> |
<source>Color Sets</source> |
<translation>Colour Sets</translation> |
<source>Color Sets</source> |
<translation>Colour Sets</translation> |
</message> |
<message> |
<source>Current Color Set:</source> |
<translation>Current Colour Set:</translation> |
<source>Current Color Set:</source> |
<translation>Current Colour Set:</translation> |
</message> |
<message> |
<source>Choose a Name</source> |
<translation>Choose a Name</translation> |
<source>Choose a Name</source> |
<translation>Choose a Name</translation> |
</message> |
<message> |
<source>Open</source> |
<translation>Open</translation> |
<source>Open</source> |
<translation>Open</translation> |
</message> |
<message> |
<source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
<translation>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</translation> |
<source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
<translation>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</translation> |
</message> |
<message> |
<source>Documents (*.sla *.scd);;All Files (*)</source> |
<translation>Documents (*.sla *.scd);;All Files (*)</translation> |
<source>Documents (*.sla *.scd);;All Files (*)</source> |
<translation>Documents (*.sla *.scd);;All Files (*)</translation> |
</message> |
<message> |
<source>New Color</source> |
<translation>New Colour</translation> |
<source>New Color</source> |
<translation>New Colour</translation> |
</message> |
<message> |
<source>Copy of %1</source> |
<translation>Copy of %1</translation> |
<source>Copy of %1</source> |
<translation>Copy of %1</translation> |
</message> |
<message> |
<source>Choose a color set to load</source> |
<translation>Choose a colour set to load</translation> |
<source>Choose a color set to load</source> |
<translation>Choose a colour set to load</translation> |
</message> |
<message> |
<source>Save the current color set</source> |
<translation>Save the current colour set</translation> |
<source>Save the current color set</source> |
<translation>Save the current colour set</translation> |
</message> |
<message> |
<source>Remove unused colors from current document's color set</source> |
<translation>Remove unused colours from current document's colour set</translation> |
<source>Remove unused colors from current document's color set</source> |
<translation>Remove unused colours from current document's colour set</translation> |
</message> |
<message> |
<source>Append colors to the current set from an existing document</source> |
<translation>Append colours to the current set from an existing document</translation> |
<source>Append colors to the current set from an existing document</source> |
<translation>Append colours to the current set from an existing document</translation> |
</message> |
<message> |
<source>Create a new color within the current set</source> |
<translation>Create a new colour within the current set</translation> |
<source>Create a new color within the current set</source> |
<translation>Create a new colour within the current set</translation> |
</message> |
<message> |
<source>Edit the currently selected color</source> |
<translation>Edit the currently selected colour</translation> |
<source>Edit the currently selected color</source> |
<translation>Edit the currently selected colour</translation> |
</message> |
<message> |
<source>Make a copy of the currently selected color</source> |
<translation>Make a copy of the currently selected colour</translation> |
<source>Make a copy of the currently selected color</source> |
<translation>Make a copy of the currently selected colour</translation> |
</message> |
<message> |
<source>Delete the currently selected color</source> |
<translation>Delete the currently selected colour</translation> |
<source>Delete the currently selected color</source> |
<translation>Delete the currently selected colour</translation> |
</message> |
<message> |
<source>Make the current colorset the default color set</source> |
<translation>Make the current colourset the default colour set</translation> |
<source>Make the current colorset the default color set</source> |
<translation>Make the current colourset the default colour set</translation> |
</message> |
<message> |
<source>&Append</source> |
<translation>&Append</translation> |
<source>&Append</source> |
<translation>&Append</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&New</translation> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation>&Edit</translation> |
<source>&Edit</source> |
<translation>&Edit</translation> |
</message> |
<message> |
<source>D&uplicate</source> |
<translation>D&uplicate</translation> |
<source>D&uplicate</source> |
<translation>D&uplicate</translation> |
</message> |
<message> |
<source>&Delete</source> |
<translation>&Delete</translation> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<source>&Remove Unused</source> |
<translation>&Remove Unused</translation> |
<source>&Remove Unused</source> |
<translation>&Remove Unused</translation> |
</message> |
<message> |
<source>&Save Color Set</source> |
<translation>&Save Colour Set</translation> |
<source>&Save Color Set</source> |
<translation>&Save Colour Set</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>None</source> |
<translation>None</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>None</source> |
<translation>None</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>FontPrefs</name> |
<message> |
<source>Available Fonts</source> |
<translation>Available Fonts</translation> |
<source>Available Fonts</source> |
<translation>Available Fonts</translation> |
</message> |
<message> |
<source>Font Substitutions</source> |
<translation>Font Substitutions</translation> |
<source>Font Substitutions</source> |
<translation>Font Substitutions</translation> |
</message> |
<message> |
<source>Additional Paths</source> |
<translation>Additional Paths</translation> |
<source>Additional Paths</source> |
<translation>Additional Paths</translation> |
</message> |
<message> |
<source>Postscript</source> |
<translation>Postscript</translation> |
<source>Postscript</source> |
<translation>Postscript</translation> |
</message> |
<message> |
<source>Font Name</source> |
<translation>Font Name</translation> |
<source>Font Name</source> |
<translation>Font Name</translation> |
</message> |
<message> |
<source>Replacement</source> |
<translation>Replacement</translation> |
<source>Replacement</source> |
<translation>Replacement</translation> |
</message> |
<message> |
<source>Choose a Directory</source> |
<translation>Choose a Directory</translation> |
<source>Choose a Directory</source> |
<translation>Choose a Directory</translation> |
</message> |
<message> |
<source>&Available Fonts</source> |
<translation>&Available Fonts</translation> |
<source>&Available Fonts</source> |
<translation>&Available Fonts</translation> |
</message> |
<message> |
<source>Font &Substitutions</source> |
<translation>Font &Substitutions</translation> |
<source>Font &Substitutions</source> |
<translation>Font &Substitutions</translation> |
</message> |
<message> |
<source>Additional &Paths</source> |
<translation>Additional &Paths</translation> |
<source>Additional &Paths</source> |
<translation>Additional &Paths</translation> |
</message> |
<message> |
<source>&Delete</source> |
<translation>&Delete</translation> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
</message> |
<message> |
<source>A&dd...</source> |
<translation>A&dd...</translation> |
<source>A&dd...</source> |
<translation>A&dd...</translation> |
</message> |
<message> |
<source>&Remove</source> |
<translation>&Remove</translation> |
<source>&Remove</source> |
<translation>&Remove</translation> |
</message> |
<message> |
<source>Font Name</source> |
<comment>font preview</comment> |
<translation>Font Name</translation> |
<source>Font Name</source> |
<comment>font preview</comment> |
<translation>Font Name</translation> |
</message> |
<message> |
<source>Use Font</source> |
<comment>font preview</comment> |
<translation>Use Font</translation> |
<source>Use Font</source> |
<comment>font preview</comment> |
<translation>Use Font</translation> |
</message> |
<message> |
<source>Embed in:</source> |
<comment>font preview</comment> |
<translation>Embed in:</translation> |
<source>Embed in:</source> |
<comment>font preview</comment> |
<translation>Embed in:</translation> |
</message> |
<message> |
<source>Subset</source> |
<comment>font preview</comment> |
<translation>Subset</translation> |
<source>Subset</source> |
<comment>font preview</comment> |
<translation>Subset</translation> |
</message> |
<message> |
<source>Path to Font File</source> |
<comment>font preview</comment> |
<translation>Path to Font File</translation> |
<source>Path to Font File</source> |
<comment>font preview</comment> |
<translation>Path to Font File</translation> |
</message> |
<message> |
<source><qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.</qt></source> |
<translation><qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.</qt></translation> |
<source><qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.</qt></source> |
<translation><qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.</qt></translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>FontPreview</name> |
<message> |
<source>Font Name</source> |
<comment>font preview</comment> |
<translation>Font Name</translation> |
<source>Font Name</source> |
<comment>font preview</comment> |
<translation>Font Name</translation> |
</message> |
<message> |
<source>Doc</source> |
<comment>font preview</comment> |
<translation>Doc</translation> |
<source>Doc</source> |
<comment>font preview</comment> |
<translation>Doc</translation> |
</message> |
<message> |
<source>Type</source> |
<comment>font preview</comment> |
<translation>Type</translation> |
<source>Type</source> |
<comment>font preview</comment> |
<translation>Type</translation> |
</message> |
<message> |
<source>Subset</source> |
<comment>font preview</comment> |
<translation>Subset</translation> |
<source>Subset</source> |
<comment>font preview</comment> |
<translation>Subset</translation> |
</message> |
<message> |
<source>Access</source> |
<comment>font preview</comment> |
<translation>Access</translation> |
<source>Access</source> |
<comment>font preview</comment> |
<translation>Access</translation> |
</message> |
<message> |
<source>Font Size:</source> |
<translation>Font Size:</translation> |
<source>Font Size:</source> |
<translation>Font Size:</translation> |
</message> |
<message> |
<source>Fonts Preview</source> |
<comment>font preview</comment> |
<translation>Fonts Preview</translation> |
<source>Fonts Preview</source> |
<comment>font preview</comment> |
<translation>Fonts Preview</translation> |
</message> |
<message> |
<source>&OK</source> |
<comment>font preview</comment> |
<translation>&OK</translation> |
<source>Alt+O</source> |
<comment>font preview</comment> |
<translation>Alt+O</translation> |
</message> |
<message> |
<source>Alt+O</source> |
<comment>font preview</comment> |
<translation>Alt+O</translation> |
<source>Quick Search: </source> |
<translation>Quick Search: </translation> |
</message> |
<message> |
<source>Quick Search: </source> |
<translation>Quick Search: </translation> |
<source>&Search</source> |
<translation>&Search</translation> |
</message> |
<message> |
<source>&Search</source> |
<translation>&Search</translation> |
<source>&Close</source> |
<comment>font preview</comment> |
<translation>&Close</translation> |
</message> |
<message> |
<source>&Close</source> |
<comment>font preview</comment> |
<translation>&Close</translation> |
<source>Alt+C</source> |
<comment>font preview</comment> |
<translation>Alt+C</translation> |
</message> |
<message> |
<source>Alt+C</source> |
<comment>font preview</comment> |
<translation>Alt+C</translation> |
<source>Append selected font into Style, Font menu</source> |
<comment>font preview</comment> |
<translation>Append selected font into Style, Font menu</translation> |
</message> |
<message> |
<source>Append selected font into Style, Font menu</source> |
<comment>font preview</comment> |
<translation>Append selected font into Style, Font menu</translation> |
<source>Leave preview</source> |
<comment>font preview</comment> |
<translation>Leave preview</translation> |
</message> |
<message> |
<source>Leave preview</source> |
<comment>font preview</comment> |
<translation>Leave preview</translation> |
<source>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</source> |
<translation>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</translation> |
</message> |
<message> |
<source>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</source> |
<translation>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</translation> |
<source>Start searching</source> |
<translation>Start searching</translation> |
</message> |
<message> |
<source>Start searching</source> |
<translation>Start searching</translation> |
<source>Size of the selected font</source> |
<translation>Size of the selected font</translation> |
</message> |
<message> |
<source>Size of the selected font</source> |
<translation>Size of the selected font</translation> |
<source>Woven silk pyjamas exchanged for blue quartz</source> |
<comment>font preview</comment> |
<translation>Woven silk pyjamas exchanged for blue quartz</translation> |
</message> |
<message> |
<source>Woven silk pyjamas exchanged for blue quartz</source> |
<comment>font preview</comment> |
<translation>Woven silk pyjamas exchanged for blue quartz</translation> |
<source>User</source> |
<comment>font preview</comment> |
<translation>User</translation> |
</message> |
<message> |
<source>User</source> |
<comment>font preview</comment> |
<translation>User</translation> |
<source>System</source> |
<comment>font preview</comment> |
<translation>System</translation> |
</message> |
<message> |
<source>System</source> |
<comment>font preview</comment> |
<translation>System</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>FontReplaceDialog</name> |
<message> |
<source>Font Substitution</source> |
<translation>Font Substitution</translation> |
<source>Font Substitution</source> |
<translation>Font Substitution</translation> |
</message> |
<message> |
<source>Original Font</source> |
<translation>Original Font</translation> |
<source>Original Font</source> |
<translation>Original Font</translation> |
</message> |
<message> |
<source>Substitution Font</source> |
<translation>Substitution Font</translation> |
<source>Substitution Font</source> |
<translation>Substitution Font</translation> |
</message> |
<message> |
<source>Make these substitutions permanent</source> |
<translation>Make these substitutions permanent</translation> |
<source>Make these substitutions permanent</source> |
<translation>Make these substitutions permanent</translation> |
</message> |
<message> |
<source>This document contains some fonts that are not installed on your system, |
<source>This document contains some fonts that are not installed on your system, |
please choose a suitable replacement for them.</source> |
<translation>This document contains some fonts that are not installed on your system, |
<translation>This document contains some fonts that are not installed on your system, |
please choose a suitable replacement for them.</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>GradientEditor</name> |
<message> |
<source>Position:</source> |
<translation>Position:</translation> |
<source>Position:</source> |
<translation>Position:</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>Here you can add, change or remove Color-Stops.</source> |
<translation>Here you can add, change or remove Colour-Stops.</translation> |
<source>Here you can add, change or remove Color-Stops.</source> |
<translation>Here you can add, change or remove Colour-Stops.</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>GuideManager</name> |
<message> |
<source>Manage Guides</source> |
<translation>Manage Guides</translation> |
<source>Manage Guides</source> |
<translation>Manage Guides</translation> |
</message> |
<message> |
<source>Horizontal Guides</source> |
<translation>Horizontal Guides</translation> |
<source>Horizontal Guides</source> |
<translation>Horizontal Guides</translation> |
</message> |
<message> |
<source>Vertical Guides</source> |
<translation>Vertical Guides</translation> |
<source>Vertical Guides</source> |
<translation>Vertical Guides</translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
</message> |
<message> |
<source>&Add</source> |
<translation>&Add</translation> |
<source>&Add</source> |
<translation>&Add</translation> |
</message> |
<message> |
<source>D&elete</source> |
<translation>D&elete</translation> |
<source>D&elete</source> |
<translation>D&elete</translation> |
</message> |
<message> |
<source>&X-Pos:</source> |
<translation>&X-Pos:</translation> |
<source>&X-Pos:</source> |
<translation>&X-Pos:</translation> |
</message> |
<message> |
<source>A&dd</source> |
<translation>A&dd</translation> |
<source>A&dd</source> |
<translation>A&dd</translation> |
</message> |
<message> |
<source>De&lete</source> |
<translation>De&lete</translation> |
<source>De&lete</source> |
<translation>De&lete</translation> |
</message> |
<message> |
<source>&Lock Guides</source> |
<translation>&Lock Guides</translation> |
<source>&Lock Guides</source> |
<translation>&Lock Guides</translation> |
</message> |
<message> |
<source>&Rows:</source> |
<translation>&Rows:</translation> |
<source>&Rows:</source> |
<translation>&Rows:</translation> |
</message> |
<message> |
<source>C&olumns:</source> |
<translation>C&olumns:</translation> |
<source>C&olumns:</source> |
<translation>C&olumns:</translation> |
</message> |
<message> |
<source>Refer to:</source> |
<translation>Refer to:</translation> |
<source>Refer to:</source> |
<translation>Refer to:</translation> |
</message> |
<message> |
<source>&Page</source> |
<translation>&Page</translation> |
<source>&Page</source> |
<translation>&Page</translation> |
</message> |
<message> |
<source>&Margins</source> |
<translation>&Margins</translation> |
<source>&Margins</source> |
<translation>&Margins</translation> |
</message> |
<message> |
<source>&Selection</source> |
<translation>&Selection</translation> |
<source>&Selection</source> |
<translation>&Selection</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>&Close</translation> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<source>Rows and Columns - Automatic Guides</source> |
<translation>Rows and Columns - Automatic Guides</translation> |
<source>Rows and Columns - Automatic Guides</source> |
<translation>Rows and Columns - Automatic Guides</translation> |
</message> |
<message> |
<source>Row &Gap</source> |
<translation>Row &Gap</translation> |
<source>Row &Gap</source> |
<translation>Row &Gap</translation> |
</message> |
<message> |
<source>Colum&n Gap</source> |
<translation>Colum&n Gap</translation> |
<source>Colum&n Gap</source> |
<translation>Colum&n Gap</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>&Update</source> |
<translation>&Update</translation> |
</message> |
<message> |
<source>&Update</source> |
<translation>&Update</translation> |
<source>Set the guides in document. Guide manager is still opened but the changes are persistant</source> |
<comment>guide manager</comment> |
<translation>Set the guides in document. Guide manager is still opened but the changes are persistant</translation> |
</message> |
<message> |
<source>Set the guides in document. Guide manager is still opened but the changes are persistant</source> |
<comment>guide manager</comment> |
<translation>Set the guides in document. Guide manager is still opened but the changes are persistant</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>HelpBrowser</name> |
<message> |
<source>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs |
<source>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs |
and www.scribus.net for downloads.</source> |
<translation>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs |
<translation>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs |
and www.scribus.net for downloads.</translation> |
</message> |
<message> |
<source>Contents</source> |
<translation>Contents</translation> |
<source>Contents</source> |
<translation>Contents</translation> |
</message> |
<message> |
<source>Link</source> |
<translation>Link</translation> |
<source>Link</source> |
<translation>Link</translation> |
</message> |
<message> |
<source>Scribus Online Help</source> |
<translation>Scribus Online Help</translation> |
<source>Scribus Online Help</source> |
<translation>Scribus Online Help</translation> |
</message> |
<message> |
<source>&Contents</source> |
<translation>&Contents</translation> |
<source>&Contents</source> |
<translation>&Contents</translation> |
</message> |
<message> |
<source>&Search</source> |
<translation>&Search</translation> |
<source>&Search</source> |
<translation>&Search</translation> |
</message> |
<message> |
<source>unknown</source> |
<translation>unknown</translation> |
<source>unknown</source> |
<translation>unknown</translation> |
</message> |
<message> |
<source>Find</source> |
<translation>Find</translation> |
<source>Find</source> |
<translation>Find</translation> |
</message> |
<message> |
<source>Search Term:</source> |
<translation>Search Term:</translation> |
<source>Search Term:</source> |
<translation>Search Term:</translation> |
</message> |
<message> |
<source>Se&arch</source> |
<translation>Se&arch</translation> |
<source>Se&arch</source> |
<translation>Se&arch</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&New</translation> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<source>&Delete</source> |
<translation>&Delete</translation> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<source>De&lete All</source> |
<translation>De&lete All</translation> |
<source>De&lete All</source> |
<translation>De&lete All</translation> |
</message> |
<message> |
<source>Book&marks</source> |
<translation>Book&marks</translation> |
<source>Book&marks</source> |
<translation>Book&marks</translation> |
</message> |
<message> |
<source>&Print...</source> |
<translation>&Print...</translation> |
<source>&Print...</source> |
<translation>&Print...</translation> |
</message> |
<message> |
<source>E&xit</source> |
<translation>E&xit</translation> |
<source>E&xit</source> |
<translation>E&xit</translation> |
</message> |
<message> |
<source>Searching is case unsensitive</source> |
<translation>Searching is case unsensitive</translation> |
<source>Searching is case unsensitive</source> |
<translation>Searching is case unsensitive</translation> |
</message> |
<message> |
<source>New Bookmark</source> |
<translation>New Bookmark</translation> |
<source>New Bookmark</source> |
<translation>New Bookmark</translation> |
</message> |
<message> |
<source>New Bookmark's Title:</source> |
<translation>New Bookmark's Title:</translation> |
<source>New Bookmark's Title:</source> |
<translation>New Bookmark's Title:</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>HyAsk</name> |
<message> |
<source>Possible Hyphenation</source> |
<translation>Possible Hyphenation</translation> |
<source>Possible Hyphenation</source> |
<translation>Possible Hyphenation</translation> |
</message> |
<message> |
<source>Accept</source> |
<translation>Accept</translation> |
<source>Accept</source> |
<translation>Accept</translation> |
</message> |
<message> |
<source>Skip</source> |
<translation>Skip</translation> |
<source>Skip</source> |
<translation>Skip</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Cancel</translation> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>HySettings</name> |
<message> |
<source>Length of the smallest word to be hyphenated.</source> |
<translation>Length of the smallest word to be hyphenated.</translation> |
<source>Length of the smallest word to be hyphenated.</source> |
<translation>Length of the smallest word to be hyphenated.</translation> |
</message> |
<message> |
<source>Maximum number of Hyphenations following each other. |
<source>Maximum number of Hyphenations following each other. |
A value of 0 means unlimited hyphenations.</source> |
<translation>Maximum number of Hyphenations following each other. |
<translation>Maximum number of Hyphenations following each other. |
A value of 0 means unlimited hyphenations.</translation> |
</message> |
<message> |
<source>&Language:</source> |
<translation>&Language:</translation> |
<source>&Language:</source> |
<translation>&Language:</translation> |
</message> |
<message> |
<source>&Smallest Word:</source> |
<translation>&Smallest Word:</translation> |
<source>&Smallest Word:</source> |
<translation>&Smallest Word:</translation> |
</message> |
<message> |
<source>&Hyphenation Suggestions</source> |
<translation>&Hyphenation Suggestions</translation> |
<source>&Hyphenation Suggestions</source> |
<translation>&Hyphenation Suggestions</translation> |
</message> |
<message> |
<source>Hyphenate Text Automatically &During Typing</source> |
<translation>Hyphenate Text Automatically &During Typing</translation> |
<source>Hyphenate Text Automatically &During Typing</source> |
<translation>Hyphenate Text Automatically &During Typing</translation> |
</message> |
<message> |
<source>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</source> |
<translation>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</translation> |
<source>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</source> |
<translation>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</translation> |
</message> |
<message> |
<source>Enables automatic hyphenation of your text while typing.</source> |
<translation>Enables automatic hyphenation of your text while typing.</translation> |
<source>Enables automatic hyphenation of your text while typing.</source> |
<translation>Enables automatic hyphenation of your text while typing.</translation> |
</message> |
<message> |
<source>Consecutive Hyphenations &Allowed:</source> |
<translation>Consecutive Hyphenations &Allowed:</translation> |
<source>Consecutive Hyphenations &Allowed:</source> |
<translation>Consecutive Hyphenations &Allowed:</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>InsPage</name> |
<message> |
<source>Insert Page</source> |
<translation>Insert Page</translation> |
<source>Insert Page</source> |
<translation>Insert Page</translation> |
</message> |
<message> |
<source>before Page</source> |
<translation>before Page</translation> |
<source>before Page</source> |
<translation>before Page</translation> |
</message> |
<message> |
<source>after Page</source> |
<translation>after Page</translation> |
<source>after Page</source> |
<translation>after Page</translation> |
</message> |
<message> |
<source>at End</source> |
<translation>at End</translation> |
<source>at End</source> |
<translation>at End</translation> |
</message> |
<message> |
<source>Normal</source> |
<translation>Normal</translation> |
<source>Normal</source> |
<translation>Normal</translation> |
</message> |
<message> |
<source>Page(s)</source> |
<translation>Page(s)</translation> |
<source>Page(s)</source> |
<translation>Page(s)</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
<source>&Insert</source> |
<translation>&Insert</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
<source>Master Page (&Left Page):</source> |
<translation>Master Page (&Left Page):</translation> |
</message> |
<message> |
<source>&Insert</source> |
<translation>&Insert</translation> |
<source>&Master Page:</source> |
<translation>&Master Page:</translation> |
</message> |
<message> |
<source>Master Page (&Left Page):</source> |
<translation>Master Page (&Left Page):</translation> |
<source>Master Page (&Right Page):</source> |
<translation>Master Page (&Right Page):</translation> |
</message> |
<message> |
<source>&Master Page:</source> |
<translation>&Master Page:</translation> |
<source>Page Size</source> |
<translation>Page Size</translation> |
</message> |
<message> |
<source>Master Page (&Right Page):</source> |
<translation>Master Page (&Right Page):</translation> |
<source>&Size:</source> |
<translation>&Size:</translation> |
</message> |
<message> |
<source>Page Size</source> |
<translation>Page Size</translation> |
<source>Custom</source> |
<translation>Custom</translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation>&Size:</translation> |
<source>Orie&ntation:</source> |
<translation>Orie&ntation:</translation> |
</message> |
<message> |
<source>Custom</source> |
<translation>Custom</translation> |
<source>Portrait</source> |
<translation>Portrait</translation> |
</message> |
<message> |
<source>Orie&ntation:</source> |
<translation>Orie&ntation:</translation> |
<source>Landscape</source> |
<translation>Landscape</translation> |
</message> |
<message> |
<source>Portrait</source> |
<translation>Portrait</translation> |
<source>&Width:</source> |
<translation>&Width:</translation> |
</message> |
<message> |
<source>Landscape</source> |
<translation>Landscape</translation> |
<source>&Height:</source> |
<translation>&Height:</translation> |
</message> |
<message> |
<source>&Width:</source> |
<translation>&Width:</translation> |
<source>Move Objects with their Page</source> |
<translation>Move Objects with their Page</translation> |
</message> |
<message> |
<source>&Height:</source> |
<translation>&Height:</translation> |
</message> |
<message> |
<source>Move Objects with their Page</source> |
<translation>Move Objects with their Page</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>InsertTable</name> |
<message> |
<source>Insert Table</source> |
<translation>Insert Table</translation> |
<source>Insert Table</source> |
<translation>Insert Table</translation> |
</message> |
<message> |
<source>Number of rows:</source> |
<translation>Number of rows:</translation> |
<source>Number of rows:</source> |
<translation>Number of rows:</translation> |
</message> |
<message> |
<source>Number of columns:</source> |
<translation>Number of columns:</translation> |
<source>Number of columns:</source> |
<translation>Number of columns:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
</context> |
<context> |
</context> |
<context> |
<name>JavaDocs</name> |
<message> |
<source>New Script</source> |
<translation>New Script</translation> |
<source>New Script</source> |
<translation>New Script</translation> |
</message> |
<message> |
<source>Edit JavaScripts</source> |
<translation>Edit JavaScripts</translation> |
<source>Edit JavaScripts</source> |
<translation>Edit JavaScripts</translation> |
</message> |
<message> |
<source>Warning</source> |
<translation>Warning</translation> |
<source>Warning</source> |
<translation>Warning</translation> |
</message> |
<message> |
<source>&Edit...</source> |
<translation>&Edit...</translation> |
<source>&Edit...</source> |
<translation>&Edit...</translation> |
</message> |