0,0 → 1,50728 |
<?xml version="1.0" encoding="utf-8"?> |
<!DOCTYPE TS> |
<TS version="2.0" language="en_GB"> |
<context> |
<name></name> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 |
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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 |
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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 = Yellow and k = Black. Color components should be in |
the range from 0 to 255. |
|
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">defineColor("name", c, m, y, k) |
|
Defines a new colour "name". 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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 |
"None" - transparent. |
|
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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 |
"None" - transparent. |
|
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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
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 |
the dialog shows and returns only directories. The default for all of the |
optional parameters is False. |
|
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) |
</source> |
<translation type="obsolete">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 |
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 |
the dialog shows and returns only directories. The default for all of the |
optional parameters is False. |
|
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) |
</translation> |
</message> |
<message> |
<source>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
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 |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
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>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</source> |
<translation type="obsolete">messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
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 |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
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>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</translation> |
</message> |
<message> |
<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. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</source> |
<translation type="obsolete">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. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</translation> |
</message> |
<message> |
<source>newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</source> |
<translation type="obsolete">newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</translation> |
</message> |
<message> |
<source>newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> 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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</source> |
<translation type="obsolete">newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> 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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</translation> |
</message> |
<message> |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</source> |
<translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</translation> |
</message> |
<message> |
<source>closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</source> |
<translation type="obsolete">closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</translation> |
</message> |
<message> |
<source>haveDoc() -> bool |
|
Returns true if there is a document open. |
</source> |
<translation type="obsolete">haveDoc() -> bool |
|
Returns true if there is a document open. |
</translation> |
</message> |
<message> |
<source>openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</source> |
<translation type="obsolete">openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</translation> |
</message> |
<message> |
<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 |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</source> |
<translation type="obsolete">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 |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</translation> |
</message> |
<message> |
<source>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</source> |
<translation type="obsolete">saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</translation> |
</message> |
<message> |
<source>setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</source> |
<translation type="obsolete">setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation type="obsolete">setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</translation> |
</message> |
<message> |
<source>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</source> |
<translation type="obsolete">setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</source> |
<translation type="obsolete">loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</translation> |
</message> |
<message> |
<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 |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</source> |
<translation type="obsolete">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 |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</translation> |
</message> |
<message> |
<source>closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</source> |
<translation type="obsolete">closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</translation> |
</message> |
<message> |
<source>masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</source> |
<translation type="obsolete">masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</translation> |
</message> |
<message> |
<source>editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</source> |
<translation type="obsolete">editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</translation> |
</message> |
<message> |
<source>createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</source> |
<translation type="obsolete">createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</translation> |
</message> |
<message> |
<source>deleteMasterPage(pageName) |
|
Delete the named master page. |
</source> |
<translation type="obsolete">deleteMasterPage(pageName) |
|
Delete the named master page. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getLineJoin(["name"]) -> integer (see constants) |
|
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 type="obsolete">getLineJoin(["name"]) -> integer (see constants) |
|
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 |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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> |
for reference. |
</source> |
<translation type="obsolete">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> |
for reference. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</source> |
<translation type="obsolete">getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</translation> |
</message> |
<message> |
<source>getPropertyCType(object, property, includesuper=True) |
|
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. |
</source> |
<translation type="obsolete">getPropertyCType(object, property, includesuper=True) |
|
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. |
</translation> |
</message> |
<message> |
<source>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</source> |
<translation type="obsolete">getPropertyNames(object, includesuper=True) |
|
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) |
|
Return the value of the property `property' of the passed `object'. |
|
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 return value varies depending on the type of the property. |
</source> |
<translation type="obsolete">getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
|
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 return value varies depending on the type of the property. |
</translation> |
</message> |
<message> |
<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 |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</source> |
<translation type="obsolete">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 |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</translation> |
</message> |
<message> |
<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 |
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 type="obsolete">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 |
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. |
</translation> |
</message> |
<message> |
<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" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">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" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</translation> |
</message> |
<message> |
<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 |
default, the top left vertex at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">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 |
default, the top left vertex at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>selectionCount() -> integer |
|
Returns the number of selected objects. |
</source> |
<translation type="obsolete">selectionCount() -> integer |
|
Returns the number of selected objects. |
</translation> |
</message> |
<message> |
<source>selectObject("name") |
|
Selects the object with the given "name". |
</source> |
<translation type="obsolete">selectObject("name") |
|
Selects the object with the given "name". |
</translation> |
</message> |
<message> |
<source>deselectAll() |
|
Deselects all objects in the whole document. |
</source> |
<translation type="obsolete">deselectAll() |
|
Deselects all objects in the whole document. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
<translation type="obsolete">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"]) |
|
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 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</source> |
<translation type="obsolete">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 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</translation> |
</message> |
<message> |
<source>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</translation> |
</message> |
<message> |
<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 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">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 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</translation> |
</message> |
<message> |
<source>lockObject(["name"]) -> bool |
|
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 type="obsolete">lockObject(["name"]) -> bool |
|
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 |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</translation> |
</message> |
<message> |
<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. |
|
May raise WrongFrameTypeError. |
</source> |
<translation type="obsolete">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. |
|
May raise WrongFrameTypeError. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</source> |
<translation type="obsolete">getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</translation> |
</message> |
<message> |
<source>getXFontNames() -> list of tuples |
|
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 type="obsolete">getXFontNames() -> list of tuples |
|
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 |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
image data is returned as a string. The optional "format" argument |
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 ValueError if an empty sample or filename is passed. |
</source> |
<translation type="obsolete">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 |
image data is returned as a string. The optional "format" argument |
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 ValueError if an empty sample or filename is passed. |
</translation> |
</message> |
<message> |
<source>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</source> |
<translation type="obsolete">getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</source> |
<translation type="obsolete">getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">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. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerVisible("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. |
</source> |
<translation type="obsolete">isLayerVisible("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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
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") |
|
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. |
</source> |
<translation type="obsolete">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. |
|
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) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</source> |
<translation type="obsolete">getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to front. |
</source> |
<translation type="obsolete">moveSelectionToFront()Moves current selection to front.</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to back. |
</source> |
<translation type="obsolete">moveSelectionToFront()Moves current selection to back.</translation> |
</message> |
<message> |
<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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</source> |
<translation type="obsolete">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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</translation> |
</message> |
<message> |
<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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</source> |
<translation type="obsolete">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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</translation> |
</message> |
<message> |
<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. |
"name" should be a 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. |
</source> |
<translation type="obsolete">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. |
"name" should be a 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. |
</translation> |
</message> |
<message> |
<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 |
UNIT constants). "name" should be a unique identifier for the object 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. |
</source> |
<translation type="obsolete">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 |
UNIT constants). "name" should be a unique identifier for the object 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. |
</translation> |
</message> |
<message> |
<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 |
document (see UNIT constants). "name" should be a 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. |
</source> |
<translation type="obsolete">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 |
document (see UNIT constants). "name" should be a 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. |
</translation> |
</message> |
<message> |
<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]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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 |
measurement unit of the document (see UNIT constants). "name" should be a |
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. |
</source> |
<translation type="obsolete">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 |
measurement unit of the document (see UNIT constants). "name" should be a |
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. |
</translation> |
</message> |
<message> |
<source>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</source> |
<translation type="obsolete">deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</translation> |
</message> |
<message> |
<source>textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</source> |
<translation type="obsolete">textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</source> |
<translation type="obsolete">getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</translation> |
</message> |
<message> |
<source>duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</source> |
<translation type="obsolete">duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</translation> |
</message> |
<message> |
<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 |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">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 |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>redrawAll() |
|
Redraws all pages. |
</source> |
<translation type="obsolete">redrawAll() |
|
Redraws all pages. |
</translation> |
</message> |
<message> |
<source>getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</source> |
<translation type="obsolete">getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</translation> |
</message> |
<message> |
<source>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</source> |
<translation type="obsolete">savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</translation> |
</message> |
<message> |
<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 |
page number is. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">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 |
page number is. |
|
May raise IndexError if the page number is out of range |
</translation> |
</message> |
<message> |
<source>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (currently) 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 type="obsolete">gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (currently) 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. |
</translation> |
</message> |
<message> |
<source>pageCount() -> integer |
|
Returns the number of pages in the document. |
</source> |
<translation type="obsolete">pageCount() -> integer |
|
Returns the number of pages in the document. |
</translation> |
</message> |
<message> |
<source>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</source> |
<translation type="obsolete">getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</translation> |
</message> |
<message> |
<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. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
</source> |
<translation type="obsolete">setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
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 |
</translation> |
</message> |
<message> |
<source>getVGuides() |
|
See getHGuides. |
</source> |
<translation type="obsolete">getVGuides() |
|
See getHGuides. |
</translation> |
</message> |
<message> |
<source>setVGuides() |
|
See setHGuides. |
</source> |
<translation type="obsolete">setVGuides() |
|
See setHGuides. |
</translation> |
</message> |
<message> |
<source>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</source> |
<translation type="obsolete">getPageSize() -> tuple |
|
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 |
|
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 |
the page... |
</source> |
<translation type="obsolete">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 |
the page... |
</translation> |
</message> |
<message> |
<source>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</source> |
<translation type="obsolete">getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</translation> |
</message> |
<message> |
<source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
|
Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
fromDoc: string; the filename of the document to import pages from |
pageList: tuple with page numbers of pages to import |
create: number; 0 to replace existing pages, 1 (default) to insert new pages |
importWhere: number; the page number (of the current document) at which import the pages |
importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
</source> |
<translation type="obsolete">importPage("fromDoc", (pageList), [create, imortwhere, importwherePage])Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function.fromDoc: string; the filename of the document to import pages frompageList: tuple with page numbers of pages to importcreate: number; 0 to replace existing pages, 1 (default) to insert new pagesimportWhere: number; the page number (of the current document) at which import the pagesimportWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document</translation> |
</message> |
<message> |
<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>). |
</source> |
<translation type="obsolete">setGradientFill(type, "colour1", shade1, "colour2", 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>). |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</source> |
<translation type="obsolete">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 |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</translation> |
</message> |
<message> |
<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 |
(full color intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</source> |
<translation type="obsolete">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 |
(full colour intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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 |
(full Color intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</source> |
<translation type="obsolete">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 |
(full Colour intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</translation> |
</message> |
<message> |
<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. |
|
May raise ValueError if the corner radius is negative. |
</source> |
<translation type="obsolete">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. |
|
May raise ValueError if the corner radius is negative. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>createParagraphStyle(...) |
|
Creates a paragraph style. This function takes the following keyword parameters: |
|
"name" [required] -> specifies the name of the paragraphstyle to create |
|
linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
|
fixed linespacing: 0 |
|
automatic linespacing: 1 |
|
baseline grid linespacing: 2 |
|
linespacing [optional] -> specifies the linespacing if using fixed linespacing |
|
alignment [optional] -> specifies the alignment of the paragraph |
|
-> left: 0 |
|
-> center: 1 |
|
-> right: 2 |
|
-> justify: 3 |
|
-> extend: 4 |
|
leftmargin [optional], rightmargin [optional] -> specify the margin |
|
gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
|
firstindent [optional] -> the indent of the first line |
|
hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
|
dropcaplines [optional] -> height (in lines) of the caps if used |
|
dropcapoffset [optional] -> offset of the caps if used |
|
"charstyle" [optional] -> char style to use |
|
</source> |
<translation type="obsolete">createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:"name" [required] -> specifies the name of the paragraphstyle to createlinespacingmode [optional] -> specifies the linespacing mode; possible modes are:fixed linespacing: 0automatic linespacing: 1baseline grid linespacing: 2linespacing [optional] -> specifies the linespacing if using fixed linespacingalignment [optional] -> specifies the alignment of the paragraph-> left: 0-> center: 1-> right: 2-> justify: 3-> extend: 4leftmargin [optional], rightmargin [optional] -> specify the margingapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphsfirstindent [optional] -> the indent of the first linehasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -> height (in lines) of the caps if useddropcapoffset [optional] -> offset of the caps if used"charstyle" [optional] -> char style to use</translation> |
</message> |
<message> |
<source>createCharStyle(...) |
|
Creates a character style. This function takes the following keyword parameters: |
|
"name" [required] -> name of the char style to create |
|
"font" [optional] -> name of the font to use |
|
fontsize [optional] -> font size to set (double) |
|
"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
|
-> inherit |
|
-> bold |
|
-> italic |
|
-> underline |
|
-> underlinewords |
|
-> strike |
|
-> superscript |
|
-> subscript |
|
-> outline |
|
-> shadowed |
|
-> allcaps |
|
-> smallcaps |
|
"fillcolor" [optional], "fillshade" [optional] -> specify fill options |
|
"strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
|
baselineoffset [optional] -> offset of the baseline |
|
shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
|
outlinewidth [optional] -> width of the outline if used |
|
underlineoffset [optional], underlinewidth [optional] -> underline options if used |
|
strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
|
scaleh [optional], scalev [optional] -> scale of the chars |
|
tracking [optional] -> tracking of the text |
|
"language" [optional] -> language code |
|
</source> |
<translation type="obsolete">createCharStyle(...)Creates a character style. This function takes the following keyword parameters:"name" [required] -> name of the char style to create"font" [optional] -> name of the font to usefontsize [optional] -> font size to set (double)"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-> inherit-> bold-> italic-> underline-> underlinewords-> strike-> superscript-> subscript-> outline-> shadowed-> allcaps-> smallcaps"fillcolour" [optional], "fillshade" [optional] -> specify fill options"strokecolour" [optional], "strokeshade" [optional] -> specify stroke optionsbaselineoffset [optional] -> offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if usedoutlinewidth [optional] -> width of the outline if usedunderlineoffset [optional], underlinewidth [optional] -> underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -> strikethru options if usedscaleh [optional], scalev [optional] -> scale of the charstracking [optional] -> tracking of the text"language" [optional] -> language code</translation> |
</message> |
<message> |
<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 |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">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 |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">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 |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">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 |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 |
text is returned. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
text is returned. If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getTextDistances(["name"]) -> tuple |
|
Returns the text distances of the text frame "name" expressed in points. The |
distances are returned as a tuple like (left, right, top, bottom). If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextDistances(["name"]) -> tupleReturns the text distances of the text frame "name" expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If "name"is not given the currently selected item is used.</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 |
for more details. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
for more details. If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</source> |
<translation type="obsolete">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 |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</translation> |
</message> |
<message> |
<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 |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</source> |
<translation type="obsolete">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 |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</translation> |
</message> |
<message> |
<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 |
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. |
</source> |
<translation type="obsolete">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 |
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. |
</translation> |
</message> |
<message> |
<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 |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</source> |
<translation type="obsolete">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 |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</translation> |
</message> |
<message> |
<source>setTextDistances(left, right, top, bottom, ["name"]) |
|
Sets the text distances of the text frame "name" to the values "left" |
"right", "top" and "bottom". If "name" is not given the currently |
selected item is used. |
|
May throw ValueError if any of the distances are out of bounds (must be positive). |
</source> |
<translation type="obsolete">setTextDistances(left, right, top, bottom, ["name"])Sets the text distances of the text frame "name" to the values "left""right", "top" and "bottom". If "name" is not given the currentlyselected item is used.May throw ValueError if any of the distances are out of bounds (must be positive).</translation> |
</message> |
<message> |
<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. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</source> |
<translation type="obsolete">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. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</translation> |
</message> |
<message> |
<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. |
|
May throw ValueError if number of columns is not at least one. |
</source> |
<translation type="obsolete">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. |
|
May throw ValueError if number of columns is not at least one. |
</translation> |
</message> |
<message> |
<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 |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</source> |
<translation type="obsolete">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 |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</translation> |
</message> |
<message> |
<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 |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</source> |
<translation type="obsolete">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 |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 |
be an integer value in the range from 0 (lightest) to 100 (full color |
intensity). If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
be an integer value in the range from 0 (lightest) to 100 (full colour |
intensity). If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">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 |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</translation> |
</message> |
<message> |
<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)' |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">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)' |
|
May throw ScribusException if linking rules are violated. |
</translation> |
</message> |
<message> |
<source>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</source> |
<translation type="obsolete">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 |
|
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 |
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 type="obsolete">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 |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
</translation> |
</message> |
<message> |
<source>hyphenateText(["name"]) -> bool |
|
Does hyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">hyphenateText(["name"]) -> boolDoes hyphenation on text frame "name".If "name" is not given the currently selected item is used.May raise WrongFrameTypeError if the target frame is not a text frame</translation> |
</message> |
<message> |
<source>dehyphenateText(["name"]) -> bool |
|
Does dehyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">dehyphenateText(["name"]) -> boolDoes dehyphenation on text frame "name".If "name" is not given the currently selected item is used.May raise WrongFrameTypeError if the target frame is not a text frame</translation> |
</message> |
<message> |
<source>setPDFBookmark("toggle", ["name"]) |
|
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">setPDFBookmark("toggle", ["name"]) |
|
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</translation> |
</message> |
<message> |
<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. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">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. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</translation> |
</message> |
<message> |
<source>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation type="obsolete">messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</translation> |
</message> |
<message> |
<source>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</source> |
<translation type="obsolete">progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</translation> |
</message> |
<message> |
<source>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</source> |
<translation type="obsolete">progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</translation> |
</message> |
<message> |
<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 |
total number of steps and the number of steps completed so far and it will |
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] |
</source> |
<translation type="obsolete">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 |
total number of steps and the number of steps completed so far and it will |
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] |
</translation> |
</message> |
<message> |
<source>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</source> |
<translation type="obsolete">setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</source> |
<translation type="obsolete">zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</translation> |
</message> |
<message> |
<source>scrollDocument(x,y) |
|
Scroll the document in main GUI window by x and y. |
</source> |
<translation type="obsolete">scrollDocument(x,y)Scroll the document in main GUI window by x and y.</translation> |
</message> |
<message> |
<source>placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</source> |
<translation type="obsolete">placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</translation> |
</message> |
<message> |
<source>placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</source> |
<translation type="obsolete">placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</translation> |
</message> |
<message> |
<source>placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</source> |
<translation type="obsolete">placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</translation> |
</message> |
<message> |
<source>placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</source> |
<translation type="obsolete">placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</translation> |
</message> |
</context> |
<context> |
<name>@default</name> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
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 type="obsolete">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 |
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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</source> |
<translation type="obsolete">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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</translation> |
</message> |
<message> |
<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 |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">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 |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</translation> |
</message> |
<message> |
<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>). |
</source> |
<translation type="obsolete">setGradientFill(type, "colour1", shade1, "colour2", 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>). |
</translation> |
</message> |
<message> |
<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 |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">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 |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation type="obsolete">messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</translation> |
</message> |
<message> |
<source>newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> 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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</source> |
<translation type="obsolete">newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> 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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</translation> |
</message> |
<message> |
<source>placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</source> |
<translation type="obsolete">placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 |
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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 |
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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 |
"None" - transparent. |
|
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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 |
"None" - transparent. |
|
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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<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 ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
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 |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
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>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</source> |
<translation type="obsolete">messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
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 |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
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>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</translation> |
</message> |
<message> |
<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. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</source> |
<translation type="obsolete">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. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</translation> |
</message> |
<message> |
<source>closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</source> |
<translation type="obsolete">closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</translation> |
</message> |
<message> |
<source>haveDoc() -> bool |
|
Returns true if there is a document open. |
</source> |
<translation type="obsolete">haveDoc() -> bool |
|
Returns true if there is a document open. |
</translation> |
</message> |
<message> |
<source>openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</source> |
<translation type="obsolete">openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</translation> |
</message> |
<message> |
<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 |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</source> |
<translation type="obsolete">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 |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</translation> |
</message> |
<message> |
<source>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</source> |
<translation type="obsolete">saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</translation> |
</message> |
<message> |
<source>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</source> |
<translation type="obsolete">setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</source> |
<translation type="obsolete">loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</translation> |
</message> |
<message> |
<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 |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</source> |
<translation type="obsolete">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 |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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> |
for reference. |
</source> |
<translation type="obsolete">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> |
for reference. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</source> |
<translation type="obsolete">getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</translation> |
</message> |
<message> |
<source>getPropertyCType(object, property, includesuper=True) |
|
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. |
</source> |
<translation type="obsolete">getPropertyCType(object, property, includesuper=True) |
|
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. |
</translation> |
</message> |
<message> |
<source>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</source> |
<translation type="obsolete">getPropertyNames(object, includesuper=True) |
|
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) |
|
Return the value of the property `property' of the passed `object'. |
|
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 return value varies depending on the type of the property. |
</source> |
<translation type="obsolete">getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
|
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 return value varies depending on the type of the property. |
</translation> |
</message> |
<message> |
<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 |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</source> |
<translation type="obsolete">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 |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</translation> |
</message> |
<message> |
<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" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">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" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>selectionCount() -> integer |
|
Returns the number of selected objects. |
</source> |
<translation type="obsolete">selectionCount() -> integer |
|
Returns the number of selected objects. |
</translation> |
</message> |
<message> |
<source>selectObject("name") |
|
Selects the object with the given "name". |
</source> |
<translation type="obsolete">selectObject("name") |
|
Selects the object with the given "name". |
</translation> |
</message> |
<message> |
<source>deselectAll() |
|
Deselects all objects in the whole document. |
</source> |
<translation type="obsolete">deselectAll() |
|
Deselects all objects in the whole document. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
<translation type="obsolete">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"]) |
|
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 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</source> |
<translation type="obsolete">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 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</translation> |
</message> |
<message> |
<source>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</translation> |
</message> |
<message> |
<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 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">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 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</translation> |
</message> |
<message> |
<source>lockObject(["name"]) -> bool |
|
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 type="obsolete">lockObject(["name"]) -> bool |
|
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 |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</translation> |
</message> |
<message> |
<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. |
|
May raise WrongFrameTypeError. |
</source> |
<translation type="obsolete">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. |
|
May raise WrongFrameTypeError. |
</translation> |
</message> |
<message> |
<source>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</source> |
<translation type="obsolete">getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</translation> |
</message> |
<message> |
<source>getXFontNames() -> list of tuples |
|
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 type="obsolete">getXFontNames() -> list of tuples |
|
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 |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
image data is returned as a string. The optional "format" argument |
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 ValueError if an empty sample or filename is passed. |
</source> |
<translation type="obsolete">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 |
image data is returned as a string. The optional "format" argument |
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 ValueError if an empty sample or filename is passed. |
</translation> |
</message> |
<message> |
<source>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</source> |
<translation type="obsolete">getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</source> |
<translation type="obsolete">getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">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. |
|
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) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</source> |
<translation type="obsolete">getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</translation> |
</message> |
<message> |
<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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</source> |
<translation type="obsolete">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 |
(see UNIT constants). "name" should be a unique identifier for the object |
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. |
</translation> |
</message> |
<message> |
<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. |
"name" should be a 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. |
</source> |
<translation type="obsolete">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. |
"name" should be a 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. |
</translation> |
</message> |
<message> |
<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 |
UNIT constants). "name" should be a unique identifier for the object 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. |
</source> |
<translation type="obsolete">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 |
UNIT constants). "name" should be a unique identifier for the object 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. |
</translation> |
</message> |
<message> |
<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 |
document (see UNIT constants). "name" should be a 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. |
</source> |
<translation type="obsolete">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 |
document (see UNIT constants). "name" should be a 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. |
</translation> |
</message> |
<message> |
<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]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">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: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a 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 ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</translation> |
</message> |
<message> |
<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 |
measurement unit of the document (see UNIT constants). "name" should be a |
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. |
</source> |
<translation type="obsolete">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 |
measurement unit of the document (see UNIT constants). "name" should be a |
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. |
</translation> |
</message> |
<message> |
<source>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</source> |
<translation type="obsolete">deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</source> |
<translation type="obsolete">getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>redrawAll() |
|
Redraws all pages. |
</source> |
<translation type="obsolete">redrawAll() |
|
Redraws all pages. |
</translation> |
</message> |
<message> |
<source>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</source> |
<translation type="obsolete">savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</translation> |
</message> |
<message> |
<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 |
page number is. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">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 |
page number is. |
|
May raise IndexError if the page number is out of range |
</translation> |
</message> |
<message> |
<source>pageCount() -> integer |
|
Returns the number of pages in the document. |
</source> |
<translation type="obsolete">pageCount() -> integer |
|
Returns the number of pages in the document. |
</translation> |
</message> |
<message> |
<source>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</source> |
<translation type="obsolete">getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</translation> |
</message> |
<message> |
<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. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
</source> |
<translation type="obsolete">setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
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 |
</translation> |
</message> |
<message> |
<source>getVGuides() |
|
See getHGuides. |
</source> |
<translation type="obsolete">getVGuides() |
|
See getHGuides. |
</translation> |
</message> |
<message> |
<source>setVGuides() |
|
See setHGuides. |
</source> |
<translation type="obsolete">setVGuides() |
|
See setHGuides. |
</translation> |
</message> |
<message> |
<source>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</source> |
<translation type="obsolete">getPageSize() -> tuple |
|
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 |
|
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 |
the page... |
</source> |
<translation type="obsolete">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 |
the page... |
</translation> |
</message> |
<message> |
<source>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</source> |
<translation type="obsolete">getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
currently selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</source> |
<translation type="obsolete">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 |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</translation> |
</message> |
<message> |
<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 |
(full color intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</source> |
<translation type="obsolete">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 |
(full colour intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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>. |
</source> |
<translation type="obsolete">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>. |
</translation> |
</message> |
<message> |
<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 |
(full Color intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</source> |
<translation type="obsolete">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 |
(full Colour intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</translation> |
</message> |
<message> |
<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. |
|
May raise ValueError if the corner radius is negative. |
</source> |
<translation type="obsolete">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. |
|
May raise ValueError if the corner radius is negative. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">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 |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">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 |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 |
text is returned. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
text is returned. If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 |
for more details. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
for more details. If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</source> |
<translation type="obsolete">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 |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</translation> |
</message> |
<message> |
<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 |
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. |
</source> |
<translation type="obsolete">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 |
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. |
</translation> |
</message> |
<message> |
<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 |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</source> |
<translation type="obsolete">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 |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</translation> |
</message> |
<message> |
<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. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</source> |
<translation type="obsolete">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. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</translation> |
</message> |
<message> |
<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. |
|
May throw ValueError if number of columns is not at least one. |
</source> |
<translation type="obsolete">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. |
|
May throw ValueError if number of columns is not at least one. |
</translation> |
</message> |
<message> |
<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 |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</source> |
<translation type="obsolete">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 |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</translation> |
</message> |
<message> |
<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 |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</source> |
<translation type="obsolete">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 |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
</translation> |
</message> |
<message> |
<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 type="obsolete">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 |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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 |
be an integer value in the range from 0 (lightest) to 100 (full color |
intensity). If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">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 |
be an integer value in the range from 0 (lightest) to 100 (full colour |
intensity). If "name" is not given the currently selected item is |
used. |
</translation> |
</message> |
<message> |
<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 |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">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 |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</translation> |
</message> |
<message> |
<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)' |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">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)' |
|
May throw ScribusException if linking rules are violated. |
</translation> |
</message> |
<message> |
<source>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</source> |
<translation type="obsolete">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 |
|
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 |
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 type="obsolete">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 |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
</translation> |
</message> |
<message> |
<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. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">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. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</translation> |
</message> |
<message> |
<source>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</source> |
<translation type="obsolete">progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</translation> |
</message> |
<message> |
<source>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</source> |
<translation type="obsolete">progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</translation> |
</message> |
<message> |
<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 |
total number of steps and the number of steps completed so far and it will |
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] |
</source> |
<translation type="obsolete">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 |
total number of steps and the number of steps completed so far and it will |
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] |
</translation> |
</message> |
<message> |
<source>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</source> |
<translation type="obsolete">setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</source> |
<translation type="obsolete">newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</translation> |
</message> |
<message> |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</source> |
<translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
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. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
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. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</translation> |
</message> |
<message> |
<source>closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</source> |
<translation type="obsolete">closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</translation> |
</message> |
<message> |
<source>masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</source> |
<translation type="obsolete">masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</translation> |
</message> |
<message> |
<source>editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</source> |
<translation type="obsolete">editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</translation> |
</message> |
<message> |
<source>createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</source> |
<translation type="obsolete">createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</translation> |
</message> |
<message> |
<source>deleteMasterPage(pageName) |
|
Delete the named master page. |
</source> |
<translation type="obsolete">deleteMasterPage(pageName) |
|
Delete the named master page. |
</translation> |
</message> |
<message> |
<source>zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</source> |
<translation type="obsolete">zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</translation> |
</message> |
<message> |
<source>getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</translation> |
</message> |
<message> |
<source>setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</source> |
<translation type="obsolete">textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</translation> |
</message> |
<message> |
<source>duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</source> |
<translation type="obsolete">duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</translation> |
</message> |
<message> |
<source>setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</source> |
<translation type="obsolete">setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</translation> |
</message> |
<message> |
<source>getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</source> |
<translation type="obsolete">getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</translation> |
</message> |
<message> |
<source>getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<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 = Yellow and k = Black. Color components should be in |
the range from 0 to 255. |
|
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">defineColor("name", c, m, y, k) |
|
Defines a new colour "name". 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 ValueError if an invalid colour name is specified. |
</translation> |
</message> |
<message> |
<source>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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. |
</source> |
<translation type="obsolete">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. |
</translation> |
</message> |
<message> |
<source>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</translation> |
</message> |
<message> |
<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. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">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. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>isLayerVisible("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. |
</source> |
<translation type="obsolete">isLayerVisible("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. |
</translation> |
</message> |
<message> |
<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 |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</source> |
<translation type="obsolete">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 |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation type="obsolete">setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</translation> |
</message> |
<message> |
<source>setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</translation> |
</message> |
<message> |
<source>setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</source> |
<translation type="obsolete">placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</translation> |
</message> |
<message> |
<source>placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</source> |
<translation type="obsolete">placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</translation> |
</message> |
<message> |
<source>placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</source> |
<translation type="obsolete">placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</translation> |
</message> |
<message> |
<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 |
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 |
the dialog shows and returns only directories. The default for all of the |
optional parameters is False. |
|
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) |
</source> |
<translation type="obsolete">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 |
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 |
the dialog shows and returns only directories. The default for all of the |
optional parameters is False. |
|
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) |
</translation> |
</message> |
<message> |
<source>getLineJoin(["name"]) -> integer (see constants) |
|
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 type="obsolete">getLineJoin(["name"]) -> integer (see constants) |
|
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 |
</translation> |
</message> |
<message> |
<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 |
default, the top left vertex at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">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 |
default, the top left vertex at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</translation> |
</message> |
<message> |
<source>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (currently) 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 type="obsolete">gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (currently) 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. |
</translation> |
</message> |
<message> |
<source>setPDFBookmark("toggle", ["name"]) |
|
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">setPDFBookmark("toggle", ["name"]) |
|
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to front. |
</source> |
<translation type="obsolete">moveSelectionToFront()Moves current selection to front.</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to back. |
</source> |
<translation type="obsolete">moveSelectionToFront()Moves current selection to back.</translation> |
</message> |
<message> |
<source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
|
Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
fromDoc: string; the filename of the document to import pages from |
pageList: tuple with page numbers of pages to import |
create: number; 0 to replace existing pages, 1 (default) to insert new pages |
importWhere: number; the page number (of the current document) at which import the pages |
importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
</source> |
<translation type="obsolete">importPage("fromDoc", (pageList), [create, imortwhere, importwherePage])Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function.fromDoc: string; the filename of the document to import pages frompageList: tuple with page numbers of pages to importcreate: number; 0 to replace existing pages, 1 (default) to insert new pagesimportWhere: number; the page number (of the current document) at which import the pagesimportWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document</translation> |
</message> |
<message> |
<source>createCharStyle(...) |
|
Creates a character style. This function takes the following keyword parameters: |
|
"name" [required] -> name of the char style to create |
|
"font" [optional] -> name of the font to use |
|
fontsize [optional] -> font size to set (double) |
|
"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
|
-> inherit |
|
-> bold |
|
-> italic |
|
-> underline |
|
-> underlinewords |
|
-> strike |
|
-> superscript |
|
-> subscript |
|
-> outline |
|
-> shadowed |
|
-> allcaps |
|
-> smallcaps |
|
"fillcolor" [optional], "fillshade" [optional] -> specify fill options |
|
"strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
|
baselineoffset [optional] -> offset of the baseline |
|
shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
|
outlinewidth [optional] -> width of the outline if used |
|
underlineoffset [optional], underlinewidth [optional] -> underline options if used |
|
strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
|
scaleh [optional], scalev [optional] -> scale of the chars |
|
tracking [optional] -> tracking of the text |
|
"language" [optional] -> language code |
|
</source> |
<translation type="obsolete">createCharStyle(...)Creates a character style. This function takes the following keyword parameters:"name" [required] -> name of the char style to create"font" [optional] -> name of the font to usefontsize [optional] -> font size to set (double)"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-> inherit-> bold-> italic-> underline-> underlinewords-> strike-> superscript-> subscript-> outline-> shadowed-> allcaps-> smallcaps"fillcolour" [optional], "fillshade" [optional] -> specify fill options"strokecolour" [optional], "strokeshade" [optional] -> specify stroke optionsbaselineoffset [optional] -> offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if usedoutlinewidth [optional] -> width of the outline if usedunderlineoffset [optional], underlinewidth [optional] -> underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -> strikethru options if usedscaleh [optional], scalev [optional] -> scale of the charstracking [optional] -> tracking of the text"language" [optional] -> language code</translation> |
</message> |
<message> |
<source>hyphenateText(["name"]) -> bool |
|
Does hyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">hyphenateText(["name"]) -> boolDoes hyphenation on text frame "name".If "name" is not given the currently selected item is used.May raise WrongFrameTypeError if the target frame is not a text frame</translation> |
</message> |
<message> |
<source>dehyphenateText(["name"]) -> bool |
|
Does dehyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">dehyphenateText(["name"]) -> boolDoes dehyphenation on text frame "name".If "name" is not given the currently selected item is used.May raise WrongFrameTypeError if the target frame is not a text frame</translation> |
</message> |
<message> |
<source>scrollDocument(x,y) |
|
Scroll the document in main GUI window by x and y. |
</source> |
<translation type="obsolete">scrollDocument(x,y)Scroll the document in main GUI window by x and y.</translation> |
</message> |
<message> |
<source>createParagraphStyle(...) |
|
Creates a paragraph style. This function takes the following keyword parameters: |
|
"name" [required] -> specifies the name of the paragraphstyle to create |
|
linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
|
fixed linespacing: 0 |
|
automatic linespacing: 1 |
|
baseline grid linespacing: 2 |
|
linespacing [optional] -> specifies the linespacing if using fixed linespacing |
|
alignment [optional] -> specifies the alignment of the paragraph |
|
-> left: 0 |
|
-> center: 1 |
|
-> right: 2 |
|
-> justify: 3 |
|
-> extend: 4 |
|
leftmargin [optional], rightmargin [optional] -> specify the margin |
|
gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
|
firstindent [optional] -> the indent of the first line |
|
hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
|
dropcaplines [optional] -> height (in lines) of the caps if used |
|
dropcapoffset [optional] -> offset of the caps if used |
|
"charstyle" [optional] -> char style to use |
|
</source> |
<translation type="obsolete">createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:"name" [required] -> specifies the name of the paragraphstyle to createlinespacingmode [optional] -> specifies the linespacing mode; possible modes are:fixed linespacing: 0automatic linespacing: 1baseline grid linespacing: 2linespacing [optional] -> specifies the linespacing if using fixed linespacingalignment [optional] -> specifies the alignment of the paragraph-> left: 0-> center: 1-> right: 2-> justify: 3-> extend: 4leftmargin [optional], rightmargin [optional] -> specify the margingapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphsfirstindent [optional] -> the indent of the first linehasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -> height (in lines) of the caps if useddropcapoffset [optional] -> offset of the caps if used"charstyle" [optional] -> char style to use</translation> |
</message> |
<message> |
<source>getTextDistances(["name"]) -> tuple |
|
Returns the text distances of the text frame "name" expressed in points. The |
distances are returned as a tuple like (left, right, top, bottom). If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextDistances(["name"]) -> tupleReturns the text distances of the text frame "name" expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If "name"is not given the currently selected item is used.</translation> |
</message> |
<message> |
<source>setTextDistances(left, right, top, bottom, ["name"]) |
|
Sets the text distances of the text frame "name" to the values "left" |
"right", "top" and "bottom". If "name" is not given the currently |
selected item is used. |
|
May throw ValueError if any of the distances are out of bounds (must be positive). |
</source> |
<translation type="obsolete">setTextDistances(left, right, top, bottom, ["name"])Sets the text distances of the text frame "name" to the values "left""right", "top" and "bottom". If "name" is not given the currentlyselected item is used.May throw ValueError if any of the distances are out of bounds (must be positive).</translation> |
</message> |
</context> |
<context> |
<name>AIPlug</name> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="342"/> |
<source>Importing: %1</source> |
<translation>Importing: %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="345"/> |
<source>Analyzing File:</source> |
<translation>Analysing File:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="2348"/> |
<source>Group%1</source> |
<translation>Group%1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="3448"/> |
<source>Generating Items</source> |
<translation>Generating Items</translation> |
</message> |
</context> |
<context> |
<name>About</name> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="300"/> |
<source>Contributions from:</source> |
<translation>Contributions from:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="182"/> |
<source>&About</source> |
<translation>&About</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="195"/> |
<source>A&uthors</source> |
<translation>A&uthors</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="209"/> |
<source>&Translations</source> |
<translation>&Translations</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="220"/> |
<source>&Online</source> |
<translation>&Online</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="259"/> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="292"/> |
<source>Development Team:</source> |
<translation>Development Team:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="302"/> |
<source>Official Documentation:</source> |
<translation>Official Documentation:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="306"/> |
<source>Other Documentation:</source> |
<translation>Other Documentation:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="340"/> |
<source>Homepage</source> |
<translation>Homepage</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="342"/> |
<source>Online Reference</source> |
<translation>Online Reference</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="346"/> |
<source>Bugs and Feature Requests</source> |
<translation>Bugs and Feature Requests</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="350"/> |
<source>Mailing List</source> |
<translation>Mailing List</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="324"/> |
<source>Official Translations and Translators:</source> |
<translation>Official Translations and Translators:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="326"/> |
<source>Previous Translation Contributors:</source> |
<translation>Previous Translation Contributors:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="97"/> |
<source>About Scribus %1</source> |
<translation>About Scribus %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="344"/> |
<source>Wiki</source> |
<translation>Wiki</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="125"/> |
<source>%1 %2 %3</source> |
<translation>%1 %2 %3</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="133"/> |
<source>%3-%2-%1 %4 %5</source> |
<translation>%3-%2-%1 %4 %5</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="177"/> |
<source>Using Ghostscript version %1</source> |
<translation>Using Ghostscript version %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="179"/> |
<source>No Ghostscript version available</source> |
<translation>No Ghostscript version available</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source>Build ID:</source> |
<translation>Build ID:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="294"/> |
<source>Mac OS&#174; X Aqua Port:</source> |
<translation>Mac OS&#174; X Aqua Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="298"/> |
<source>Windows&#174; Port:</source> |
<translation>Windows&#174; Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="312"/> |
<source>Tango Project Icons:</source> |
<translation>Tango Project Icons:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="223"/> |
<source>&Updates</source> |
<translation>&Updates</translation> |
</message> |
<message> |
<source>Check for &Updates</source> |
<translation type="obsolete">Check for &Updates</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="271"/> |
<source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
<translation>Check for updates to Scribus. No data from your machine will be transferred off it.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="296"/> |
<source>OS/2&#174;/eComStation&#8482; Port:</source> |
<translation>OS/2&#174;/eComStation&#8482; Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="310"/> |
<source>Splash Screen:</source> |
<translation>Splash Screen:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="267"/> |
<source>This panel shows the version, build date and compiled in library support in Scribus.</source> |
<translation>This panel shows the version, build date and compiled in library support in Scribus.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="268"/> |
<source>The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support.Last Letter is the renderer C=cairo or Q=Qt</source> |
<translation>The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support.Last Letter is the renderer C=cairo or Q=Qt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="269"/> |
<source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source> |
<translation>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="270"/> |
<source>The Windows version does not use fontconfig or CUPS libraries.</source> |
<translation>The Windows version does not use fontconfig or CUPS libraries.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></source> |
<translation><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source>Scribus Version</source> |
<translation>Scribus Version</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="227"/> |
<location filename="../../../scribus/ui/about.cpp" line="649"/> |
<source>Check for Updates</source> |
<translation>Check for Updates</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="647"/> |
<source>Abort Update Check</source> |
<translation>Abort Update Check</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="348"/> |
<source>Developer Blog</source> |
<translation>Developer Blog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="234"/> |
<source>&Licence</source> |
<translation>&Licence</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="243"/> |
<source>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</source> |
<translation>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="304"/> |
<source>Doc Translators:</source> |
<translation>Doc Translators:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="308"/> |
<source>Webmasters:</source> |
<translation>Webmasters:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="443"/> |
<location filename="../../../scribus/ui/about.cpp" line="557"/> |
<location filename="../../../scribus/ui/about.cpp" line="624"/> |
<source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source> |
<translation>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</translation> |
</message> |
</context> |
<context> |
<name>AboutPlugins</name> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="68"/> |
<source>Filename:</source> |
<translation>Filename:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="69"/> |
<source>Version:</source> |
<translation>Version:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="72"/> |
<source>Enabled:</source> |
<translation>Enabled:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="73"/> |
<source>Release Date:</source> |
<translation>Release Date:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="80"/> |
<source>Description:</source> |
<translation>Description:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="81"/> |
<source>Author(s):</source> |
<translation>Author(s):</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="82"/> |
<source>Copyright:</source> |
<translation>Copyright:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="83"/> |
<source>License:</source> |
<translation>License:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.ui" line="13"/> |
<source>Scribus: About Plug-ins</source> |
<translation>Scribus: About Plug-ins</translation> |
</message> |
</context> |
<context> |
<name>ActionManager</name> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1493"/> |
<source>&Image Effects</source> |
<translation>&Image Effects</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1494"/> |
<source>&Tabulators...</source> |
<translation>&Tabulators...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1419"/> |
<source>&New</source> |
<translation>&New</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1421"/> |
<source>&Open...</source> |
<translation>&Open...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1422"/> |
<source>&Close</source> |
<translation>&Close</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1423"/> |
<source>&Save</source> |
<translation>&Save</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1424"/> |
<source>Save &As...</source> |
<translation>Save &As...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1425"/> |
<source>Re&vert to Saved</source> |
<translation>Re&vert to Saved</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1426"/> |
<source>Collect for O&utput...</source> |
<translation>Collect for O&utput...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1427"/> |
<source>Get Text...</source> |
<translation>Get Text...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1428"/> |
<source>Append &Text...</source> |
<translation>Append &Text...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1429"/> |
<source>Get Image...</source> |
<translation>Get Image...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1432"/> |
<source>Save &Text...</source> |
<translation>Save &Text...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1434"/> |
<source>Save as P&DF...</source> |
<translation>Save as P&DF...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1436"/> |
<source>Document &Setup...</source> |
<translation>Document &Setup...</translation> |
</message> |
<message> |
<source>P&references 150...</source> |
<translation type="obsolete">P&references 150...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1439"/> |
<source>&Print...</source> |
<translation>&Print...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1441"/> |
<source>&Quit</source> |
<translation>&Quit</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1443"/> |
<source>&Undo</source> |
<translation>&Undo</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1444"/> |
<source>&Redo</source> |
<translation>&Redo</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1445"/> |
<source>&Item Action Mode</source> |
<translation>&Item Action Mode</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1446"/> |
<source>Cu&t</source> |
<translation>Cu&t</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1447"/> |
<location filename="../../../scribus/actionmanager.cpp" line="1449"/> |
<source>&Copy</source> |
<translation>&Copy</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1448"/> |
<location filename="../../../scribus/actionmanager.cpp" line="1450"/> |
<source>&Paste</source> |
<translation>&Paste</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1454"/> |
<source>Select &All</source> |
<translation>Select &All</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1456"/> |
<source>&Deselect All</source> |
<translation>&Deselect All</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1457"/> |
<source>&Search/Replace...</source> |
<translation>&Search/Replace...</translation> |
</message> |
<message> |
<source>C&olors...</source> |
<translation type="obsolete">C&olours...</translation> |
</message> |
<message> |
<source>Gradients...</source> |
<translation type="obsolete">Gradients...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1465"/> |
<source>&Master Pages...</source> |
<translation>&Master Pages...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1438"/> |
<source>P&references...</source> |
<translation>P&references...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1473"/> |
<source>%1 pt</source> |
<translation>%1 pt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1475"/> |
<source>&Other...</source> |
<translation>&Other...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1476"/> |
<source>&Left</source> |
<translation>&Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1477"/> |
<source>&Center</source> |
<translation>&Centre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1478"/> |
<source>&Right</source> |
<translation>&Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1479"/> |
<source>&Block</source> |
<translation>&Block</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1480"/> |
<source>&Forced</source> |
<translation>&Forced</translation> |
</message> |
<message> |
<source>&%1 %</source> |
<translation type="obsolete">&%1 %</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1482"/> |
<source>&Normal</source> |
<translation>&Normal</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1483"/> |
<source>&Underline</source> |
<translation>&Underline</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1484"/> |
<source>Underline &Words</source> |
<translation>Underline &Words</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1485"/> |
<source>&Strike Through</source> |
<translation>&Strike Through</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1486"/> |
<source>&All Caps</source> |
<translation>&All Caps</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1487"/> |
<source>Small &Caps</source> |
<translation>Small &Caps</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1488"/> |
<source>Su&perscript</source> |
<translation>Su&perscript</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1489"/> |
<source>Su&bscript</source> |
<translation>Su&bscript</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1497"/> |
<source>D&uplicate</source> |
<translation>D&uplicate</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1498"/> |
<source>&Multiple Duplicate</source> |
<translation>&Multiple Duplicate</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1499"/> |
<source>&Transform</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1500"/> |
<source>&Delete</source> |
<translation>&Delete</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1501"/> |
<source>&Group</source> |
<translation>&Group</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1502"/> |
<source>&Ungroup</source> |
<translation>&Ungroup</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1504"/> |
<source>Is &Locked</source> |
<translation>Is &Locked</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1505"/> |
<source>Si&ze is Locked</source> |
<translation>Si&ze is Locked</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1509"/> |
<source>Lower to &Bottom</source> |
<translation>Lower to &Bottom</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1510"/> |
<source>Raise to &Top</source> |
<translation>Raise to &Top</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1511"/> |
<source>&Lower</source> |
<translation>&Lower</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1512"/> |
<source>&Raise</source> |
<translation>&Raise</translation> |
</message> |
<message> |
<source>Send to S&crapbook</source> |
<translation type="obsolete">Send to S&crapbook</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1515"/> |
<source>&Attributes...</source> |
<translation>&Attributes...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1517"/> |
<source>I&mage Visible</source> |
<translation>I&mage Visible</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1519"/> |
<source>Insert Rows...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1520"/> |
<source>Insert Columns...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1521"/> |
<source>Delete Rows</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1522"/> |
<source>Delete Columns</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1523"/> |
<source>Merge Cells</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1524"/> |
<source>Split Cells...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1525"/> |
<source>Set Row Heights...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1526"/> |
<source>Set Column Widths...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1527"/> |
<source>Distribute Rows Evenly</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1528"/> |
<source>Distribute Columns Evenly</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1529"/> |
<source>Adjust Frame to Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1530"/> |
<source>Adjust Table to Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1531"/> |
<source>Adjust Frame Height to Text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1534"/> |
<source>Embed Image</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1539"/> |
<source>Is PDF &Bookmark</source> |
<translation>Is PDF &Bookmark</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1540"/> |
<source>Is PDF A&nnotation</source> |
<translation>Is PDF A&nnotation</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1541"/> |
<source>Annotation P&roperties</source> |
<translation>Annotation P&roperties</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1542"/> |
<source>Field P&roperties</source> |
<translation>Field P&roperties</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1543"/> |
<source>&Edit Shape...</source> |
<translation>&Edit Shape...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1544"/> |
<source>&Attach Text to Path</source> |
<translation>&Attach Text to Path</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1545"/> |
<source>&Detach Text from Path</source> |
<translation>&Detach Text from Path</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1546"/> |
<source>&Combine Polygons</source> |
<translation>&Combine Polygons</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1547"/> |
<source>Split &Polygons</source> |
<translation>Split &Polygons</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1548"/> |
<source>&Bezier Curve</source> |
<translation>&Bezier Curve</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1549"/> |
<source>&Image Frame</source> |
<translation>&Image Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1551"/> |
<source>&Polygon</source> |
<translation>&Polygon</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1552"/> |
<source>&Text Frame</source> |
<translation>&Text Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1553"/> |
<source>&Symbol</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1554"/> |
<source>Unweld items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1555"/> |
<source>Weld items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1556"/> |
<source>Edit weld item</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1559"/> |
<source>&Frames...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1560"/> |
<source>&Glyph...</source> |
<translation>&Glyph...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1561"/> |
<source>Sample Text</source> |
<translation>Sample Text</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1563"/> |
<source>Anchor Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1564"/> |
<source>Variable Text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1565"/> |
<source>Reference to Item</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1566"/> |
<source>Reference to Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1567"/> |
<source>Foot/Endnote</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1569"/> |
<source>Edit Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1570"/> |
<source>Update Marks</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1573"/> |
<source>&Insert...</source> |
<translation>&Insert...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1574"/> |
<source>Im&port...</source> |
<translation>Im&port...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1575"/> |
<source>&Delete...</source> |
<translation>&Delete...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1576"/> |
<source>&Copy...</source> |
<translation>&Copy...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1577"/> |
<source>&Move...</source> |
<translation>&Move...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1578"/> |
<source>&Apply Master Page...</source> |
<translation>&Apply Master Page...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1580"/> |
<source>Manage &Guides...</source> |
<translation>Manage &Guides...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1586"/> |
<source>&50%</source> |
<translation>&50%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1587"/> |
<source>&75%</source> |
<translation>&75%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1588"/> |
<source>&100%</source> |
<translation>&100%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1589"/> |
<source>&200%</source> |
<translation>&200%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1592"/> |
<source>Show &Margins</source> |
<translation>Show &Margins</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1594"/> |
<source>Show &Frames</source> |
<translation>Show &Frames</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1596"/> |
<source>Show &Images</source> |
<translation>Show &Images</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1597"/> |
<source>Show &Grid</source> |
<translation>Show &Grid</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1598"/> |
<source>Show G&uides</source> |
<translation>Show G&uides</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1600"/> |
<source>Show &Baseline Grid</source> |
<translation>Show &Baseline Grid</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1601"/> |
<source>Show &Text Chain</source> |
<translation>Show &Text Chain</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1605"/> |
<source>Sn&ap to Grid</source> |
<translation>Sn&ap to Grid</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1606"/> |
<source>Sna&p to Guides</source> |
<translation>Sna&p to Guides</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1607"/> |
<source>Snap to Items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1612"/> |
<source>&Properties</source> |
<translation>&Properties</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1614"/> |
<source>&Scrapbook</source> |
<translation>&Scrapbook</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1615"/> |
<source>&Layers</source> |
<translation>&Layers</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1617"/> |
<source>&Bookmarks</source> |
<translation>&Bookmarks</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1618"/> |
<source>&Measurements</source> |
<translation>&Measurements</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1619"/> |
<source>Action &History</source> |
<translation>Action &History</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1620"/> |
<source>Preflight &Verifier</source> |
<translation>Preflight &Verifier</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1622"/> |
<source>Symbols</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1623"/> |
<source>Inline Frames</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1624"/> |
<source>&Tools</source> |
<translation>&Tools</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1625"/> |
<source>P&DF Tools</source> |
<translation>P&DF Tools</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1628"/> |
<source>Select Item</source> |
<translation>Select Item</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1629"/> |
<source>Rotate Item</source> |
<translation>Rotate Item</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1630"/> |
<source>Zoom in or out</source> |
<translation>Zoom in or out</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1631"/> |
<source>Zoom in</source> |
<translation>Zoom in</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1632"/> |
<source>Zoom out</source> |
<translation>Zoom out</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1633"/> |
<source>Edit Contents of Frame</source> |
<translation>Edit Contents of Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1635"/> |
<source>Link Text Frames</source> |
<translation>Link Text Frames</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1636"/> |
<source>Unlink Text Frames</source> |
<translation>Unlink Text Frames</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1637"/> |
<source>Unlink Text Frame with Text Copy</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1638"/> |
<source>Unlink Text Frame with Text Cut</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1639"/> |
<source>&Eye Dropper</source> |
<translation>&Eye Dropper</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1640"/> |
<source>Copy Item Properties</source> |
<translation>Copy Item Properties</translation> |
</message> |
<message> |
<source>&Manage Pictures</source> |
<translation type="obsolete">&Manage Pictures</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1670"/> |
<source>&Hyphenate Text</source> |
<translation>&Hyphenate Text</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1672"/> |
<source>&Generate Table Of Contents</source> |
<translation>&Generate Table Of Contents</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1680"/> |
<source>&About Scribus</source> |
<translation>&About Scribus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1682"/> |
<source>About &Qt</source> |
<translation>About &Qt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1683"/> |
<source>Toolti&ps</source> |
<translation>Toolti&ps</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1685"/> |
<source>Scribus &Manual...</source> |
<translation>Scribus &Manual...</translation> |
</message> |
<message> |
<source>Smart &Hyphen</source> |
<translation type="obsolete">Smart &Hyphen</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1705"/> |
<source>Non Breaking &Space</source> |
<translation>Non Breaking &Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1706"/> |
<source>Page &Number</source> |
<translation>Page &Number</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1713"/> |
<source>Copyright</source> |
<translation>Copyright</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1714"/> |
<source>Registered Trademark</source> |
<translation>Registered Trademark</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1715"/> |
<source>Trademark</source> |
<translation>Trademark</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1717"/> |
<source>Bullet</source> |
<translation>Bullet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1719"/> |
<source>Em Dash</source> |
<translation>Em Dash</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1720"/> |
<source>En Dash</source> |
<translation>En Dash</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1721"/> |
<source>Figure Dash</source> |
<translation>Figure Dash</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1722"/> |
<source>Quotation Dash</source> |
<translation>Quotation Dash</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1693"/> |
<source>Toggle Palettes</source> |
<translation>Toggle Palettes</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1491"/> |
<source>S&hadow</source> |
<translation>S&hadow</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1536"/> |
<source>&Low Resolution</source> |
<translation>&Low Resolution</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1537"/> |
<source>&Normal Resolution</source> |
<translation>&Normal Resolution</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1538"/> |
<source>&Full Resolution</source> |
<translation>&Full Resolution</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1458"/> |
<source>Edit Image...</source> |
<translation>Edit Image...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1518"/> |
<source>&Update Image</source> |
<translation>&Update Image</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1532"/> |
<source>Adjust Frame to Image</source> |
<translation>Adjust Frame to Image</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1535"/> |
<source>Extended Image Properties</source> |
<translation>Extended Image Properties</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1602"/> |
<source>Show Control Characters</source> |
<translation>Show Control Characters</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1621"/> |
<source>&Align and Distribute</source> |
<translation>&Align and Distribute</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1634"/> |
<source>Edit Text...</source> |
<translation>Edit Text...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1708"/> |
<source>New Line</source> |
<translation>New Line</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1709"/> |
<source>Frame Break</source> |
<translation>Frame Break</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1710"/> |
<source>Column Break</source> |
<translation>Column Break</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1704"/> |
<source>Non Breaking Dash</source> |
<translation>Non Breaking Dash</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1694"/> |
<source>Toggle Guides</source> |
<translation>Toggle Guides</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1616"/> |
<source>&Arrange Pages</source> |
<translation>&Arrange Pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1671"/> |
<source>Dehyphenate Text</source> |
<translation>Dehyphenate Text</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1581"/> |
<source>Manage Page Properties...</source> |
<translation>Manage Page Properties...</translation> |
</message> |
<message> |
<source>Rulers relative to Page</source> |
<translation type="obsolete">Rulers relative to Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1440"/> |
<source>Print Previe&w</source> |
<translation>Print Previe&w</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1466"/> |
<source>&JavaScripts...</source> |
<translation>&JavaScripts...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1579"/> |
<source>Convert to Master Page...</source> |
<translation>Convert to Master Page...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1676"/> |
<source>&Cascade</source> |
<translation>&Cascade</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1677"/> |
<source>&Tile</source> |
<translation>&Tile</translation> |
</message> |
<message> |
<source>&About Plug-ins</source> |
<translation type="obsolete">&About Plug-ins</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1516"/> |
<source>More Info...</source> |
<translation>More Info...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1506"/> |
<source>&Printing Enabled</source> |
<translation>&Printing Enabled</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1452"/> |
<source>Paste Image from Clipboard</source> |
<translation type="unfinished">Paste Image from Clipboard</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1460"/> |
<source>Colors and Fills...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1463"/> |
<source>Marks...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1464"/> |
<source>Notes Styles...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1503"/> |
<source>Adjust Group</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1507"/> |
<source>&Flip Horizontally</source> |
<translation>&Flip Horizontally</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1508"/> |
<source>&Flip Vertically</source> |
<translation>&Flip Vertically</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1513"/> |
<source>Patterns</source> |
<translation type="unfinished">Patterns</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1514"/> |
<source>Inline Items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1603"/> |
<source>Show Rulers</source> |
<translation>Show Rulers</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1613"/> |
<source>&Outline</source> |
<comment>Document Outline Palette</comment> |
<translation>&Outline</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1716"/> |
<source>Solidus</source> |
<translation>Solidus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1718"/> |
<source>Middle Dot</source> |
<translation>Middle Dot</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1743"/> |
<source>En Space</source> |
<translation>En Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1744"/> |
<source>Em Space</source> |
<translation>Em Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1745"/> |
<source>Thin Space</source> |
<translation>Thin Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1746"/> |
<source>Thick Space</source> |
<translation>Thick Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1747"/> |
<source>Mid Space</source> |
<translation>Mid Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1748"/> |
<source>Hair Space</source> |
<translation>Hair Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1750"/> |
<source>ff</source> |
<translation>ff</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1751"/> |
<source>fi</source> |
<translation>fi</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1752"/> |
<source>fl</source> |
<translation>fl</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1753"/> |
<source>ffi</source> |
<translation>ffi</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1754"/> |
<source>ffl</source> |
<translation>ffl</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1755"/> |
<source>ft</source> |
<translation>ft</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1756"/> |
<source>st</source> |
<translation>st</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1462"/> |
<source>S&tyles...</source> |
<translation>S&tyles...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1490"/> |
<source>&Outline</source> |
<comment>type effect</comment> |
<translation>&Outline</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1550"/> |
<source>&Outlines</source> |
<comment>Convert to oulines</comment> |
<translation>&Outlines</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1451"/> |
<source>Paste (&Absolute)</source> |
<translation>Paste (&Absolute)</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1453"/> |
<source>C&lear</source> |
<translation>C&lear</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1655"/> |
<source>Insert PDF Push Button</source> |
<translation>Insert PDF Push Button</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1657"/> |
<source>Insert PDF Text Field</source> |
<translation>Insert PDF Text Field</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1658"/> |
<source>Insert PDF Check Box</source> |
<translation>Insert PDF Check Box</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1659"/> |
<source>Insert PDF Combo Box</source> |
<translation>Insert PDF Combo Box</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1660"/> |
<source>Insert PDF List Box</source> |
<translation>Insert PDF List Box</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1661"/> |
<source>Insert Text Annotation</source> |
<translation>Insert Text Annotation</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1662"/> |
<source>Insert Link Annotation</source> |
<translation>Insert Link Annotation</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1433"/> |
<source>Save as &EPS...</source> |
<translation>Save as &EPS...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1599"/> |
<source>Show Text Frame Columns</source> |
<translation>Show Text Frame Columns</translation> |
</message> |
<message> |
<source>&Frame...</source> |
<translation type="obsolete">&Frame...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1591"/> |
<source>Preview Mode</source> |
<translation>Preview Mode</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1595"/> |
<source>Show Layer Indicators</source> |
<translation>Show Layer Indicators</translation> |
</message> |
<message> |
<source>Patterns...</source> |
<translation type="obsolete">Patterns...</translation> |
</message> |
<message> |
<source>Send to Patterns</source> |
<translation type="obsolete">Send to Patterns</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1562"/> |
<source>Sticky Tools</source> |
<translation>Sticky Tools</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1584"/> |
<source>&Fit to Height</source> |
<translation>&Fit to Height</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1585"/> |
<source>Fit to Width</source> |
<translation>Fit to Width</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1593"/> |
<source>Show Bleeds</source> |
<translation>Show Bleeds</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1648"/> |
<source>Insert Arc</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1649"/> |
<source>Insert Spiral</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1651"/> |
<source>Insert Calligraphic Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1656"/> |
<source>Insert PDF Radio Button</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1664"/> |
<source>Insert 3D Annotation</source> |
<translation>Insert 3D Annotation</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1673"/> |
<source>&Update Document</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1703"/> |
<source>Soft &Hyphen</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1711"/> |
<source>&Zero Width Space</source> |
<translation>&Zero Width Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1712"/> |
<source>Zero Width NB Space</source> |
<translation>Zero Width NB Space</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1724"/> |
<source>Apostrophe</source> |
<comment>Unicode 0x0027</comment> |
<translation>Apostrophe</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1725"/> |
<source>Straight Double</source> |
<comment>Unicode 0x0022</comment> |
<translation>Straight Double</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1726"/> |
<source>Single Left</source> |
<comment>Unicode 0x2018</comment> |
<translation>Single Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1727"/> |
<source>Single Right</source> |
<comment>Unicode 0x2019</comment> |
<translation>Single Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1728"/> |
<source>Double Left</source> |
<comment>Unicode 0x201C</comment> |
<translation>Double Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1729"/> |
<source>Double Right</source> |
<comment>Unicode 0x201D</comment> |
<translation>Double Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1730"/> |
<source>Single Reversed</source> |
<comment>Unicode 0x201B</comment> |
<translation>Single Reversed</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1731"/> |
<source>Double Reversed</source> |
<comment>Unicode 0x201F</comment> |
<translation>Double Reversed</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1732"/> |
<source>Single Left Guillemet</source> |
<comment>Unicode 0x2039</comment> |
<translation>Single Left Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1733"/> |
<source>Single Right Guillemet</source> |
<comment>Unicode 0x203A</comment> |
<translation>Single Right Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1734"/> |
<source>Double Left Guillemet</source> |
<comment>Unicode 0x00AB</comment> |
<translation>Double Left Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1735"/> |
<source>Double Right Guillemet</source> |
<comment>Unicode 0x00BB</comment> |
<translation>Double Right Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1736"/> |
<source>Low Single Comma</source> |
<comment>Unicode 0x201A</comment> |
<translation>Low Single Comma</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1737"/> |
<source>Low Double Comma</source> |
<comment>Unicode 0x201E</comment> |
<translation>Low Double Comma</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1738"/> |
<source>CJK Single Left</source> |
<comment>Unicode 0x300C</comment> |
<translation>CJK Single Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1739"/> |
<source>CJK Single Right</source> |
<comment>Unicode 0x300D</comment> |
<translation>CJK Single Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1740"/> |
<source>CJK Double Left</source> |
<comment>Unicode 0x300E</comment> |
<translation>CJK Double Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1741"/> |
<source>CJK Double Right</source> |
<comment>Unicode 0x300F</comment> |
<translation>CJK Double Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1590"/> |
<source>&400%</source> |
<translation>&400%</translation> |
</message> |
<message> |
<source>Edit Latex Source...</source> |
<translation type="obsolete">Edit Latex Source...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1642"/> |
<source>Insert &Text Frame</source> |
<translation>Insert &Text Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1643"/> |
<source>Insert &Image Frame</source> |
<translation>Insert &Image Frame</translation> |
</message> |
<message> |
<source>Insert &Latex Frame</source> |
<translation type="obsolete">Insert &Latex Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1645"/> |
<source>Insert T&able</source> |
<translation>Insert T&able</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1646"/> |
<source>Insert &Shape</source> |
<translation>Insert &Shape</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1647"/> |
<source>Insert &Polygon</source> |
<translation>Insert &Polygon</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1650"/> |
<source>Insert &Line</source> |
<translation>Insert &Line</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1652"/> |
<source>Insert &Bezier Curve</source> |
<translation>Insert &Bezier Curve</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1653"/> |
<source>Insert &Freehand Line</source> |
<translation>Insert &Freehand Line</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1686"/> |
<source>Scribus Homepage</source> |
<translation>Scribus Homepage</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1687"/> |
<source>Scribus Online Documentation</source> |
<translation>Scribus Online Documentation</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1688"/> |
<source>Scribus Wiki</source> |
<translation>Scribus Wiki</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1689"/> |
<source>Getting Started with Scribus</source> |
<translation>Getting Started with Scribus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1608"/> |
<source>Show Context Menu</source> |
<translation>Show Context Menu</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1669"/> |
<source>&Manage Images</source> |
<translation>&Manage Images</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1681"/> |
<source>&About Plugins</source> |
<translation>&About Plugins</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1695"/> |
<source>Insert Unicode Character Begin Sequence</source> |
<translation>Insert Unicode Character Begin Sequence</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1430"/> |
<source>Get Vector File...</source> |
<translation>Get Vector File...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1455"/> |
<source>Advanced Select All...</source> |
<translation>Advanced Select All...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1459"/> |
<source>Edit Source...</source> |
<translation>Edit Source...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1461"/> |
<source>Replace Colors...</source> |
<translation>Replace Colours...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1604"/> |
<source>Rulers Relative to Page</source> |
<translation>Rulers Relative to Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1644"/> |
<source>Insert &Render Frame</source> |
<translation>Insert &Render Frame</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1690"/> |
<source>Check for Updates</source> |
<translation>Check for Updates</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1707"/> |
<source>Number of Pages</source> |
<translation>Number of Pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1533"/> |
<source>Adjust Image to Frame</source> |
<translation>Adjust Image to Frame</translation> |
</message> |
<message> |
<source>Move/Resize value indicator</source> |
<translation type="obsolete">Move/Resize value indicator</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1882"/> |
<source>File</source> |
<translation>File</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1882"/> |
<source>&File</source> |
<translation>&File</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1884"/> |
<source>Edit</source> |
<translation>Edit</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1884"/> |
<source>&Edit</source> |
<translation>&Edit</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1886"/> |
<source>Style</source> |
<translation>Style</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1886"/> |
<source>&Style</source> |
<translation>&Style</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1888"/> |
<source>Item</source> |
<translation>Item</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1888"/> |
<source>&Item</source> |
<translation>&Item</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1890"/> |
<source>Insert</source> |
<translation>Insert</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1890"/> |
<source>I&nsert</source> |
<translation>I&nsert</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1892"/> |
<source>Page</source> |
<translation>Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1892"/> |
<source>&Page</source> |
<translation>&Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1894"/> |
<source>View</source> |
<translation>View</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1894"/> |
<source>&View</source> |
<translation>&View</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1896"/> |
<source>Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1896"/> |
<source>&Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1898"/> |
<source>Extras</source> |
<translation>Extras</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1898"/> |
<source>E&xtras</source> |
<translation>E&xtras</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1900"/> |
<source>Windows</source> |
<translation>Windows</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1900"/> |
<source>&Windows</source> |
<translation>&Windows</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1902"/> |
<source>Help</source> |
<translation>Help</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1902"/> |
<source>&Help</source> |
<translation>&Help</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2255"/> |
<source>Plugin Menu Items</source> |
<translation>Plugin Menu Items</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2257"/> |
<source>Others</source> |
<translation>Others</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2259"/> |
<source>Unicode Characters</source> |
<translation>Unicode Characters</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1684"/> |
<source>Move/Resize Value Indicator</source> |
<translation>Move/Resize Value Indicator</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1420"/> |
<source>New &from Template...</source> |
<translation>New &from Template...</translation> |
</message> |
</context> |
<context> |
<name>AdjustCmsDialog</name> |
<message> |
<location filename="../../../scribus/ui/adjustcmsdialog.cpp" line="16"/> |
<source>CMS Settings</source> |
<translation>CMS Settings</translation> |
</message> |
</context> |
<context> |
<name>AlignDistribute</name> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="14"/> |
<source>DockWidget</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="25"/> |
<source>Align</source> |
<translation>Align</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="54"/> |
<source>&Selected Guide:</source> |
<translation>&Selected Guide:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="67"/> |
<source>&Relative To:</source> |
<translation>&Relative To:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="86"/> |
<source>&Align Sides By:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="142"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="149"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="156"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="163"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="170"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="177"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="184"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="191"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="198"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="205"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="275"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="282"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="289"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="296"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="303"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="313"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="320"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="330"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="337"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="347"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="354"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="361"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="371"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="378"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="385"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="392"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="566"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="573"/> |
<source>...</source> |
<translation>...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="249"/> |
<source>Distribute</source> |
<translation>Distribute</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="439"/> |
<source>&Distance:</source> |
<translation>&Distance:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="503"/> |
<source>Reverse Distribution</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="545"/> |
<source>Swap</source> |
<translation>Swap</translation> |
</message> |
</context> |
<context> |
<name>AlignDistributePalette</name> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="93"/> |
<source>Align and Distribute</source> |
<translation>Align and Distribute</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="96"/> |
<source>&Relative to:</source> |
<translation>&Relative to:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="99"/> |
<source>First Selected</source> |
<translation>First Selected</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="100"/> |
<source>Last Selected</source> |
<translation>Last Selected</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="101"/> |
<source>Page</source> |
<translation>Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="102"/> |
<source>Margins</source> |
<translation>Margins</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="104"/> |
<source>Selection</source> |
<translation>Selection</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="108"/> |
<source>&Align Sides By:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="121"/> |
<source>Align bottoms</source> |
<translation>Align bottoms</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="123"/> |
<source>Align right sides</source> |
<translation>Align right sides</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="127"/> |
<source>Center on vertical axis</source> |
<translation>Centre on vertical axis</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="129"/> |
<source>Align left sides</source> |
<translation>Align left sides</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="131"/> |
<source>Center on horizontal axis</source> |
<translation>Centre on horizontal axis</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="135"/> |
<source>Align tops</source> |
<translation>Align tops</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="155"/> |
<source>Distribute left sides equidistantly</source> |
<translation>Distribute left sides equidistantly</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="147"/> |
<source>Distribute bottoms equidistantly</source> |
<translation>Distribute bottoms equidistantly</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="149"/> |
<source>Distribute centers equidistantly horizontally</source> |
<translation>Distribute centres equidistantly horizontally</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="157"/> |
<source>Distribute centers equidistantly vertically</source> |
<translation>Distribute centres equidistantly vertically</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="159"/> |
<source>Distribute tops equidistantly</source> |
<translation>Distribute tops equidistantly</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="145"/> |
<source>Distribute right sides equidistantly</source> |
<translation>Distribute right sides equidistantly</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="103"/> |
<source>Guide</source> |
<translation>Guide</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="111"/> |
<source>Move</source> |
<translation type="unfinished">Move</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="112"/> |
<source>Resize</source> |
<translation type="unfinished">Resize</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="113"/> |
<source><qt>When aligning one side of an item do one of the following:<ul><li>Always move the other side too (preserve existing width and height)</li><li>Keep the other side fixed (resize the item instead of moving it) whenever possible</li></ul></qt></source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="137"/> |
<source>&Selected Guide:</source> |
<translation>&Selected Guide:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="169"/> |
<source>&Distance:</source> |
<translation>&Distance:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="170"/> |
<source>Distribute the items with the distance specified</source> |
<translation>Distribute the items with the distance specified</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="172"/> |
<source>When distributing by a set distance, reverse the direction of the distribution of items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="174"/> |
<source>None Selected</source> |
<translation>None Selected</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="176"/> |
<source>Swap items to the left</source> |
<translation>Swap items to the left</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="177"/> |
<source>Swap items to the right</source> |
<translation>Swap items to the right</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="477"/> |
<source>Y: %1%2</source> |
<translation>Y: %1%2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="485"/> |
<source>X: %1%2</source> |
<translation>X: %1%2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="117"/> |
<source>Align right sides of items to left side of anchor</source> |
<translation>Align right sides of items to left side of anchor</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="119"/> |
<source>Align left sides of items to right side of anchor</source> |
<translation>Align left sides of items to right side of anchor</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="125"/> |
<source>Align tops of items to bottom of anchor</source> |
<translation>Align tops of items to bottom of anchor</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="133"/> |
<source>Align bottoms of items to top of anchor</source> |
<translation>Align bottoms of items to top of anchor</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="140"/> |
<source>Make horizontal gaps between items equal</source> |
<translation>Make horizontal gaps between items equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="142"/> |
<source>Make horizontal gaps between items equal to the value specified</source> |
<translation>Make horizontal gaps between items equal to the value specified</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="151"/> |
<source>Make vertical gaps between items equal</source> |
<translation>Make vertical gaps between items equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="153"/> |
<source>Make vertical gaps between items equal to the value specified</source> |
<translation>Make vertical gaps between items equal to the value specified</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="161"/> |
<source>Make horizontal gaps between items and sides of page equal</source> |
<translation>Make horizontal gaps between items and sides of page equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="167"/> |
<source>Make vertical gaps between items and the top and bottom of page margins equal</source> |
<translation>Make vertical gaps between items and the top and bottom of page margins equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="165"/> |
<source>Make horizontal gaps between items and sides of page margins equal</source> |
<translation>Make horizontal gaps between items and sides of page margins equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="163"/> |
<source>Make vertical gaps between items and the top and bottom of page equal</source> |
<translation>Make vertical gaps between items and the top and bottom of page equal</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="94"/> |
<source>Align</source> |
<translation>Align</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="95"/> |
<source>Distribute</source> |
<translation>Distribute</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="106"/> |
<source><qt>Align relative to the:<ul><li>First selected item</li><li>Second Selected Item</li><li>The current page</li><li>The margins of the current page</li><li>A Guide</li><li>The selection</ul></qt></source> |
<translation><qt>Align relative to the:<ul><li>First selected item</li><li>Second Selected Item</li><li>The current page</li><li>The margins of the current page</li><li>A Guide</li><li>The selection</ul></qt></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="115"/> |
<source>The location of the selected guide to align to</source> |
<translation>The location of the selected guide to align to</translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="110"/> |
<source>Align Text Left</source> |
<translation>Align Text Left</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="111"/> |
<source>Align Text Right</source> |
<translation>Align Text Right</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="112"/> |
<source>Align Text Center</source> |
<translation>Align Text Centre</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="113"/> |
<source>Align Text Justified</source> |
<translation>Align Text Justified</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="114"/> |
<source>Align Text Forced Justified</source> |
<translation>Align Text Forced Justified</translation> |
</message> |
</context> |
<context> |
<name>Annot</name> |
<message> |
<source>Field Properties</source> |
<translation type="obsolete">Field Properties</translation> |
</message> |
<message> |
<source>Type:</source> |
<translation type="obsolete">Type:</translation> |
</message> |
<message> |
<source>Button</source> |
<translation type="obsolete">Button</translation> |
</message> |
<message> |
<source>Text Field</source> |
<translation type="obsolete">Text Field</translation> |
</message> |
<message> |
<source>Check Box</source> |
<translation type="obsolete">Check Box</translation> |
</message> |
<message> |
<source>Combo Box</source> |
<translation type="obsolete">Combo Box</translation> |
</message> |
<message> |
<source>List Box</source> |
<translation type="obsolete">List Box</translation> |
</message> |
<message> |
<source>Properties</source> |
<translation type="obsolete">Properties</translation> |
</message> |
<message> |
<source>Name:</source> |
<translation type="obsolete">Name:</translation> |
</message> |
<message> |
<source>Text</source> |
<translation type="obsolete">Text</translation> |
</message> |
<message> |
<source>Border</source> |
<translation type="obsolete">Border</translation> |
</message> |
<message> |
<source>Color:</source> |
<translation type="obsolete">Colour:</translation> |
</message> |
<message> |
<source>None</source> |
<translation type="obsolete">None</translation> |
</message> |
<message> |
<source>Width:</source> |
<translation type="obsolete">Width:</translation> |
</message> |
<message> |
<source>Thin</source> |
<translation type="obsolete">Thin</translation> |
</message> |
<message> |
<source>Normal</source> |
<translation type="obsolete">Normal</translation> |
</message> |
<message> |
<source>Wide</source> |
<translation type="obsolete">Wide</translation> |
</message> |
<message> |
<source>Style:</source> |
<translation type="obsolete">Style:</translation> |
</message> |
<message> |
<source>Solid</source> |
<translation type="obsolete">Solid</translation> |
</message> |
<message> |
<source>Dashed</source> |
<translation type="obsolete">Dashed</translation> |
</message> |
<message> |
<source>Underline</source> |
<translation type="obsolete">Underline</translation> |
</message> |
<message> |
<source>Beveled</source> |
<translation type="obsolete">Beveled</translation> |
</message> |
<message> |
<source>Inset</source> |
<translation type="obsolete">Inset</translation> |
</message> |
<message> |
<source>Other</source> |
<translation type="obsolete">Other</translation> |
</message> |
<message> |
<source>Read Only</source> |
<translation type="obsolete">Read Only</translation> |
</message> |
<message> |
<source>Required</source> |
<translation type="obsolete">Required</translation> |
</message> |
<message> |
<source>Visibility:</source> |
<translation type="obsolete">Visibility:</translation> |
</message> |
<message> |
<source>Visible</source> |
<translation type="obsolete">Visible</translation> |
</message> |
<message> |
<source>Hidden</source> |
<translation type="obsolete">Hidden</translation> |
</message> |
<message> |
<source>No Print</source> |
<translation type="obsolete">No Print</translation> |
</message> |
<message> |
<source>No View</source> |
<translation type="obsolete">No View</translation> |
</message> |
<message> |
<source>Appearance</source> |
<translation type="obsolete">Appearance</translation> |
</message> |
<message> |
<source>Text for Button Down</source> |
<translation type="obsolete">Text for Button Down</translation> |
</message> |
<message> |
<source>Text for Roll Over</source> |
<translation type="obsolete">Text for Roll Over</translation> |
</message> |
<message> |
<source>Icons</source> |
<translation type="obsolete">Icons</translation> |
</message> |
<message> |
<source>Use Icons</source> |
<translation type="obsolete">Use Icons</translation> |
</message> |
<message> |
<source>Remove</source> |
<translation type="obsolete">Remove</translation> |
</message> |
<message> |
<source>Pressed</source> |
<translation type="obsolete">Pressed</translation> |
</message> |
<message> |
<source>Roll Over</source> |
<translation type="obsolete">Roll Over</translation> |
</message> |
<message> |
<source>Icon Placement...</source> |
<translation type="obsolete">Icon Placement...</translation> |
</message> |
<message> |
<source>Highlight</source> |
<translation type="obsolete">Highlight</translation> |
</message> |
<message> |
<source>Invert</source> |
<translation type="obsolete">Invert</translation> |
</message> |
<message> |
<source>Outlined</source> |
<translation type="obsolete">Outlined</translation> |
</message> |
<message> |
<source>Push</source> |
<translation type="obsolete">Push</translation> |
</message> |
<message> |
<source>Multi-Line</source> |
<translation type="obsolete">Multi-Line</translation> |
</message> |
<message> |
<source>Password</source> |
<translation type="obsolete">Password</translation> |
</message> |
<message> |
<source>Limit of</source> |
<translation type="obsolete">Limit of</translation> |
</message> |
<message> |
<source>Characters</source> |
<translation type="obsolete">Characters</translation> |
</message> |
<message> |
<source>Do Not Scroll</source> |
<translation type="obsolete">Do Not Scroll</translation> |
</message> |
<message> |
<source>Do Not Spell Check</source> |
<translation type="obsolete">Do Not Spell Check</translation> |
</message> |
<message> |
<source>Check Style:</source> |
<translation type="obsolete">Check Style:</translation> |
</message> |
<message> |
<source>Check</source> |
<translation type="obsolete">Check</translation> |
</message> |
<message> |
<source>Cross</source> |
<translation type="obsolete">Cross</translation> |
</message> |
<message> |
<source>Diamond</source> |
<translation type="obsolete">Diamond</translation> |
</message> |
<message> |
<source>Circle</source> |
<translation type="obsolete">Circle</translation> |
</message> |
<message> |
<source>Star</source> |
<translation type="obsolete">Star</translation> |
</message> |
<message> |
<source>Square</source> |
<translation type="obsolete">Square</translation> |
</message> |
<message> |
<source>Default is Checked</source> |
<translation type="obsolete">Default is Checked</translation> |
</message> |
<message> |
<source>Editable</source> |
<translation type="obsolete">Editable</translation> |
</message> |
<message> |
<source>Options</source> |
<translation type="obsolete">Options</translation> |
</message> |
<message> |
<source>Go To</source> |
<translation type="obsolete">Go To</translation> |
</message> |
<message> |
<source>Submit Form</source> |
<translation type="obsolete">Submit Form</translation> |
</message> |
<message> |
<source>Reset Form</source> |
<translation type="obsolete">Reset Form</translation> |
</message> |
<message> |
<source>Import Data</source> |
<translation type="obsolete">Import Data</translation> |
</message> |
<message> |
<source>Event:</source> |
<translation type="obsolete">Event:</translation> |
</message> |
<message> |
<source>Mouse Up</source> |
<translation type="obsolete">Mouse Up</translation> |
</message> |
<message> |
<source>Mouse Down</source> |
<translation type="obsolete">Mouse Down</translation> |
</message> |
<message> |
<source>Mouse Enter</source> |
<translation type="obsolete">Mouse Enter</translation> |
</message> |
<message> |
<source>Mouse Exit</source> |
<translation type="obsolete">Mouse Exit</translation> |
</message> |
<message> |
<source>On Focus</source> |
<translation type="obsolete">On Focus</translation> |
</message> |
<message> |
<source>On Blur</source> |
<translation type="obsolete">On Blur</translation> |
</message> |
<message> |
<source>Script:</source> |
<translation type="obsolete">Script:</translation> |
</message> |
<message> |
<source>Edit...</source> |
<translation type="obsolete">Edit...</translation> |
</message> |
<message> |
<source>Submit to URL:</source> |
<translation type="obsolete">Submit to URL:</translation> |
</message> |
<message> |
<source>Submit Data as HTML</source> |
<translation type="obsolete">Submit Data as HTML</translation> |
</message> |
<message> |
<source>Import Data from:</source> |
<translation type="obsolete">Import Data from:</translation> |
</message> |
<message> |
<source>Destination</source> |
<translation type="obsolete">Destination</translation> |
</message> |
<message> |
<source>To File:</source> |
<translation type="obsolete">To File:</translation> |
</message> |
<message> |
<source>Change...</source> |
<translation type="obsolete">Change...</translation> |
</message> |
<message> |
<source>Page:</source> |
<translation type="obsolete">Page:</translation> |
</message> |
<message> |
<source>X-Pos:</source> |
<translation type="obsolete">X-Pos:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation type="obsolete"> pt</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation type="obsolete">Y-Pos:</translation> |
</message> |
<message> |
<source>Action</source> |
<translation type="obsolete">Action</translation> |
</message> |
<message> |
<source>Field is formatted as:</source> |
<translation type="obsolete">Field is formatted as:</translation> |
</message> |
<message> |
<source>Plain</source> |
<translation type="obsolete">Plain</translation> |
</message> |
<message> |
<source>Number</source> |
<translation type="obsolete">Number</translation> |
</message> |
<message> |
<source>Percentage</source> |
<translation type="obsolete">Percentage</translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="obsolete">Date</translation> |
</message> |
<message> |
<source>Time</source> |
<translation type="obsolete">Time</translation> |
</message> |
<message> |
<source>Custom</source> |
<translation type="obsolete">Custom</translation> |
</message> |
<message> |
<source>Number Format</source> |
<translation type="obsolete">Number Format</translation> |
</message> |
<message> |
<source>Decimals:</source> |
<translation type="obsolete">Decimals:</translation> |
</message> |
<message> |
<source>Use Currency Symbol</source> |
<translation type="obsolete">Use Currency Symbol</translation> |
</message> |
<message> |
<source>Prepend Currency Symbol</source> |
<translation type="obsolete">Prepend Currency Symbol</translation> |
</message> |
<message> |
<source>Formatting</source> |
<translation type="obsolete">Formatting</translation> |
</message> |
<message> |
<source>Percent Format</source> |
<translation type="obsolete">Percent Format</translation> |
</message> |
<message> |
<source>Date Format</source> |
<translation type="obsolete">Date Format</translation> |
</message> |
<message> |
<source>Time Format</source> |
<translation type="obsolete">Time Format</translation> |
</message> |
<message> |
<source>Custom Scripts</source> |
<translation type="obsolete">Custom Scripts</translation> |
</message> |
<message> |
<source>Format:</source> |
<translation type="obsolete">Format:</translation> |
</message> |
<message> |
<source>Keystroke:</source> |
<translation type="obsolete">Keystroke:</translation> |
</message> |
<message> |
<source>Format</source> |
<translation type="obsolete">Format</translation> |
</message> |
<message> |
<source>Value is not validated</source> |
<translation type="obsolete">Value is not validated</translation> |
</message> |
<message> |
<source>Value must be greater than or equal to:</source> |
<translation type="obsolete">Value must be greater than or equal to:</translation> |
</message> |
<message> |
<source>and less or equal to:</source> |
<translation type="obsolete">and less or equal to:</translation> |
</message> |
<message> |
<source>Custom validate script:</source> |
<translation type="obsolete">Custom validate script:</translation> |
</message> |
<message> |
<source>Validate</source> |
<translation type="obsolete">Validate</translation> |
</message> |
<message> |
<source>Value is not calculated</source> |
<translation type="obsolete">Value is not calculated</translation> |
</message> |
<message> |
<source>Value is the</source> |
<translation type="obsolete">Value is the</translation> |
</message> |
<message> |
<source>sum</source> |
<translation type="obsolete">sum</translation> |
</message> |
<message> |
<source>product</source> |
<translation type="obsolete">product</translation> |
</message> |
<message> |
<source>average</source> |
<translation type="obsolete">average</translation> |
</message> |
<message> |
<source>minimum</source> |
<translation type="obsolete">minimum</translation> |
</message> |
<message> |
<source>maximum</source> |
<translation type="obsolete">maximum</translation> |
</message> |
<message> |
<source>of the following fields:</source> |
<translation type="obsolete">of the following fields:</translation> |
</message> |
<message> |
<source>Pick...</source> |
<translation type="obsolete">Pick...</translation> |
</message> |
<message> |
<source>Custom calculation script:</source> |
<translation type="obsolete">Custom calculation script:</translation> |
</message> |
<message> |
<source>Calculate</source> |
<translation type="obsolete">Calculate</translation> |
</message> |
<message> |
<source>OK</source> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation type="obsolete">Cancel</translation> |
</message> |
<message> |
<source>Enter a comma separated list of fields here</source> |
<translation type="obsolete">Enter a comma separated list of fields here</translation> |
</message> |
<message> |
<source>You need at least the Icon for Normal to use Icons for Buttons</source> |
<translation type="obsolete">You need at least the Icon for Normal to use Icons for Buttons</translation> |
</message> |
<message> |
<source>Open</source> |
<translation type="obsolete">Open</translation> |
</message> |
<message> |
<source>Example:</source> |
<translation type="obsolete">Example:</translation> |
</message> |
<message> |
<source>Selection Change</source> |
<translation type="obsolete">Selection Change</translation> |
</message> |
<message> |
<source>Font for use with PDF 1.3:</source> |
<translation type="obsolete">Font for use with PDF 1.3:</translation> |
</message> |
<message> |
<source>Flag is ignored for PDF 1.3</source> |
<translation type="obsolete">Flag is ignored for PDF 1.3</translation> |
</message> |
<message> |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation type="obsolete">PDF Files (*.pdf);;All Files (*)</translation> |
</message> |
<message> |
<source>JavaScript</source> |
<translation type="obsolete">JavaScript</translation> |
</message> |
<message> |
<source>None</source> |
<comment>highlight</comment> |
<translation type="obsolete">None</translation> |
</message> |
<message> |
<source>None</source> |
<comment>action</comment> |
<translation type="obsolete">None</translation> |
</message> |
<message> |
<source>Tooltip:</source> |
<translation type="obsolete">Tooltip:</translation> |
</message> |
<message> |
<source>Do Not Export Value</source> |
<translation type="obsolete">Do Not Export Value</translation> |
</message> |
<message> |
<source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source> |
<translation type="obsolete">Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</translation> |
</message> |
<message> |
<source>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</source> |
<translation type="obsolete">Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</translation> |
</message> |
<message> |
<source>Export absolute Filename</source> |
<translation type="obsolete">Export absolute Filename</translation> |
</message> |
<message> |
<source>Submit format:</source> |
<translation type="obsolete">Submit format:</translation> |
</message> |
<message> |
<source>FDF</source> |
<translation type="obsolete">FDF</translation> |
</message> |
<message> |
<source>HTML</source> |
<translation type="obsolete">HTML</translation> |
</message> |
<message> |
<source>XFDF</source> |
<translation type="obsolete">XFDF</translation> |
</message> |
<message> |
<source>PDF</source> |
<translation type="obsolete">PDF</translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="47"/> |
<source>Annotation Properties</source> |
<translation>Annotation Properties</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="77"/> |
<source>Text</source> |
<translation>Text</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="78"/> |
<source>Link</source> |
<translation>Link</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="79"/> |
<source>External Link</source> |
<translation>External Link</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="80"/> |
<source>External Web-Link</source> |
<translation>External Web-Link</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="117"/> |
<source>Options</source> |
<translation type="unfinished">Options</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="122"/> |
<source>Icon:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="124"/> |
<source>Note</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="125"/> |
<source>Comment</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="126"/> |
<source>Key</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="127"/> |
<source>Help</source> |
<translation type="unfinished">Help</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="128"/> |
<source>NewParagraph</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="129"/> |
<source>Paragraph</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="130"/> |
<source>Insert</source> |
<translation type="unfinished">Insert</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="131"/> |
<source>Cross</source> |
<translation type="unfinished">Cross</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="132"/> |
<source>Circle</source> |
<translation type="unfinished">Circle</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="137"/> |
<source>Annotation is Open</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="143"/> |
<source>Destination</source> |
<translation>Destination</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="196"/> |
<location filename="../../../scribus/ui/annota.cpp" line="206"/> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="440"/> |
<source>Open</source> |
<translation>Open</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="82"/> |
<source>&Type:</source> |
<translation>&Type:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="154"/> |
<source>C&hange...</source> |
<translation>C&hange...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="174"/> |
<source>&Page:</source> |
<translation>&Page:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="199"/> |
<source>&X-Pos</source> |
<translation>&X-Pos</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="208"/> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="440"/> |
<source>%1;;All Files (*)</source> |
<translation>%1;;All Files (*)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="156"/> |
<source>Export absolute Filename</source> |
<translation>Export absolute Filename</translation> |
</message> |
</context> |
<context> |
<name>ApplyMasterPageDialog</name> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="269"/> |
<source>Apply Master Page</source> |
<translation>Apply Master Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="270"/> |
<source>&Master Page:</source> |
<translation>&Master Page:</translation> |
</message> |
<message> |
<source>Apply To</source> |
<translation type="obsolete">Apply To</translation> |
</message> |
<message> |
<source>Current &page</source> |
<translation type="obsolete">Current &page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="273"/> |
<source>Alt+P</source> |
<translation>Alt+P</translation> |
</message> |
<message> |
<source>&Even pages</source> |
<translation type="obsolete">&Even pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="275"/> |
<source>Alt+E</source> |
<translation>Alt+E</translation> |
</message> |
<message> |
<source>O&dd pages</source> |
<translation type="obsolete">O&dd pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="277"/> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
</message> |
<message> |
<source>&All pages</source> |
<translation type="obsolete">&All pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="279"/> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
</message> |
<message> |
<source>&Within range</source> |
<translation type="obsolete">&Within range</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="281"/> |
<source>Alt+W</source> |
<translation>Alt+W</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="283"/> |
<source>to</source> |
<translation>to</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="285"/> |
<source>Alt+O</source> |
<translation>Alt+O</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="287"/> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="282"/> |
<source>Apply the selected master page to even, odd or all pages within the following range</source> |
<translation>Apply the selected master page to even, odd or all pages within the following range</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="52"/> |
<source>Possible Hyphenation</source> |
<translation>Possible Hyphenation</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="271"/> |
<source>Apply to</source> |
<translation>Apply to</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="272"/> |
<source>Current &Page</source> |
<translation>Current &Page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="274"/> |
<source>&Even Pages</source> |
<translation>&Even Pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="276"/> |
<source>O&dd Pages</source> |
<translation>O&dd Pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="278"/> |
<source>&All Pages</source> |
<translation>&All Pages</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="280"/> |
<source>&Within Range</source> |
<translation>&Within Range</translation> |
</message> |
</context> |
<context> |
<name>ArcVectorBase</name> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="23"/> |
<source>Edit Arc</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="31"/> |
<source>Start Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="51"/> |
<source>End Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="71"/> |
<source>Height:</source> |
<translation type="unfinished">Height:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="88"/> |
<source>Width:</source> |
<translation type="unfinished">Width:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="122"/> |
<source>End Edit</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>ArcWidgetBase</name> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="26"/> |
<source>Form</source> |
<translation type="unfinished">Form</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="36"/> |
<source>Start Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="56"/> |
<source>End Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="117"/> |
<source>Sample Polygon</source> |
<translation type="unfinished">Sample Polygon</translation> |
</message> |
</context> |
<context> |
<name>AspellPlugin</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="74"/> |
<source>Spell-checking support</source> |
<translation>Spell-checking support</translation> |
</message> |
<message> |
<source>Adds support for spell-checking via aspell. Languages can be chosen from among the installed aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source> |
<translation type="obsolete">Adds support for spell-checking via aspell. Languages can be chosen from among the installed aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="80"/> |
<source>0.1</source> |
<translation>0.1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="38"/> |
<source>Spell Checker</source> |
<translation>Spell Checker</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="76"/> |
<source>Adds support for spell-checking via Aspell. Languages can be chosen from among the installed Aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="104"/> |
<source>Aspell Plugin Error</source> |
<translation>Aspell Plugin Error</translation> |
</message> |
</context> |
<context> |
<name>AspellPluginBase</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="14"/> |
<source>Spell Check</source> |
<translation>Spell Check</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="119"/> |
<source>Replacement:</source> |
<translation>Replacement:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="195"/> |
<source>The currently active dictionary. Scribus uses Aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="279"/> |
<source>&Add Word</source> |
<translation>&Add Word</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="307"/> |
<source>&Change</source> |
<translation>&Change</translation> |
</message> |
<message> |
<source>&Exit</source> |
<translation type="obsolete">&Exit</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="46"/> |
<source>Not in Dictionary:</source> |
<translation>Not in Dictionary:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="71"/> |
<source>Word that was not found in the active dictionary</source> |
<translation>Word that was not found in the active dictionary</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="126"/> |
<source>Replacement text for the current word that was not found in the dictionary</source> |
<translation>Replacement text for the current word that was not found in the dictionary</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="182"/> |
<source>Active Dictionary: </source> |
<translation>Active Dictionary: </translation> |
</message> |
<message> |
<source>The currently active dictionary. Scribus uses aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source> |
<translation type="obsolete">The currently active dictionary. Scribus uses aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="226"/> |
<source>Ignore the current text not found in the active dictionary</source> |
<translation>Ignore the current text not found in the active dictionary</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="229"/> |
<source>&Ignore</source> |
<translation>&Ignore</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="248"/> |
<source>Ignore all occurrences of the current text not found in the active dictionary</source> |
<translation>Ignore all occurrences of the current text not found in the active dictionary</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="251"/> |
<source>I&gnore All</source> |
<translation>I&gnore All</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="276"/> |
<source>Add the current word to the your personal spelling dictionary for future use</source> |
<translation>Add the current word to the your personal spelling dictionary for future use</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="304"/> |
<source>Change the current word that was not found to that shown in the replacement entry field</source> |
<translation>Change the current word that was not found to that shown in the replacement entry field</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="332"/> |
<source>Change all occurrences of the current word in the text that was not found to that shown in the replacement entry field</source> |
<translation>Change all occurrences of the current word in the text that was not found to that shown in the replacement entry field</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="335"/> |
<source>Change A&ll</source> |
<translation>Change A&ll</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="373"/> |
<source>Close</source> |
<translation>Close</translation> |
</message> |
</context> |
<context> |
<name>AspellPluginImpl</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source>Loaded </source> |
<translation>Loaded </translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source>default </source> |
<translation>default </translation> |
</message> |
<message> |
<source> aspell dictionary.</source> |
<translation type="obsolete"> aspell dictionary.</translation> |
</message> |
<message> |
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</source> |
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</translation> |
</message> |
<message> |
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</source> |
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="391"/> |
<source>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of "</source> |
<translation>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of "</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="393"/> |
<source> by adding it to the session list.</source> |
<translation> by adding it to the session list.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="414"/> |
<source>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</source> |
<translation>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="267"/> |
<source>Spelling check complete</source> |
<translation>Spelling check complete</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source> Aspell dictionary.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="268"/> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="460"/> |
<source>Spell Checker</source> |
<translation>Spell Checker</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="81"/> |
<source>No available Aspell dictionaries found. Install some, please.</source> |
<translation>No available Aspell dictionaries found. Install some, please.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="106"/> |
<source>Spell Checker Plugin Failed to Initialise. |
Configuration invalid</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="113"/> |
<source>Spell Checker Plugin Failed to Initialise.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="115"/> |
<source>No Aspell dictionaries could be found.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="461"/> |
<source>Do you want start from the beginning of the selection with new language selected?</source> |
<translation>Do you want start from the beginning of the selection with new language selected?</translation> |
</message> |
</context> |
<context> |
<name>AutoformButtonGroup</name> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="36"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1281"/> |
<source>Arrows</source> |
<translation>Arrows</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="44"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1282"/> |
<source>Flow Chart</source> |
<translation>Flow Chart</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="53"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1283"/> |
<source>Jigsaw</source> |
<translation>Jigsaw</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="66"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1284"/> |
<source>Specials</source> |
<translation>Specials</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="21"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1280"/> |
<source>Default Shapes</source> |
<translation>Default Shapes</translation> |
</message> |
</context> |
<context> |
<name>Barcode</name> |
<message> |
<source>&Barcode Generator...</source> |
<translation type="obsolete">&Barcode Generator...</translation> |
</message> |
<message> |
<source>Scribus frontend for Pure Postscript Barcode Writer</source> |
<translation type="obsolete">Scribus frontend for Pure Postscript Barcode Writer</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="22"/> |
<source>&Barcode...</source> |
<translation>&Barcode...</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="39"/> |
<source>Scribus frontend for Pure PostScript Barcode Writer</source> |
<translation>Scribus frontend for Pure PostScript Barcode Writer</translation> |
</message> |
</context> |
<context> |
<name>BarcodeGenerator</name> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="343"/> |
<source>Error opening file: %1</source> |
<translation>Error opening file: %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="41"/> |
<source>12 or 13 digits</source> |
<translation>12 or 13 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="43"/> |
<source>8 digits</source> |
<translation>8 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="45"/> |
<source>11 or 12 digits</source> |
<translation>11 or 12 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="47"/> |
<source>7 or 8 digits</source> |
<translation>7 or 8 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="49"/> |
<source>5 digits</source> |
<translation>5 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="51"/> |
<source>2 digits</source> |
<translation>2 digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="58"/> |
<source>Variable number of characters, digits and any of the symbols -. *$/+%.</source> |
<translation>Variable number of characters, digits and any of the symbols -. *$/+%.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="63"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="67"/> |
<source>Variable number of ASCII characters and special function symbols, starting with the appropriate start character for the initial character set. UCC/EAN-128s must have a mandatory FNC 1 symbol immediately following the start character.</source> |
<translation>Variable number of ASCII characters and special function symbols, starting with the appropriate start character for the initial character set. UCC/EAN-128s must have a mandatory FNC 1 symbol immediately following the start character.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="70"/> |
<source>Variable number of digits and any of the symbols -$:/.+ABCD.</source> |
<translation>Variable number of digits and any of the symbols -$:/.+ABCD.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="78"/> |
<source>Variable number of digits. An ITF-14 is 14 characters and does not have a check digit</source> |
<translation>Variable number of digits. An ITF-14 is 14 characters and does not have a check digit</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="74"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="82"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="85"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="93"/> |
<source>Variable number of digits</source> |
<translation>Variable number of digits</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="89"/> |
<source>Variable number of digits and capital letters</source> |
<translation>Variable number of digits and capital letters</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="98"/> |
<source>Variable number of hexadecimal characters</source> |
<translation>Variable number of hexadecimal characters</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="102"/> |
<source>Variable number of characters, digits and any symbols.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="109"/> |
<source>Barcode</source> |
<translation type="unfinished">Barcode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="377"/> |
<source>Barcode incomplete</source> |
<translation>Barcode incomplete</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="54"/> |
<source>12 or 13 digits with dashes. The legacy ISBN-10 format accepts 9 or 10 digits with dashes, but this standard was depreciated for public use after 1st January 2007. (Note: To convert an old ISBN-10 to a new ISBN-13, prefix 978- to the first 9 digits, e.g. 1-56592-479-7 -> 978-1-56592-479. The final check-digit will be calculated automatically.)</source> |
<translation>12 or 13 digits with dashes. The legacy ISBN-10 format accepts 9 or 10 digits with dashes, but this standard was depreciated for public use after 1st January 2007. (Note: To convert an old ISBN-10 to a new ISBN-13, prefix 978- to the first 9 digits, e.g. 1-56592-479-7 -> 978-1-56592-479. The final check-digit will be calculated automatically.)</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="167"/> |
<source>Select Type</source> |
<translation>Select Type</translation> |
</message> |
<message> |
<source>Select Barcode Type</source> |
<translation type="obsolete">Select Barcode Type</translation> |
</message> |
</context> |
<context> |
<name>BarcodeGeneratorBase</name> |
<message> |
<source>Barcode Creator</source> |
<translation type="obsolete">Barcode Creator</translation> |
</message> |
<message> |
<source>Barcode</source> |
<translation type="obsolete">Barcode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="135"/> |
<source>&Type:</source> |
<translation>&Type:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="128"/> |
<source>Select one of the available barcode type here</source> |
<translation>Select one of the available barcode type here</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="108"/> |
<source>The numeric representation of the code itself. See the help message below</source> |
<translation>The numeric representation of the code itself. See the help message below</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="98"/> |
<source>Reset the barcode samples</source> |
<translation>Reset the barcode samples</translation> |
</message> |
<message> |
<source>&Include text in barcode</source> |
<translation type="obsolete">&Include text in barcode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="76"/> |
<source>Alt+I</source> |
<translation>Alt+I</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="70"/> |
<source>If checked, there will be numbers in the barcode too</source> |
<translation>If checked, there will be numbers in the barcode too</translation> |
</message> |
<message> |
<source>&Guard whitespace</source> |
<translation type="obsolete">&Guard whitespace</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="63"/> |
<source>Alt+G</source> |
<translation>Alt+G</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="57"/> |
<source>Draw arrows to be sure of space next the code</source> |
<translation>Draw arrows to be sure of space next the code</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="151"/> |
<source>Colors</source> |
<translation>Colours</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="173"/> |
<source>&Background</source> |
<translation>&Background</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="176"/> |
<source>Alt+B</source> |
<translation>Alt+B</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="170"/> |
<source>Background color - under the code lines</source> |
<translation>Background colour - under the code lines</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="205"/> |
<source>&Lines</source> |
<translation>&Lines</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="208"/> |
<source>Alt+L</source> |
<translation>Alt+L</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="202"/> |
<source>Color of the lines in barcode</source> |
<translation>Colour of the lines in barcode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="237"/> |
<source>&Text</source> |
<translation>&Text</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="240"/> |
<source>Alt+T</source> |
<translation>Alt+T</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="234"/> |
<source>Color of the text and numbers</source> |
<translation>Colour of the text and numbers</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="269"/> |
<source>Hints and help is shown here</source> |
<translation>Hints and help is shown here</translation> |
</message> |
<message> |
<source>Preview of the result. 72dpi sample.</source> |
<translation type="obsolete">Preview of the result. 72dpi sample.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="115"/> |
<source>Co&de:</source> |
<translation>Co&de:</translation> |
</message> |
<message> |
<source>I&nclude checksum</source> |
<translation type="obsolete">I&nclude checksum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="50"/> |
<source>Alt+N</source> |
<translation>Alt+N</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="44"/> |
<source>Generate and include a checksum in barcode</source> |
<translation>Generate and include a checksum in barcode</translation> |
</message> |
<message> |
<source>Incl&ude checksum digit</source> |
<translation type="obsolete">Incl&ude checksum digit</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="37"/> |
<source>Alt+U</source> |
<translation>Alt+U</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="31"/> |
<source>Include the checksum digit in the barcode text</source> |
<translation>Include the checksum digit in the barcode text</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="16"/> |
<source>Insert Barcode</source> |
<translation>Insert Barcode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="25"/> |
<source>Format</source> |
<translation>Format</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="34"/> |
<source>Incl&ude Checksum Digit</source> |
<translation>Incl&ude Checksum Digit</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="47"/> |
<source>I&nclude Checksum</source> |
<translation>I&nclude Checksum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="60"/> |
<source>&Guard Whitespace</source> |
<translation>&Guard Whitespace</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="73"/> |
<source>&Include Text in Barcode</source> |
<translation>&Include Text in Barcode</translation> |
</message> |
</context> |
<context> |
<name>Biblio</name> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1750"/> |
<source>Scrapbook</source> |
<translation>Scrapbook</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1000"/> |
<source>Delete</source> |
<translation>Delete</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1499"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1507"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1592"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1671"/> |
<source>Object</source> |
<translation>Object</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/> |
<source>New Entry</source> |
<translation>New Entry</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="579"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1756"/> |
<source>Hide Directories</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="589"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1759"/> |
<source>Open Directories in a new tab</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="998"/> |
<source>Rename</source> |
<translation>Rename</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>Name "%1" is not unique. |
Please choose another.</source> |
<translation type="obsolete">Name "%1" is not unique. |
Please choose another.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="761"/> |
<source>Choose a Scrapbook Directory</source> |
<translation>Choose a Scrapbook Directory</translation> |
</message> |
<message> |
<source>Choose a Directory</source> |
<translation type="obsolete">Choose a Directory</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="806"/> |
<source>Choose a scrapbook file to import</source> |
<translation>Choose a scrapbook file to import</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1751"/> |
<source>Create a new scrapbook page</source> |
<translation>Create a new scrapbook page</translation> |
</message> |
<message> |
<source>Load an existing scrapbook</source> |
<translation type="obsolete">Load an existing scrapbook</translation> |
</message> |
<message> |
<source>Save the selected scrapbook</source> |
<translation type="obsolete">Save the selected scrapbook</translation> |
</message> |
<message> |
<source>Import an scrapbook file from Scribus <=1.3.2</source> |
<translation type="obsolete">Import an scrapbook file from Scribus <=1.3.2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1754"/> |
<source>Close the selected scrapbook</source> |
<translation>Close the selected scrapbook</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1005"/> |
<source>Copy To:</source> |
<translation>Copy To:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1006"/> |
<source>Move To:</source> |
<translation>Move To:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="605"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="606"/> |
<source>Main</source> |
<translation>Main</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="608"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="609"/> |
<source>Copied Items</source> |
<translation>Copied Items</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/> |
<source>New Name</source> |
<translation>New Name</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="808"/> |
<source>Scrapbook (*.scs *.SCS)</source> |
<translation>Scrapbook (*.scs *.SCS)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="582"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1757"/> |
<source>Hide Images</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="585"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1758"/> |
<source>Hide Vector files</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="994"/> |
<source>Paste to Page</source> |
<translation>Paste to Page</translation> |
</message> |
<message> |
<source>Save as...</source> |
<translation type="obsolete">Save as...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1044"/> |
<source>Close</source> |
<translation>Close</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1047"/> |
<source>Delete Contents</source> |
<translation>Delete Contents</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1209"/> |
<source>Do you really want to delete all entries?</source> |
<translation>Do you really want to delete all entries?</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1752"/> |
<source>Go up one Directory</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1753"/> |
<source>Import a scrapbook file from Scribus <=1.3.2</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1755"/> |
<source>Configure the scrapbook</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>BookPalette</name> |
<message> |
<location filename="../../../scribus/ui/bookmarkpalette.cpp" line="48"/> |
<source>Bookmarks</source> |
<translation>Bookmarks</translation> |
</message> |
</context> |
<context> |
<name>ButtonIcon</name> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="29"/> |
<source>Icon Placement</source> |
<translation>Icon Placement</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="38"/> |
<source>Layout:</source> |
<translation>Layout:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption only</source> |
<translation>Caption only</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Icon only</source> |
<translation>Icon only</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption below Icon</source> |
<translation>Caption below Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption above Icon</source> |
<translation>Caption above Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption right to Icon</source> |
<translation>Caption right to Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption left to Icon</source> |
<translation>Caption left to Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption overlays Icon</source> |
<translation>Caption overlays Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="50"/> |
<source>Scale:</source> |
<translation>Scale:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/> |
<source>Always</source> |
<translation>Always</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/> |
<source>When Icon is too big</source> |
<translation>When Icon is too big</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/> |
<source>Never</source> |
<translation>Never</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="63"/> |
<source>Scale How:</source> |
<translation>Scale How:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="66"/> |
<source>Proportional</source> |
<translation>Proportional</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="67"/> |
<source>Non Proportional</source> |
<translation>Non Proportional</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="90"/> |
<source>Icon</source> |
<translation>Icon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="117"/> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="121"/> |
<source>Cancel</source> |
<translation>Cancel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="124"/> |
<source>Reset</source> |
<translation>Reset</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/> |
<source>When Icon is too small</source> |
<translation>When Icon is too small</translation> |
</message> |
</context> |
<context> |
<name>CMSPrefs</name> |
<message> |
<source>System Profiles</source> |
<translation type="obsolete">System Profiles</translation> |
</message> |
<message> |
<source>Rendering Intents</source> |
<translation type="obsolete">Rendering Intents</translation> |
</message> |
<message> |
<source>Monitor profile can only be changed when no document are currently opened.</source> |
<translation type="obsolete">Monitor profile can only be changed when no document are currently opened.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="26"/> |
<source>Monitor profiles can only be changed when no documents are currently opened.</source> |
<translation>Monitor profiles can only be changed when no documents are currently opened.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/> |
<source>Perceptual</source> |
<translation>Perceptual</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/> |
<source>Relative Colorimetric</source> |
<translation>Relative Colourimetric</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/> |
<source>Saturation</source> |
<translation>Saturation</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/> |
<source>Absolute Colorimetric</source> |
<translation>Absolute Colourimetric</translation> |
</message> |
<message> |
<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 type="obsolete">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. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
<translation type="obsolete">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. |
It is recommended that you enable this if you have photos in your document.</source> |
<translation type="obsolete">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>Enable 'soft proofing' of how your document colors will print, |
based on the chosen printer profile.</source> |
<translation type="obsolete">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. |
This requires very accurate profiles and serves only as a warning.</source> |
<translation type="obsolete">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 type="obsolete">&Activate Colour Management</translation> |
</message> |
<message> |
<source>&Monitor:</source> |
<translation type="obsolete">&Monitor:</translation> |
</message> |
<message> |
<source>P&rinter:</source> |
<translation type="obsolete">P&rinter:</translation> |
</message> |
<message> |
<source>Sim&ulate Printer on the Screen</source> |
<translation type="obsolete">Sim&ulate Printer on the Screen</translation> |
</message> |
<message> |
<source>Mark Colors out of &Gamut</source> |
<translation type="obsolete">Mark Colours out of &Gamut</translation> |
</message> |
<message> |
<source>Use &Blackpoint Compensation</source> |
<translation type="obsolete">Use &Blackpoint Compensation</translation> |
</message> |
<message> |
<source>&RGB Pictures:</source> |
<translation type="obsolete">&RGB Pictures:</translation> |
</message> |
<message> |
<source>&CMYK Pictures:</source> |
<translation type="obsolete">&CMYK Pictures:</translation> |
</message> |
<message> |
<source>Default color profile for imported CMYK images</source> |
<translation type="obsolete">Default colour profile for imported CMYK images</translation> |
</message> |
<message> |
<source>Default color profile for imported RGB images</source> |
<translation type="obsolete">Default colour profile for imported RGB images</translation> |
</message> |
<message> |
<source>&RGB Solid Colors:</source> |
<translation type="obsolete">&RGB Solid Colours:</translation> |
</message> |
<message> |
<source>&CMYK Solid Colors:</source> |
<translation type="obsolete">&CMYK Solid Colours:</translation> |
</message> |
<message> |
<source>Pictures:</source> |
<translation type="obsolete">Pictures:</translation> |
</message> |
<message> |
<source>Sol&id Colors:</source> |
<translation type="obsolete">Sol&id Colours:</translation> |
</message> |
<message> |
<source>Convert all colors to printer space</source> |
<translation type="obsolete">Convert all colours to printer space</translation> |
</message> |
<message> |
<source>Default color profile for solid RGB colors on the page</source> |
<translation type="obsolete">Default colour profile for solid RGB colours on the page</translation> |
</message> |
<message> |
<source>Default color profile for solid CMYK colors on the page</source> |
<translation type="obsolete">Default colour profile for solid CMYK colours on the page</translation> |
</message> |
<message> |
<source>Default rendering intent for solid colors. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation type="obsolete">Default rendering intent for solid colours. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<source>Default rendering intent for images. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation type="obsolete">Default rendering intent for images. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<source>Simulate a full color managed environment : |
all colors, rgb or cmyk, are converted to printer color space.</source> |
<translation type="obsolete">Simulate a full colour managed environment : |
all colours, rgb or cmyk, are converted to printer colour space.</translation> |
</message> |
<message> |
<source>Images:</source> |
<translation type="obsolete">Images:</translation> |
</message> |
</context> |
<context> |
<name>CMSPrefsBase</name> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="20"/> |
<source>Form</source> |
<translation>Form</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="32"/> |
<source>&Activate Color Management</source> |
<translation>&Activate Colour Management</translation> |
</message> |
<message> |
<source>System Profiles</source> |
<translation type="obsolete">System Profiles</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="54"/> |
<source>&RGB Images:</source> |
<translation>&RGB Images:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="70"/> |
<source>Default color profile for imported RGB images</source> |
<translation>Default colour profile for imported RGB images</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="77"/> |
<source>&CMYK Images:</source> |
<translation>&CMYK Images:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="93"/> |
<source>Default color profile for imported CMYK images</source> |
<translation>Default colour profile for imported CMYK images</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="100"/> |
<source>&RGB Solid Colors:</source> |
<translation>&RGB Solid Colours:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="116"/> |
<source>Default color profile for solid RGB colors on the page</source> |
<translation>Default colour profile for solid RGB colours on the page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="123"/> |
<source>&CMYK Solid Colors:</source> |
<translation>&CMYK Solid Colours:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="139"/> |
<source>Default color profile for solid CMYK colors on the page</source> |
<translation>Default colour profile for solid CMYK colours on the page</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="245"/> |
<source>Document Options</source> |
<translation>Document Options</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="278"/> |
<source>Simulate printer on Screen</source> |
<translation>Simulate printer on Screen</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="313"/> |
<source>Monitor Profile</source> |
<translation>Monitor Profile</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="325"/> |
<source>&Monitor:</source> |
<translation>&Monitor:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="341"/> |
<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. |
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="146"/> |
<source>P&rinter:</source> |
<translation>P&rinter:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="42"/> |
<source>Document Profiles</source> |
<translation>Document Profiles</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="162"/> |
<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. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation> |
</message> |
<message> |
<source>Rendering Intents</source> |
<translation type="obsolete">Rendering Intents</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="188"/> |
<source>Images:</source> |
<translation>Images:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="204"/> |
<source>Default rendering intent for images. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Default rendering intent for images. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="212"/> |
<source>Sol&id Colors:</source> |
<translation>Sol&id Colours:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="228"/> |
<source>Default rendering intent for solid colors. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Default rendering intent for solid colours. Unless you know why to change it, |
Relative Colourimetric or Perceptual should be chosen.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="274"/> |
<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, |
based on the chosen printer profile.</translation> |
</message> |
<message> |
<source>Sim&ulate Printer on the Screen</source> |
<translation type="obsolete">Sim&ulate Printer on the Screen</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="285"/> |
<source>Simulate a full color managed environment : |
all colors, rgb or cmyk, are converted to printer color space.</source> |
<translation>Simulate a full colour managed environment : |
all colours, rgb or cmyk, are converted to printer colour space.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="289"/> |
<source>Convert all colors to printer space</source> |
<translation>Convert all colours to printer space</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="296"/> |
<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. |
This requires very accurate profiles and serves only as a warning.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="300"/> |
<source>Mark Colors out of &Gamut</source> |
<translation>Mark Colours out of &Gamut</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="263"/> |
<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. |
It is recommended that you enable this if you have photos in your document.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="176"/> |
<source>Document Rendering Intents</source> |
<translation>Document Rendering Intents</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="267"/> |
<source>Use &Blackpoint Compensation</source> |
<translation>Use &Blackpoint Compensation</translation> |
</message> |
</context> |
<context> |
<name>CMYKChoose</name> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="90"/> |
<source>Edit Color</source> |
<translation>Edit Colour</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="114"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="632"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="842"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="849"/> |
<source>CMYK</source> |
<translation>CMYK</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="115"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="384"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="854"/> |
<source>RGB</source> |
<translation>RGB</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="116"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="707"/> |
<source>Web Safe RGB</source> |
<translation>Web Safe RGB</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="133"/> |
<source>New</source> |
<translation>New</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="150"/> |
<source>Old</source> |
<translation>Old</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="191"/> |
<source>Scribus Swatches</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="195"/> |
<source>User Swatches</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="235"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="657"/> |
<source>C:</source> |
<translation>C:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="262"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="658"/> |
<source>M:</source> |
<translation>M:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="289"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="659"/> |
<source>Y:</source> |
<translation>Y:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="316"/> |
<source>K:</source> |
<translation>K:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="413"/> |
<source>Dynamic Color Bars</source> |
<translation>Dynamic Colour Bars</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="411"/> |
<source>Static Color Bars</source> |
<translation>Static Colour Bars</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="696"/> |
<source>R:</source> |
<translation>R:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="697"/> |
<source>G:</source> |
<translation>G:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="698"/> |
<source>B:</source> |
<translation>B:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="257"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="284"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="311"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="338"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="654"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="655"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="656"/> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>HSV-Colormap</source> |
<translation type="obsolete">HSV-Colourmap</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="99"/> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="109"/> |
<source>Color &Model</source> |
<translation>Colour &Model</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="123"/> |
<source>Is Spot Color</source> |
<translation>Is Spot Colour</translation> |
</message> |
<message> |
<source>Is Registration Color</source> |
<translation type="obsolete">Is Registration Colour</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="945"/> |
<source>You cannot create a color named "%1". |
It is a reserved name for transparent color</source> |
<translation>You cannot create a colour named "%1". |
It is a reserved name for transparent colour</translation> |
</message> |
<message> |
<source>Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself.</source> |
<translation type="obsolete">Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="954"/> |
<source>The name of the color already exists, |
please choose another one.</source> |
<translation>The name of the colour already exists, |
please choose another one.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="359"/> |
<source>Choosing this will make this color a spot color, thus creating another spot when creating plates or separations. This is used most often when a logo or other color needs exact representation or cannot be replicated with CMYK inks. Metallic and fluorescent inks are good examples which cannot be easily replicated with CMYK inks.</source> |
<translation>Choosing this will make this colour a spot colour, thus creating another spot when creating plates or separations. This is used most often when a logo or other colour needs exact representation or cannot be replicated with CMYK inks. Metallic and fluorescent inks are good examples which cannot be easily replicated with CMYK inks.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="727"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="728"/> |
<source>If color management is enabled, a triangle warning indicator is a warning that the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Color Management.</source> |
<translation>If colour management is enabled, a triangle warning indicator is a warning that the colour maybe outside of the colour gamut of the current printer profile selected. What this means is the colour may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Colour Management.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="938"/> |
<source>You cannot create a color without a name |
Please give it a name</source> |
<translation>You cannot create a colour without a namePlease give it a name</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="188"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="199"/> |
<source>HSV Color Map</source> |
<translation>HSV Colour Map</translation> |
</message> |
</context> |
<context> |
<name>CWDialog</name> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="320"/> |
<source>Merging colors</source> |
<translation>Merging colours</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/> |
<source>Error: </source> |
<translation>Error: </translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/> |
<source>Color %1 exists already!</source> |
<translation>Colour %1 exists already!</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="331"/> |
<source>Color %1 appended.</source> |
<translation>Colour %1 appended.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="335"/> |
<source>Now opening the color manager.</source> |
<translation>Now opening the colour manager.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="338"/> |
<source>Color Merging</source> |
<translation>Colour Merging</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="487"/> |
<source>Unable to find the requested color. You have probably selected black, gray or white. There is no way to process this color.</source> |
<translation>Unable to find the requested colour. You have probably selected black, grey or white. There is no way to process this colour.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="15"/> |
<source>Color Wheel</source> |
<translation>Colour Wheel</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="45"/> |
<source>Click the wheel to get the base color. Its color model depends on the chosen tab.</source> |
<translation>Click the wheel to get the base colour. Its colour model depends on the chosen tab.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="52"/> |
<source>Result Colors</source> |
<translation>Result Colours</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="77"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="322"/> |
<source>CMYK</source> |
<translation>CMYK</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="82"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="543"/> |
<source>RGB</source> |
<translation>RGB</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="87"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="729"/> |
<source>HSV</source> |
<translation>HSV</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="106"/> |
<source>Colors of your chosen color scheme.</source> |
<translation>Colours of your chosen colour scheme.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="116"/> |
<source>Color Scheme Method</source> |
<translation>Colour Scheme Method</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="142"/> |
<source>Angle:</source> |
<translation>Angle:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="152"/> |
<source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source> |
<translation>Difference between the selected value and the counted ones. Refer to documentation for more information.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="167"/> |
<source>Select one of the methods to create a color scheme. Refer to documentation for more information.</source> |
<translation>Select one of the methods to create a colour scheme. Refer to documentation for more information.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="201"/> |
<source>Merge created colors into the document colors</source> |
<translation>Merge created colours into the document colours</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="204"/> |
<source>&Merge</source> |
<translation>&Merge</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="207"/> |
<source>Alt+M</source> |
<translation>Alt+M</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="214"/> |
<source>Replace created colors in the document colors</source> |
<translation>Replace created colours in the document colours</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="217"/> |
<source>&Replace</source> |
<translation>&Replace</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="220"/> |
<source>Alt+R</source> |
<translation>Alt+R</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="227"/> |
<source>Leave colors untouched</source> |
<translation>Leave colours untouched</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="230"/> |
<source>&Cancel</source> |
<translation>&Cancel</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="233"/> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="242"/> |
<source>Preview:</source> |
<translation>Preview:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="266"/> |
<source>Sample color scheme.</source> |
<translation>Sample colour scheme.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="285"/> |
<source>Simulate common vision defects here. Select type of the defect.</source> |
<translation>Simulate common vision defects here. Select type of the defect.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="292"/> |
<source>Vision Defect Type:</source> |
<translation>Vision Defect Type:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="342"/> |
<source>C:</source> |
<translation>C:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="352"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="382"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="412"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="442"/> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="372"/> |
<source>M:</source> |
<translation>M:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="402"/> |
<source>Y:</source> |
<translation>Y:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="432"/> |
<source>K:</source> |
<translation>K:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="462"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="838"/> |
<source>RGB:</source> |
<translation>RGB:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="498"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="685"/> |
<source>HSV:</source> |
<translation>HSV:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="571"/> |
<source>R:</source> |
<translation>R:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="598"/> |
<source>G:</source> |
<translation>G:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="625"/> |
<source>B:</source> |
<translation>B:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="652"/> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="874"/> |
<source>CMYK:</source> |
<translation>CMYK:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="757"/> |
<source>H:</source> |
<translation>H:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="784"/> |
<source>S:</source> |
<translation>S:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="811"/> |
<source>V:</source> |
<translation>V:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="918"/> |
<source>Document</source> |
<translation>Document</translation> |
</message> |
</context> |
<context> |
<name>Canvas</name> |
<message> |
<location filename="../../../scribus/canvas.cpp" line="2435"/> |
< |