Subversion Repositories Scribus

Compare Revisions

Ignore whitespace Rev 2951 → Rev 2952

/branches/Version13x/Scribus/scribus/pdfopts.cpp
15,6 → 15,7
#include "units.h"
#include "pdfoptions.h"
#include "util.h"
#include "commonstrings.h"
 
#include "scconfig.h"
 
72,7 → 73,7
OK->setAutoDefault( true );
OK->setDefault( true );
Layout7->addWidget( OK );
Cancel = new QPushButton( tr( "&Cancel" ), this, "Cancel" );
Cancel = new QPushButton( CommonStrings::tr_Cancel, this, "Cancel" );
Layout7->addWidget( Cancel );
PDFOptsLayout->addLayout( Layout7 );
resize(sizeHint());
/branches/Version13x/Scribus/scribus/fontreplacedialog.cpp
10,7 → 10,10
#include <qtooltip.h>
#include <qwhatsthis.h>
#include <qcombobox.h>
 
#include "fontcombo.h"
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
FontReplaceDialog::FontReplaceDialog( QWidget* parent, QMap<QString, QString> *RList) : QDialog( parent, "FontReplaceDialog", true, 0 )
54,8 → 57,7
layout1->addWidget( stickyReplacements );
spacer1 = new QSpacerItem( 71, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
layout1->addItem( spacer1 );
okButton = new QPushButton( this, "okButton" );
okButton->setText( tr( "&OK" ) );
okButton = new QPushButton( CommonStrings::tr_OK, this, "okButton" );
layout1->addWidget( okButton );
FontReplaceDialogLayout->addLayout( layout1 );
resize( QSize(474, 247).expandedTo(minimumSizeHint()) );
/branches/Version13x/Scribus/scribus/lineformats.cpp
9,6 → 9,7
#include "prefsmanager.h"
#include "prefsfile.h"
#include "multiline.h"
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
32,7 → 33,7
Layout15->setSpacing( 6 );
Layout15->setMargin( 0 );
 
LoadLS = new QPushButton( tr( "&Append" ), this, "LoadF" );
LoadLS = new QPushButton( tr( "&Import" ), this, "LoadF" );
Layout15->addWidget( LoadLS );
 
NewB = new QPushButton( tr( "&New" ), this, "NewB" );
54,10 → 55,10
SaveB = new QPushButton( tr( "&Save" ), this, "SaveB" );
Layout15->addWidget( SaveB );
 
ExitB = new QPushButton( tr( "&OK" ), this, "ExitB" );
ExitB = new QPushButton( CommonStrings::tr_OK, this, "ExitB" );
Layout15->addWidget( ExitB );
 
CancelB = new QPushButton( tr( "&Cancel" ), this, "CancelB" );
CancelB = new QPushButton( CommonStrings::tr_Cancel, this, "CancelB" );
Layout15->addWidget( CancelB );
QSpacerItem* spacer = new QSpacerItem( 0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding );
Layout15->addItem( spacer );
/branches/Version13x/Scribus/scribus/mpalette.cpp
18,6 → 18,7
#include "units.h"
#include "undomanager.h"
#include "util.h"
#include "commonstrings.h"
 
using namespace std;
 
3312,7 → 3313,7
}
if (found)
{
QMessageBox::warning(this, tr("Warning"), tr("Name \"%1\" isn't unique.\nPlease choose another.").arg(NameNew), tr("&OK"));
QMessageBox::warning(this, tr("Warning"), tr("Name \"%1\" isn't unique.\nPlease choose another.").arg(NameNew), CommonStrings::tr_OK);
NameEdit->setText(NameOld);
NameEdit->setFocus();
}
/branches/Version13x/Scribus/scribus/util.cpp
51,6 → 51,7
#include "prefscontext.h"
#include "prefstable.h"
#include "prefsmanager.h"
#include "commonstrings.h"
 
extern "C"
{
739,7 → 740,7
{
int t = QMessageBox::warning(parent, QObject::tr("File exists"),
QObject::tr("A file named '%1' already exists.\nDo you want to replace it with the file you are saving?").arg(filename),
QObject::tr("&Cancel"), QObject::tr("&Replace"), "", 1, 0);
CommonStrings::tr_Cancel, QObject::tr("&Replace"), "", 1, 0);
if (t == 0)
retval = false;
}
/branches/Version13x/Scribus/scribus/loremipsum.cpp
29,6 → 29,7
#include "scpaths.h"
#include "serializer.h"
#include "prefsmanager.h"
#include "commonstrings.h"
 
extern ScribusApp *ScApp;
 
166,9 → 167,9
{
setCaption( tr( "Lorem Ipsum" ) );
paraLabel->setText( tr( "Paragraphs:" ) );
okButton->setText( tr( "&OK" ) );
okButton->setText( CommonStrings::tr_OK );
okButton->setAccel( QKeySequence( tr( "Alt+O" ) ) );
cancelButton->setText( tr( "&Cancel" ) );
cancelButton->setText( CommonStrings::tr_Cancel );
cancelButton->setAccel( QKeySequence( tr( "Alt+C" ) ) );
}
 
/branches/Version13x/Scribus/scribus/mergedoc.cpp
17,7 → 17,7
#include "scribusXml.h"
#include "prefsmanager.h"
#include "prefsfile.h"
 
#include "commonstrings.h"
#include "scconfig.h"
 
#include <qcursor.h>
86,7 → 86,7
importButton = new QPushButton( tr( "&Import" ), this, "importButton" );
importButton->setEnabled(false);
importCancelLayout->addWidget( importButton );
cancelButton = new QPushButton( tr( "&Cancel" ), this, "cancelButton" );
cancelButton = new QPushButton( CommonStrings::tr_Cancel, this, "cancelButton" );
cancelButton->setDefault( true );
importCancelLayout->addWidget( cancelButton );
dialogLayout->addLayout( importCancelLayout );
/branches/Version13x/Scribus/scribus/margindialog.cpp
15,6 → 15,7
#include "units.h"
#include "mspinbox.h"
#include "pagesize.h"
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
89,10 → 90,10
okCancelLayout->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
okCancelLayout->addItem( spacer );
okButton = new QPushButton( tr( "&OK" ), this, "okButton" );
okButton = new QPushButton( CommonStrings::tr_OK, this, "okButton" );
okButton->setDefault( true );
okCancelLayout->addWidget(okButton);
cancelButton = new QPushButton( tr( "&Cancel" ), this, "cancelButton" );
cancelButton = new QPushButton( CommonStrings::tr_Cancel, this, "cancelButton" );
cancelButton->setDefault( false );
okCancelLayout->addWidget(cancelButton);
dialogLayout->addLayout( okCancelLayout );
/branches/Version13x/Scribus/scribus/druck.cpp
11,6 → 11,7
 
#include "scconfig.h"
 
#include "commonstrings.h"
#include "prefsmanager.h"
#include "prefsfile.h"
#include "customfdialog.h"
83,9 → 84,9
Layout2->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
Layout2->addItem( spacer );
PushButton1 = new QPushButton( tr( "&OK" ), this, "PushButton1" );
PushButton1 = new QPushButton( CommonStrings::tr_OK, this, "PushButton1" );
Layout2->addWidget( PushButton1 );
PushButton2 = new QPushButton( tr( "&Cancel" ), this, "PushButton1_2" );
PushButton2 = new QPushButton( CommonStrings::tr_Cancel, this, "PushButton1_2" );
PushButton2->setDefault( true );
PushButton2->setFocus();
Layout2->addWidget( PushButton2 );
370,7 → 371,7
OKButton = new QPushButton( tr( "&Print" ), this, "OKButton" );
OKButton->setDefault( true );
Layout2->addWidget( OKButton );
OKButton_2 = new QPushButton( tr( "&Cancel" ), this, "OKButton_2" );
OKButton_2 = new QPushButton( CommonStrings::tr_Cancel, this, "OKButton_2" );
OKButton_2->setDefault( false );
Layout2->addWidget( OKButton_2 );
 
/branches/Version13x/Scribus/scribus/Makefile.am
36,6 → 36,7
cmykfw.cpp \
colorchart.cpp \
colorm.cpp \
commonstrings.cpp \
cpalette.cpp \
cupsoptions.cpp \
customfdialog.cpp \
/branches/Version13x/Scribus/scribus/newfile.cpp
12,6 → 12,7
#include "pluginmanager.h"
#include "prefsmanager.h"
#include "pagelayout.h"
#include "commonstrings.h"
// definitions for clear reading the code - pv
#define PORTRAIT 0
#define LANDSCAPE 1
61,10 → 62,10
}
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
Layout1->addItem( spacer );
OKButton = new QPushButton( tr( "&OK" ), this, "OKButton" );
OKButton = new QPushButton( CommonStrings::tr_OK, this, "OKButton" );
OKButton->setDefault( true );
Layout1->addWidget( OKButton );
CancelB = new QPushButton( tr( "&Cancel" ), this, "CancelB" );
CancelB = new QPushButton( CommonStrings::tr_Cancel, this, "CancelB" );
CancelB->setAutoDefault( false );
Layout1->addWidget( CancelB );
TabbedNewDocLayout->addLayout( Layout1 );
/branches/Version13x/Scribus/scribus/query.cpp
17,6 → 17,8
#include <qlineedit.h>
#include <qpushbutton.h>
 
#include "commonstrings.h"
 
Query::Query( QWidget* parent, const char* name, bool modal, WFlags fl, QString text, QString titel )
: QDialog( parent, name, modal, fl )
{
41,10 → 43,10
okCancelLayout->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
okCancelLayout->addItem( spacer );
okButton = new QPushButton( tr( "&OK" ), this, "okButton" );
okButton = new QPushButton( CommonStrings::tr_OK, this, "okButton" );
okButton->setDefault( true );
okCancelLayout->addWidget( okButton );
cancelButton = new QPushButton( tr( "&Cancel"), this, "cancelButton" );
cancelButton = new QPushButton( CommonStrings::tr_Cancel, this, "cancelButton" );
okCancelLayout->addWidget( cancelButton );
queryLayout->addLayout( okCancelLayout );
setMaximumSize(sizeHint());
/branches/Version13x/Scribus/scribus/search.cpp
22,6 → 22,7
#include "shadebutton.h"
#include "story.h"
#include "scribus.h"
#include "commonstrings.h"
 
extern ScribusApp* ScApp;
extern QPixmap loadIcon(QString nam);
506,7 → 507,7
ScApp->view->RefreshItem(Item);
DoReplace->setEnabled(false);
AllReplace->setEnabled(false);
QMessageBox::information(this, tr("Search/Replace"), tr("Search finished"), tr("&OK"));
QMessageBox::information(this, tr("Search/Replace"), tr("Search finished"), CommonStrings::tr_OK);
Item->CPos = 0;
NotFound = false;
}
633,7 → 634,7
}
else
{
QMessageBox::information(this, tr("Search/Replace"), tr("Search finished"), tr("&OK"));
QMessageBox::information(this, tr("Search/Replace"), tr("Search finished"), CommonStrings::tr_OK);
NotFound = false;
ScApp->CurrStED->Editor->removeSelection();
ScApp->CurrStED->Editor->setCursorPosition(0, 0);
/branches/Version13x/Scribus/scribus/multiline.cpp
6,6 → 6,7
 
#include "scribusdoc.h"
#include "page.h"
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
113,12 → 114,12
 
layout3 = new QHBoxLayout( 0, 0, 6, "layout3");
 
OK = new QPushButton( tr( "&OK" ), this, "OK" );
OK = new QPushButton( CommonStrings::tr_OK, this, "OK" );
OK->setAutoDefault(false);
OK->setDefault(false);
layout3->addWidget( OK );
 
Cancel = new QPushButton( tr( "&Cancel" ), this, "Cancel" );
Cancel = new QPushButton( CommonStrings::tr_Cancel, this, "Cancel" );
Cancel->setAutoDefault(false);
Cancel->setDefault(false);
layout3->addWidget( Cancel );
/branches/Version13x/Scribus/scribus/mdup.cpp
8,6 → 8,7
#include <qvariant.h>
#include <qtooltip.h>
#include "units.h"
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
48,10 → 49,10
Layout3->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
Layout3->addItem( spacer );
PushButton12 = new QPushButton( tr( "&OK" ), this, "PushButton12" );
PushButton12 = new QPushButton( CommonStrings::tr_OK, this, "PushButton12" );
PushButton12->setDefault( true );
Layout3->addWidget( PushButton12 );
PushButton13 = new QPushButton( tr( "&Cancel" ), this, "PushButton13" );
PushButton13 = new QPushButton( CommonStrings::tr_Cancel, this, "PushButton13" );
Layout3->addWidget( PushButton13 );
MdupLayout->addLayout( Layout3 );
QWidget::setTabOrder ( Ncopies, ShiftH );
/branches/Version13x/Scribus/scribus/delpages.cpp
4,9 → 4,11
#include <qpushbutton.h>
#include <qspinbox.h>
 
 
#include "delpages.h"
#include "delpages.moc"
 
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
/*
43,10 → 45,10
okCancelLayout->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
okCancelLayout->addItem( spacer );
okButton = new QPushButton( tr( "&OK" ), this, "okButton" );
okButton = new QPushButton( CommonStrings::tr_OK, this, "okButton" );
okButton->setDefault( true );
okCancelLayout->addWidget(okButton);
cancelButton = new QPushButton( tr( "&Cancel" ), this, "cancelButton" );
cancelButton = new QPushButton( CommonStrings::tr_Cancel, this, "cancelButton" );
cancelButton->setDefault( false );
okCancelLayout->addWidget(cancelButton);
dialogLayout->addLayout( okCancelLayout );
/branches/Version13x/Scribus/scribus/scribusdoc.cpp
15,9 → 15,10
* *
***************************************************************************/
 
#include "scribus.h"
#include "scribusapp.h"
#include "scribusdoc.h"
#include "scribusXml.h"
#include "scribus.h"
 
#include <qfile.h>
 
29,6 → 30,7
#include "layers.h"
 
extern ScribusApp* ScApp;
extern ScribusQApp* ScQApp;
 
#ifdef HAVE_CMS
extern cmsHPROFILE CMSoutputProf;
684,8 → 686,11
if (layersUndo)
{
ScApp->changeLayer(ss->getInt("ACTIVE"));
ScApp->layerPalette->rebuildList();
if (ScQApp->usingGUI())
{
ScApp->changeLayer(ss->getInt("ACTIVE"));
ScApp->layerPalette->rebuildList();
}
}
}
}
1016,7 → 1021,8
if (UndoManager::undoEnabled())
undoManager->beginTransaction("Layer", Um::IDocument, Um::DeleteLayer, "", Um::IDelete);
 
ScApp->LayerRemove(layerNumber, deleteItems);
if (ScQApp->usingGUI())
ScApp->LayerRemove(layerNumber, deleteItems);
/*
//Layer found, do we want to delete its items too?
if (masterPageMode)
/branches/Version13x/Scribus/scribus/applytemplatedialog.cpp
20,6 → 20,8
#include <qlayout.h>
#include <qtooltip.h>
#include <qwhatsthis.h>
 
#include "commonstrings.h"
#include "scribusdoc.h"
#include "page.h"
 
257,8 → 259,8
useRangeCheckBox->setAccel( QKeySequence( tr( "Alt+W" ) ) );
QToolTip::add( useRangeCheckBox, tr( "<qt>Apply the selected template to even, odd or all pages within the following range</qt>" ) );
toPageLabel->setText( tr( "to" ) );
okButton->setText( tr( "&OK" ) );
okButton->setText( CommonStrings::tr_OK );
okButton->setAccel( QKeySequence( tr( "Alt+O" ) ) );
cancelButton->setText( tr( "&Cancel" ) );
cancelButton->setText( CommonStrings::tr_Cancel );
cancelButton->setAccel( QKeySequence( tr( "Alt+C" ) ) );
}
/branches/Version13x/Scribus/scribus/movepage.cpp
7,6 → 7,9
 
#include "movepage.h"
#include "movepage.moc"
 
#include "commonstrings.h"
 
extern QPixmap loadIcon(QString nam);
 
/*
60,10 → 63,10
okCancelLayout->setMargin( 0 );
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
okCancelLayout->addItem( spacer );
okButton = new QPushButton( tr( "&OK" ), this, "okButton" );
okButton = new QPushButton( CommonStrings::tr_OK, this, "okButton" );
okButton->setDefault( true );
okCancelLayout->addWidget(okButton);
cancelButton = new QPushButton( tr( "&Cancel" ), this, "cancelButton" );
cancelButton = new QPushButton( CommonStrings::tr_Cancel, this, "cancelButton" );
okCancelLayout->addWidget(cancelButton);
dialogLayout->addLayout( okCancelLayout );
setMaximumSize(sizeHint());
/branches/Version13x/Scribus/scribus/editformats.cpp
4,6 → 4,7
#include <qmessagebox.h>
#include <qheader.h>
 
#include "commonstrings.h"
#include "scribusdoc.h"
#include "customfdialog.h"
#include "prefsmanager.h"
129,7 → 130,7
Layout15->setSpacing( 6 );
Layout15->setMargin( 0 );
 
LoadS = new QPushButton( tr( "&Append" ), this, "LoadF" );
LoadS = new QPushButton( tr( "&Import" ), this, "LoadF" );
Layout15->addWidget( LoadS );
 
NewB = new QPushButton( tr( "&New" ), this, "NewB" );
148,13 → 149,13
DeleteB->setEnabled(false);
Layout15->addWidget( DeleteB );
 
SaveB = new QPushButton( tr( "&Save" ), this, "SaveB" );
SaveB = new QPushButton( CommonStrings::tr_Save, this, "SaveB" );
Layout15->addWidget( SaveB );
 
ExitB = new QPushButton( tr( "&OK" ), this, "ExitB" );
ExitB = new QPushButton( CommonStrings::tr_OK, this, "ExitB" );
Layout15->addWidget( ExitB );
 
CancelB = new QPushButton( tr( "&Cancel" ), this, "CancelB" );
CancelB = new QPushButton( CommonStrings::tr_Cancel, this, "CancelB" );
Layout15->addWidget( CancelB );
QSpacerItem* spacer = new QSpacerItem( 0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding );
Layout15->addItem( spacer );
/branches/Version13x/Scribus/scribus/scribuswin.cpp
22,6 → 22,7
#include "scribus.h"
#include "story.h"
#include "util.h"
#include "commonstrings.h"
 
extern ScribusApp* ScApp;
 
91,7 → 92,7
tr("Warning"),
tr("Document:")+" "+doc->DocName+"\n"+ tr("has been changed since the last save."),
tr("&Save Now"),
tr("&Cancel"),
CommonStrings::tr_Cancel,
CloseTxt,
0, 1);
switch (exit)
/branches/Version13x/Scribus/scribus/po/scribus.de.ts
176,6 → 176,14
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>importSVG(&quot;string&quot;)
 
The &quot;string&quot; must be a valid filename for a SVG image. The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>@default</name>
3061,14 → 3069,6
<translation>PostScript-Level &amp;3</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Apply Under Color &amp;Removal</source>
<translation>Unterfarben&amp;reduktion durchführen</translation>
</message>
3131,18 → 3131,6
<translation>Unteren Kanten</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Apply</source>
<translation>An&amp;wenden</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;Between:</source>
<translation>&amp;zwischen:</translation>
</message>
3184,6 → 3172,165
</message>
</context>
<context>
<name>AlignDistributePalette</name>
<message>
<source>Align and Distribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align</source>
<translation type="unfinished">Ausrichten</translation>
</message>
<message>
<source>&amp;Relative to:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>First Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Last Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Page</source>
<translation type="unfinished">Seite</translation>
</message>
<message>
<source>Margins</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Guide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Selection</source>
<translation type="unfinished">Markierung</translation>
</message>
<message>
<source>Align right sides of objects to left side of anchor</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align left sides of objects to right side of anchor</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align bottoms</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align right sides</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align tops of objects to bottom of anchor</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Center on vertical axis</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align left sides</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Center on horizontal axis</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align bottoms of objects to top of anchor</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Align tops</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Selected Guide:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Make horizontal gaps between objects equal</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Make horizontal gaps between objects equal to the value specified</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute right sides equidistantly</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute bottoms equidistantly</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute centers equidistantly horizontally</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Make vertical gaps between objects equal</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Make vertical gaps between objects equal to the value specified</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute left sides equidistantly</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute centers equidistantly vertically</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute tops equidistantly</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Distance:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distribute the items with the distance specified</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>None Selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Warning</source>
<translation type="unfinished">Warnung</translation>
</message>
<message>
<source>Some objects are locked.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Unlock All</source>
<translation type="unfinished">Alle &amp;entsperren</translation>
</message>
<message>
<source>Y: %1%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>X: %1%2</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AlignSelect</name>
<message>
<source>Align Text Left</source>
3799,14 → 3946,81
<source>&amp;Y-Pos:</source>
<translation>&amp;Y-Position:</translation>
</message>
</context>
<context>
<name>ApplyMasterPageDialog</name>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Normal</source>
<translation type="unfinished">Normal</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
<source>Apply Master Page</source>
<translation type="unfinished">Musterseite anwenden</translation>
</message>
<message>
<source>&amp;Master Page:</source>
<translation type="unfinished">&amp;Musterseite:</translation>
</message>
<message>
<source>Apply To</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Current &amp;page</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Alt+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Even pages</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Alt+E</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>O&amp;dd pages</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Alt+D</source>
<translation type="unfinished">Alt+L</translation>
</message>
<message>
<source>&amp;All pages</source>
<translation type="unfinished">Alle &amp;Seiten</translation>
</message>
<message>
<source>Alt+A</source>
<translation type="unfinished">Alt+H</translation>
</message>
<message>
<source>&amp;Within range</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Alt+W</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&lt;qt&gt;Apply the selected template to even, odd or all pages within the following range&lt;/qt&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>to</source>
<translation type="unfinished">bis</translation>
</message>
<message>
<source>Alt+O</source>
<translation type="unfinished">Alt+O</translation>
</message>
<message>
<source>Alt+C</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ArrowChooser</name>
3895,10 → 4109,6
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
<name>BookMView</name>
4216,14 → 4426,6
<translation>Farb&amp;modell</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>None</source>
<translation>Keine</translation>
</message>
4675,8 → 4877,55
<source>Color Merging</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Normal Vision</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Protanopy</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Deuteranopy</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Full Color Blindness</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Vision Defect:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>You can simulate common vision defects here. Just select type of the defect</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CommonStrings</name>
<message>
<source>&amp;Apply</source>
<translation>An&amp;wenden</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>None</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Save</source>
<translation>&amp;Speichern</translation>
</message>
</context>
<context>
<name>Cpalette</name>
<message>
<source>Normal</source>
4892,14 → 5141,6
Dabei stehen die Zeichen für C=CUPS, C-LittleCMS und T=TIFF.
Fehlende Bibliotheken werden durch ein Sternchen angezeigt</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>CustomFDialog</name>
4923,6 → 5164,13
</message>
</context>
<context>
<name>DeferredTask</name>
<message>
<source>Cancelled by user</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>DelColor</name>
<message>
<source>Delete Color</source>
4933,14 → 5181,6
<translation>Keine</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Delete Color:</source>
<translation>Farbe löschen:</translation>
</message>
4960,14 → 5200,6
<translation>bis:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Delete From:</source>
<translation>Löschen von:</translation>
</message>
5325,10 → 5557,6
<translation>&amp;Drucken</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Use an alternative print manager, such as kprinter or gtklp,
to utilize additional printing options</source>
<translation>Einen anderen Druckmanager benutzen, zum Beispiel kprinter oder gtklp,
5429,14 → 5657,6
<translation>&amp;Zeilen:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
</message>
5646,14 → 5866,6
<translation>Alle &amp;Seiten</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Change the output directory</source>
<translation>Ausgabeverzeichnis wechseln</translation>
</message>
6028,14 → 6240,6
<translation>Farbset &amp;speichern</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
6176,11 → 6380,6
<translation>Schriftartenvorschau</translation>
</message>
<message>
<source>&amp;OK</source>
<comment>font preview</comment>
<translation>&amp;OK</translation>
</message>
<message>
<source>Alt+O</source>
<comment>font preview</comment>
<translation>Alt+O</translation>
6265,10 → 6464,6
<source>Make these substitutions permanent</source>
<translation>Schriftart permament ersetzen</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
<name>GradientEditor</name>
6328,10 → 6523,6
<translation>Hilfslinien &amp;sperren</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>Rows and Columns - Automatic Guides</source>
<translation>Zeilen und Spalten - Automatische Hilfslinien</translation>
</message>
6548,14 → 6739,6
<translation>Seite(n)</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;Insert</source>
<translation>Ein&amp;fügen</translation>
</message>
6622,14 → 6805,6
<source>Number of columns:</source>
<translation>Anzahl der Spalten:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>JavaDocs</name>
6737,10 → 6912,6
<translation>Taste &amp;definieren</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>This Key Sequence is already in use</source>
<translation>Diese Tastenkombination wird bereits verwendet</translation>
</message>
6796,33 → 6967,33
<translation>Ebenen</translation>
</message>
<message>
<source>Add a new Layer</source>
<translation>Neue Ebene hinzufügen</translation>
</message>
<message>
<source>Delete Layer</source>
<translation>Ebene löschen</translation>
</message>
<message>
<source>Raise Layer</source>
<translation>Ebene nach oben verschieben</translation>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
<source>Lower Layer</source>
<translation>Ebene nach unten verschieben</translation>
<source>Do you want to delete all objects on this layer too?</source>
<translation>Wollen Sie alle Objekte auf dieser Ebene löschen?</translation>
</message>
<message>
<source>New Layer</source>
<translation>Neue Ebene</translation>
<source>Add a new layer</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Name</source>
<translation>Name</translation>
<source>Delete layer</source>
<translation type="unfinished">Ebene löschen</translation>
</message>
<message>
<source>Do you want to delete all objects on this layer too?</source>
<translation>Wollen Sie alle Objekte auf dieser Ebene löschen?</translation>
<source>Raise layer</source>
<translation type="unfinished">Ebene nach oben verschieben</translation>
</message>
<message>
<source>Lower layer</source>
<translation type="unfinished">Ebene nach unten verschieben</translation>
</message>
</context>
<context>
<name>LineFormate</name>
6855,10 → 7026,6
<translation>Dokumente (*.sla *.scd);;Alle Dateien (*)</translation>
</message>
<message>
<source>&amp;Append</source>
<translation>&amp;Anfügen</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;Neu</translation>
</message>
6879,14 → 7046,6
<translation>&amp;Speichern</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;No</source>
<translation>N&amp;ein</translation>
</message>
6898,8 → 7057,139
<source>Do you really want to delete this Style?</source>
<translation>Wollen Sie diesen Absatzstil wirklich löschen?</translation>
</message>
<message>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Importieren</translation>
</message>
</context>
<context>
<name>LoremManager</name>
<message>
<source>Select Lorem Ipsum</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Author:</source>
<translation type="unfinished">Autor:</translation>
</message>
<message>
<source>Get More:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>XML File:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Lorem Ipsum</source>
<translation type="unfinished">Beispieltext</translation>
</message>
<message>
<source>Paragraphs:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Alt+O</source>
<translation type="unfinished">Alt+O</translation>
</message>
<message>
<source>Alt+C</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MarginDialog</name>
<message>
<source>Manage Page Properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Page Size</source>
<translation type="unfinished">Seitenformat</translation>
</message>
<message>
<source>&amp;Size:</source>
<translation type="unfinished">&amp;Größe:</translation>
</message>
<message>
<source>Custom</source>
<translation type="unfinished">Benutzerdefiniert</translation>
</message>
<message>
<source>Orie&amp;ntation:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Portrait</source>
<translation type="unfinished">Hochformat</translation>
</message>
<message>
<source>Landscape</source>
<translation type="unfinished">Querformat</translation>
</message>
<message>
<source>&amp;Width:</source>
<translation type="unfinished">&amp;Breite:</translation>
</message>
<message>
<source>&amp;Height:</source>
<translation type="unfinished">&amp;Höhe:</translation>
</message>
<message>
<source>Move Objects with their Page</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Margin Guides</source>
<translation type="unfinished">Ränder</translation>
</message>
</context>
<context>
<name>MarginWidget</name>
<message>
<source>&amp;Bottom:</source>
<translation type="unfinished">&amp;Unten:</translation>
</message>
<message>
<source>&amp;Top:</source>
<translation type="unfinished">&amp;Oben:</translation>
</message>
<message>
<source>&amp;Right:</source>
<translation type="unfinished">&amp;Rechts:</translation>
</message>
<message>
<source>&amp;Left:</source>
<translation type="unfinished">&amp;Links:</translation>
</message>
<message>
<source>Distance between the top margin guide and the edge of the page</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distance between the bottom margin guide and the edge of the page</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distance between the left margin guide and the edge of the page.
If Facing Pages is selected, this margin space can be used to achieve the correct margins for binding</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Distance between the right margin guide and the edge of the page.
If Facing Pages is selected, this margin space can be used to achieve the correct margins for binding</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Inside:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>O&amp;utside:</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MasterPagesPalette</name>
<message>
<source>Edit Master Pages</source>
6984,14 → 7274,6
<source>&amp;Vertical Shift:</source>
<translation>&amp;Vertikaler Versatz:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>Measurements</name>
7106,10 → 7388,6
<source>&amp;Import</source>
<translation>&amp;Importieren</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>MissingFont</name>
7129,10 → 7407,6
<source>instead</source>
<translation>anstatt</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
<name>MovePages</name>
7153,14 → 7427,6
<translation>bis:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Move Page(s)</source>
<translation>Seite(n) verschieben</translation>
</message>
7760,10 → 8026,6
<translation>Am Grundlinien-Raster ausrichten</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>Actual X-DPI:</source>
<translation>X-dpi aktuell:</translation>
</message>
7868,14 → 8130,6
<translation>Der Name %1 ist nicht eindeutig.
Bitte wählen Sie einen anderen.</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>NewDoc</name>
7920,14 → 8174,6
<translation>Höhe der Seite , veränderbar, wenn &quot;Benutzerdefiniert&quot; ausgewählt ist</translation>
</message>
<message>
<source>Enable single or spread based layout</source>
<translation>Aktiviert doppelseitiges Layout</translation>
</message>
<message>
<source>Make the first page the left page of the document</source>
<translation>Macht die erste Seite zu der linken Seite des Dokuments</translation>
</message>
<message>
<source>First page number of the document</source>
<translation>Erste Seitennummer im Dokument</translation>
</message>
7964,14 → 8210,6
<translation>&amp;Höhe:</translation>
</message>
<message>
<source>&amp;Facing Pages</source>
<translation>&amp;Doppelseiten</translation>
</message>
<message>
<source>Left &amp;Page First</source>
<translation>Linke Seite &amp;zuerst</translation>
</message>
<message>
<source>F&amp;irst Page Number:</source>
<translation>Nummer der &amp;ersten Seite:</translation>
</message>
7992,14 → 8230,6
<translation>Spa&amp;lten:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Open Document</source>
<translation>Dokument öffnen</translation>
</message>
8062,14 → 8292,6
<source>Right Page</source>
<translation>Rechte Seite</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>NodePalette</name>
8279,10 → 8501,6
<translation>&amp;Speichern</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>PDF Files (*.pdf);;All Files (*)</source>
<translation>PDF-Dateien (*.pdf);;Alle Dateien (*.*)</translation>
</message>
8524,6 → 8742,37
</message>
</context>
<context>
<name>PageLayouts</name>
<message>
<source>Page Layout</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Single Page</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Double sided</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>3-Fold</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>4-Fold</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Page #</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>is the first Page.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PageSelector</name>
<message>
<source>Page </source>
8755,14 → 9004,6
<source>Polygon Properties</source>
<translation>Polygon-Eigenschaften</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>PolygonWidget</name>
8868,10 → 9109,6
<translation> pt</translation>
</message>
<message>
<source>None</source>
<translation>Keine</translation>
</message>
<message>
<source>Other Options</source>
<translation>Andere Optionen</translation>
</message>
8970,14 → 9207,6
<translation>Höhe der Seite, veränderbar, wenn Benutzerdefiniert ausgewählt ist</translation>
</message>
<message>
<source>Enable single or spread based layout</source>
<translation>Aktiviert doppelseitiges Layout</translation>
</message>
<message>
<source>Make the first page the left page of a document</source>
<translation>Die erste Seite im Dokument soll eine linke Seite sein</translation>
</message>
<message>
<source>When enabled, Scribus saves a backup copy of your file with the .bak extension
each time the time period elapses</source>
<translation>Scribus speichert im gegebenen Intervall selbstständig eine Backup-Kopie
9080,14 → 9309,6
<translation>&amp;Höhe:</translation>
</message>
<message>
<source>&amp;Facing Pages</source>
<translation>&amp;Doppelseiten</translation>
</message>
<message>
<source>Left &amp;Page First</source>
<translation>Linke Seite &amp;zuerst</translation>
</message>
<message>
<source>&amp;Bottom:</source>
<translation>&amp;Unten:</translation>
</message>
9423,21 → 9644,49
<source>Show Startup Dialog</source>
<translation>Startup-Dialog zu Beginn anzeigen</translation>
</message>
<message>
<source>Locate Ghostscript</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Locate your image editor</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PrefsDialogBase</name>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Defaults</source>
<translation>&amp;Standards laden</translation>
</message>
</context>
<context>
<name>PrefsManager</name>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
<source>Postscript</source>
<translation type="unfinished">Postscript</translation>
</message>
<message>
<source>&amp;Defaults</source>
<translation>&amp;Standards laden</translation>
<source>PDF 1.3</source>
<translation type="unfinished">PDF 1.3</translation>
</message>
<message>
<source>PDF 1.4</source>
<translation type="unfinished">PDF 1.4</translation>
</message>
<message>
<source>PDF/X-3</source>
<translation type="unfinished">PDF/X-3</translation>
</message>
<message>
<source>Migrate Old Scribus Settings?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Scribus has detected existing Scribus 1.2 preferences files.
Do you want to migrate them to the new Scribus version?</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PythonConsole</name>
10934,10 → 11183,6
<translation>Sie benutzen eine Entwicklungsversion von Scribus 1.3.x. Das Dokument, das Sie gerade bearbeiten, wurde mit Scribus 1.2.2 oder niedriger erstellt. Wenn Sie die Datei abspeichern, können Sie sie nicht mehr in Scribus 1.2.2 verwenden, es sei denn, Sie speichern das Dokument über Datei-&gt;Speichern unter. Wollen Sie wirklich weiter machen?</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;Proceed</source>
<translation>&amp;Fortfahren</translation>
</message>
11446,17 → 11691,6
</message>
</context>
<context>
<name>Query</name>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>ReformDoc</name>
<message>
<source>Document Setup</source>
11467,14 → 11701,6
<translation>Ränder</translation>
</message>
<message>
<source>Enable single or spread based layout</source>
<translation>Aktiviert das doppelseitige Layout</translation>
</message>
<message>
<source>Make the first page the left page of the document</source>
<translation>Macht die erste Seite des Dokuments zu einer linken Seite</translation>
</message>
<message>
<source>&amp;Top:</source>
<translation>&amp;Oben:</translation>
</message>
11491,14 → 11717,6
<translation>&amp;Rechts:</translation>
</message>
<message>
<source>&amp;Facing Pages</source>
<translation>&amp;Doppelseiten</translation>
</message>
<message>
<source>Left &amp;Page First</source>
<translation>Linke Seite &amp;zuerst</translation>
</message>
<message>
<source>Page Size</source>
<translation>Seitenformat</translation>
</message>
11539,10 → 11757,6
<translation>&amp;Einheit:</translation>
</message>
<message>
<source>Layout</source>
<translation>Layout</translation>
</message>
<message>
<source>Autosave</source>
<translation>Automatisch speichern</translation>
</message>
11690,8 → 11904,24
<source>Vertical:</source>
<translation>Vertikal:</translation>
</message>
<message>
<source>Options</source>
<translation type="unfinished">Optionen</translation>
</message>
</context>
<context>
<name>RunScriptDialog</name>
<message>
<source>Python Scripts (*.py);; All Files (*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Run as Extension Script</source>
<comment>run script dialog</comment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SToolBAlign</name>
<message>
<source>Style of current paragraph</source>
11796,10 → 12026,6
<source>Background</source>
<translation>Hintergrund</translation>
</message>
<message>
<source>Postscript</source>
<translation>Postscript</translation>
</message>
</context>
<context>
<name>ScribusApp</name>
12249,10 → 12475,6
<translation>Scribus kann das Format der Datei %1 nicht lesen</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>Some fonts used by this document have been substituted:</source>
<translation>Einige Schriftarten in diesem Dokument wurden ersetzt:</translation>
</message>
12319,10 → 12541,6
Benutzen Sie den Druckvorstufen-Check, um die Fehler zu beheben</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>&amp;Lock All</source>
<translation>Alle &amp;sperren</translation>
</message>
12384,6 → 12602,13
</message>
</context>
<context>
<name>ScribusDoc</name>
<message>
<source>New Layer</source>
<translation type="unfinished">Neue Ebene</translation>
</message>
</context>
<context>
<name>ScribusView</name>
<message>
<source> %</source>
12506,10 → 12731,6
<translation>Das Objekt %1 wird gerade im Story Editor bearbeitet, deswegen kann es nicht gelöscht werden</translation>
</message>
<message>
<source>None</source>
<translation>Kein</translation>
</message>
<message>
<source>Unit</source>
<translation>Einheit</translation>
</message>
12540,10 → 12761,6
<source>&amp;Save Now</source>
<translation>&amp;Jetzt speichern</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>ScripterCore</name>
12700,10 → 12917,6
<source>C&amp;lear</source>
<translation>&amp;Löschen</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
<name>SeitenPal</name>
12766,14 → 12979,6
<source>&amp;&lt;&lt;</source>
<translation>&amp;&lt;&lt;</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>ShadeButton</name>
12862,10 → 13067,6
<translation>Dokumente (*.sla *.scd);;Alle Dateien (*)</translation>
</message>
<message>
<source>&amp;Append</source>
<translation>An&amp;fügen</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;Neu</translation>
</message>
12882,21 → 13083,13
<translation>&amp;Löschen</translation>
</message>
<message>
<source>&amp;Save</source>
<translation>&amp;Speichern</translation>
<source>Do you really want to delete this Style?</source>
<translation>Wollen Sie diesen Absatzstil wirklich löschen?</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Importieren</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Do you really want to delete this Style?</source>
<translation>Wollen Sie diesen Absatzstil wirklich löschen?</translation>
</message>
</context>
<context>
<name>StoryEditor</name>
13486,14 → 13679,6
<source>Manage Tabulators</source>
<translation>Tabulatoren bearbeiten</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>TabPDFOptions</name>
14023,25 → 14208,6
Das beeinflusst nicht die Auflösung der Bitmap-Grafiken.</translation>
</message>
<message>
<source>Compression of text and graphics.
Unless you have a reason, leave this checked. This reduces PDF size.</source>
<translation>Kompression von Text und Grafiken reduziert die Dateigröße.
Nicht ohne Grund deaktivieren.
</translation>
</message>
<message>
<source>Version of compression for images.
Automatic allows Scribus to choose the best method.
ZIP is good for images with solid colors.
JPEG is better at creating smaller PDF files which have many photos (with slight image loss possible).
Leave it set to automatic, unless you have a need for special compression options.</source>
<translation>Kompressions-Methode für Bitmap-Bilder.
Automatisch - Scribus wählt die beste Methode.
ZIP - Gut für Bilder mit Farbflächen.
JPEG - erzeugt kleinere PDF&apos;s bei Dokumenten mit viel Bildern ohne große Kompressionsverluste.
Diese Einstellung muss normalerweise nicht geändert werden.</translation>
</message>
<message>
<source>Compression levels: Minimum (25%), Low (50%), Medium (75%), High (85%), Maximum (95%)</source>
<translation>Kompressionsstärke: Minimal (25%), Niedrig (50%), Mittel (75%), Hoch (80%), Maximal (95%)</translation>
</message>
14182,6 → 14348,15
This can increase memory usage and slow down export.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Enable lossless compression of text and graphics.
Unless you have a reason, leave this checked. This reduces PDF size.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Method of compression to use for images. Automatic allows Scribus to choose the best method. ZIP is lossless and good for images with solid colors. JPEG is better at creating smaller PDF files which have many photos (with slight image quality loss possible). Leave it set to Automatic, unless you have a need for special compression options.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TabTools</name>
14627,6 → 14802,22
<source>Custom: </source>
<translation>Benutzerdefiniert: </translation>
</message>
<message>
<source>Dot</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Hyphen</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Underscore</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Custom</source>
<translation type="unfinished">Benutzerdefiniert</translation>
</message>
</context>
<context>
<name>Tree</name>
15147,10 → 15338,6
<translation>Geben Sie einen Wert ein und klicken Sie auf OK</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>Alt+O</source>
<translation>Alt+O</translation>
</message>
15187,16 → 15374,6
<translation>&amp;Alle Objekte</translation>
</message>
<message>
<source>&amp;OK</source>
<comment>short words plugin</comment>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<comment>short words plugin</comment>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Replace defaults by user config</source>
<comment>short words plugin</comment>
<translation>Standardeinstellungen durch Benutzereinstellungen überschreiben</translation>
15386,10 → 15563,6
<translation>Verknüpfung mit Importfilter speichern</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>Remember the file extension - importer association and do not ask again to select an importer for files of this type.</source>
<translation>Die Verknüpfung von Dateityp und Importfilter speichern und nicht mehr danach fragen.</translation>
</message>
15441,14 → 15614,6
<translation>&amp;Öffnen</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
<message>
<source>Downloading Templates</source>
<translation>Vorlagen herunterladen</translation>
</message>
15598,14 → 15763,6
<source>Give a name for saving</source>
<translation>Name des Filters</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>A&amp;bbrechen</translation>
</message>
</context>
<context>
<name>tfFilter</name>
/branches/Version13x/Scribus/scribus/po/scribus.en_GB.ts
1,14 → 1,13
<!DOCTYPE TS>
<TS>
<context>
<!DOCTYPE TS><TS>
<context>
<name></name>
<message>
<source>getColorNames() -> list
<source>getColorNames() -&gt; list
 
Returns a list containing the names of all defined colors in the document.
If no document is open, returns a list of the default document colors.
</source>
<translation>getColorNames() -> list
<translation>getColorNames() -&gt; list
 
Returns a list containing the names of all defined colours in the document.
If no document is open, returns a list of the default document colours.
15,13 → 14,13
</translation>
</message>
<message>
<source>newDocDialog() -> bool
<source>newDocDialog() -&gt; bool
 
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
Returns true if a new document was created.
</source>
<translation>newDocDialog() -> bool
<translation>newDocDialog() -&gt; bool
 
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
29,14 → 28,14
</translation>
</message>
<message>
<source>newDoc(size, margins, orientation, firstPageNumber,
unit, facingPages, firstSideLeft) -> bool
<source>newDoc(size, margins, orientation, firstPageNumber,
unit, facingPages, firstSideLeft) -&gt; 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_&lt;paper_type> e.g. PAPER_A4 etc.
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
 
margins = A tuple (left, right, top, bottom) describing the document
margins
44,8 → 43,8
orientation = the page orientation - constants PORTRAIT, LANDSCAPE
 
firstPageNumer = is the number of the first page in the document used for
pagenumbering. While you'll usually want 1, it's useful to have higher
numbers if you're creating a document in several parts.
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
numbers if you&apos;re creating a document in several parts.
 
unit: this value sets the measurement units used by the document. Use a
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
62,14 → 61,14
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
FACINGPAGES, FIRSTPAGERIGHT)
</source>
<translation>newDoc(size, margins, orientation, firstPageNumber,
unit, facingPages, firstSideLeft) -> bool
<translation>newDoc(size, margins, orientation, firstPageNumber,
unit, facingPages, firstSideLeft) -&gt; 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_&lt;paper_type> e.g. PAPER_A4 etc.
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
 
margins = A tuple (left, right, top, bottom) describing the document
margins
77,8 → 76,8
orientation = the page orientation - constants PORTRAIT, LANDSCAPE
 
firstPageNumer = is the number of the first page in the document used for
pagenumbering. While you'll usually want 1, it's useful to have higher
numbers if you're creating a document in several parts.
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
numbers if you&apos;re creating a document in several parts.
 
unit: this value sets the measurement units used by the document. Use a
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
97,12 → 96,12
</translation>
</message>
<message>
<source>getFillColor([&quot;name&quot;]) -> string
<source>getFillColor([&quot;name&quot;]) -&gt; string
 
Returns the name of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getFillColor([&quot;name&quot;]) -> string
<translation>getFillColor([&quot;name&quot;]) -&gt; string
 
Returns the name of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
109,7 → 108,7
</translation>
</message>
<message>
<source>moveObject(dx, dy [, &quot;name&quot;])
<source>moveObject(dx, dy [, &quot;name&quot;])
 
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
116,7 → 115,7
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
If the object &quot;name&quot; belongs to a group, the whole group is moved.
</source>
<translation>moveObject(dx, dy [, &quot;name&quot;])
<translation>moveObject(dx, dy [, &quot;name&quot;])
 
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
125,13 → 124,13
</translation>
</message>
<message>
<source>setRedraw(bool)
<source>setRedraw(bool)
 
Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</source>
<translation>setRedraw(bool)
<translation>setRedraw(bool)
 
Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
139,7 → 138,7
</translation>
</message>
<message>
<source>createRect(x, y, width, height, [&quot;name&quot;]) -> string
<source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
147,9 → 146,9
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
<translation>createRect(x, y, width, height, [&quot;name&quot;]) -> string
<translation>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
157,11 → 156,11
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
</message>
<message>
<source>newPage(where [,&quot;masterpage&quot;])
<source>newPage(where [,&quot;masterpage&quot;])
 
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
171,7 → 170,7
 
May raise IndexError if the page number is out of range
</source>
<translation>newPage(where [,&quot;masterpage&quot;])
<translation>newPage(where [,&quot;masterpage&quot;])
 
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
183,21 → 182,21
</translation>
</message>
<message>
<source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
<source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
 
Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type>).
available types (FILL_&lt;type&gt;).
</source>
<translation>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
<translation>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
 
Sets the gradient fill of the object &quot;name&quot; to type. Colour descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type>).
available types (FILL_&lt;type&gt;).
</translation>
</message>
<message>
<source>getFontSize([&quot;name&quot;]) -> float
<source>getFontSize([&quot;name&quot;]) -&gt; float
 
Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
204,7 → 203,7
the selection is returned.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getFontSize([&quot;name&quot;]) -> float
<translation>getFontSize([&quot;name&quot;]) -&gt; float
 
Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
213,54 → 212,54
</translation>
</message>
<message>
<source>messagebarText(&quot;string&quot;)
<source>messagebarText(&quot;string&quot;)
 
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
<translation>messagebarText(&quot;string&quot;)
<translation>messagebarText(&quot;string&quot;)
 
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</translation>
</message>
<message>
<source>importSVG(&quot;string&quot;)
<source>importSVG(&quot;string&quot;)
 
The &quot;string&quot; must be a valid filename for a SVG image. The text
must be UTF8 encoded or 'unicode' string(recommended).
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
<translation>importSVG(&quot;string&quot;)
<translation>importSVG(&quot;string&quot;)
 
The &quot;string&quot; must be a valid filename for a SVG image. The text
must be UTF8 encoded or 'unicode' string(recommended).
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</translation>
</message>
</context>
<context>
</context>
<context>
<name>@default</name>
<message>
<source>getColor(&quot;name&quot;) -> tuple
<source>getColor(&quot;name&quot;) -&gt; tuple
 
Returns a tuple (C, M, Y, K) containing the four color components of the
color &quot;name&quot; from the current document. If no document is open, returns
the value of the named color from the default document colors.
 
May raise NotFoundError if the named color wasn't found.
May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
<translation>getColor(&quot;name&quot;) -> tuple
<translation>getColor(&quot;name&quot;) -&gt; tuple
 
Returns a tuple (C, M, Y, K) containing the four colour components of the
colour &quot;name&quot; from the current document. If no document is open, returns
the value of the named colour from the default document colours.
 
May raise NotFoundError if the named colour wasn't found.
May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>getColorAsRGB(&quot;name&quot;) -> tuple
<source>getColorAsRGB(&quot;name&quot;) -&gt; tuple
 
Returns a tuple (R,G,B) containing the three color components of the
color &quot;name&quot; from the current document, converted to the RGB color
267,10 → 266,10
space. If no document is open, returns the value of the named color
from the default document colors.
 
May raise NotFoundError if the named color wasn't found.
May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
<translation>getColorAsRGB(&quot;name&quot;) -> tuple
<translation>getColorAsRGB(&quot;name&quot;) -&gt; tuple
 
Returns a tuple (R,G,B) containing the three colour components of the
colour &quot;name&quot; from the current document, converted to the RGB colour
277,32 → 276,32
space. If no document is open, returns the value of the named colour
from the default document colours.
 
May raise NotFoundError if the named colour wasn't found.
May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>changeColor(&quot;name&quot;, c, m, y, k)
<source>changeColor(&quot;name&quot;, c, m, y, k)
 
Changes the color &quot;name&quot; to the specified CMYK value. The color value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Color components should be in the range from 0 to 255.
 
May raise NotFoundError if the named color wasn't found.
May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
<translation>changeColour(&quot;name&quot;, c, m, y, k)
<translation>changeColour(&quot;name&quot;, c, m, y, k)
 
Changes the colour &quot;name&quot; to the specified CMYK value. The colour value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Colour components should be in the range from 0 to 255.
 
May raise NotFoundError if the named colour wasn't found.
May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>defineColor(&quot;name&quot;, c, m, y, k)
<source>defineColor(&quot;name&quot;, c, m, y, k)
 
Defines a new color &quot;name&quot;. The color Value is defined via four components:
c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in
310,7 → 309,7
 
May raise ValueError if an invalid color name is specified.
</source>
<translation>defineColor(&quot;name&quot;, c, m, y, k)
<translation>defineColor(&quot;name&quot;, c, m, y, k)
 
Defines a new colour &quot;name&quot;. The colour Value is defined via four components:
c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in
320,7 → 319,7
</translation>
</message>
<message>
<source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
<source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
 
Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
329,10 → 328,10
deleteColor works on the default document colors if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.
 
May raise NotFoundError if a named color wasn't found.
May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
<translation>deleteColor(&quot;name&quot;, &quot;replace&quot;)
<translation>deleteColor(&quot;name&quot;, &quot;replace&quot;)
 
Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
341,32 → 340,32
deleteColor works on the default document colours if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.
 
May raise NotFoundError if a named colour wasn't found.
May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
<source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
 
Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
 
May raise NotFoundError if a named color wasn't found.
May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
<translation>replaceColor(&quot;name&quot;, &quot;replace&quot;)
<translation>replaceColor(&quot;name&quot;, &quot;replace&quot;)
 
Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.
 
May raise NotFoundError if a named colour wasn't found.
May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -> string with filename
<source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
 
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
with the filter string &quot;filter&quot;. A default filename or file path can also
supplied, leave this string empty when you don't want to use it. A value of
supplied, leave this string empty when you don&apos;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 &quot;Save As&quot; dialog
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
373,19 → 372,19
the dialog shows and returns only directories. The default for all of the
opional parameters is False.
 
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
 
Refer to the Qt-Documentation for QFileDialog for details on filters.
 
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
</source>
<translation>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -> string with filename
<translation>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
 
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
with the filter string &quot;filter&quot;. A default filename or file path can also
supplied, leave this string empty when you don't want to use it. A value of
supplied, leave this string empty when you don&apos;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 &quot;Save As&quot; dialog
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
392,19 → 391,19
the dialog shows and returns only directories. The default for all of the
opional parameters is False.
 
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
 
Refer to the Qt-Documentation for QFileDialog for details on filters.
 
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
</translation>
</message>
<message>
<source>messageBox(&quot;caption&quot;, &quot;message&quot;,
<source>messageBox(&quot;caption&quot;, &quot;message&quot;,
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
 
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
423,10 → 422,10
BUTTONOPT_ESCAPE Pressing escape presses this button.
 
Usage examples:
result = messageBox('Script failed',
'This script only works when you have a text frame selected.',
result = messageBox(&apos;Script failed&apos;,
&apos;This script only works when you have a text frame selected.&apos;,
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! &lt;i>Was it a monkey?&lt;/i>',
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
 
435,9 → 434,9
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
</source>
<translation>messageBox(&quot;caption&quot;, &quot;message&quot;,
<translation>messageBox(&quot;caption&quot;, &quot;message&quot;,
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
 
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
456,10 → 455,10
BUTTONOPT_ESCAPE Pressing escape presses this button.
 
Usage examples:
result = messageBox('Script failed',
'This script only works when you have a text frame selected.',
result = messageBox(&apos;Script failed&apos;,
&apos;This script only works when you have a text frame selected.&apos;,
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! &lt;i>Was it a monkey?&lt;/i>',
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
 
470,29 → 469,29
</translation>
</message>
<message>
<source>valueDialog(caption, message [,defaultvalue]) -> string
<source>valueDialog(caption, message [,defaultvalue]) -&gt; string
 
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.
 
Example: valueDialog('title', 'text in the window', 'optional')
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</source>
<translation>valueDialog(caption, message [,defaultvalue]) -> string
<translation>valueDialog(caption, message [,defaultvalue]) -&gt; string
 
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.
 
Example: valueDialog('title', 'text in the window', 'optional')
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</translation>
</message>
<message>
<source>closeDoc()
<source>closeDoc()
 
Closes the current document without prompting to save.
 
May throw NoDocOpenError if there is no document to close
</source>
<translation>closeDoc()
<translation>closeDoc()
 
Closes the current document without prompting to save.
 
500,23 → 499,23
</translation>
</message>
<message>
<source>haveDoc() -> bool
<source>haveDoc() -&gt; bool
 
Returns true if there is a document open.
</source>
<translation>haveDoc() -> bool
<translation>haveDoc() -&gt; bool
 
Returns true if there is a document open.
</translation>
</message>
<message>
<source>openDoc(&quot;name&quot;)
<source>openDoc(&quot;name&quot;)
 
Opens the document &quot;name&quot;.
 
May raise ScribusError if the document could not be opened.
</source>
<translation>openDoc(&quot;name&quot;)
<translation>openDoc(&quot;name&quot;)
 
Opens the document &quot;name&quot;.
 
524,7 → 523,7
</translation>
</message>
<message>
<source>saveDoc()
<source>saveDoc()
 
Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
532,7 → 531,7
 
If the save fails, there is currently no way to tell.
</source>
<translation>saveDoc()
<translation>saveDoc()
 
Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
542,7 → 541,7
</translation>
</message>
<message>
<source>saveDocAs(&quot;name&quot;)
<source>saveDocAs(&quot;name&quot;)
 
Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).
549,7 → 548,7
 
May raise ScribusError if the save fails.
</source>
<translation>saveDocAs(&quot;name&quot;)
<translation>saveDocAs(&quot;name&quot;)
 
Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).
558,12 → 557,12
</translation>
</message>
<message>
<source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -> bool
<source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
 
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
strings.
</source>
<translation>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -> bool
<translation>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
 
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
strings.
570,43 → 569,43
</translation>
</message>
<message>
<source>setMargins(lr, rr, tr, br)
<source>setMargins(lr, rr, tr, br)
 
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type>
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</source>
<translation>setMargins(lr, rr, tr, br)
<translation>setMargins(lr, rr, tr, br)
 
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type>
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</translation>
</message>
<message>
<source>setUnit(type)
<source>setUnit(type)
 
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type>.
defined as constants UNIT_&lt;type&gt;.
 
May raise ValueError if an invalid unit is passed.
</source>
<translation>setUnit(type)
<translation>setUnit(type)
 
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type>.
defined as constants UNIT_&lt;type&gt;.
 
May raise ValueError if an invalid unit is passed.
</translation>
</message>
<message>
<source>getUnit() -> integer (Scribus unit constant)
<source>getUnit() -&gt; integer (Scribus unit constant)
 
Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
</source>
<translation>getUnit() -> integer (Scribus unit constant)
<translation>getUnit() -&gt; integer (Scribus unit constant)
 
Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
614,12 → 613,12
</translation>
</message>
<message>
<source>loadStylesFromFile(&quot;filename&quot;)
<source>loadStylesFromFile(&quot;filename&quot;)
 
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</source>
<translation>loadStylesFromFile(&quot;filename&quot;)
<translation>loadStylesFromFile(&quot;filename&quot;)
 
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
626,7 → 625,7
</translation>
</message>
<message>
<source>setDocType(facingPages, firstPageLeft)
<source>setDocType(facingPages, firstPageLeft)
 
Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
633,7 → 632,7
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</source>
<translation>setDocType(facingPages, firstPageLeft)
<translation>setDocType(facingPages, firstPageLeft)
 
Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
642,12 → 641,12
</translation>
</message>
<message>
<source>getLineColor([&quot;name&quot;]) -> string
<source>getLineColor([&quot;name&quot;]) -&gt; string
 
Returns the name of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getLineColor([&quot;name&quot;]) -> string
<translation>getLineColor([&quot;name&quot;]) -&gt; string
 
Returns the name of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
654,12 → 653,12
</translation>
</message>
<message>
<source>getLineWidth([&quot;name&quot;]) -> integer
<source>getLineWidth([&quot;name&quot;]) -&gt; integer
 
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</source>
<translation>getLineWidth([&quot;name&quot;]) -> integer
<translation>getLineWidth([&quot;name&quot;]) -&gt; integer
 
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
666,12 → 665,12
</translation>
</message>
<message>
<source>getLineShade([&quot;name&quot;]) -> integer
<source>getLineShade([&quot;name&quot;]) -&gt; integer
 
Returns the shading value of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getLineShade([&quot;name&quot;]) -> integer
<translation>getLineShade([&quot;name&quot;]) -&gt; integer
 
Returns the shading value of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
678,13 → 677,13
</translation>
</message>
<message>
<source>getLineJoin([&quot;name&quot;]) -> integer (see contants)
<source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
 
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
the currently selected item is used. The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</source>
<translation>getLineJoin([&quot;name&quot;]) -> integer (see contants)
<translation>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
 
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
the currently selected item is used. The join types are:
692,13 → 691,13
</translation>
</message>
<message>
<source>getLineEnd([&quot;name&quot;]) -> integer (see constants)
<source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
 
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</source>
<translation>getLineEnd([&quot;name&quot;]) -> integer (see constants)
<translation>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
 
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
706,13 → 705,13
</translation>
</message>
<message>
<source>getLineStyle([&quot;name&quot;]) -> integer (see constants)
<source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
 
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
</source>
<translation>getLineStyle([&quot;name&quot;]) -> integer (see constants)
<translation>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
 
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
720,12 → 719,12
</translation>
</message>
<message>
<source>getFillShade([&quot;name&quot;]) -> integer
<source>getFillShade([&quot;name&quot;]) -&gt; integer
 
Returns the shading value of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getFillShade([&quot;name&quot;]) -> integer
<translation>getFillShade([&quot;name&quot;]) -&gt; integer
 
Returns the shading value of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
732,22 → 731,22
</translation>
</message>
<message>
<source>getCornerRadius([&quot;name&quot;]) -> integer
<source>getCornerRadius([&quot;name&quot;]) -&gt; integer
 
Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
</source>
<translation>getCornerRadius([&quot;name&quot;]) -> integer
<translation>getCornerRadius([&quot;name&quot;]) -&gt; integer
 
Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
</translation>
</message>
<message>
<source>getImageScale([&quot;name&quot;]) -> (x,y)
<source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
 
Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;. If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getImageScale([&quot;name&quot;]) -> (x,y)
<translation>getImageScale([&quot;name&quot;]) -&gt; (x,y)
 
Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;. If &quot;name&quot; is not given the currently selected item is used.
754,12 → 753,12
</translation>
</message>
<message>
<source>getImageName([&quot;name&quot;]) -> string
<source>getImageName([&quot;name&quot;]) -&gt; string
 
Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
</source>
<translation>getImageName([&quot;name&quot;]) -> string
<translation>getImageName([&quot;name&quot;]) -&gt; string
 
Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
766,43 → 765,43
</translation>
</message>
<message>
<source>getPosition([&quot;name&quot;]) -> (x,y)
<source>getPosition([&quot;name&quot;]) -&gt; (x,y)
 
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
- see UNIT_&lt;type> for reference.
- see UNIT_&lt;type&gt; for reference.
</source>
<translation>getPosition([&quot;name&quot;]) -> (x,y)
<translation>getPosition([&quot;name&quot;]) -&gt; (x,y)
 
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
- see UNIT_&lt;type> for reference.
- see UNIT_&lt;type&gt; for reference.
</translation>
</message>
<message>
<source>getSize([&quot;name&quot;]) -> (width,height)
<source>getSize([&quot;name&quot;]) -&gt; (width,height)
 
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type>
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</source>
<translation>getSize([&quot;name&quot;]) -> (width,height)
<translation>getSize([&quot;name&quot;]) -&gt; (width,height)
 
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type>
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</translation>
</message>
<message>
<source>getRotation([&quot;name&quot;]) -> integer
<source>getRotation([&quot;name&quot;]) -&gt; integer
 
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
is used.
</source>
<translation>getRotation([&quot;name&quot;]) -> integer
<translation>getRotation([&quot;name&quot;]) -&gt; integer
 
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
810,86 → 809,86
</translation>
</message>
<message>
<source>getAllObjects() -> list
<source>getAllObjects() -&gt; list
 
Returns a list containing the names of all objects on the current page.
</source>
<translation>getAllObjects() -> list
<translation>getAllObjects() -&gt; list
 
Returns a list containing the names of all objects on the current page.
</translation>
</message>
<message>
<source>getPropertyCType(object, property, includesuper=True)
<source>getPropertyCType(object, property, includesuper=True)
 
Returns the name of the C type of `property' of `object'. See getProperty()
Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.
 
If `includesuper' is true, search inherited properties too.
If `includesuper&apos; is true, search inherited properties too.
</source>
<translation>getPropertyCType(object, property, includesuper=True)
<translation>getPropertyCType(object, property, includesuper=True)
 
Returns the name of the C type of `property' of `object'. See getProperty()
Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.
 
If `includesuper' is true, search inherited properties too.
If `includesuper&apos; is true, search inherited properties too.
</translation>
</message>
<message>
<source>getPropertyNames(object, includesuper=True)
<source>getPropertyNames(object, includesuper=True)
 
Return a list of property names supported by `object'.
If `includesuper' is true, return properties supported
Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</source>
<translation>getPropertyNames(object, includesuper=True)
<translation>getPropertyNames(object, includesuper=True)
 
Return a list of property names supported by `object'.
If `includesuper' is true, return properties supported
Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</translation>
</message>
<message>
<source>getProperty(object, property)
<source>getProperty(object, property)
 
Return the value of the property `property' of the passed `object'.
Return the value of the property `property&apos; of the passed `object&apos;.
 
The `object' argument may be a string, in which case the named PageItem
The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.
 
The `property' argument must be a string, and is the name of the property
to look up on `object'.
The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.
 
The return value varies depending on the type of the property.
</source>
<translation>getProperty(object, property)
<translation>getProperty(object, property)
 
Return the value of the property `property' of the passed `object'.
Return the value of the property `property&apos; of the passed `object&apos;.
 
The `object' argument may be a string, in which case the named PageItem
The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.
 
The `property' argument must be a string, and is the name of the property
to look up on `object'.
The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.
 
The return value varies depending on the type of the property.
</translation>
</message>
<message>
<source>setProperty(object, property, value)
<source>setProperty(object, property, value)
 
Set `property' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', an exception is raised. An exception may
Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.
 
See getProperty() for more information.
</source>
<translation>setProperty(object, property, value)
<translation>setProperty(object, property, value)
 
Set `property' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', an exception is raised. An exception may
Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.
 
See getProperty() for more information.
896,18 → 895,18
</translation>
</message>
<message>
<source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
<source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
 
Return a list of children of `object', possibly restricted to children
of class named `ofclass' or children named `ofname'. If `recursive' is true,
Return a list of children of `object&apos;, possibly restricted to children
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
 
See QObject::children() in the Qt docs for more information.
</source>
<translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
<translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
 
Return a list of children of `object', possibly restricted to children
of class named `ofclass' or children named `ofname'. If `recursive' is true,
Return a list of children of `object&apos;, possibly restricted to children
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
 
See QObject::children() in the Qt docs for more information.
914,21 → 913,21
</translation>
</message>
<message>
<source>getChild(object, childname, ofclass=None, recursive=True)
<source>getChild(object, childname, ofclass=None, recursive=True)
 
Return the first child of `object' named `childname', possibly restricting
the search to children of type name `ofclass'. If `recursive' is true,
Return the first child of `object&apos; named `childname&apos;, possibly restricting
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
</source>
<translation>getChild(object, childname, ofclass=None, recursive=True)
<translation>getChild(object, childname, ofclass=None, recursive=True)
 
Return the first child of `object' named `childname', possibly restricting
the search to children of type name `ofclass'. If `recursive' is true,
Return the first child of `object&apos; named `childname&apos;, possibly restricting
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
</translation>
</message>
<message>
<source>moveObjectAbs(x, y [, &quot;name&quot;])
<source>moveObjectAbs(x, y [, &quot;name&quot;])
 
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If &quot;name&quot;
935,7 → 934,7
is not given the currently selected item is used. If the object &quot;name&quot;
belongs to a group, the whole group is moved.
</source>
<translation>moveObjectAbs(x, y [, &quot;name&quot;])
<translation>moveObjectAbs(x, y [, &quot;name&quot;])
 
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If &quot;name&quot;
944,7 → 943,7
</translation>
</message>
<message>
<source>rotateObject(rot [, &quot;name&quot;])
<source>rotateObject(rot [, &quot;name&quot;])
 
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
rotated by the vertex that is currently selected as the rotation point - by
952,7 → 951,7
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
given the currently selected item is used.
</source>
<translation>rotateObject(rot [, &quot;name&quot;])
<translation>rotateObject(rot [, &quot;name&quot;])
 
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
rotated by the vertex that is currently selected as the rotation point - by
962,13 → 961,13
</translation>
</message>
<message>
<source>rotateObjectAbs(rot [, &quot;name&quot;])
<source>rotateObjectAbs(rot [, &quot;name&quot;])
 
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
selected item is used.
</source>
<translation>rotateObjectAbs(rot [, &quot;name&quot;])
<translation>rotateObjectAbs(rot [, &quot;name&quot;])
 
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
976,12 → 975,12
</translation>
</message>
<message>
<source>sizeObject(width, height [, &quot;name&quot;])
<source>sizeObject(width, height [, &quot;name&quot;])
 
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
</source>
<translation>sizeObject(width, height [, &quot;name&quot;])
<translation>sizeObject(width, height [, &quot;name&quot;])
 
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
988,13 → 987,13
</translation>
</message>
<message>
<source>getSelectedObject([nr]) -> string
<source>getSelectedObject([nr]) -&gt; string
 
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
second selected Object and so on.
</source>
<translation>getSelectedObject([nr]) -> string
<translation>getSelectedObject([nr]) -&gt; string
 
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
1002,43 → 1001,43
</translation>
</message>
<message>
<source>selectionCount() -> integer
<source>selectionCount() -&gt; integer
 
Returns the number of selected objects.
</source>
<translation>selectionCount() -> integer
<translation>selectionCount() -&gt; integer
 
Returns the number of selected objects.
</translation>
</message>
<message>
<source>selectObject(&quot;name&quot;)
<source>selectObject(&quot;name&quot;)
 
Selects the object with the given &quot;name&quot;.
</source>
<translation>selectObject(&quot;name&quot;)
<translation>selectObject(&quot;name&quot;)
 
Selects the object with the given &quot;name&quot;.
</translation>
</message>
<message>
<source>deselectAll()
<source>deselectAll()
 
Deselects all objects in the whole document.
</source>
<translation>deselectAll()
<translation>deselectAll()
 
Deselects all objects in the whole document.
</translation>
</message>
<message>
<source>groupObjects(list)
<source>groupObjects(list)
 
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
items are used.
</source>
<translation>groupObjects(list)
<translation>groupObjects(list)
 
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
1046,15 → 1045,15
</translation>
</message>
<message>
<source>unGroupObjects(&quot;name&quot;)
<source>unGroupObjects(&quot;name&quot;)
 
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
<translation>unGroupObjects(&quot;name&quot;)
<translation>unGroupObjects(&quot;name&quot;)
 
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
</message>
<message>
<source>scaleGroup(factor [,&quot;name&quot;])
<source>scaleGroup(factor [,&quot;name&quot;])
 
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1064,7 → 1063,7
 
May raise ValueError if an invalid scale factor is passed.
</source>
<translation>scaleGroup(factor [,&quot;name&quot;])
<translation>scaleGroup(factor [,&quot;name&quot;])
 
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1076,7 → 1075,7
</translation>
</message>
<message>
<source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
<source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
 
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.
1083,7 → 1082,7
 
May raise WrongFrameTypeError if the target frame is not an image frame
</source>
<translation>loadImage(&quot;filename&quot; [, &quot;name&quot;])
<translation>loadImage(&quot;filename&quot; [, &quot;name&quot;])
 
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.
1092,7 → 1091,7
</translation>
</message>
<message>
<source>scaleImage(x, y [, &quot;name&quot;])
<source>scaleImage(x, y [, &quot;name&quot;])
 
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1100,7 → 1099,7
 
May raise WrongFrameTypeError if the target frame is not an image frame
</source>
<translation>scaleImage(x, y [, &quot;name&quot;])
<translation>scaleImage(x, y [, &quot;name&quot;])
 
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1110,26 → 1109,26
</translation>
</message>
<message>
<source>lockObject([&quot;name&quot;]) -> bool
<source>lockObject([&quot;name&quot;]) -&gt; bool
 
Locks the object &quot;name&quot; if it's unlocked or unlock it if it's locked.
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</source>
<translation>lockObject([&quot;name&quot;]) -> bool
<translation>lockObject([&quot;name&quot;]) -&gt; bool
 
Locks the object &quot;name&quot; if it's unlocked or unlock it if it's locked.
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</translation>
</message>
<message>
<source>isLocked([&quot;name&quot;]) -> bool
<source>isLocked([&quot;name&quot;]) -&gt; bool
 
Returns true if is the object &quot;name&quot; locked. If &quot;name&quot; is not given the
currently selected item is used.
</source>
<translation>isLocked([&quot;name&quot;]) -> bool
<translation>isLocked([&quot;name&quot;]) -&gt; bool
 
Returns true if is the object &quot;name&quot; locked. If &quot;name&quot; is not given the
currently selected item is used.
1136,47 → 1135,47
</translation>
</message>
<message>
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection>)
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
 
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.
 
May raise WrongFrameTypeError.
</source>
<translation>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection>)
<translation>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
 
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.
 
May raise WrongFrameTypeError.
</translation>
</message>
<message>
<source>getFontNames() -> list
<source>getFontNames() -&gt; list
 
Returns a list with the names of all available fonts.
</source>
<translation>getFontNames() -> list
<translation>getFontNames() -&gt; list
 
Returns a list with the names of all available fonts.
</translation>
</message>
<message>
<source>getXFontNames() -> list of tuples
<source>getXFontNames() -&gt; list of tuples
 
Returns a larger font info. It's a list of the tuples with:
Returns a larger font info. It&apos;s a list of the tuples with:
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
</source>
<translation>getXFontNames() -> list of tuples
<translation>getXFontNames() -&gt; list of tuples
 
Returns a larger font info. It's a list of the tuples with:
Returns a larger font info. It&apos;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(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -> bool
<source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
 
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
1184,10 → 1183,10
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
 
May raise NotFoundError if the specified font can't be found.
May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</source>
<translation>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -> bool
<translation>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
 
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
1195,184 → 1194,184
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
 
May raise NotFoundError if the specified font can't be found.
May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</translation>
</message>
<message>
<source>getLayers() -> list
<source>getLayers() -&gt; list
 
Returns a list with the names of all defined layers.
</source>
<translation>getLayers() -> list
<translation>getLayers() -&gt; list
 
Returns a list with the names of all defined layers.
</translation>
</message>
<message>
<source>setActiveLayer(&quot;name&quot;)
<source>setActiveLayer(&quot;name&quot;)
 
Sets the active layer to the layer named &quot;name&quot;.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>setActiveLayer(&quot;name&quot;)
<translation>setActiveLayer(&quot;name&quot;)
 
Sets the active layer to the layer named &quot;name&quot;.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>getActiveLayer() -> string
<source>getActiveLayer() -&gt; string
 
Returns the name of the current active layer.
</source>
<translation>getActiveLayer() -> string
<translation>getActiveLayer() -&gt; string
 
Returns the name of the current active layer.
</translation>
</message>
<message>
<source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
<source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
<translation>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>setLayerVisible(&quot;layer&quot;, visible)
<source>setLayerVisible(&quot;layer&quot;, visible)
 
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>setLayerVisible(&quot;layer&quot;, visible)
<translation>setLayerVisible(&quot;layer&quot;, visible)
 
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>setLayerPrintable(&quot;layer&quot;, printable)
<source>setLayerPrintable(&quot;layer&quot;, printable)
 
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
false the layer won't be printed.
false the layer won&apos;t be printed.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>setLayerPrintable(&quot;layer&quot;, printable)
<translation>setLayerPrintable(&quot;layer&quot;, printable)
 
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
false the layer won't be printed.
false the layer won&apos;t be printed.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>isLayerPrintable(&quot;layer&quot;) -> bool
<source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 
Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
that the layer &quot;layer&quot; is visible, a value of False means that the layer
&quot;layer&quot; is invisible.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>isLayerPrintable(&quot;layer&quot;) -> bool
<translation>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 
Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
that the layer &quot;layer&quot; is visible, a value of False means that the layer
&quot;layer&quot; is invisible.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>isLayerPrintable(&quot;layer&quot;) -> bool
<source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 
Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>isLayerPrintable(&quot;layer&quot;) -> bool
<translation>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 
Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>deleteLayer(&quot;layer&quot;)
<source>deleteLayer(&quot;layer&quot;)
 
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>deleteLayer(&quot;layer&quot;)
<translation>deleteLayer(&quot;layer&quot;)
 
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.
 
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>createLayer(layer)
<source>createLayer(layer)
 
Creates a new layer with the name &quot;name&quot;.
 
May raise ValueError if the layer name isn't acceptable.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
<translation>createLayer(layer)
<translation>createLayer(layer)
 
Creates a new layer with the name &quot;name&quot;.
 
May raise ValueError if the layer name isn't acceptable.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
</message>
<message>
<source>getGuiLanguage() -> string
<source>getGuiLanguage() -&gt; string
 
Returns a string with the -lang value.
</source>
<translation>getGuiLanguage() -> string
<translation>getGuiLanguage() -&gt; string
 
Returns a string with the -lang value.
</translation>
</message>
<message>
<source>createEllipse(x, y, width, height, [&quot;name&quot;]) -> string
<source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
1380,9 → 1379,9
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
<translation>createEllipse(x, y, width, height, [&quot;name&quot;]) -> string
<translation>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
1390,11 → 1389,11
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
</message>
<message>
<source>createImage(x, y, width, height, [&quot;name&quot;]) -> string
<source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
1402,9 → 1401,9
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
<translation>createImage(x, y, width, height, [&quot;name&quot;]) -> string
<translation>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
1412,11 → 1411,11
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
</message>
<message>
<source>createText(x, y, width, height, [&quot;name&quot;]) -> string
<source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
1424,9 → 1423,9
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
<translation>createText(x, y, width, height, [&quot;name&quot;]) -> string
<translation>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
 
Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
1434,11 → 1433,11
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
</message>
<message>
<source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -> string
<source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
 
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
1446,9 → 1445,9
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
<translation>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -> string
<translation>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
 
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
1456,11 → 1455,11
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
</message>
<message>
<source>createPolyLine(list, [&quot;name&quot;]) -> string
<source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
 
Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1469,11 → 1468,11
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</source>
<translation>createPolyLine(list, [&quot;name&quot;]) -> string
<translation>createPolyLine(list, [&quot;name&quot;]) -&gt; string
 
Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1482,13 → 1481,13
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</translation>
</message>
<message>
<source>createPolygon(list, [&quot;name&quot;]) -> string
<source>createPolygon(list, [&quot;name&quot;]) -&gt; string
 
Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1499,11 → 1498,11
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</source>
<translation>createPolygon(list, [&quot;name&quot;]) -> string
<translation>createPolygon(list, [&quot;name&quot;]) -&gt; string
 
Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1514,13 → 1513,13
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</translation>
</message>
<message>
<source>createBezierLine(list, [&quot;name&quot;]) -> string
<source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
 
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
1532,11 → 1531,11
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</source>
<translation>createBezierLine(list, [&quot;name&quot;]) -> string
<translation>createBezierLine(list, [&quot;name&quot;]) -&gt; string
 
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
1548,13 → 1547,13
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
the number of values passed don&apos;t group into points without leftovers.
</translation>
</message>
<message>
<source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -> string
<source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 
Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1562,10 → 1561,10
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</source>
<translation>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -> string
<translation>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 
Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1573,17 → 1572,17
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.
 
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</translation>
</message>
<message>
<source>deleteObject([&quot;name&quot;])
<source>deleteObject([&quot;name&quot;])
 
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
</source>
<translation>deleteObject([&quot;name&quot;])
<translation>deleteObject([&quot;name&quot;])
 
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
1590,13 → 1589,13
</translation>
</message>
<message>
<source>textFlowsAroundFrame(&quot;name&quot; [, state])
<source>textFlowsAroundFrame(&quot;name&quot; [, state])
 
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
is not passed, text flow is toggled.
</source>
<translation>textFlowsAroundFrame(&quot;name&quot; [, state])
<translation>textFlowsAroundFrame(&quot;name&quot; [, state])
 
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1604,13 → 1603,13
</translation>
</message>
<message>
<source>objectExists([&quot;name&quot;]) -> bool
<source>objectExists([&quot;name&quot;]) -&gt; bool
 
Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
returns True if there is something selected.
</source>
<translation>objectExists([&quot;name&quot;]) -> bool
<translation>objectExists([&quot;name&quot;]) -&gt; bool
 
Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
1618,34 → 1617,34
</translation>
</message>
<message>
<source>setStyle(&quot;style&quot; [, &quot;name&quot;])
<source>setStyle(&quot;style&quot; [, &quot;name&quot;])
 
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it's applied on the selected object.
given, it&apos;s applied on the selected object.
</source>
<translation>setStyle(&quot;style&quot; [, &quot;name&quot;])
<translation>setStyle(&quot;style&quot; [, &quot;name&quot;])
 
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it's applied on the selected object.
given, it&apos;s applied on the selected object.
</translation>
</message>
<message>
<source>getAllStyles() -> list
<source>getAllStyles() -&gt; list
 
Return a list of the names of all paragraph styles in the current document.
</source>
<translation>getAllStyles() -> list
<translation>getAllStyles() -&gt; list
 
Return a list of the names of all paragraph styles in the current document.
</translation>
</message>
<message>
<source>currentPage() -> integer
<source>currentPage() -&gt; integer
 
Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
</source>
<translation>currentPage() -> integer
<translation>currentPage() -&gt; integer
 
Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
1652,23 → 1651,23
</translation>
</message>
<message>
<source>redrawAll()
<source>redrawAll()
 
Redraws all pages.
</source>
<translation>redrawAll()
<translation>redrawAll()
 
Redraws all pages.
</translation>
</message>
<message>
<source>savePageAsEPS(&quot;name&quot;)
<source>savePageAsEPS(&quot;name&quot;)
 
Saves the current page as an EPS to the file &quot;name&quot;.
 
May raise ScribusError if the save failed.
</source>
<translation>savePageAsEPS(&quot;name&quot;)
<translation>savePageAsEPS(&quot;name&quot;)
 
Saves the current page as an EPS to the file &quot;name&quot;.
 
1676,7 → 1675,7
</translation>
</message>
<message>
<source>deletePage(nr)
<source>deletePage(nr)
 
Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
1684,7 → 1683,7
 
May raise IndexError if the page number is out of range
</source>
<translation>deletePage(nr)
<translation>deletePage(nr)
 
Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
1694,18 → 1693,18
</translation>
</message>
<message>
<source>gotoPage(nr)
<source>gotoPage(nr)
 
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn't (curently) change the page the user's view is displaying, it
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
just sets the page that script commands will operates on.
 
May raise IndexError if the page number is out of range.
</source>
<translation>gotoPage(nr)
<translation>gotoPage(nr)
 
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn't (curently) change the page the user's view is displaying, it
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
just sets the page that script commands will operates on.
 
May raise IndexError if the page number is out of range.
1712,40 → 1711,40
</translation>
</message>
<message>
<source>pageCount() -> integer
<source>pageCount() -&gt; integer
 
Returns the number of pages in the document.
</source>
<translation>pageCount() -> integer
<translation>pageCount() -&gt; integer
 
Returns the number of pages in the document.
</translation>
</message>
<message>
<source>getHGuides() -> list
<source>getHGuides() -&gt; list
 
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_&lt;type> constants.
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</source>
<translation>getHGuides() -> list
<translation>getHGuides() -&gt; list
 
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_&lt;type> constants.
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</translation>
</message>
<message>
<source>setHGuides(list)
<source>setHGuides(list)
 
Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type> constants.
measured in the current document units - see UNIT_&lt;type&gt; constants.
 
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
setHGuides([90,250]) # replace current guides entirely
</source>
<translation>setHGuides(list)
<translation>setHGuides(list)
 
Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type> constants.
measured in the current document units - see UNIT_&lt;type&gt; constants.
 
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
setHGuides([90,250]) # replace current guides entirely
1752,73 → 1751,73
</translation>
</message>
<message>
<source>getVGuides()
<source>getVGuides()
 
See getHGuides.
</source>
<translation>getVGuides()
<translation>getVGuides()
 
See getHGuides.
</translation>
</message>
<message>
<source>setVGuides()
<source>setVGuides()
 
See setHGuides.
</source>
<translation>setVGuides()
<translation>setVGuides()
 
See setHGuides.
</translation>
</message>
<message>
<source>getPageSize() -> tuple
<source>getPageSize() -&gt; tuple
 
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_&lt;type> constants and getPageMargins()
Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</source>
<translation>getPageSize() -> tuple
<translation>getPageSize() -&gt; tuple
 
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_&lt;type> constants and getPageMargins()
Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</translation>
</message>
<message>
<source>getPageItems() -> list
<source>getPageItems() -&gt; list
 
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' is a text frame (type 4) and is the first at
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</source>
<translation>getPageItems() -> list
<translation>getPageItems() -&gt; list
 
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' is a text frame (type 4) and is the first at
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</translation>
</message>
<message>
<source>getPageMargins()
<source>getPageMargins()
 
Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type> constants and getPageSize().
units. See UNIT_&lt;type&gt; constants and getPageSize().
</source>
<translation>getPageMargins()
<translation>getPageMargins()
 
Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type> constants and getPageSize().
units. See UNIT_&lt;type&gt; constants and getPageSize().
</translation>
</message>
<message>
<source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
<source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colors. If &quot;name&quot; is not given the
currently selected item is used.
</source>
<translation>setFillColor(&quot;color&quot;, [&quot;name&quot;])
<translation>setFillColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the fill colour of the object &quot;name&quot; to the colour &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colours. If &quot;name&quot; is not given the
1826,12 → 1825,12
</translation>
</message>
<message>
<source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
<source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
</source>
<translation>setLineColor(&quot;color&quot;, [&quot;name&quot;])
<translation>setLineColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the line colour of the object &quot;name&quot; to the colour &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
1838,7 → 1837,7
</translation>
</message>
<message>
<source>setLineWidth(width, [&quot;name&quot;])
<source>setLineWidth(width, [&quot;name&quot;])
 
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1846,7 → 1845,7
 
May raise ValueError if the line width is out of bounds.
</source>
<translation>setLineWidth(width, [&quot;name&quot;])
<translation>setLineWidth(width, [&quot;name&quot;])
 
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1856,7 → 1855,7
</translation>
</message>
<message>
<source>setLineShade(shade, [&quot;name&quot;])
<source>setLineShade(shade, [&quot;name&quot;])
 
Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1865,7 → 1864,7
 
May raise ValueError if the line shade is out of bounds.
</source>
<translation>setLineShade(shade, [&quot;name&quot;])
<translation>setLineShade(shade, [&quot;name&quot;])
 
Sets the shading of the line colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1876,49 → 1875,49
</translation>
</message>
<message>
<source>setLineJoin(join, [&quot;name&quot;])
<source>setLineJoin(join, [&quot;name&quot;])
 
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type>.
predefined constants for join - JOIN_&lt;type&gt;.
</source>
<translation>setLineJoin(join, [&quot;name&quot;])
<translation>setLineJoin(join, [&quot;name&quot;])
 
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type>.
predefined constants for join - JOIN_&lt;type&gt;.
</translation>
</message>
<message>
<source>setLineEnd(endtype, [&quot;name&quot;])
<source>setLineEnd(endtype, [&quot;name&quot;])
 
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type>.
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</source>
<translation>setLineEnd(endtype, [&quot;name&quot;])
<translation>setLineEnd(endtype, [&quot;name&quot;])
 
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type>.
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</translation>
</message>
<message>
<source>setLineStyle(style, [&quot;name&quot;])
<source>setLineStyle(style, [&quot;name&quot;])
 
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style>.
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</source>
<translation>setLineStyle(style, [&quot;name&quot;])
<translation>setLineStyle(style, [&quot;name&quot;])
 
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style>.
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</translation>
</message>
<message>
<source>setFillShade(shade, [&quot;name&quot;])
<source>setFillShade(shade, [&quot;name&quot;])
 
Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1927,7 → 1926,7
 
May raise ValueError if the fill shade is out of bounds.
</source>
<translation>setFillShade(shade, [&quot;name&quot;])
<translation>setFillShade(shade, [&quot;name&quot;])
 
Sets the shading of the fill colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1938,7 → 1937,7
</translation>
</message>
<message>
<source>setCornerRadius(radius, [&quot;name&quot;])
<source>setCornerRadius(radius, [&quot;name&quot;])
 
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.
1945,7 → 1944,7
 
May raise ValueError if the corner radius is negative.
</source>
<translation>setCornerRadius(radius, [&quot;name&quot;])
<translation>setCornerRadius(radius, [&quot;name&quot;])
 
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.
1954,23 → 1953,23
</translation>
</message>
<message>
<source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
<source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
 
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.
 
May raise NotFoundError if the line style doesn't exist.
May raise NotFoundError if the line style doesn&apos;t exist.
</source>
<translation>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
<translation>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
 
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.
 
May raise NotFoundError if the line style doesn't exist.
May raise NotFoundError if the line style doesn&apos;t exist.
</translation>
</message>
<message>
<source>getFont([&quot;name&quot;]) -> string
<source>getFont([&quot;name&quot;]) -&gt; string
 
Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
1977,7 → 1976,7
of the selection is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
<translation>getFont([&quot;name&quot;]) -> string
<translation>getFont([&quot;name&quot;]) -&gt; string
 
Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
1986,12 → 1985,12
</translation>
</message>
<message>
<source>getTextLength([&quot;name&quot;]) -> integer
<source>getTextLength([&quot;name&quot;]) -&gt; integer
 
Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getTextLength([&quot;name&quot;]) -> integer
<translation>getTextLength([&quot;name&quot;]) -&gt; integer
 
Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
1998,7 → 1997,7
</translation>
</message>
<message>
<source>getText([&quot;name&quot;]) -> string
<source>getText([&quot;name&quot;]) -&gt; string
 
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
2005,7 → 2004,7
currently visible text, is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
<translation>getText([&quot;name&quot;]) -> string
<translation>getText([&quot;name&quot;]) -&gt; string
 
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
2014,7 → 2013,7
</translation>
</message>
<message>
<source>getAllText([&quot;name&quot;]) -> string
<source>getAllText([&quot;name&quot;]) -&gt; string
 
Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
2021,7 → 2020,7
text is returned. If &quot;name&quot; is not given the currently selected item is
used.
</source>
<translation>getAllText([&quot;name&quot;]) -> string
<translation>getAllText([&quot;name&quot;]) -&gt; string
 
Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
2030,12 → 2029,12
</translation>
</message>
<message>
<source>getLineSpacing([&quot;name&quot;]) -> float
<source>getLineSpacing([&quot;name&quot;]) -&gt; float
 
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getLineSpacing([&quot;name&quot;]) -> float
<translation>getLineSpacing([&quot;name&quot;]) -&gt; float
 
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
2042,12 → 2041,12
</translation>
</message>
<message>
<source>getColumnGap([&quot;name&quot;]) -> float
<source>getColumnGap([&quot;name&quot;]) -&gt; float
 
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
</source>
<translation>getColumnGap([&quot;name&quot;]) -> float
<translation>getColumnGap([&quot;name&quot;]) -&gt; float
 
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
2054,12 → 2053,12
</translation>
</message>
<message>
<source>getColumns([&quot;name&quot;]) -> integer
<source>getColumns([&quot;name&quot;]) -&gt; integer
 
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
</source>
<translation>getColumns([&quot;name&quot;]) -> integer
<translation>getColumns([&quot;name&quot;]) -&gt; integer
 
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
2066,23 → 2065,23
</translation>
</message>
<message>
<source>setText(&quot;text&quot;, [&quot;name&quot;])
<source>setText(&quot;text&quot;, [&quot;name&quot;])
 
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</source>
<translation>setText(&quot;text&quot;, [&quot;name&quot;])
<translation>setText(&quot;text&quot;, [&quot;name&quot;])
 
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
<source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
 
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
Text must be UTF encoded (see setText() as reference) The first character has an
2091,7 → 2090,7
 
May throw IndexError for an insertion out of bounds.
</source>
<translation>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
<translation>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
 
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
Text must be UTF encoded (see setText() as reference) The first character has an
2102,7 → 2101,7
</translation>
</message>
<message>
<source>setFont(&quot;font&quot;, [&quot;name&quot;])
<source>setFont(&quot;font&quot;, [&quot;name&quot;])
 
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed. If &quot;name&quot; is not given the
2110,7 → 2109,7
 
May throw ValueError if the font cannot be found.
</source>
<translation>setFont(&quot;font&quot;, [&quot;name&quot;])
<translation>setFont(&quot;font&quot;, [&quot;name&quot;])
 
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed. If &quot;name&quot; is not given the
2120,7 → 2119,7
</translation>
</message>
<message>
<source>setFontSize(size, [&quot;name&quot;])
<source>setFontSize(size, [&quot;name&quot;])
 
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
2127,9 → 2126,9
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.
 
May throw ValueError for a font size that's out of bounds.
May throw ValueError for a font size that&apos;s out of bounds.
</source>
<translation>setFontSize(size, [&quot;name&quot;])
<translation>setFontSize(size, [&quot;name&quot;])
 
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
2136,11 → 2135,11
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.
 
May throw ValueError for a font size that's out of bounds.
May throw ValueError for a font size that&apos;s out of bounds.
</translation>
</message>
<message>
<source>setLineSpacing(size, [&quot;name&quot;])
<source>setLineSpacing(size, [&quot;name&quot;])
 
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
2148,7 → 2147,7
 
May throw ValueError if the line spacing is out of bounds.
</source>
<translation>setLineSpacing(size, [&quot;name&quot;])
<translation>setLineSpacing(size, [&quot;name&quot;])
 
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
2158,7 → 2157,7
</translation>
</message>
<message>
<source>setColumnGap(size, [&quot;name&quot;])
<source>setColumnGap(size, [&quot;name&quot;])
 
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.
2165,7 → 2164,7
 
May throw ValueError if the column gap is out of bounds (must be positive).
</source>
<translation>setColumnGap(size, [&quot;name&quot;])
<translation>setColumnGap(size, [&quot;name&quot;])
 
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.
2174,7 → 2173,7
</translation>
</message>
<message>
<source>setColumns(nr, [&quot;name&quot;])
<source>setColumns(nr, [&quot;name&quot;])
 
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.
2181,7 → 2180,7
 
May throw ValueError if number of columns is not at least one.
</source>
<translation>setColumns(nr, [&quot;name&quot;])
<translation>setColumns(nr, [&quot;name&quot;])
 
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.
2190,7 → 2189,7
</translation>
</message>
<message>
<source>setTextAlignment(align, [&quot;name&quot;])
<source>setTextAlignment(align, [&quot;name&quot;])
 
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
2198,7 → 2197,7
 
May throw ValueError for an invalid alignment constant.
</source>
<translation>setTextAlignment(align, [&quot;name&quot;])
<translation>setTextAlignment(align, [&quot;name&quot;])
 
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
2208,7 → 2207,7
</translation>
</message>
<message>
<source>selectText(start, count, [&quot;name&quot;])
<source>selectText(start, count, [&quot;name&quot;])
 
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
2217,7 → 2216,7
 
May throw IndexError if the selection is outside the bounds of the text.
</source>
<translation>selectText(start, count, [&quot;name&quot;])
<translation>selectText(start, count, [&quot;name&quot;])
 
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
2228,13 → 2227,13
</translation>
</message>
<message>
<source>deleteText([&quot;name&quot;])
<source>deleteText([&quot;name&quot;])
 
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
selected item is used.
</source>
<translation>deleteText([&quot;name&quot;])
<translation>deleteText([&quot;name&quot;])
 
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
2242,13 → 2241,13
</translation>
</message>
<message>
<source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
<source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
given the currently selected item is used.
</source>
<translation>setTextColor(&quot;color&quot;, [&quot;name&quot;])
<translation>setTextColor(&quot;color&quot;, [&quot;name&quot;])
 
Sets the text colour of the text frame &quot;name&quot; to the colour &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
2256,12 → 2255,12
</translation>
</message>
<message>
<source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
<source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
 
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
</source>
<translation>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
<translation>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
 
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
2268,7 → 2267,7
</translation>
</message>
<message>
<source>setTextShade(shade, [&quot;name&quot;])
<source>setTextShade(shade, [&quot;name&quot;])
 
Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
2276,7 → 2275,7
intensity). If &quot;name&quot; is not given the currently selected item is
used.
</source>
<translation>setTextShade(shade, [&quot;name&quot;])
<translation>setTextShade(shade, [&quot;name&quot;])
 
Sets the shading of the text colour of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
2286,7 → 2285,7
</translation>
</message>
<message>
<source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
<source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
 
Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
2294,7 → 2293,7
 
May throw ScribusException if linking rules are violated.
</source>
<translation>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
<translation>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
 
Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
2304,46 → 2303,46
</translation>
</message>
<message>
<source>unlinkTextFrames(&quot;name&quot;)
<source>unlinkTextFrames(&quot;name&quot;)
 
Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
 
May throw ScribusException if linking rules are violated.
</source>
<translation>unlinkTextFrames(&quot;name&quot;)
<translation>unlinkTextFrames(&quot;name&quot;)
 
Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
 
May throw ScribusException if linking rules are violated.
</translation>
</message>
<message>
<source>traceText([&quot;name&quot;])
<source>traceText([&quot;name&quot;])
 
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</source>
<translation>traceText([&quot;name&quot;])
<translation>traceText([&quot;name&quot;])
 
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</translation>
</message>
<message>
<source>textOverflows([&quot;name&quot;, nolinks]) -> integer
<source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer
 
Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn't
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.
 
May raise WrongFrameTypeError if the target frame is not an text frame
</source>
<translation>textOverflows([&quot;name&quot;, nolinks]) -> integer
<translation>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer
 
Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn't
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.
 
May raise WrongFrameTypeError if the target frame is not an text frame
2350,7 → 2349,7
</translation>
</message>
<message>
<source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
<source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
 
Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
If &quot;name&quot; is not given the currently selected item is used.
2357,7 → 2356,7
 
May raise WrongFrameTypeError if the target frame is not a text frame
</source>
<translation>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
<translation>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
 
Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
If &quot;name&quot; is not given the currently selected item is used.
2366,7 → 2365,7
</translation>
</message>
<message>
<source>isPDFBookmark([&quot;name&quot;]) -> bool
<source>isPDFBookmark([&quot;name&quot;]) -&gt; bool
 
Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.
2373,7 → 2372,7
 
May raise WrongFrameTypeError if the target frame is not a text frame
</source>
<translation>isPDFBookmark([&quot;name&quot;]) -> bool
<translation>isPDFBookmark([&quot;name&quot;]) -&gt; bool
 
Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.
2382,12 → 2381,12
</translation>
</message>
<message>
<source>progressReset()
<source>progressReset()
 
Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</source>
<translation>progressReset()
<translation>progressReset()
 
Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
2394,19 → 2393,19
</translation>
</message>
<message>
<source>progressTotal(max)
<source>progressTotal(max)
 
Sets the progress bar's maximum steps value to the specified number.
Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</source>
<translation>progressTotal(max)
<translation>progressTotal(max)
 
Sets the progress bar's maximum steps value to the specified number.
Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</translation>
</message>
<message>
<source>progressSet(nr)
<source>progressSet(nr)
 
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
2414,9 → 2413,9
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech's Qt docs]
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</source>
<translation>progressSet(nr)
<translation>progressSet(nr)
 
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
2424,980 → 2423,972
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech's Qt docs]
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</translation>
</message>
<message>
<source>setCursor()
<source>setCursor()
 
[UNSUPPORTED!] This might break things, so steer clear for now.
</source>
<translation>setCursor()
<translation>setCursor()
 
[UNSUPPORTED!] This might break things, so steer clear for now.
</translation>
</message>
<message>
<source>docChanged(bool)
<source>docChanged(bool)
 
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's
useful to call this procedure when you're changing the document, because Scribus
won't automatically notice when you change the document using a script.
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</source>
<translation>docChanged(bool)
<translation>docChanged(bool)
 
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's
useful to call this procedure when you're changing the document, because Scribus
won't automatically notice when you change the document using a script.
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</translation>
</message>
</context>
<context>
</context>
<context>
<name>About</name>
<message>
<source>Build-ID:</source>
<translation>Build-ID:</translation>
<source>Build-ID:</source>
<translation>Build-ID:</translation>
</message>
<message>
<source>Contributions from:</source>
<translation>Contributions from:</translation>
<source>Contributions from:</source>
<translation>Contributions from:</translation>
</message>
<message>
<source>&amp;About</source>
<translation>&amp;About</translation>
<source>&amp;About</source>
<translation>&amp;About</translation>
</message>
<message>
<source>A&amp;uthors</source>
<translation>A&amp;uthors</translation>
<source>A&amp;uthors</source>
<translation>A&amp;uthors</translation>
</message>
<message>
<source>&amp;Translations</source>
<translation>&amp;Translations</translation>
<source>&amp;Translations</source>
<translation>&amp;Translations</translation>
</message>
<message>
<source>&amp;Online</source>
<translation>&amp;Online</translation>
<source>&amp;Online</source>
<translation>&amp;Online</translation>
</message>
<message>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
</message>
<message>
<source>Development Team:</source>
<translation>Development Team:</translation>
<source>Development Team:</source>
<translation>Development Team:</translation>
</message>
<message>
<source>Official Documentation:</source>
<translation>Official Documentation:</translation>
<source>Official Documentation:</source>
<translation>Official Documentation:</translation>
</message>
<message>
<source>Other Documentation:</source>
<translation>Other Documentation:</translation>
<source>Other Documentation:</source>
<translation>Other Documentation:</translation>
</message>
<message>
<source>Homepage</source>
<translation>Homepage</translation>
<source>Homepage</source>
<translation>Homepage</translation>
</message>
<message>
<source>Online Reference</source>
<translation>Online Reference</translation>
<source>Online Reference</source>
<translation>Online Reference</translation>
</message>
<message>
<source>Bugs and Feature Requests</source>
<translation>Bugs and Feature Requests</translation>
<source>Bugs and Feature Requests</source>
<translation>Bugs and Feature Requests</translation>
</message>
<message>
<source>Mailing List</source>
<translation>Mailing List</translation>
<source>Mailing List</source>
<translation>Mailing List</translation>
</message>
<message>
<source>Official Translations and Translators:</source>
<translation>Official Translations and Translators:</translation>
<source>Official Translations and Translators:</source>
<translation>Official Translations and Translators:</translation>
</message>
<message>
<source>Previous Translation Contributors:</source>
<translation>Previous Translation Contributors:</translation>
<source>Previous Translation Contributors:</source>
<translation>Previous Translation Contributors:</translation>
</message>
<message>
<source>About Scribus %1</source>
<translation>About Scribus %1</translation>
<source>About Scribus %1</source>
<translation>About Scribus %1</translation>
</message>
<message>
<source>%1 %2 %3 </source>
<translation>%1 %2 %3 </translation>
<source>%1 %2 %3 </source>
<translation>%1 %2 %3 </translation>
</message>
<message>
<source>Windows Port:</source>
<translation>Windows Port:</translation>
<source>Windows Port:</source>
<translation>Windows Port:</translation>
</message>
<message>
<source>Mac OSX Aqua Port:</source>
<translation>Mac OSX Aqua Port:</translation>
<source>Mac OSX Aqua Port:</source>
<translation>Mac OSX Aqua Port:</translation>
</message>
<message>
<source>Wiki</source>
<translation>Wiki</translation>
<source>Wiki</source>
<translation>Wiki</translation>
</message>
<message>
<source>Using GhostScript version %1</source>
<translation>Using GhostScript version %1</translation>
<source>Using GhostScript version %1</source>
<translation>Using GhostScript version %1</translation>
</message>
<message>
<source>No GS version available</source>
<translation>No GS version available</translation>
<source>No GS version available</source>
<translation>No GS version available</translation>
</message>
<message>
<source>Scribus Version %1
<source>Scribus Version %1
%2 %3 (%4)</source>
<translation>Scribus Version %1
<translation>Scribus Version %1
%2 %3 (%4)</translation>
</message>
<message>
<source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</source>
<translation>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</translation>
<source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</source>
<translation>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</translation>
</message>
</context>
<context>
</context>
<context>
<name>ActionManager</name>
<message>
<source>&amp;Image Effects</source>
<translation>&amp;Image Effects</translation>
<source>&amp;Image Effects</source>
<translation>&amp;Image Effects</translation>
</message>
<message>
<source>&amp;Tabulators...</source>
<translation>&amp;Tabulators...</translation>
<source>&amp;Tabulators...</source>
<translation>&amp;Tabulators...</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;New</translation>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<source>&amp;Open...</source>
<translation>&amp;Open...</translation>
<source>&amp;Open...</source>
<translation>&amp;Open...</translation>
</message>
<message>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
</message>
<message>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
</message>
<message>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
</message>
<message>
<source>Re&amp;vert to Saved</source>
<translation>Re&amp;vert to Saved</translation>
<source>Re&amp;vert to Saved</source>
<translation>Re&amp;vert to Saved</translation>
</message>
<message>
<source>Collect for O&amp;utput...</source>
<translation>Collect for O&amp;utput...</translation>
<source>Collect for O&amp;utput...</source>
<translation>Collect for O&amp;utput...</translation>
</message>
<message>
<source>Get Text...</source>
<translation>Get Text...</translation>
<source>Get Text...</source>
<translation>Get Text...</translation>
</message>
<message>
<source>Append &amp;Text...</source>
<translation>Append &amp;Text...</translation>
<source>Append &amp;Text...</source>
<translation>Append &amp;Text...</translation>
</message>
<message>
<source>Get Image...</source>
<translation>Get Image...</translation>
<source>Get Image...</source>
<translation>Get Image...</translation>
</message>
<message>
<source>Save &amp;Text...</source>
<translation>Save &amp;Text...</translation>
<source>Save &amp;Text...</source>
<translation>Save &amp;Text...</translation>
</message>
<message>
<source>Save Page as &amp;EPS...</source>
<translation>Save Page as &amp;EPS...</translation>
<source>Save Page as &amp;EPS...</source>
<translation>Save Page as &amp;EPS...</translation>
</message>
<message>
<source>Save as P&amp;DF...</source>
<translation>Save as P&amp;DF...</translation>
<source>Save as P&amp;DF...</source>
<translation>Save as P&amp;DF...</translation>
</message>
<message>
<source>Document &amp;Setup...</source>
<translation>Document &amp;Setup...</translation>
<source>Document &amp;Setup...</source>
<translation>Document &amp;Setup...</translation>
</message>
<message>
<source>&amp;Print...</source>
<translation>&amp;Print...</translation>
<source>&amp;Print...</source>
<translation>&amp;Print...</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Undo</source>
<translation>&amp;Undo</translation>
<source>&amp;Undo</source>
<translation>&amp;Undo</translation>
</message>
<message>
<source>&amp;Redo</source>
<translation>&amp;Redo</translation>
<source>&amp;Redo</source>
<translation>&amp;Redo</translation>
</message>
<message>
<source>&amp;Item Action Mode</source>
<translation>&amp;Item Action Mode</translation>
<source>&amp;Item Action Mode</source>
<translation>&amp;Item Action Mode</translation>
</message>
<message>
<source>Cu&amp;t</source>
<translation>Cu&amp;t</translation>
<source>Cu&amp;t</source>
<translation>Cu&amp;t</translation>
</message>
<message>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
</message>
<message>
<source>&amp;Paste</source>
<translation>&amp;Paste</translation>
<source>&amp;Paste</source>
<translation>&amp;Paste</translation>
</message>
<message>
<source>C&amp;lear Contents</source>
<translation>C&amp;lear Contents</translation>
<source>C&amp;lear Contents</source>
<translation>C&amp;lear Contents</translation>
</message>
<message>
<source>Select &amp;All</source>
<translation>Select &amp;All</translation>
<source>Select &amp;All</source>
<translation>Select &amp;All</translation>
</message>
<message>
<source>&amp;Deselect All</source>
<translation>&amp;Deselect All</translation>
<source>&amp;Deselect All</source>
<translation>&amp;Deselect All</translation>
</message>
<message>
<source>&amp;Search/Replace...</source>
<translation>&amp;Search/Replace...</translation>
<source>&amp;Search/Replace...</source>
<translation>&amp;Search/Replace...</translation>
</message>
<message>
<source>C&amp;olors...</source>
<translation>C&amp;olours...</translation>
<source>C&amp;olors...</source>
<translation>C&amp;olours...</translation>
</message>
<message>
<source>&amp;Paragraph Styles...</source>
<translation>&amp;Paragraph Styles...</translation>
<source>&amp;Paragraph Styles...</source>
<translation>&amp;Paragraph Styles...</translation>
</message>
<message>
<source>&amp;Line Styles...</source>
<translation>&amp;Line Styles...</translation>
<source>&amp;Line Styles...</source>
<translation>&amp;Line Styles...</translation>
</message>
<message>
<source>&amp;Master Pages...</source>
<translation>&amp;Master Pages...</translation>
<source>&amp;Master Pages...</source>
<translation>&amp;Master Pages...</translation>
</message>
<message>
<source>&amp;Javascripts...</source>
<translation>&amp;Javascripts...</translation>
<source>&amp;Javascripts...</source>
<translation>&amp;Javascripts...</translation>
</message>
<message>
<source>P&amp;references...</source>
<translation>P&amp;references...</translation>
<source>P&amp;references...</source>
<translation>P&amp;references...</translation>
</message>
<message>
<source>%1 pt</source>
<translation>%1 pt</translation>
<source>%1 pt</source>
<translation>%1 pt</translation>
</message>
<message>
<source>&amp;Other...</source>
<translation>&amp;Other...</translation>
<source>&amp;Other...</source>
<translation>&amp;Other...</translation>
</message>
<message>
<source>&amp;Left</source>
<translation>&amp;Left</translation>
<source>&amp;Left</source>
<translation>&amp;Left</translation>
</message>
<message>
<source>&amp;Center</source>
<translation>&amp;Centre</translation>
<source>&amp;Center</source>
<translation>&amp;Centre</translation>
</message>
<message>
<source>&amp;Right</source>
<translation>&amp;Right</translation>
<source>&amp;Right</source>
<translation>&amp;Right</translation>
</message>
<message>
<source>&amp;Block</source>
<translation>&amp;Block</translation>
<source>&amp;Block</source>
<translation>&amp;Block</translation>
</message>
<message>
<source>&amp;Forced</source>
<translation>&amp;Forced</translation>
<source>&amp;Forced</source>
<translation>&amp;Forced</translation>
</message>
<message>
<source>&amp;%1 %</source>
<translation>&amp;%1 %</translation>
<source>&amp;%1 %</source>
<translation>&amp;%1 %</translation>
</message>
<message>
<source>&amp;Normal</source>
<translation>&amp;Normal</translation>
<source>&amp;Normal</source>
<translation>&amp;Normal</translation>
</message>
<message>
<source>&amp;Underline</source>
<translation>&amp;Underline</translation>
<source>&amp;Underline</source>
<translation>&amp;Underline</translation>
</message>
<message>
<source>Underline &amp;Words</source>
<translation>Underline &amp;Words</translation>
<source>Underline &amp;Words</source>
<translation>Underline &amp;Words</translation>
</message>
<message>
<source>&amp;Strike Through</source>
<translation>&amp;Strike Through</translation>
<source>&amp;Strike Through</source>
<translation>&amp;Strike Through</translation>
</message>
<message>
<source>&amp;All Caps</source>
<translation>&amp;All Caps</translation>
<source>&amp;All Caps</source>
<translation>&amp;All Caps</translation>
</message>
<message>
<source>Small &amp;Caps</source>
<translation>Small &amp;Caps</translation>
<source>Small &amp;Caps</source>
<translation>Small &amp;Caps</translation>
</message>
<message>
<source>Su&amp;perscript</source>
<translation>Su&amp;perscript</translation>
<source>Su&amp;perscript</source>
<translation>Su&amp;perscript</translation>
</message>
<message>
<source>Su&amp;bscript</source>
<translation>Su&amp;bscript</translation>
<source>Su&amp;bscript</source>
<translation>Su&amp;bscript</translation>
</message>
<message>
<source>&amp;Outline</source>
<translation>&amp;Outline</translation>
<source>&amp;Outline</source>
<translation>&amp;Outline</translation>
</message>
<message>
<source>D&amp;uplicate</source>
<translation>D&amp;uplicate</translation>
<source>D&amp;uplicate</source>
<translation>D&amp;uplicate</translation>
</message>
<message>
<source>&amp;Multiple Duplicate</source>
<translation>&amp;Multiple Duplicate</translation>
<source>&amp;Multiple Duplicate</source>
<translation>&amp;Multiple Duplicate</translation>
</message>
<message>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
<source>&amp;Group</source>
<translation>&amp;Group</translation>
<source>&amp;Group</source>
<translation>&amp;Group</translation>
</message>
<message>
<source>&amp;Ungroup</source>
<translation>&amp;Ungroup</translation>
<source>&amp;Ungroup</source>
<translation>&amp;Ungroup</translation>
</message>
<message>
<source>Is &amp;Locked</source>
<translation>Is &amp;Locked</translation>
<source>Is &amp;Locked</source>
<translation>Is &amp;Locked</translation>
</message>
<message>
<source>Si&amp;ze is Locked</source>
<translation>Si&amp;ze is Locked</translation>
<source>Si&amp;ze is Locked</source>
<translation>Si&amp;ze is Locked</translation>
</message>
<message>
<source>Lower to &amp;Bottom</source>
<translation>Lower to &amp;Bottom</translation>
<source>Lower to &amp;Bottom</source>
<translation>Lower to &amp;Bottom</translation>
</message>
<message>
<source>Raise to &amp;Top</source>
<translation>Raise to &amp;Top</translation>
<source>Raise to &amp;Top</source>
<translation>Raise to &amp;Top</translation>
</message>
<message>
<source>&amp;Lower</source>
<translation>&amp;Lower</translation>
<source>&amp;Lower</source>
<translation>&amp;Lower</translation>
</message>
<message>
<source>&amp;Raise</source>
<translation>&amp;Raise</translation>
<source>&amp;Raise</source>
<translation>&amp;Raise</translation>
</message>
<message>
<source>Send to S&amp;crapbook</source>
<translation>Send to S&amp;crapbook</translation>
<source>Send to S&amp;crapbook</source>
<translation>Send to S&amp;crapbook</translation>
</message>
<message>
<source>&amp;Attributes...</source>
<translation>&amp;Attributes...</translation>
<source>&amp;Attributes...</source>
<translation>&amp;Attributes...</translation>
</message>
<message>
<source>I&amp;mage Visible</source>
<translation>I&amp;mage Visible</translation>
<source>I&amp;mage Visible</source>
<translation>I&amp;mage Visible</translation>
</message>
<message>
<source>Is PDF &amp;Bookmark</source>
<translation>Is PDF &amp;Bookmark</translation>
<source>Is PDF &amp;Bookmark</source>
<translation>Is PDF &amp;Bookmark</translation>
</message>
<message>
<source>Is PDF A&amp;nnotation</source>
<translation>Is PDF A&amp;nnotation</translation>
<source>Is PDF A&amp;nnotation</source>
<translation>Is PDF A&amp;nnotation</translation>
</message>
<message>
<source>Annotation P&amp;roperties</source>
<translation>Annotation P&amp;roperties</translation>
<source>Annotation P&amp;roperties</source>
<translation>Annotation P&amp;roperties</translation>
</message>
<message>
<source>Field P&amp;roperties</source>
<translation>Field P&amp;roperties</translation>
<source>Field P&amp;roperties</source>
<translation>Field P&amp;roperties</translation>
</message>
<message>
<source>&amp;Edit Shape...</source>
<translation>&amp;Edit Shape...</translation>
<source>&amp;Edit Shape...</source>
<translation>&amp;Edit Shape...</translation>
</message>
<message>
<source>&amp;Attach Text to Path</source>
<translation>&amp;Attach Text to Path</translation>
<source>&amp;Attach Text to Path</source>
<translation>&amp;Attach Text to Path</translation>
</message>
<message>
<source>&amp;Detach Text from Path</source>
<translation>&amp;Detach Text from Path</translation>
<source>&amp;Detach Text from Path</source>
<translation>&amp;Detach Text from Path</translation>
</message>
<message>
<source>&amp;Combine Polygons</source>
<translation>&amp;Combine Polygons</translation>
<source>&amp;Combine Polygons</source>
<translation>&amp;Combine Polygons</translation>
</message>
<message>
<source>Split &amp;Polygons</source>
<translation>Split &amp;Polygons</translation>
<source>Split &amp;Polygons</source>
<translation>Split &amp;Polygons</translation>
</message>
<message>
<source>&amp;Bezier Curve</source>
<translation>&amp;Bezier Curve</translation>
<source>&amp;Bezier Curve</source>
<translation>&amp;Bezier Curve</translation>
</message>
<message>
<source>&amp;Image Frame</source>
<translation>&amp;Image Frame</translation>
<source>&amp;Image Frame</source>
<translation>&amp;Image Frame</translation>
</message>
<message>
<source>&amp;Outlines</source>
<translation>&amp;Outlines</translation>
<source>&amp;Outlines</source>
<translation>&amp;Outlines</translation>
</message>
<message>
<source>&amp;Polygon</source>
<translation>&amp;Polygon</translation>
<source>&amp;Polygon</source>
<translation>&amp;Polygon</translation>
</message>
<message>
<source>&amp;Text Frame</source>
<translation>&amp;Text Frame</translation>
<source>&amp;Text Frame</source>
<translation>&amp;Text Frame</translation>
</message>
<message>
<source>&amp;Glyph...</source>
<translation>&amp;Glyph...</translation>
<source>&amp;Glyph...</source>
<translation>&amp;Glyph...</translation>
</message>
<message>
<source>Sample Text</source>
<translation>Sample Text</translation>
<source>Sample Text</source>
<translation>Sample Text</translation>
</message>
<message>
<source>&amp;Insert...</source>
<translation>&amp;Insert...</translation>
<source>&amp;Insert...</source>
<translation>&amp;Insert...</translation>
</message>
<message>
<source>Im&amp;port...</source>
<translation>Im&amp;port...</translation>
<source>Im&amp;port...</source>
<translation>Im&amp;port...</translation>
</message>
<message>
<source>&amp;Delete...</source>
<translation>&amp;Delete...</translation>
<source>&amp;Delete...</source>
<translation>&amp;Delete...</translation>
</message>
<message>
<source>&amp;Copy...</source>
<translation>&amp;Copy...</translation>
<source>&amp;Copy...</source>
<translation>&amp;Copy...</translation>
</message>
<message>
<source>&amp;Move...</source>
<translation>&amp;Move...</translation>
<source>&amp;Move...</source>
<translation>&amp;Move...</translation>
</message>
<message>
<source>&amp;Apply Master Page...</source>
<translation>&amp;Apply Master Page...</translation>
<source>&amp;Apply Master Page...</source>
<translation>&amp;Apply Master Page...</translation>
</message>
<message>
<source>Manage &amp;Guides...</source>
<translation>Manage &amp;Guides...</translation>
<source>Manage &amp;Guides...</source>
<translation>Manage &amp;Guides...</translation>
</message>
<message>
<source>&amp;Fit in window</source>
<translation>&amp;Fit in window</translation>
<source>&amp;Fit in window</source>
<translation>&amp;Fit in window</translation>
</message>
<message>
<source>&amp;50%</source>
<translation>&amp;50%</translation>
<source>&amp;50%</source>
<translation>&amp;50%</translation>
</message>
<message>
<source>&amp;75%</source>
<translation>&amp;75%</translation>
<source>&amp;75%</source>
<translation>&amp;75%</translation>
</message>
<message>
<source>&amp;100%</source>
<translation>&amp;100%</translation>
<source>&amp;100%</source>
<translation>&amp;100%</translation>
</message>
<message>
<source>&amp;200%</source>
<translation>&amp;200%</translation>
<source>&amp;200%</source>
<translation>&amp;200%</translation>
</message>
<message>
<source>&amp;Thumbnails</source>
<translation>&amp;Thumbnails</translation>
<source>&amp;Thumbnails</source>
<translation>&amp;Thumbnails</translation>
</message>
<message>
<source>Show &amp;Margins</source>
<translation>Show &amp;Margins</translation>
<source>Show &amp;Margins</source>
<translation>Show &amp;Margins</translation>
</message>
<message>
<source>Show &amp;Frames</source>
<translation>Show &amp;Frames</translation>
<source>Show &amp;Frames</source>
<translation>Show &amp;Frames</translation>
</message>
<message>
<source>Show &amp;Images</source>
<translation>Show &amp;Images</translation>
<source>Show &amp;Images</source>
<translation>Show &amp;Images</translation>
</message>
<message>
<source>Show &amp;Grid</source>
<translation>Show &amp;Grid</translation>
<source>Show &amp;Grid</source>
<translation>Show &amp;Grid</translation>
</message>
<message>
<source>Show G&amp;uides</source>
<translation>Show G&amp;uides</translation>
<source>Show G&amp;uides</source>
<translation>Show G&amp;uides</translation>
</message>
<message>
<source>Show &amp;Baseline Grid</source>
<translation>Show &amp;Baseline Grid</translation>
<source>Show &amp;Baseline Grid</source>
<translation>Show &amp;Baseline Grid</translation>
</message>
<message>
<source>Show &amp;Text Chain</source>
<translation>Show &amp;Text Chain</translation>
<source>Show &amp;Text Chain</source>
<translation>Show &amp;Text Chain</translation>
</message>
<message>
<source>Sn&amp;ap to Grid</source>
<translation>Sn&amp;ap to Grid</translation>
<source>Sn&amp;ap to Grid</source>
<translation>Sn&amp;ap to Grid</translation>
</message>
<message>
<source>Sna&amp;p to Guides</source>
<translation>Sna&amp;p to Guides</translation>
<source>Sna&amp;p to Guides</source>
<translation>Sna&amp;p to Guides</translation>
</message>
<message>
<source>&amp;Properties</source>
<translation>&amp;Properties</translation>
<source>&amp;Properties</source>
<translation>&amp;Properties</translation>
</message>
<message>
<source>&amp;Scrapbook</source>
<translation>&amp;Scrapbook</translation>
<source>&amp;Scrapbook</source>
<translation>&amp;Scrapbook</translation>
</message>
<message>
<source>&amp;Layers</source>
<translation>&amp;Layers</translation>
<source>&amp;Layers</source>
<translation>&amp;Layers</translation>
</message>
<message>
<source>&amp;Bookmarks</source>
<translation>&amp;Bookmarks</translation>
<source>&amp;Bookmarks</source>
<translation>&amp;Bookmarks</translation>
</message>
<message>
<source>&amp;Measurements</source>
<translation>&amp;Measurements</translation>
<source>&amp;Measurements</source>
<translation>&amp;Measurements</translation>
</message>
<message>
<source>Action &amp;History</source>
<translation>Action &amp;History</translation>
<source>Action &amp;History</source>
<translation>Action &amp;History</translation>
</message>
<message>
<source>Preflight &amp;Verifier</source>
<translation>Preflight &amp;Verifier</translation>
<source>Preflight &amp;Verifier</source>
<translation>Preflight &amp;Verifier</translation>
</message>
<message>
<source>&amp;Tools</source>
<translation>&amp;Tools</translation>
<source>&amp;Tools</source>
<translation>&amp;Tools</translation>
</message>
<message>
<source>P&amp;DF Tools</source>
<translation>P&amp;DF Tools</translation>
<source>P&amp;DF Tools</source>
<translation>P&amp;DF Tools</translation>
</message>
<message>
<source>Select Item</source>
<translation>Select Item</translation>
<source>Select Item</source>
<translation>Select Item</translation>
</message>
<message>
<source>T&amp;able</source>
<translation>T&amp;able</translation>
<source>T&amp;able</source>
<translation>T&amp;able</translation>
</message>
<message>
<source>&amp;Shape</source>
<translation>&amp;Shape</translation>
<source>&amp;Shape</source>
<translation>&amp;Shape</translation>
</message>
<message>
<source>&amp;Line</source>
<translation>&amp;Line</translation>
<source>&amp;Line</source>
<translation>&amp;Line</translation>
</message>
<message>
<source>&amp;Freehand Line</source>
<translation>&amp;Freehand Line</translation>
<source>&amp;Freehand Line</source>
<translation>&amp;Freehand Line</translation>
</message>
<message>
<source>Rotate Item</source>
<translation>Rotate Item</translation>
<source>Rotate Item</source>
<translation>Rotate Item</translation>
</message>
<message>
<source>Zoom in or out</source>
<translation>Zoom in or out</translation>
<source>Zoom in or out</source>
<translation>Zoom in or out</translation>
</message>
<message>
<source>Zoom in</source>
<translation>Zoom in</translation>
<source>Zoom in</source>
<translation>Zoom in</translation>
</message>
<message>
<source>Zoom out</source>
<translation>Zoom out</translation>
<source>Zoom out</source>
<translation>Zoom out</translation>
</message>
<message>
<source>Edit Contents of Frame</source>
<translation>Edit Contents of Frame</translation>
<source>Edit Contents of Frame</source>
<translation>Edit Contents of Frame</translation>
</message>
<message>
<source>Link Text Frames</source>
<translation>Link Text Frames</translation>
<source>Link Text Frames</source>
<translation>Link Text Frames</translation>
</message>
<message>
<source>Unlink Text Frames</source>
<translation>Unlink Text Frames</translation>
<source>Unlink Text Frames</source>
<translation>Unlink Text Frames</translation>
</message>
<message>
<source>&amp;Eye Dropper</source>
<translation>&amp;Eye Dropper</translation>
<source>&amp;Eye Dropper</source>
<translation>&amp;Eye Dropper</translation>
</message>
<message>
<source>Copy Item Properties</source>
<translation>Copy Item Properties</translation>
<source>Copy Item Properties</source>
<translation>Copy Item Properties</translation>
</message>
<message>
<source>Edit the text with the Story Editor</source>
<translation>Edit the text with the Story Editor</translation>
<source>Edit the text with the Story Editor</source>
<translation>Edit the text with the Story Editor</translation>
</message>
<message>
<source>Insert Text Frame</source>
<translation>Insert Text Frame</translation>
<source>Insert Text Frame</source>
<translation>Insert Text Frame</translation>
</message>
<message>
<source>Insert Image Frame</source>
<translation>Insert Image Frame</translation>
<source>Insert Image Frame</source>
<translation>Insert Image Frame</translation>
</message>
<message>
<source>Insert Table</source>
<translation>Insert Table</translation>
<source>Insert Table</source>
<translation>Insert Table</translation>
</message>
<message>
<source>Insert Shape</source>
<translation>Insert Shape</translation>
<source>Insert Shape</source>
<translation>Insert Shape</translation>
</message>
<message>
<source>Insert Polygon</source>
<translation>Insert Polygon</translation>
<source>Insert Polygon</source>
<translation>Insert Polygon</translation>
</message>
<message>
<source>Insert Line</source>
<translation>Insert Line</translation>
<source>Insert Line</source>
<translation>Insert Line</translation>
</message>
<message>
<source>Insert Bezier Curve</source>
<translation>Insert Bezier Curve</translation>
<source>Insert Bezier Curve</source>
<translation>Insert Bezier Curve</translation>
</message>
<message>
<source>Insert Freehand Line</source>
<translation>Insert Freehand Line</translation>
<source>Insert Freehand Line</source>
<translation>Insert Freehand Line</translation>
</message>
<message>
<source>&amp;Manage Pictures</source>
<translation>&amp;Manage Pictures</translation>
<source>&amp;Manage Pictures</source>
<translation>&amp;Manage Pictures</translation>
</message>
<message>
<source>&amp;Hyphenate Text</source>
<translation>&amp;Hyphenate Text</translation>
<source>&amp;Hyphenate Text</source>
<translation>&amp;Hyphenate Text</translation>
</message>
<message>
<source>&amp;Generate Table Of Contents</source>
<translation>&amp;Generate Table Of Contents</translation>
<source>&amp;Generate Table Of Contents</source>
<translation>&amp;Generate Table Of Contents</translation>
</message>
<message>
<source>&amp;About Scribus</source>
<translation>&amp;About Scribus</translation>
<source>&amp;About Scribus</source>
<translation>&amp;About Scribus</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Toolti&amp;ps</source>
<translation>Toolti&amp;ps</translation>
<source>Toolti&amp;ps</source>
<translation>Toolti&amp;ps</translation>
</message>
<message>
<source>Scribus &amp;Manual...</source>
<translation>Scribus &amp;Manual...</translation>
<source>Scribus &amp;Manual...</source>
<translation>Scribus &amp;Manual...</translation>
</message>
<message>
<source>Smart &amp;Hyphen</source>
<translation>Smart &amp;Hyphen</translation>
<source>Smart &amp;Hyphen</source>
<translation>Smart &amp;Hyphen</translation>
</message>
<message>
<source>Non Breaking &amp;Space</source>
<translation>Non Breaking &amp;Space</translation>
<source>Non Breaking &amp;Space</source>
<translation>Non Breaking &amp;Space</translation>
</message>
<message>
<source>Page &amp;Number</source>
<translation>Page &amp;Number</translation>
<source>Page &amp;Number</source>
<translation>Page &amp;Number</translation>
</message>
<message>
<source>Copyright</source>
<translation>Copyright</translation>
<source>Copyright</source>
<translation>Copyright</translation>
</message>
<message>
<source>Registered Trademark</source>
<translation>Registered Trademark</translation>
<source>Registered Trademark</source>
<translation>Registered Trademark</translation>
</message>
<message>
<source>Trademark</source>
<translation>Trademark</translation>
<source>Trademark</source>
<translation>Trademark</translation>
</message>
<message>
<source>Bullet</source>
<translation>Bullet</translation>
<source>Bullet</source>
<translation>Bullet</translation>
</message>
<message>
<source>Em Dash</source>
<translation>Em Dash</translation>
<source>Em Dash</source>
<translation>Em Dash</translation>
</message>
<message>
<source>En Dash</source>
<translation>En Dash</translation>
<source>En Dash</source>
<translation>En Dash</translation>
</message>
<message>
<source>Figure Dash</source>
<translation>Figure Dash</translation>
<source>Figure Dash</source>
<translation>Figure Dash</translation>
</message>
<message>
<source>Quotation Dash</source>
<translation>Quotation Dash</translation>
<source>Quotation Dash</source>
<translation>Quotation Dash</translation>
</message>
<message>
<source>Apostrophe</source>
<translation>Apostrophe</translation>
<source>Apostrophe</source>
<translation>Apostrophe</translation>
</message>
<message>
<source>Straight Double</source>
<translation>Straight Double</translation>
<source>Straight Double</source>
<translation>Straight Double</translation>
</message>
<message>
<source>Single Left</source>
<translation>Single Left</translation>
<source>Single Left</source>
<translation>Single Left</translation>
</message>
<message>
<source>Single Right</source>
<translation>Single Right</translation>
<source>Single Right</source>
<translation>Single Right</translation>
</message>
<message>
<source>Double Left</source>
<translation>Double Left</translation>
<source>Double Left</source>
<translation>Double Left</translation>
</message>
<message>
<source>Double Right</source>
<translation>Double Right</translation>
<source>Double Right</source>
<translation>Double Right</translation>
</message>
<message>
<source>Single Reversed</source>
<translation>Single Reversed</translation>
<source>Single Reversed</source>
<translation>Single Reversed</translation>
</message>
<message>
<source>Double Reversed</source>
<translation>Double Reversed</translation>
<source>Double Reversed</source>
<translation>Double Reversed</translation>
</message>
<message>
<source>Single Left Guillemet</source>
<translation>Single Left Guillemet</translation>
<source>Single Left Guillemet</source>
<translation>Single Left Guillemet</translation>
</message>
<message>
<source>Single Right Guillemet</source>
<translation>Single Right Guillemet</translation>
<source>Single Right Guillemet</source>
<translation>Single Right Guillemet</translation>
</message>
<message>
<source>Double Left Guillemet</source>
<translation>Double Left Guillemet</translation>
<source>Double Left Guillemet</source>
<translation>Double Left Guillemet</translation>
</message>
<message>
<source>Double Right Guillemet</source>
<translation>Double Right Guillemet</translation>
<source>Double Right Guillemet</source>
<translation>Double Right Guillemet</translation>
</message>
<message>
<source>Low Single Comma</source>
<translation>Low Single Comma</translation>
<source>Low Single Comma</source>
<translation>Low Single Comma</translation>
</message>
<message>
<source>Low Double Comma</source>
<translation>Low Double Comma</translation>
<source>Low Double Comma</source>
<translation>Low Double Comma</translation>
</message>
<message>
<source>Double Turned Comma</source>
<translation>Double Turned Comma</translation>
<source>Double Turned Comma</source>
<translation>Double Turned Comma</translation>
</message>
<message>
<source>CJK Single Left</source>
<translation>CJK Single Left</translation>
<source>CJK Single Left</source>
<translation>CJK Single Left</translation>
</message>
<message>
<source>CJK Single Right</source>
<translation>CJK Single Right</translation>
<source>CJK Single Right</source>
<translation>CJK Single Right</translation>
</message>
<message>
<source>CJK Double Left</source>
<translation>CJK Double Left</translation>
<source>CJK Double Left</source>
<translation>CJK Double Left</translation>
</message>
<message>
<source>CJK Double Right</source>
<translation>CJK Double Right</translation>
<source>CJK Double Right</source>
<translation>CJK Double Right</translation>
</message>
<message>
<source>Toggle Palettes</source>
<translation>Toggle Palettes</translation>
<source>Toggle Palettes</source>
<translation>Toggle Palettes</translation>
</message>
<message>
<source>S&amp;hadow</source>
<translation>S&amp;hadow</translation>
<source>S&amp;hadow</source>
<translation>S&amp;hadow</translation>
</message>
<message>
<source>&amp;Low Resolution</source>
<translation>&amp;Low Resolution</translation>
<source>&amp;Low Resolution</source>
<translation>&amp;Low Resolution</translation>
</message>
<message>
<source>&amp;Normal Resolution</source>
<translation>&amp;Normal Resolution</translation>
<source>&amp;Normal Resolution</source>
<translation>&amp;Normal Resolution</translation>
</message>
<message>
<source>&amp;Full Resolution</source>
<translation>&amp;Full Resolution</translation>
<source>&amp;Full Resolution</source>
<translation>&amp;Full Resolution</translation>
</message>
<message>
<source>Edit Image...</source>
<translation>Edit Image...</translation>
<source>Edit Image...</source>
<translation>Edit Image...</translation>
</message>
<message>
<source>&amp;Update Image</source>
<translation>&amp;Update Image</translation>
<source>&amp;Update Image</source>
<translation>&amp;Update Image</translation>
</message>
<message>
<source>Adjust Frame to Image</source>
<translation>Adjust Frame to Image</translation>
<source>Adjust Frame to Image</source>
<translation>Adjust Frame to Image</translation>
</message>
<message>
<source>Extended Image Properties</source>
<translation>Extended Image Properties</translation>
<source>Extended Image Properties</source>
<translation>Extended Image Properties</translation>
</message>
<message>
<source>Show Control Characters</source>
<translation>Show Control Characters</translation>
<source>Show Control Characters</source>
<translation>Show Control Characters</translation>
</message>
<message>
<source>&amp;Align and Distribute</source>
<translation>&amp;Align and Distribute</translation>
<source>&amp;Align and Distribute</source>
<translation>&amp;Align and Distribute</translation>
</message>
<message>
<source>Edit Text...</source>
<translation>Edit Text...</translation>
<source>Edit Text...</source>
<translation>Edit Text...</translation>
</message>
<message>
<source>New Line</source>
<translation>New Line</translation>
<source>New Line</source>
<translation>New Line</translation>
</message>
<message>
<source>Frame Break</source>
<translation>Frame Break</translation>
<source>Frame Break</source>
<translation>Frame Break</translation>
</message>
<message>
<source>Column Break</source>
<translation>Column Break</translation>
<source>Column Break</source>
<translation>Column Break</translation>
</message>
<message>
<source>Non Breaking Dash</source>
<translation>Non Breaking Dash</translation>
<source>Non Breaking Dash</source>
<translation>Non Breaking Dash</translation>
</message>
<message>
<source>Toggle Guides</source>
<translation>Toggle Guides</translation>
<source>Toggle Guides</source>
<translation>Toggle Guides</translation>
</message>
<message>
<source>&amp;Arrange Pages</source>
<translation>&amp;Arrange Pages</translation>
<source>&amp;Arrange Pages</source>
<translation>&amp;Arrange Pages</translation>
</message>
<message>
<source>Dehyphenate Text</source>
<translation>Dehyphenate Text</translation>
<source>Dehyphenate Text</source>
<translation>Dehyphenate Text</translation>
</message>
<message>
<source>Manage Page Properties...</source>
<translation>Manage Page Properties...</translation>
<source>Manage Page Properties...</source>
<translation>Manage Page Properties...</translation>
</message>
<message>
<source>Rulers relative to Page</source>
<translation>Rulers relative to Page</translation>
<source>Rulers relative to Page</source>
<translation>Rulers relative to Page</translation>
</message>
</context>
<context>
</context>
<context>
<name>AdvOptions</name>
<message>
<source>Advanced Options</source>
<translation>Advanced Options</translation>
<source>Advanced Options</source>
<translation>Advanced Options</translation>
</message>
<message>
<source>Creates PostScript Level 3</source>
<translation>Creates PostScript Level 3</translation>
<source>Creates PostScript Level 3</source>
<translation>Creates PostScript Level 3</translation>
</message>
<message>
<source>Creates PostScript Level 2 only, beware,
<source>Creates PostScript Level 2 only, beware,
this can create huge files</source>
<translation>Creates PostScript Level 2 only, beware,
<translation>Creates PostScript Level 2 only, beware,
this can create huge files</translation>
</message>
<message>
<source>Creates PostScript Level 1 only, beware,
<source>Creates PostScript Level 1 only, beware,
this can create huge files</source>
<translation>Creates PostScript Level 1 only, beware,
<translation>Creates PostScript Level 1 only, beware,
this can create huge files</translation>
</message>
<message>
<source>Mirror Page(s) &amp;Horizontal</source>
<translation>Mirror Page(s) &amp;Horizontal</translation>
<source>Mirror Page(s) &amp;Horizontal</source>
<translation>Mirror Page(s) &amp;Horizontal</translation>
</message>
<message>
<source>Mirror Page(s) &amp;Vertical</source>
<translation>Mirror Page(s) &amp;Vertical</translation>
<source>Mirror Page(s) &amp;Vertical</source>
<translation>Mirror Page(s) &amp;Vertical</translation>
</message>
<message>
<source>Apply &amp;ICC Profiles</source>
<translation>Apply &amp;ICC Profiles</translation>
<source>Apply &amp;ICC Profiles</source>
<translation>Apply &amp;ICC Profiles</translation>
</message>
<message>
<source>PostScript Level &amp;1</source>
<translation>PostScript Level &amp;1</translation>
<source>PostScript Level &amp;1</source>
<translation>PostScript Level &amp;1</translation>
</message>
<message>
<source>PostScript Level &amp;2</source>
<translation>PostScript Level &amp;2</translation>
<source>PostScript Level &amp;2</source>
<translation>PostScript Level &amp;2</translation>
</message>
<message>
<source>PostScript Level &amp;3</source>
<translation>PostScript Level &amp;3</translation>
<source>PostScript Level &amp;3</source>
<translation>PostScript Level &amp;3</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Apply Under Color &amp;Removal</source>
<translation>Apply Under Colour &amp;Removal</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
<message>
<source>Apply Under Color &amp;Removal</source>
<translation>Apply Under Colour &amp;Removal</translation>
</message>
<message>
<source>A way of switching off some of the gray shades which are composed
<source>A way of switching off some of the gray shades which are composed
of cyan, yellow and magenta and using black instead.
UCR most affects parts of images which are neutral and/or dark tones
which are close to the gray. Use of this may improve printing some images
and some experimentation and testing is need on a case by case basis.
UCR reduces the possibility of over saturation with CMY inks.</source>
<translation>A way of switching off some of the grey shades which are composed
<translation>A way of switching off some of the grey shades which are composed
of cyan, yellow and magenta and using black instead.
UCR most affects parts of images which are neutral and/or dark tones
which are close to the grey. Use of this may improve printing some images
3405,5641 → 3396,5507
UCR reduces the possibility of over saturation with CMY inks.</translation>
</message>
<message>
<source>Set Media Size</source>
<translation>Set Media Size</translation>
<source>Set Media Size</source>
<translation>Set Media Size</translation>
</message>
</context>
<context>
</context>
<context>
<name>Align</name>
<message>
<source>Distribute/Align</source>
<translation>Distribute/Align</translation>
<source>Distribute/Align</source>
<translation>Distribute/Align</translation>
</message>
<message>
<source>Align</source>
<translation>Align</translation>
<source>Align</source>
<translation>Align</translation>
</message>
<message>
<source>Horizontal</source>
<translation>Horizontal</translation>
<source>Horizontal</source>
<translation>Horizontal</translation>
</message>
<message>
<source>Left Sides</source>
<translation>Left Sides</translation>
<source>Left Sides</source>
<translation>Left Sides</translation>
</message>
<message>
<source>Middles</source>
<translation>Middles</translation>
<source>Middles</source>
<translation>Middles</translation>
</message>
<message>
<source>Right Sides</source>
<translation>Right Sides</translation>
<source>Right Sides</source>
<translation>Right Sides</translation>
</message>
<message>
<source>Vertical</source>
<translation>Vertical</translation>
<source>Vertical</source>
<translation>Vertical</translation>
</message>
<message>
<source>Top Sides</source>
<translation>Top Sides</translation>
<source>Top Sides</source>
<translation>Top Sides</translation>
</message>
<message>
<source>Bottom Sides</source>
<translation>Bottom Sides</translation>
<source>Bottom Sides</source>
<translation>Bottom Sides</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Between:</source>
<translation>&amp;Between:</translation>
</message>
<message>
<source>&amp;Apply</source>
<translation>&amp;Apply</translation>
<source>A&amp;lign</source>
<translation>A&amp;lign</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>Di&amp;splacement</source>
<translation>Di&amp;splacement</translation>
</message>
<message>
<source>&amp;Between:</source>
<translation>&amp;Between:</translation>
<source>Distribute &amp;Evenly</source>
<translation>Distribute &amp;Evenly</translation>
</message>
<message>
<source>A&amp;lign</source>
<translation>A&amp;lign</translation>
<source>Bet&amp;ween:</source>
<translation>Bet&amp;ween:</translation>
</message>
<message>
<source>Di&amp;splacement</source>
<translation>Di&amp;splacement</translation>
<source>Do &amp;Not Change</source>
<translation>Do &amp;Not Change</translation>
</message>
<message>
<source>Distribute &amp;Evenly</source>
<translation>Distribute &amp;Evenly</translation>
<source>Al&amp;ign</source>
<translation>Al&amp;ign</translation>
</message>
<message>
<source>Bet&amp;ween:</source>
<translation>Bet&amp;ween:</translation>
<source>Dis&amp;placement</source>
<translation>Dis&amp;placement</translation>
</message>
<message>
<source>Do &amp;Not Change</source>
<translation>Do &amp;Not Change</translation>
<source>Distribute E&amp;venly</source>
<translation>Distribute E&amp;venly</translation>
</message>
<message>
<source>Al&amp;ign</source>
<translation>Al&amp;ign</translation>
<source>&amp;Do Not Change</source>
<translation>&amp;Do Not Change</translation>
</message>
</context>
<context>
<name>AlignDistributePalette</name>
<message>
<source>Dis&amp;placement</source>
<translation>Dis&amp;placement</translation>
<source>Align and Distribute</source>
<translation>Align and Distribute</translation>
</message>
<message>
<source>Distribute E&amp;venly</source>
<translation>Distribute E&amp;venly</translation>
<source>Align</source>
<translation>Align</translation>
</message>
<message>
<source>&amp;Do Not Change</source>
<translation>&amp;Do Not Change</translation>
<source>&amp;Relative to:</source>
<translation>&amp;Relative to:</translation>
</message>
</context>
<context>
<name>AlignDistributePalette</name>
<message>
<source>Align and Distribute</source>
<translation>Align and Distribute</translation>
<source>First Selected</source>
<translation>First Selected</translation>
</message>
<message>
<source>Align</source>
<translation>Align</translation>
<source>Last Selected</source>
<translation>Last Selected</translation>
</message>
<message>
<source>&amp;Relative to:</source>
<translation>&amp;Relative to:</translation>
<source>Page</source>
<translation>Page</translation>
</message>
<message>
<source>First Selected</source>
<translation>First Selected</translation>
<source>Margins</source>
<translation>Margins</translation>
</message>
<message>
<source>Last Selected</source>
<translation>Last Selected</translation>
<source>Selection</source>
<translation>Selection</translation>
</message>
<message>
<source>Page</source>
<translation>Page</translation>
<source>Align right sides of objects to left side of anchor</source>
<translation>Align right sides of objects to left side of anchor</translation>
</message>
<message>
<source>Margins</source>
<translation>Margins</translation>
<source>Align left sides of objects to right side of anchor</source>
<translation>Align left sides of objects to right side of anchor</translation>
</message>
<message>
<source>Selection</source>
<translation>Selection</translation>
<source>Align bottoms</source>
<translation>Align bottoms</translation>
</message>
<message>
<source>Align right sides of objects to left side of anchor</source>
<translation>Align right sides of objects to left side of anchor</translation>
<source>Align right sides</source>
<translation>Align right sides</translation>
</message>
<message>
<source>Align left sides of objects to right side of anchor</source>
<translation>Align left sides of objects to right side of anchor</translation>
<source>Align tops of objects to bottom of anchor</source>
<translation>Align tops of objects to bottom of anchor</translation>
</message>
<message>
<source>Align bottoms</source>
<translation>Align bottoms</translation>
<source>Center on vertical axis</source>
<translation>Centre on vertical axis</translation>
</message>
<message>
<source>Align right sides</source>
<translation>Align right sides</translation>
<source>Align left sides</source>
<translation>Align left sides</translation>
</message>
<message>
<source>Align tops of objects to bottom of anchor</source>
<translation>Align tops of objects to bottom of anchor</translation>
<source>Center on horizontal axis</source>
<translation>Centre on horizontal axis</translation>
</message>
<message>
<source>Center on vertical axis</source>
<translation>Centre on vertical axis</translation>
<source>Align bottoms of objects to top of anchor</source>
<translation>Align bottoms of objects to top of anchor</translation>
</message>
<message>
<source>Align left sides</source>
<translation>Align left sides</translation>
<source>Align tops</source>
<translation>Align tops</translation>
</message>
<message>
<source>Center on horizontal axis</source>
<translation>Centre on horizontal axis</translation>
<source>Distribute</source>
<translation>Distribute</translation>
</message>
<message>
<source>Align bottoms of objects to top of anchor</source>
<translation>Align bottoms of objects to top of anchor</translation>
<source>Distribute left sides equidistantly</source>
<translation>Distribute left sides equidistantly</translation>
</message>
<message>
<source>Align tops</source>
<translation>Align tops</translation>
<source>Distribute bottoms equidistantly</source>
<translation>Distribute bottoms equidistantly</translation>
</message>
<message>
<source>Distribute</source>
<translation>Distribute</translation>
<source>Distribute centers equidistantly horizontally</source>
<translation>Distribute centres equidistantly horizontally</translation>
</message>
<message>
<source>Distribute left sides equidistantly</source>
<translation>Distribute left sides equidistantly</translation>
<source>Make vertical gaps between objects equal</source>
<translation>Make vertical gaps between objects equal</translation>
</message>
<message>
<source>Distribute bottoms equidistantly</source>
<translation>Distribute bottoms equidistantly</translation>
<source>Distribute centers equidistantly vertically</source>
<translation>Distribute centres equidistantly vertically</translation>
</message>
<message>
<source>Distribute centers equidistantly horizontally</source>
<translation>Distribute centres equidistantly horizontally</translation>
<source>Distribute tops equidistantly</source>
<translation>Distribute tops equidistantly</translation>
</message>
<message>
<source>Make vertical gaps between objects equal</source>
<translation>Make vertical gaps between objects equal</translation>
<source>Distribute right sides equidistantly</source>
<translation>Distribute right sides equidistantly</translation>
</message>
<message>
<source>Distribute centers equidistantly vertically</source>
<translation>Distribute centres equidistantly vertically</translation>
<source>Guide</source>
<translation>Guide</translation>
</message>
<message>
<source>Distribute tops equidistantly</source>
<translation>Distribute tops equidistantly</translation>
<source>&amp;Selected Guide:</source>
<translation>&amp;Selected Guide:</translation>
</message>
<message>
<source>Distribute right sides equidistantly</source>
<translation>Distribute right sides equidistantly</translation>
<source>Make horizontal gaps between objects equal</source>
<translation>Make horizontal gaps between objects equal</translation>
</message>
<message>
<source>Distance</source>
<translation>Distance</translation>
<source>Make horizontal gaps between objects equal to the value specified</source>
<translation>Make horizontal gaps between objects equal to the value specified</translation>
</message>
</context>
<context>
<name>AlignSelect</name>
<message>
<source>Align Text Left</source>
<translation>Align Text Left</translation>
<source>Make vertical gaps between objects equal to the value specified</source>
<translation>Make vertical gaps between objects equal to the value specified</translation>
</message>
<message>
<source>Align Text Right</source>
<translation>Align Text Right</translation>
<source>&amp;Distance:</source>
<translation>&amp;Distance:</translation>
</message>
<message>
<source>Align Text Center</source>
<translation>Align Text Centre</translation>
<source>Distribute the items with the distance specified</source>
<translation>Distribute the items with the distance specified</translation>
</message>
<message>
<source>Align Text Justified</source>
<translation>Align Text Justified</translation>
<source>None Selected</source>
<translation>None Selected</translation>
</message>
<message>
<source>Align Text Forced Justified</source>
<translation>Align Text Forced Justified</translation>
<source>Warning</source>
<translation>Warning</translation>
</message>
</context>
<context>
<name>Annot</name>
<message>
<source>Field Properties</source>
<translation>Field Properties</translation>
<source>Some objects are locked.</source>
<translation>Some objects are locked.</translation>
</message>
<message>
<source>Type:</source>
<translation>Type:</translation>
<source>&amp;Unlock All</source>
<translation>&amp;Unlock All</translation>
</message>
<message>
<source>Button</source>
<translation>Button</translation>
<source>Y: %1%2</source>
<translation>Y: %1%2</translation>
</message>
<message>
<source>Text Field</source>
<translation>Text Field</translation>
<source>X: %1%2</source>
<translation>X: %1%2</translation>
</message>
</context>
<context>
<name>AlignSelect</name>
<message>
<source>Check Box</source>
<translation>Check Box</translation>
<source>Align Text Left</source>
<translation>Align Text Left</translation>
</message>
<message>
<source>Combo Box</source>
<translation>Combo Box</translation>
<source>Align Text Right</source>
<translation>Align Text Right</translation>
</message>
<message>
<source>List Box</source>
<translation>List Box</translation>
<source>Align Text Center</source>
<translation>Align Text Centre</translation>
</message>
<message>
<source>Properties</source>
<translation>Properties</translation>
<source>Align Text Justified</source>
<translation>Align Text Justified</translation>
</message>
<message>
<source>Name:</source>
<translation>Name:</translation>
<source>Align Text Forced Justified</source>
<translation>Align Text Forced Justified</translation>
</message>
</context>
<context>
<name>Annot</name>
<message>
<source>Tool-Tip:</source>
<translation>Tool-Tip:</translation>
<source>Field Properties</source>
<translation>Field Properties</translation>
</message>
<message>
<source>Text</source>
<translation>Text</translation>
<source>Type:</source>
<translation>Type:</translation>
</message>
<message>
<source>Border</source>
<translation>Border</translation>
<source>Button</source>
<translation>Button</translation>
</message>
<message>
<source>Color:</source>
<translation>Colour:</translation>
<source>Text Field</source>
<translation>Text Field</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
<source>Check Box</source>
<translation>Check Box</translation>
</message>
<message>
<source>Width:</source>
<translation>Width:</translation>
<source>Combo Box</source>
<translation>Combo Box</translation>
</message>
<message>
<source>Thin</source>
<translation>Thin</translation>
<source>List Box</source>
<translation>List Box</translation>
</message>
<message>
<source>Normal</source>
<translation>Normal</translation>
<source>Properties</source>
<translation>Properties</translation>
</message>
<message>
<source>Wide</source>
<translation>Wide</translation>
<source>Name:</source>
<translation>Name:</translation>
</message>
<message>
<source>Style:</source>
<translation>Style:</translation>
<source>Tool-Tip:</source>
<translation>Tool-Tip:</translation>
</message>
<message>
<source>Solid</source>
<translation>Solid</translation>
<source>Text</source>
<translation>Text</translation>
</message>
<message>
<source>Dashed</source>
<translation>Dashed</translation>
<source>Border</source>
<translation>Border</translation>
</message>
<message>
<source>Underline</source>
<translation>Underline</translation>
<source>Color:</source>
<translation>Colour:</translation>
</message>
<message>
<source>Beveled</source>
<translation>Beveled</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>Inset</source>
<translation>Inset</translation>
<source>Width:</source>
<translation>Width:</translation>
</message>
<message>
<source>Other</source>
<translation>Other</translation>
<source>Thin</source>
<translation>Thin</translation>
</message>
<message>
<source>Read Only</source>
<translation>Read Only</translation>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<source>Required</source>
<translation>Required</translation>
<source>Wide</source>
<translation>Wide</translation>
</message>
<message>
<source>Don't Export Value</source>
<translation>Don't Export Value</translation>
<source>Style:</source>
<translation>Style:</translation>
</message>
<message>
<source>Visibility:</source>
<translation>Visibility:</translation>
<source>Solid</source>
<translation>Solid</translation>
</message>
<message>
<source>Visible</source>
<translation>Visible</translation>
<source>Dashed</source>
<translation>Dashed</translation>
</message>
<message>
<source>Hidden</source>
<translation>Hidden</translation>
<source>Underline</source>
<translation>Underline</translation>
</message>
<message>
<source>No Print</source>
<translation>No Print</translation>
<source>Beveled</source>
<translation>Beveled</translation>
</message>
<message>
<source>No View</source>
<translation>No View</translation>
<source>Inset</source>
<translation>Inset</translation>
</message>
<message>
<source>Appearance</source>
<translation>Appearance</translation>
<source>Other</source>
<translation>Other</translation>
</message>
<message>
<source>Text for Button Down</source>
<translation>Text for Button Down</translation>
<source>Read Only</source>
<translation>Read Only</translation>
</message>
<message>
<source>Text for Roll Over</source>
<translation>Text for Roll Over</translation>
<source>Required</source>
<translation>Required</translation>
</message>
<message>
<source>Icons</source>
<translation>Icons</translation>
<source>Don&apos;t Export Value</source>
<translation>Don&apos;t Export Value</translation>
</message>
<message>
<source>Use Icons</source>
<translation>Use Icons</translation>
<source>Visibility:</source>
<translation>Visibility:</translation>
</message>
<message>
<source>Remove</source>
<translation>Remove</translation>
<source>Visible</source>
<translation>Visible</translation>
</message>
<message>
<source>Pressed</source>
<translation>Pressed</translation>
<source>Hidden</source>
<translation>Hidden</translation>
</message>
<message>
<source>Roll Over</source>
<translation>Roll Over</translation>
<source>No Print</source>
<translation>No Print</translation>
</message>
<message>
<source>Icon Placement...</source>
<translation>Icon Placement...</translation>
<source>No View</source>
<translation>No View</translation>
</message>
<message>
<source>Highlight</source>
<translation>Highlight</translation>
<source>Appearance</source>
<translation>Appearance</translation>
</message>
<message>
<source>Invert</source>
<translation>Invert</translation>
<source>Text for Button Down</source>
<translation>Text for Button Down</translation>
</message>
<message>
<source>Outlined</source>
<translation>Outlined</translation>
<source>Text for Roll Over</source>
<translation>Text for Roll Over</translation>
</message>
<message>
<source>Push</source>
<translation>Push</translation>
<source>Icons</source>
<translation>Icons</translation>
</message>
<message>
<source>Multi-Line</source>
<translation>Multi-Line</translation>
<source>Use Icons</source>
<translation>Use Icons</translation>
</message>
<message>
<source>Password</source>
<translation>Password</translation>
<source>Remove</source>
<translation>Remove</translation>
</message>
<message>
<source>Limit of</source>
<translation>Limit of</translation>
<source>Pressed</source>
<translation>Pressed</translation>
</message>
<message>
<source>Characters</source>
<translation>Characters</translation>
<source>Roll Over</source>
<translation>Roll Over</translation>
</message>
<message>
<source>Do Not Scroll</source>
<translation>Do Not Scroll</translation>
<source>Icon Placement...</source>
<translation>Icon Placement...</translation>
</message>
<message>
<source>Do Not Spell Check</source>
<translation>Do Not Spell Check</translation>
<source>Highlight</source>
<translation>Highlight</translation>
</message>
<message>
<source>Check Style:</source>
<translation>Check Style:</translation>
<source>Invert</source>
<translation>Invert</translation>
</message>
<message>
<source>Check</source>
<translation>Check</translation>
<source>Outlined</source>
<translation>Outlined</translation>
</message>
<message>
<source>Cross</source>
<translation>Cross</translation>
<source>Push</source>
<translation>Push</translation>
</message>
<message>
<source>Diamond</source>
<translation>Diamond</translation>
<source>Multi-Line</source>
<translation>Multi-Line</translation>
</message>
<message>
<source>Circle</source>
<translation>Circle</translation>
<source>Password</source>
<translation>Password</translation>
</message>
<message>
<source>Star</source>
<translation>Star</translation>
<source>Limit of</source>
<translation>Limit of</translation>
</message>
<message>
<source>Square</source>
<translation>Square</translation>
<source>Characters</source>
<translation>Characters</translation>
</message>
<message>
<source>Default is Checked</source>
<translation>Default is Checked</translation>
<source>Do Not Scroll</source>
<translation>Do Not Scroll</translation>
</message>
<message>
<source>Editable</source>
<translation>Editable</translation>
<source>Do Not Spell Check</source>
<translation>Do Not Spell Check</translation>
</message>
<message>
<source>Options</source>
<translation>Options</translation>
<source>Check Style:</source>
<translation>Check Style:</translation>
</message>
<message>
<source>Java Script</source>
<translation>Java Script</translation>
<source>Check</source>
<translation>Check</translation>
</message>
<message>
<source>Go To</source>
<translation>Go To</translation>
<source>Cross</source>
<translation>Cross</translation>
</message>
<message>
<source>Submit Form</source>
<translation>Submit Form</translation>
<source>Diamond</source>
<translation>Diamond</translation>
</message>
<message>
<source>Reset Form</source>
<translation>Reset Form</translation>
<source>Circle</source>
<translation>Circle</translation>
</message>
<message>
<source>Import Data</source>
<translation>Import Data</translation>
<source>Star</source>
<translation>Star</translation>
</message>
<message>
<source>Event:</source>
<translation>Event:</translation>
<source>Square</source>
<translation>Square</translation>
</message>
<message>
<source>Mouse Up</source>
<translation>Mouse Up</translation>
<source>Default is Checked</source>
<translation>Default is Checked</translation>
</message>
<message>
<source>Mouse Down</source>
<translation>Mouse Down</translation>
<source>Editable</source>
<translation>Editable</translation>
</message>
<message>
<source>Mouse Enter</source>
<translation>Mouse Enter</translation>
<source>Options</source>
<translation>Options</translation>
</message>
<message>
<source>Mouse Exit</source>
<translation>Mouse Exit</translation>
<source>Java Script</source>
<translation>Java Script</translation>
</message>
<message>
<source>On Focus</source>
<translation>On Focus</translation>
<source>Go To</source>
<translation>Go To</translation>
</message>
<message>
<source>On Blur</source>
<translation>On Blur</translation>
<source>Submit Form</source>
<translation>Submit Form</translation>
</message>
<message>
<source>Script:</source>
<translation>Script:</translation>
<source>Reset Form</source>
<translation>Reset Form</translation>
</message>
<message>
<source>Edit...</source>
<translation>Edit...</translation>
<source>Import Data</source>
<translation>Import Data</translation>
</message>
<message>
<source>Submit to URL:</source>
<translation>Submit to URL:</translation>
<source>Event:</source>
<translation>Event:</translation>
</message>
<message>
<source>Submit Data as HTML</source>
<translation>Submit Data as HTML</translation>
<source>Mouse Up</source>
<translation>Mouse Up</translation>
</message>
<message>
<source>Import Data from:</source>
<translation>Import Data from:</translation>
<source>Mouse Down</source>
<translation>Mouse Down</translation>
</message>
<message>
<source>Destination</source>
<translation>Destination</translation>
<source>Mouse Enter</source>
<translation>Mouse Enter</translation>
</message>
<message>
<source>To File:</source>
<translation>To File:</translation>
<source>Mouse Exit</source>
<translation>Mouse Exit</translation>
</message>
<message>
<source>Change...</source>
<translation>Change...</translation>
<source>On Focus</source>
<translation>On Focus</translation>
</message>
<message>
<source>Page:</source>
<translation>Page:</translation>
<source>On Blur</source>
<translation>On Blur</translation>
</message>
<message>
<source>X-Pos:</source>
<translation>X-Pos:</translation>
<source>Script:</source>
<translation>Script:</translation>
</message>
<message>
<source> pt</source>
<translation> pt</translation>
<source>Edit...</source>
<translation>Edit...</translation>
</message>
<message>
<source>Y-Pos:</source>
<translation>Y-Pos:</translation>
<source>Submit to URL:</source>
<translation>Submit to URL:</translation>
</message>
<message>
<source>Action</source>
<translation>Action</translation>
<source>Submit Data as HTML</source>
<translation>Submit Data as HTML</translation>
</message>
<message>
<source>Field is formatted as:</source>
<translation>Field is formatted as:</translation>
<source>Import Data from:</source>
<translation>Import Data from:</translation>
</message>
<message>
<source>Plain</source>
<translation>Plain</translation>
<source>Destination</source>
<translation>Destination</translation>
</message>
<message>
<source>Number</source>
<translation>Number</translation>
<source>To File:</source>
<translation>To File:</translation>
</message>
<message>
<source>Percentage</source>
<translation>Percentage</translation>
<source>Change...</source>
<translation>Change...</translation>
</message>
<message>
<source>Date</source>
<translation>Date</translation>
<source>Page:</source>
<translation>Page:</translation>
</message>
<message>
<source>Time</source>
<translation>Time</translation>
<source>X-Pos:</source>
<translation>X-Pos:</translation>
</message>
<message>
<source>Custom</source>
<translation>Custom</translation>
<source> pt</source>
<translation> pt</translation>
</message>
<message>
<source>Number Format</source>
<translation>Number Format</translation>
<source>Y-Pos:</source>
<translation>Y-Pos:</translation>
</message>
<message>
<source>Decimals:</source>
<translation>Decimals:</translation>
<source>Action</source>
<translation>Action</translation>
</message>
<message>
<source>Use Currency Symbol</source>
<translation>Use Currency Symbol</translation>
<source>Field is formatted as:</source>
<translation>Field is formatted as:</translation>
</message>
<message>
<source>Prepend Currency Symbol</source>
<translation>Prepend Currency Symbol</translation>
<source>Plain</source>
<translation>Plain</translation>
</message>
<message>
<source>Formatting</source>
<translation>Formatting</translation>
<source>Number</source>
<translation>Number</translation>
</message>
<message>
<source>Percent Format</source>
<translation>Percent Format</translation>
<source>Percentage</source>
<translation>Percentage</translation>
</message>
<message>
<source>Date Format</source>
<translation>Date Format</translation>
<source>Date</source>
<translation>Date</translation>
</message>
<message>
<source>Time Format</source>
<translation>Time Format</translation>
<source>Time</source>
<translation>Time</translation>
</message>
<message>
<source>Custom Scripts</source>
<translation>Custom Scripts</translation>
<source>Custom</source>
<translation>Custom</translation>
</message>
<message>
<source>Format:</source>
<translation>Format:</translation>
<source>Number Format</source>
<translation>Number Format</translation>
</message>
<message>
<source>Keystroke:</source>
<translation>Keystroke:</translation>
<source>Decimals:</source>
<translation>Decimals:</translation>
</message>
<message>
<source>Format</source>
<translation>Format</translation>
<source>Use Currency Symbol</source>
<translation>Use Currency Symbol</translation>
</message>
<message>
<source>Value is not validated</source>
<translation>Value is not validated</translation>
<source>Prepend Currency Symbol</source>
<translation>Prepend Currency Symbol</translation>
</message>
<message>
<source>Value must be greater than or equal to:</source>
<translation>Value must be greater than or equal to:</translation>
<source>Formatting</source>
<translation>Formatting</translation>
</message>
<message>
<source>and less or equal to:</source>
<translation>and less or equal to:</translation>
<source>Percent Format</source>
<translation>Percent Format</translation>
</message>
<message>
<source>Custom validate script:</source>
<translation>Custom validate script:</translation>
<source>Date Format</source>
<translation>Date Format</translation>
</message>
<message>
<source>Validate</source>
<translation>Validate</translation>
<source>Time Format</source>
<translation>Time Format</translation>
</message>
<message>
<source>Value is not calculated</source>
<translation>Value is not calculated</translation>
<source>Custom Scripts</source>
<translation>Custom Scripts</translation>
</message>
<message>
<source>Value is the</source>
<translation>Value is the</translation>
<source>Format:</source>
<translation>Format:</translation>
</message>
<message>
<source>sum</source>
<translation>sum</translation>
<source>Keystroke:</source>
<translation>Keystroke:</translation>
</message>
<message>
<source>product</source>
<translation>product</translation>
<source>Format</source>
<translation>Format</translation>
</message>
<message>
<source>average</source>
<translation>average</translation>
<source>Value is not validated</source>
<translation>Value is not validated</translation>
</message>
<message>
<source>minimum</source>
<translation>minimum</translation>
<source>Value must be greater than or equal to:</source>
<translation>Value must be greater than or equal to:</translation>
</message>
<message>
<source>maximum</source>
<translation>maximum</translation>
<source>and less or equal to:</source>
<translation>and less or equal to:</translation>
</message>
<message>
<source>of the following fields:</source>
<translation>of the following fields:</translation>
<source>Custom validate script:</source>
<translation>Custom validate script:</translation>
</message>
<message>
<source>Pick...</source>
<translation>Pick...</translation>
<source>Validate</source>
<translation>Validate</translation>
</message>
<message>
<source>Custom calculation script:</source>
<translation>Custom calculation script:</translation>
<source>Value is not calculated</source>
<translation>Value is not calculated</translation>
</message>
<message>
<source>Calculate</source>
<translation>Calculate</translation>
<source>Value is the</source>
<translation>Value is the</translation>
</message>
<message>
<source>OK</source>
<translation>OK</translation>
<source>sum</source>
<translation>sum</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>product</source>
<translation>product</translation>
</message>
<message>
<source>Enter a comma separated list of fields here</source>
<translation>Enter a comma separated list of fields here</translation>
<source>average</source>
<translation>average</translation>
</message>
<message>
<source>You need at least the Icon for Normal to use Icons for Buttons</source>
<translation>You need at least the Icon for Normal to use Icons for Buttons</translation>
<source>minimum</source>
<translation>minimum</translation>
</message>
<message>
<source>Open</source>
<translation>Open</translation>
<source>maximum</source>
<translation>maximum</translation>
</message>
<message>
<source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
<translation>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation>
<source>of the following fields:</source>
<translation>of the following fields:</translation>
</message>
<message>
<source>Example:</source>
<translation>Example:</translation>
<source>Pick...</source>
<translation>Pick...</translation>
</message>
<message>
<source>Selection Change</source>
<translation>Selection Change</translation>
<source>Custom calculation script:</source>
<translation>Custom calculation script:</translation>
</message>
<message>
<source>Font for use with PDF 1.3:</source>
<translation>Font for use with PDF 1.3:</translation>
<source>Calculate</source>
<translation>Calculate</translation>
</message>
<message>
<source>Flag is ignored for PDF 1.3</source>
<translation>Flag is ignored for PDF 1.3</translation>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<source>PDF Files (*.pdf);;All Files (*)</source>
<translation>PDF Files (*.pdf);;All Files (*)</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
</context>
<context>
<name>Annota</name>
<message>
<source>Annotation Properties</source>
<translation>Annotation Properties</translation>
<source>Enter a comma separated list of fields here</source>
<translation>Enter a comma separated list of fields here</translation>
</message>
<message>
<source>Text</source>
<translation>Text</translation>
<source>You need at least the Icon for Normal to use Icons for Buttons</source>
<translation>You need at least the Icon for Normal to use Icons for Buttons</translation>
</message>
<message>
<source>Link</source>
<translation>Link</translation>
<source>Open</source>
<translation>Open</translation>
</message>
<message>
<source>External Link</source>
<translation>External Link</translation>
<source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
<translation>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation>
</message>
<message>
<source>External Web-Link</source>
<translation>External Web-Link</translation>
<source>Example:</source>
<translation>Example:</translation>
</message>
<message>
<source>Destination</source>
<translation>Destination</translation>
<source>Selection Change</source>
<translation>Selection Change</translation>
</message>
<message>
<source> pt</source>
<translation> pt</translation>
<source>Font for use with PDF 1.3:</source>
<translation>Font for use with PDF 1.3:</translation>
</message>
<message>
<source>Open</source>
<translation>Open</translation>
<source>Flag is ignored for PDF 1.3</source>
<translation>Flag is ignored for PDF 1.3</translation>
</message>
<message>
<source>PDF-Documents (*.pdf);;All Files (*)</source>
<translation>PDF-Documents (*.pdf);;All Files (*)</translation>
<source>PDF Files (*.pdf);;All Files (*)</source>
<translation>PDF Files (*.pdf);;All Files (*)</translation>
</message>
</context>
<context>
<name>Annota</name>
<message>
<source>&amp;Type:</source>
<translation>&amp;Type:</translation>
<source>Annotation Properties</source>
<translation>Annotation Properties</translation>
</message>
<message>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
<source>Text</source>
<translation>Text</translation>
</message>
<message>
<source>&amp;Page:</source>
<translation>&amp;Page:</translation>
<source>Link</source>
<translation>Link</translation>
</message>
<message>
<source>&amp;X-Pos</source>
<translation>&amp;X-Pos</translation>
<source>External Link</source>
<translation>External Link</translation>
</message>
<message>
<source>&amp;Y-Pos:</source>
<translation>&amp;Y-Pos:</translation>
<source>External Web-Link</source>
<translation>External Web-Link</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Destination</source>
<translation>Destination</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source> pt</source>
<translation> pt</translation>
</message>
</context>
<context>
<name>ApplyMasterPageDialog</name>
<message>
<source>Normal</source>
<translation>Normal</translation>
<source>Open</source>
<translation>Open</translation>
</message>
<message>
<source>Apply Master Page</source>
<translation>Apply Master Page</translation>
<source>PDF-Documents (*.pdf);;All Files (*)</source>
<translation>PDF-Documents (*.pdf);;All Files (*)</translation>
</message>
<message>
<source>&amp;Master Page:</source>
<translation>&amp;Master Page:</translation>
<source>&amp;Type:</source>
<translation>&amp;Type:</translation>
</message>
<message>
<source>Apply To</source>
<translation>Apply To</translation>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
</message>
<message>
<source>Current &amp;page</source>
<translation>Current &amp;page</translation>
<source>&amp;Page:</source>
<translation>&amp;Page:</translation>
</message>
<message>
<source>Alt+P</source>
<translation>Alt+P</translation>
<source>&amp;X-Pos</source>
<translation>&amp;X-Pos</translation>
</message>
<message>
<source>&amp;Even pages</source>
<translation>&amp;Even pages</translation>
<source>&amp;Y-Pos:</source>
<translation>&amp;Y-Pos:</translation>
</message>
</context>
<context>
<name>ApplyMasterPageDialog</name>
<message>
<source>Alt+E</source>
<translation>Alt+E</translation>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<source>O&amp;dd pages</source>
<translation>O&amp;dd pages</translation>
<source>Apply Master Page</source>
<translation>Apply Master Page</translation>
</message>
<message>
<source>Alt+D</source>
<translation>Alt+D</translation>
<source>&amp;Master Page:</source>
<translation>&amp;Master Page:</translation>
</message>
<message>
<source>&amp;All pages</source>
<translation>&amp;All pages</translation>
<source>Apply To</source>
<translation>Apply To</translation>
</message>
<message>
<source>Alt+A</source>
<translation>Alt+A</translation>
<source>Current &amp;page</source>
<translation>Current &amp;page</translation>
</message>
<message>
<source>&amp;Within range</source>
<translation>&amp;Within range</translation>
<source>Alt+P</source>
<translation>Alt+P</translation>
</message>
<message>
<source>Alt+W</source>
<translation>Alt+W</translation>
<source>&amp;Even pages</source>
<translation>&amp;Even pages</translation>
</message>
<message>
<source>&lt;qt>Apply the selected template to even, odd or all pages within the following range&lt;/qt></source>
<translation>&lt;qt>Apply the selected template to even, odd or all pages within the following range&lt;/qt></translation>
<source>Alt+E</source>
<translation>Alt+E</translation>
</message>
<message>
<source>to</source>
<translation>to</translation>
<source>O&amp;dd pages</source>
<translation>O&amp;dd pages</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Alt+D</source>
<translation>Alt+D</translation>
</message>
<message>
<source>Alt+O</source>
<translation>Alt+O</translation>
<source>&amp;All pages</source>
<translation>&amp;All pages</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<source>Alt+C</source>
<translation>Alt+C</translation>
<source>&amp;Within range</source>
<translation>&amp;Within range</translation>
</message>
</context>
<context>
<message>
<source>Alt+W</source>
<translation>Alt+W</translation>
</message>
<message>
<source>&lt;qt&gt;Apply the selected template to even, odd or all pages within the following range&lt;/qt&gt;</source>
<translation>&lt;qt&gt;Apply the selected template to even, odd or all pages within the following range&lt;/qt&gt;</translation>
</message>
<message>
<source>to</source>
<translation>to</translation>
</message>
<message>
<source>Alt+O</source>
<translation>Alt+O</translation>
</message>
<message>
<source>Alt+C</source>
<translation>Alt+C</translation>
</message>
</context>
<context>
<name>ArrowChooser</name>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
</context>
<context>
</context>
<context>
<name>Biblio</name>
<message>
<source>Scrapbook</source>
<translation>Scrapbook</translation>
<source>Scrapbook</source>
<translation>Scrapbook</translation>
</message>
<message>
<source>Scrapbooks (*.scs);;All Files (*)</source>
<translation>Scrapbooks (*.scs);;All Files (*)</translation>
<source>Scrapbooks (*.scs);;All Files (*)</source>
<translation>Scrapbooks (*.scs);;All Files (*)</translation>
</message>
<message>
<source>Delete</source>
<translation>Delete</translation>
<source>Delete</source>
<translation>Delete</translation>
</message>
<message>
<source>Object</source>
<translation>Object</translation>
<source>Object</source>
<translation>Object</translation>
</message>
<message>
<source>New Entry</source>
<translation>New Entry</translation>
<source>New Entry</source>
<translation>New Entry</translation>
</message>
<message>
<source>Rename</source>
<translation>Rename</translation>
<source>Rename</source>
<translation>Rename</translation>
</message>
<message>
<source>Warning</source>
<translation>Warning</translation>
<source>Warning</source>
<translation>Warning</translation>
</message>
<message>
<source>Name &quot;%1&quot; isn't unique.
<source>Name &quot;%1&quot; isn&apos;t unique.
Please choose another.</source>
<translation>Name &quot;%1&quot; isn't unique.
<translation>Name &quot;%1&quot; isn&apos;t unique.
Please choose another.</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;New</translation>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<source>&amp;Load...</source>
<translation>&amp;Load...</translation>
<source>&amp;Load...</source>
<translation>&amp;Load...</translation>
</message>
<message>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
</message>
<message>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
</message>
<message>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
</message>
<message>
<source>&amp;Small</source>
<translation>&amp;Small</translation>
<source>&amp;Small</source>
<translation>&amp;Small</translation>
</message>
<message>
<source>&amp;Medium</source>
<translation>&amp;Medium</translation>
<source>&amp;Medium</source>
<translation>&amp;Medium</translation>
</message>
<message>
<source>&amp;Large</source>
<translation>&amp;Large</translation>
<source>&amp;Large</source>
<translation>&amp;Large</translation>
</message>
<message>
<source>&amp;File</source>
<translation>&amp;File</translation>
<source>&amp;File</source>
<translation>&amp;File</translation>
</message>
<message>
<source>&amp;Preview</source>
<translation>&amp;Preview</translation>
<source>&amp;Preview</source>
<translation>&amp;Preview</translation>
</message>
<message>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
</context>
<context>
<name>BookMView</name>
<message>
<source>Bookmarks</source>
<translation>Bookmarks</translation>
<source>Bookmarks</source>
<translation>Bookmarks</translation>
</message>
<message>
<source>Move Bookmark</source>
<translation>Move Bookmark</translation>
<source>Move Bookmark</source>
<translation>Move Bookmark</translation>
</message>
<message>
<source>Insert Bookmark</source>
<translation>Insert Bookmark</translation>
<source>Insert Bookmark</source>
<translation>Insert Bookmark</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>BookPalette</name>
<message>
<source>Bookmarks</source>
<translation>Bookmarks</translation>
<source>Bookmarks</source>
<translation>Bookmarks</translation>
</message>
</context>
<context>
</context>
<context>
<name>ButtonIcon</name>
<message>
<source>Icon Placement</source>
<translation>Icon Placement</translation>
<source>Icon Placement</source>
<translation>Icon Placement</translation>
</message>
<message>
<source>Layout:</source>
<translation>Layout:</translation>
<source>Layout:</source>
<translation>Layout:</translation>
</message>
<message>
<source>Caption only</source>
<translation>Caption only</translation>
<source>Caption only</source>
<translation>Caption only</translation>
</message>
<message>
<source>Icon only</source>
<translation>Icon only</translation>
<source>Icon only</source>
<translation>Icon only</translation>
</message>
<message>
<source>Caption below Icon</source>
<translation>Caption below Icon</translation>
<source>Caption below Icon</source>
<translation>Caption below Icon</translation>
</message>
<message>
<source>Caption above Icon</source>
<translation>Caption above Icon</translation>
<source>Caption above Icon</source>
<translation>Caption above Icon</translation>
</message>
<message>
<source>Caption right to Icon</source>
<translation>Caption right to Icon</translation>
<source>Caption right to Icon</source>
<translation>Caption right to Icon</translation>
</message>
<message>
<source>Caption left to Icon</source>
<translation>Caption left to Icon</translation>
<source>Caption left to Icon</source>
<translation>Caption left to Icon</translation>
</message>
<message>
<source>Caption overlays Icon</source>
<translation>Caption overlays Icon</translation>
<source>Caption overlays Icon</source>
<translation>Caption overlays Icon</translation>
</message>
<message>
<source>Scale:</source>
<translation>Scale:</translation>
<source>Scale:</source>
<translation>Scale:</translation>
</message>
<message>
<source>Always</source>
<translation>Always</translation>
<source>Always</source>
<translation>Always</translation>
</message>
<message>
<source>When Icon is too big</source>
<translation>When Icon is too big</translation>
<source>When Icon is too big</source>
<translation>When Icon is too big</translation>
</message>
<message>
<source>Never</source>
<translation>Never</translation>
<source>Never</source>
<translation>Never</translation>
</message>
<message>
<source>Scale How:</source>
<translation>Scale How:</translation>
<source>Scale How:</source>
<translation>Scale How:</translation>
</message>
<message>
<source>Proportional</source>
<translation>Proportional</translation>
<source>Proportional</source>
<translation>Proportional</translation>
</message>
<message>
<source>Non Proportional</source>
<translation>Non Proportional</translation>
<source>Non Proportional</source>
<translation>Non Proportional</translation>
</message>
<message>
<source>Icon</source>
<translation>Icon</translation>
<source>Icon</source>
<translation>Icon</translation>
</message>
<message>
<source>OK</source>
<translation>OK</translation>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<source>Reset</source>
<translation>Reset</translation>
<source>Reset</source>
<translation>Reset</translation>
</message>
<message>
<source>When Icon is too small</source>
<translation>When Icon is too small</translation>
<source>When Icon is too small</source>
<translation>When Icon is too small</translation>
</message>
</context>
<context>
</context>
<context>
<name>CMSPrefs</name>
<message>
<source>System Profiles</source>
<translation>System Profiles</translation>
<source>System Profiles</source>
<translation>System Profiles</translation>
</message>
<message>
<source>Rendering Intents</source>
<translation>Rendering Intents</translation>
<source>Rendering Intents</source>
<translation>Rendering Intents</translation>
</message>
<message>
<source>Perceptual</source>
<translation>Perceptual</translation>
<source>Perceptual</source>
<translation>Perceptual</translation>
</message>
<message>
<source>Relative Colorimetric</source>
<translation>Relative Colourimetric</translation>
<source>Relative Colorimetric</source>
<translation>Relative Colourimetric</translation>
</message>
<message>
<source>Saturation</source>
<translation>Saturation</translation>
<source>Saturation</source>
<translation>Saturation</translation>
</message>
<message>
<source>Absolute Colorimetric</source>
<translation>Absolute Colourimetric</translation>
<source>Absolute Colorimetric</source>
<translation>Absolute Colourimetric</translation>
</message>
<message>
<source>Default color profile for imported images</source>
<translation>Default colour profile for imported images</translation>
<source>Default color profile for imported images</source>
<translation>Default colour profile for imported images</translation>
</message>
<message>
<source>Default color profile for solid colors on the page</source>
<translation>Default colour profile for solid colours on the page</translation>
<source>Default color profile for solid colors on the page</source>
<translation>Default colour profile for solid colours on the page</translation>
</message>
<message>
<source>Color profile that you have generated or received from the manufacturer.
<source>Color profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source>
<translation>Colour profile that you have generated or received from the manufacturer.
<translation>Colour profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation>
</message>
<message>
<source>Color profile for your printer model from the manufacturer.
<source>Color profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source>
<translation>Colour profile for your printer model from the manufacturer.
<translation>Colour profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation>
</message>
<message>
<source>Black Point Compensation is a method of improving contrast in photos.
<source>Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</source>
<translation>Black Point Compensation is a method of improving contrast in photos.
<translation>Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</translation>
</message>
<message>
<source>Default rendering intent for your monitor. Unless you know why to change it,
<source>Default rendering intent for your monitor. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
<translation>Default rendering intent for your monitor. Unless you know why to change it,
<translation>Default rendering intent for your monitor. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
</message>
<message>
<source>Default rendering intent for your printer. Unless you know why to change it,
<source>Default rendering intent for your printer. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
<translation>Default rendering intent for your printer. Unless you know why to change it,
<translation>Default rendering intent for your printer. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
</message>
<message>
<source>Enable 'soft proofing' of how your document colors will print,
<source>Enable &apos;soft proofing&apos; of how your document colors will print,
based on the chosen printer profile.</source>
<translation>Enable 'soft proofing' of how your document colours will print,
<translation>Enable &apos;soft proofing&apos; of how your document colours will print,
based on the chosen printer profile.</translation>
</message>
<message>
<source>Method of showing colors on the screen which may not print properly.
<source>Method of showing colors on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</source>
<translation>Method of showing colours on the screen which may not print properly.
<translation>Method of showing colours on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</translation>
</message>
<message>
<source>&amp;Activate Color Management</source>
<translation>&amp;Activate Colour Management</translation>
<source>&amp;Activate Color Management</source>
<translation>&amp;Activate Colour Management</translation>
</message>
<message>
<source>&amp;Pictures:</source>
<translation>&amp;Pictures:</translation>
<source>&amp;Pictures:</source>
<translation>&amp;Pictures:</translation>
</message>
<message>
<source>&amp;Solid Colors:</source>
<translation>&amp;Solid Colours:</translation>
<source>&amp;Solid Colors:</source>
<translation>&amp;Solid Colours:</translation>
</message>
<message>
<source>&amp;Monitor:</source>
<translation>&amp;Monitor:</translation>
<source>&amp;Monitor:</source>
<translation>&amp;Monitor:</translation>
</message>
<message>
<source>P&amp;rinter:</source>
<translation>P&amp;rinter:</translation>
<source>P&amp;rinter:</source>
<translation>P&amp;rinter:</translation>
</message>
<message>
<source>M&amp;onitor:</source>
<translation>M&amp;onitor:</translation>
<source>M&amp;onitor:</source>
<translation>M&amp;onitor:</translation>
</message>
<message>
<source>Pr&amp;inter:</source>
<translation>Pr&amp;inter:</translation>
<source>Pr&amp;inter:</source>
<translation>Pr&amp;inter:</translation>
</message>
<message>
<source>Sim&amp;ulate Printer on the Screen</source>
<translation>Sim&amp;ulate Printer on the Screen</translation>
<source>Sim&amp;ulate Printer on the Screen</source>
<translation>Sim&amp;ulate Printer on the Screen</translation>
</message>
<message>
<source>Mark Colors out of &amp;Gamut</source>
<translation>Mark Colours out of &amp;Gamut</translation>
<source>Mark Colors out of &amp;Gamut</source>
<translation>Mark Colours out of &amp;Gamut</translation>
</message>
<message>
<source>Use &amp;Blackpoint Compensation</source>
<translation>Use &amp;Blackpoint Compensation</translation>
<source>Use &amp;Blackpoint Compensation</source>
<translation>Use &amp;Blackpoint Compensation</translation>
</message>
</context>
<context>
</context>
<context>
<name>CMYKChoose</name>
<message>
<source>Edit Color</source>
<translation>Edit Colour</translation>
<source>Edit Color</source>
<translation>Edit Colour</translation>
</message>
<message>
<source>CMYK</source>
<translation>CMYK</translation>
<source>CMYK</source>
<translation>CMYK</translation>
</message>
<message>
<source>RGB</source>
<translation>RGB</translation>
<source>RGB</source>
<translation>RGB</translation>
</message>
<message>
<source>Web Safe RGB</source>
<translation>Web Safe RGB</translation>
<source>Web Safe RGB</source>
<translation>Web Safe RGB</translation>
</message>
<message>
<source>New</source>
<translation>New</translation>
<source>New</source>
<translation>New</translation>
</message>
<message>
<source>Old</source>
<translation>Old</translation>
<source>Old</source>
<translation>Old</translation>
</message>
<message>
<source>C:</source>
<translation>C:</translation>
<source>C:</source>
<translation>C:</translation>
</message>
<message>
<source>M:</source>
<translation>M:</translation>
<source>M:</source>
<translation>M:</translation>
</message>
<message>
<source>Y:</source>
<translation>Y:</translation>
<source>Y:</source>
<translation>Y:</translation>
</message>
<message>
<source>K:</source>
<translation>K:</translation>
<source>K:</source>
<translation>K:</translation>
</message>
<message>
<source>Dynamic Color Bars</source>
<translation>Dynamic Colour Bars</translation>
<source>Dynamic Color Bars</source>
<translation>Dynamic Colour Bars</translation>
</message>
<message>
<source>Static Color Bars</source>
<translation>Static Colour Bars</translation>
<source>Static Color Bars</source>
<translation>Static Colour Bars</translation>
</message>
<message>
<source>R:</source>
<translation>R:</translation>
<source>R:</source>
<translation>R:</translation>
</message>
<message>
<source>G:</source>
<translation>G:</translation>
<source>G:</source>
<translation>G:</translation>
</message>
<message>
<source>B:</source>
<translation>B:</translation>
<source>B:</source>
<translation>B:</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>Warning</source>
<translation>Warning</translation>
<source>Warning</source>
<translation>Warning</translation>
</message>
<message>
<source>Name of the Color is not unique</source>
<translation>Name of the colour is not unique</translation>
<source>Name of the Color is not unique</source>
<translation>Name of the colour is not unique</translation>
</message>
<message>
<source>HSV-Colormap</source>
<translation>HSV-Colourmap</translation>
<source>HSV-Colormap</source>
<translation>HSV-Colourmap</translation>
</message>
<message>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>Color &amp;Model</source>
<translation>Colour &amp;Model</translation>
<source>Color &amp;Model</source>
<translation>Colour &amp;Model</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>You cannot create a color named &quot;%1&quot;.
It&apos;s a reserved name for transparent color</source>
<translation>You cannot create a colour named &quot;%1&quot;.
It&apos;s a reserved name for transparent colour</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>You cannot create a color named &quot;%1&quot;.
It's a reserved name for transparent color</source>
<translation>You cannot create a colour named &quot;%1&quot;.
It's a reserved name for transparent colour</translation>
</message>
</context>
<context>
</context>
<context>
<name>ChTable</name>
<message>
<source>You can see a thumbnail if you press
<source>You can see a thumbnail if you press
and hold down the right mouse button
 
The Insert key inserts a Glyph into the Selection below
and the Delete key removes the last inserted one</source>
<translation>You can see a thumbnail if you press
<translation>You can see a thumbnail if you press
and hold down the right mouse button
 
The Insert key inserts a Glyph into the Selection below
and the Delete key removes the last inserted one</translation>
</message>
</context>
<context>
</context>
<context>
<name>CharSelect</name>
<message>
<source>Select Character:</source>
<translation>Select Character:</translation>
<source>Select Character:</source>
<translation>Select Character:</translation>
</message>
<message>
<source>Font:</source>
<translation>Font:</translation>
<source>Font:</source>
<translation>Font:</translation>
</message>
<message>
<source>Character Class:</source>
<translation>Character Class:</translation>
<source>Character Class:</source>
<translation>Character Class:</translation>
</message>
<message>
<source>&amp;Insert</source>
<translation>&amp;Insert</translation>
<source>&amp;Insert</source>
<translation>&amp;Insert</translation>
</message>
<message>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
</message>
<message>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
</message>
<message>
<source>Insert the characters at the cursor in the text</source>
<translation>Insert the characters at the cursor in the text</translation>
<source>Insert the characters at the cursor in the text</source>
<translation>Insert the characters at the cursor in the text</translation>
</message>
<message>
<source>Delete the current selection(s).</source>
<translation>Delete the current selection(s).</translation>
<source>Delete the current selection(s).</source>
<translation>Delete the current selection(s).</translation>
</message>
<message>
<source>Close this dialog and return to text editing.</source>
<translation>Close this dialog and return to text editing.</translation>
<source>Close this dialog and return to text editing.</source>
<translation>Close this dialog and return to text editing.</translation>
</message>
<message>
<source>Full Character Set</source>
<translation>Full Character Set</translation>
<source>Full Character Set</source>
<translation>Full Character Set</translation>
</message>
<message>
<source>Basic Latin</source>
<translation>Basic Latin</translation>
<source>Basic Latin</source>
<translation>Basic Latin</translation>
</message>
<message>
<source>Latin-1 Supplement</source>
<translation>Latin-1 Supplement</translation>
<source>Latin-1 Supplement</source>
<translation>Latin-1 Supplement</translation>
</message>
<message>
<source>Latin Extended-A</source>
<translation>Latin Extended-A</translation>
<source>Latin Extended-A</source>
<translation>Latin Extended-A</translation>
</message>
<message>
<source>Latin Extended-B</source>
<translation>Latin Extended-B</translation>
<source>Latin Extended-B</source>
<translation>Latin Extended-B</translation>
</message>
<message>
<source>General Punctuation</source>
<translation>General Punctuation</translation>
<source>General Punctuation</source>
<translation>General Punctuation</translation>
</message>
<message>
<source>Super- and Subscripts</source>
<translation>Super- and Subscripts</translation>
<source>Super- and Subscripts</source>
<translation>Super- and Subscripts</translation>
</message>
<message>
<source>Currency Symbols</source>
<translation>Currency Symbols</translation>
<source>Currency Symbols</source>
<translation>Currency Symbols</translation>
</message>
<message>
<source>Letterlike Symbols</source>
<translation>Letterlike Symbols</translation>
<source>Letterlike Symbols</source>
<translation>Letterlike Symbols</translation>
</message>
<message>
<source>Number Forms</source>
<translation>Number Forms</translation>
<source>Number Forms</source>
<translation>Number Forms</translation>
</message>
<message>
<source>Arrows</source>
<translation>Arrows</translation>
<source>Arrows</source>
<translation>Arrows</translation>
</message>
<message>
<source>Mathematical Operators</source>
<translation>Mathematical Operators</translation>
<source>Mathematical Operators</source>
<translation>Mathematical Operators</translation>
</message>
<message>
<source>Box Drawing</source>
<translation>Box Drawing</translation>
<source>Box Drawing</source>
<translation>Box Drawing</translation>
</message>
<message>
<source>Block Elements</source>
<translation>Block Elements</translation>
<source>Block Elements</source>
<translation>Block Elements</translation>
</message>
<message>
<source>Geometric Shapes</source>
<translation>Geometric Shapes</translation>
<source>Geometric Shapes</source>
<translation>Geometric Shapes</translation>
</message>
<message>
<source>Miscellaneous Symbols</source>
<translation>Miscellaneous Symbols</translation>
<source>Miscellaneous Symbols</source>
<translation>Miscellaneous Symbols</translation>
</message>
<message>
<source>Dingbats</source>
<translation>Dingbats</translation>
<source>Dingbats</source>
<translation>Dingbats</translation>
</message>
<message>
<source>Small Form Variants</source>
<translation>Small Form Variants</translation>
<source>Small Form Variants</source>
<translation>Small Form Variants</translation>
</message>
<message>
<source>Ligatures</source>
<translation>Ligatures</translation>
<source>Ligatures</source>
<translation>Ligatures</translation>
</message>
<message>
<source>Specials</source>
<translation>Specials</translation>
<source>Specials</source>
<translation>Specials</translation>
</message>
<message>
<source>Greek</source>
<translation>Greek</translation>
<source>Greek</source>
<translation>Greek</translation>
</message>
<message>
<source>Greek Extended</source>
<translation>Greek Extended</translation>
<source>Greek Extended</source>
<translation>Greek Extended</translation>
</message>
<message>
<source>Cyrillic</source>
<translation>Cyrillic</translation>
<source>Cyrillic</source>
<translation>Cyrillic</translation>
</message>
<message>
<source>Cyrillic Supplement</source>
<translation>Cyrillic Supplement</translation>
<source>Cyrillic Supplement</source>
<translation>Cyrillic Supplement</translation>
</message>
<message>
<source>Arabic</source>
<translation>Arabic</translation>
<source>Arabic</source>
<translation>Arabic</translation>
</message>
<message>
<source>Arabic Extended A</source>
<translation>Arabic Extended A</translation>
<source>Arabic Extended A</source>
<translation>Arabic Extended A</translation>
</message>
<message>
<source>Arabic Extended B</source>
<translation>Arabic Extended B</translation>
<source>Arabic Extended B</source>
<translation>Arabic Extended B</translation>
</message>
<message>
<source>Hebrew</source>
<translation>Hebrew</translation>
<source>Hebrew</source>
<translation>Hebrew</translation>
</message>
</context>
<context>
</context>
<context>
<name>CheckDocument</name>
<message>
<source>Glyphs missing</source>
<translation>Glyphs missing</translation>
<source>Glyphs missing</source>
<translation>Glyphs missing</translation>
</message>
<message>
<source>Text overflow</source>
<translation>Text overflow</translation>
<source>Text overflow</source>
<translation>Text overflow</translation>
</message>
<message>
<source>Object is not on a Page</source>
<translation>Object is not on a Page</translation>
<source>Object is not on a Page</source>
<translation>Object is not on a Page</translation>
</message>
<message>
<source>Missing Image</source>
<translation>Missing Image</translation>
<source>Missing Image</source>
<translation>Missing Image</translation>
</message>
<message>
<source>Image has a DPI-Value less than %1 DPI</source>
<translation>Image has a DPI-Value less than %1 DPI</translation>
<source>Image has a DPI-Value less than %1 DPI</source>
<translation>Image has a DPI-Value less than %1 DPI</translation>
</message>
<message>
<source>Object has transparency</source>
<translation>Object has transparency</translation>
<source>Object has transparency</source>
<translation>Object has transparency</translation>
</message>
<message>
<source>Object is a PDF Annotation or Field</source>
<translation>Object is a PDF Annotation or Field</translation>
<source>Object is a PDF Annotation or Field</source>
<translation>Object is a PDF Annotation or Field</translation>
</message>
<message>
<source>Object is a placed PDF</source>
<translation>Object is a placed PDF</translation>
<source>Object is a placed PDF</source>
<translation>Object is a placed PDF</translation>
</message>
<message>
<source>Document</source>
<translation>Document</translation>
<source>Document</source>
<translation>Document</translation>
</message>
<message>
<source>No Problems found</source>
<translation>No Problems found</translation>
<source>No Problems found</source>
<translation>No Problems found</translation>
</message>
<message>
<source>Page </source>
<translation>Page </translation>
<source>Page </source>
<translation>Page </translation>
</message>
<message>
<source>Free Objects</source>
<translation>Free Objects</translation>
<source>Free Objects</source>
<translation>Free Objects</translation>
</message>
<message>
<source>Problems found</source>
<translation>Problems found</translation>
<source>Problems found</source>
<translation>Problems found</translation>
</message>
<message>
<source>Preflight Verifier</source>
<translation>Preflight Verifier</translation>
<source>Preflight Verifier</source>
<translation>Preflight Verifier</translation>
</message>
<message>
<source>Items</source>
<translation>Items</translation>
<source>Items</source>
<translation>Items</translation>
</message>
<message>
<source>Problems</source>
<translation>Problems</translation>
<source>Problems</source>
<translation>Problems</translation>
</message>
<message>
<source>Current Profile:</source>
<translation>Current Profile:</translation>
<source>Current Profile:</source>
<translation>Current Profile:</translation>
</message>
<message>
<source>&amp;Ignore Errors</source>
<translation>&amp;Ignore Errors</translation>
<source>&amp;Ignore Errors</source>
<translation>&amp;Ignore Errors</translation>
</message>
</context>
<context>
</context>
<context>
<name>ChooseStyles</name>
<message>
<source>Choose Styles</source>
<translation>Choose Styles</translation>
<source>Choose Styles</source>
<translation>Choose Styles</translation>
</message>
<message>
<source>Available Styles</source>
<translation>Available Styles</translation>
<source>Available Styles</source>
<translation>Available Styles</translation>
</message>
<message>
<source>OK</source>
<translation>OK</translation>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>ColorWheel</name>
<message>
<source>Monochromatic</source>
<translation>Monochromatic</translation>
<source>Monochromatic</source>
<translation>Monochromatic</translation>
</message>
<message>
<source>Analogous</source>
<translation>Analogous</translation>
<source>Analogous</source>
<translation>Analogous</translation>
</message>
<message>
<source>Complementary</source>
<translation>Complementary</translation>
<source>Complementary</source>
<translation>Complementary</translation>
</message>
<message>
<source>Split Complementary</source>
<translation>Split Complementary</translation>
<source>Split Complementary</source>
<translation>Split Complementary</translation>
</message>
<message>
<source>Triadic</source>
<translation>Triadic</translation>
<source>Triadic</source>
<translation>Triadic</translation>
</message>
<message>
<source>Tetradic (Double Complementary)</source>
<translation>Tetradic (Double Complementary)</translation>
<source>Tetradic (Double Complementary)</source>
<translation>Tetradic (Double Complementary)</translation>
</message>
<message>
<source>Base Color</source>
<translation>Base Colour</translation>
<source>Base Color</source>
<translation>Base Colour</translation>
</message>
<message>
<source>Monochromatic Light</source>
<translation>Monochromatic Light</translation>
<source>Monochromatic Light</source>
<translation>Monochromatic Light</translation>
</message>
<message>
<source>Monochromatic Dark</source>
<translation>Monochromatic Dark</translation>
<source>Monochromatic Dark</source>
<translation>Monochromatic Dark</translation>
</message>
<message>
<source>1st. Analogous</source>
<translation>1st. Analogous</translation>
<source>1st. Analogous</source>
<translation>1st. Analogous</translation>
</message>
<message>
<source>2nd. Analogous</source>
<translation>2nd. Analogous</translation>
<source>2nd. Analogous</source>
<translation>2nd. Analogous</translation>
</message>
<message>
<source>1st. Split</source>
<translation>1st. Split</translation>
<source>1st. Split</source>
<translation>1st. Split</translation>
</message>
<message>
<source>2nd. Split</source>
<translation>2nd. Split</translation>
<source>2nd. Split</source>
<translation>2nd. Split</translation>
</message>
<message>
<source>3rd. Split</source>
<translation>3rd. Split</translation>
<source>3rd. Split</source>
<translation>3rd. Split</translation>
</message>
<message>
<source>4th. Split</source>
<translation>4th. Split</translation>
<source>4th. Split</source>
<translation>4th. Split</translation>
</message>
<message>
<source>1st. Triadic</source>
<translation>1st. Triadic</translation>
<source>1st. Triadic</source>
<translation>1st. Triadic</translation>
</message>
<message>
<source>2nd. Triadic</source>
<translation>2nd. Triadic</translation>
<source>2nd. Triadic</source>
<translation>2nd. Triadic</translation>
</message>
<message>
<source>1st. Tetradic (base opposite)</source>
<translation>1st. Tetradic (base opposite)</translation>
<source>1st. Tetradic (base opposite)</source>
<translation>1st. Tetradic (base opposite)</translation>
</message>
<message>
<source>2nd. Tetradic (angle)</source>
<translation>2nd. Tetradic (angle)</translation>
<source>2nd. Tetradic (angle)</source>
<translation>2nd. Tetradic (angle)</translation>
</message>
<message>
<source>3rd. Tetradic (angle opposite)</source>
<translation>3rd. Tetradic (angle opposite)</translation>
<source>3rd. Tetradic (angle opposite)</source>
<translation>3rd. Tetradic (angle opposite)</translation>
</message>
</context>
<context>
</context>
<context>
<name>ColorWheelDialog</name>
<message>
<source>Color Wheel</source>
<translation>Colour Wheel</translation>
<source>Color Wheel</source>
<translation>Colour Wheel</translation>
</message>
<message>
<source>Color</source>
<translation>Colour</translation>
<source>Color</source>
<translation>Colour</translation>
</message>
<message>
<source>Name</source>
<translation>Name</translation>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
<source>C</source>
<translation>C</translation>
<source>C</source>
<translation>C</translation>
</message>
<message>
<source>M</source>
<translation>M</translation>
<source>M</source>
<translation>M</translation>
</message>
<message>
<source>Y</source>
<translation>Y</translation>
<source>Y</source>
<translation>Y</translation>
</message>
<message>
<source>K</source>
<translation>K</translation>
<source>K</source>
<translation>K</translation>
</message>
<message>
<source>Select Method:</source>
<translation>Select Method:</translation>
<source>Select Method:</source>
<translation>Select Method:</translation>
</message>
<message>
<source>Angle (0 - 90 degrees):</source>
<translation>Angle (0 - 90 degrees):</translation>
<source>Angle (0 - 90 degrees):</source>
<translation>Angle (0 - 90 degrees):</translation>
</message>
<message>
<source>&amp;Merge Colors</source>
<translation>&amp;Merge Colours</translation>
<source>&amp;Merge Colors</source>
<translation>&amp;Merge Colours</translation>
</message>
<message>
<source>&amp;Replace Colors</source>
<translation>&amp;Replace Colours</translation>
<source>&amp;Replace Colors</source>
<translation>&amp;Replace Colours</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
<message>
<source>Merge created colors into the document colors</source>
<translation>Merge created colours into the document colours</translation>
<source>Merge created colors into the document colors</source>
<translation>Merge created colours into the document colours</translation>
</message>
<message>
<source>Replace created colors in the document colors</source>
<translation>Replace created colours in the document colours</translation>
<source>Replace created colors in the document colors</source>
<translation>Replace created colours in the document colours</translation>
</message>
<message>
<source>Leave colors untouched</source>
<translation>Leave colours untouched</translation>
<source>Leave colors untouched</source>
<translation>Leave colours untouched</translation>
</message>
<message>
<source>Difference between selected value and counted ones. See documentation for more info</source>
<translation>Difference between selected value and counted ones. See documentation for more info</translation>
<source>Difference between selected value and counted ones. See documentation for more info</source>
<translation>Difference between selected value and counted ones. See documentation for more info</translation>
</message>
<message>
<source>Click the wheel to get base color</source>
<translation>Click the wheel to get base colour</translation>
<source>Click the wheel to get base color</source>
<translation>Click the wheel to get base colour</translation>
</message>
<message>
<source>Here you have the sample color schema</source>
<translation>Here you have the sample colour schema</translation>
<source>Here you have the sample color schema</source>
<translation>Here you have the sample colour schema</translation>
</message>
<message>
<source>Select one of the method to create color schema. See documentation for more info</source>
<translation>Select one of the method to create colour schema. See documentation for more info</translation>
<source>Select one of the method to create color schema. See documentation for more info</source>
<translation>Select one of the method to create colour schema. See documentation for more info</translation>
</message>
<message>
<source>Here you have the color of your chosen color schema</source>
<translation>Here you have the colour of your chosen colour schema</translation>
<source>Here you have the color of your chosen color schema</source>
<translation>Here you have the colour of your chosen colour schema</translation>
</message>
<message>
<source>Merging colors</source>
<translation>Merging colours</translation>
<source>Merging colors</source>
<translation>Merging colours</translation>
</message>
<message>
<source>Error: </source>
<translation>Error: </translation>
<source>Error: </source>
<translation>Error: </translation>
</message>
<message>
<source>Now opening the color manager.</source>
<translation>Now opening the colour manager.</translation>
<source>Now opening the color manager.</source>
<translation>Now opening the colour manager.</translation>
</message>
<message>
<source>Color Merging</source>
<translation>Colour Merging</translation>
<source>Color Merging</source>
<translation>Colour Merging</translation>
</message>
<message>
<source>Normal Vision</source>
<translation>Normal Vision</translation>
<source>Normal Vision</source>
<translation>Normal Vision</translation>
</message>
<message>
<source>Protanopy</source>
<translation>Protanopy</translation>
<source>Protanopy</source>
<translation>Protanopy</translation>
</message>
<message>
<source>Deuteranopy</source>
<translation>Deuteranopy</translation>
<source>Deuteranopy</source>
<translation>Deuteranopy</translation>
</message>
<message>
<source>Full Color Blindness</source>
<translation>Full Colour Blindness</translation>
<source>Full Color Blindness</source>
<translation>Full Colour Blindness</translation>
</message>
<message>
<source>Vision Defect:</source>
<translation>Vision Defect:</translation>
<source>Vision Defect:</source>
<translation>Vision Defect:</translation>
</message>
<message>
<source>You can simulate common vision defects here. Just select type of the defect</source>
<translation>You can simulate common vision defects here. Just select type of the defect</translation>
<source>You can simulate common vision defects here. Just select type of the defect</source>
<translation>You can simulate common vision defects here. Just select type of the defect</translation>
</message>
</context>
<context>
</context>
<context>
<name>CommonStrings</name>
<message>
<source>&amp;Apply</source>
<translation>&amp;Apply</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
</message>
</context>
<context>
<name>Cpalette</name>
<message>
<source>Normal</source>
<translation>Normal</translation>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<source>Horizontal Gradient</source>
<translation>Horizontal Gradient</translation>
<source>Horizontal Gradient</source>
<translation>Horizontal Gradient</translation>
</message>
<message>
<source>Vertical Gradient</source>
<translation>Vertical Gradient</translation>
<source>Vertical Gradient</source>
<translation>Vertical Gradient</translation>
</message>
<message>
<source>Diagonal Gradient</source>
<translation>Diagonal Gradient</translation>
<source>Diagonal Gradient</source>
<translation>Diagonal Gradient</translation>
</message>
<message>
<source>Cross Diagonal Gradient</source>
<translation>Cross Diagonal Gradient</translation>
<source>Cross Diagonal Gradient</source>
<translation>Cross Diagonal Gradient</translation>
</message>
<message>
<source>Radial Gradient</source>
<translation>Radial Gradient</translation>
<source>Radial Gradient</source>
<translation>Radial Gradient</translation>
</message>
<message>
<source>Opacity:</source>
<translation>Opacity:</translation>
<source>Opacity:</source>
<translation>Opacity:</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>Shade:</source>
<translation>Shade:</translation>
<source>Shade:</source>
<translation>Shade:</translation>
</message>
<message>
<source>Edit Line Color Properties</source>
<translation>Edit Line Colour Properties</translation>
<source>Edit Line Color Properties</source>
<translation>Edit Line Colour Properties</translation>
</message>
<message>
<source>Edit Fill Color Properties</source>
<translation>Edit Fill Colour Properties</translation>
<source>Edit Fill Color Properties</source>
<translation>Edit Fill Colour Properties</translation>
</message>
<message>
<source>Saturation of color</source>
<translation>Saturation of colour</translation>
<source>Saturation of color</source>
<translation>Saturation of colour</translation>
</message>
<message>
<source>Normal or gradient fill method</source>
<translation>Normal or gradient fill method</translation>
<source>Normal or gradient fill method</source>
<translation>Normal or gradient fill method</translation>
</message>
<message>
<source>Set the transparency for the color selected</source>
<translation>Set the transparency for the colour selected</translation>
<source>Set the transparency for the color selected</source>
<translation>Set the transparency for the colour selected</translation>
</message>
<message>
<source>Color of selected object</source>
<translation>Colour of selected object</translation>
<source>Color of selected object</source>
<translation>Colour of selected object</translation>
</message>
<message>
<source>Free linear Gradient</source>
<translation>Free linear Gradient</translation>
<source>Free linear Gradient</source>
<translation>Free linear Gradient</translation>
</message>
<message>
<source>Free radial Gradient</source>
<translation>Free radial Gradient</translation>
<source>Free radial Gradient</source>
<translation>Free radial Gradient</translation>
</message>
<message>
<source>X1:</source>
<translation>X1:</translation>
<source>X1:</source>
<translation>X1:</translation>
</message>
<message>
<source>Y1:</source>
<translation>Y1:</translation>
<source>Y1:</source>
<translation>Y1:</translation>
</message>
<message>
<source> pt</source>
<translation> pt</translation>
<source> pt</source>
<translation> pt</translation>
</message>
<message>
<source>X2:</source>
<translation>X2:</translation>
<source>X2:</source>
<translation>X2:</translation>
</message>
<message>
<source>Y2:</source>
<translation>Y2:</translation>
<source>Y2:</source>
<translation>Y2:</translation>
</message>
<message>
<source>Move Vector</source>
<translation>Move Vector</translation>
<source>Move Vector</source>
<translation>Move Vector</translation>
</message>
<message>
<source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source>
<translation>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</translation>
<source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source>
<translation>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</translation>
</message>
</context>
<context>
</context>
<context>
<name>CsvDialog</name>
<message>
<source>CSV Importer Options</source>
<translation>CSV Importer Options</translation>
<source>CSV Importer Options</source>
<translation>CSV Importer Options</translation>
</message>
<message>
<source>Field delimiter:</source>
<translation>Field delimiter:</translation>
<source>Field delimiter:</source>
<translation>Field delimiter:</translation>
</message>
<message>
<source>(TAB)</source>
<translation>(TAB)</translation>
<source>(TAB)</source>
<translation>(TAB)</translation>
</message>
<message>
<source>Value delimiter:</source>
<translation>Value delimiter:</translation>
<source>Value delimiter:</source>
<translation>Value delimiter:</translation>
</message>
<message>
<source>First row is a header</source>
<translation>First row is a header</translation>
<source>First row is a header</source>
<translation>First row is a header</translation>
</message>
<message>
<source>OK</source>
<translation>OK</translation>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
</context>
<context>
</context>
<context>
<name>CupsOptions</name>
<message>
<source>Printer Options</source>
<translation>Printer Options</translation>
<source>Printer Options</source>
<translation>Printer Options</translation>
</message>
<message>
<source>Option</source>
<translation>Option</translation>
<source>Option</source>
<translation>Option</translation>
</message>
<message>
<source>Value</source>
<translation>Value</translation>
<source>Value</source>
<translation>Value</translation>
</message>
<message>
<source>Page Set</source>
<translation>Page Set</translation>
<source>Page Set</source>
<translation>Page Set</translation>
</message>
<message>
<source>All Pages</source>
<translation>All Pages</translation>
<source>All Pages</source>
<translation>All Pages</translation>
</message>
<message>
<source>Even Pages only</source>
<translation>Even Pages only</translation>
<source>Even Pages only</source>
<translation>Even Pages only</translation>
</message>
<message>
<source>Odd Pages only</source>
<translation>Odd Pages only</translation>
<source>Odd Pages only</source>
<translation>Odd Pages only</translation>
</message>
<message>
<source>Mirror</source>
<translation>Mirror</translation>
<source>Mirror</source>
<translation>Mirror</translation>
</message>
<message>
<source>No</source>
<translation>No</translation>
<source>No</source>
<translation>No</translation>
</message>
<message>
<source>Yes</source>
<translation>Yes</translation>
<source>Yes</source>
<translation>Yes</translation>
</message>
<message>
<source>Orientation</source>
<translation>Orientation</translation>
<source>Orientation</source>
<translation>Orientation</translation>
</message>
<message>
<source>Portrait</source>
<translation>Portrait</translation>
<source>Portrait</source>
<translation>Portrait</translation>
</message>
<message>
<source>Landscape</source>
<translation>Landscape</translation>
<source>Landscape</source>
<translation>Landscape</translation>
</message>
<message>
<source>N-Up Printing</source>
<translation>N-Up Printing</translation>
<source>N-Up Printing</source>
<translation>N-Up Printing</translation>
</message>
<message>
<source>Page per Sheet</source>
<translation>Page per Sheet</translation>
<source>Page per Sheet</source>
<translation>Page per Sheet</translation>
</message>
<message>
<source>Pages per Sheet</source>
<translation>Pages per Sheet</translation>
<source>Pages per Sheet</source>
<translation>Pages per Sheet</translation>
</message>
<message>
<source>This panel displays various CUPS options when printing.
<source>This panel displays various CUPS options when printing.
The exact parameters available will depend on your printer driver.
You can confirm CUPS support by selecting Help > About.
You can confirm CUPS support by selecting Help &gt; About.
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support.
Missing library support is indicated by a *</source>
<translation>This panel displays various CUPS options when printing.
<translation>This panel displays various CUPS options when printing.
The exact parameters available will depend on your printer driver.
You can confirm CUPS support by selecting Help > About.
You can confirm CUPS support by selecting Help &gt; About.
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support.
Missing library support is indicated by a *</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>CustomFDialog</name>
<message>
<source>Encoding:</source>
<translation>Encoding:</translation>
<source>Encoding:</source>
<translation>Encoding:</translation>
</message>
<message>
<source>Moves to your Document Directory.
<source>Moves to your Document Directory.
This can be set in the Preferences.</source>
<translation>Moves to your Document Directory.
<translation>Moves to your Document Directory.
This can be set in the Preferences.</translation>
</message>
<message>
<source>&amp;Compress File</source>
<translation>&amp;Compress File</translation>
<source>&amp;Compress File</source>
<translation>&amp;Compress File</translation>
</message>
<message>
<source>&amp;Include Fonts</source>
<translation>&amp;Include Fonts</translation>
<source>&amp;Include Fonts</source>
<translation>&amp;Include Fonts</translation>
</message>
</context>
<context>
</context>
<context>
<name>DeferredTask</name>
<message>
<source>Cancelled by user</source>
<translation>Cancelled by user</translation>
<source>Cancelled by user</source>
<translation>Cancelled by user</translation>
</message>
</context>
<context>
</context>
<context>
<name>DelColor</name>
<message>
<source>Delete Color</source>
<translation>Delete Colour</translation>
<source>Delete Color</source>
<translation>Delete Colour</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Delete Color:</source>
<translation>Delete Colour:</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>Replace With:</source>
<translation>Replace With:</translation>
</message>
<message>
<source>Delete Color:</source>
<translation>Delete Colour:</translation>
</message>
<message>
<source>Replace With:</source>
<translation>Replace With:</translation>
</message>
</context>
<context>
</context>
<context>
<name>DelPages</name>
<message>
<source>Delete Pages</source>
<translation>Delete Pages</translation>
<source>Delete Pages</source>
<translation>Delete Pages</translation>
</message>
<message>
<source>to:</source>
<translation>to:</translation>
<source>to:</source>
<translation>to:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Delete From:</source>
<translation>Delete From:</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
<message>
<source>Delete From:</source>
<translation>Delete From:</translation>
</message>
</context>
<context>
</context>
<context>
<name>DocInfos</name>
<message>
<source>Document Information</source>
<translation>Document Information</translation>
<source>Document Information</source>
<translation>Document Information</translation>
</message>
<message>
<source>&amp;Title:</source>
<translation>&amp;Title:</translation>
<source>&amp;Title:</source>
<translation>&amp;Title:</translation>
</message>
<message>
<source>&amp;Author:</source>
<translation>&amp;Author:</translation>
<source>&amp;Author:</source>
<translation>&amp;Author:</translation>
</message>
<message>
<source>&amp;Keywords:</source>
<translation>&amp;Keywords:</translation>
<source>&amp;Keywords:</source>
<translation>&amp;Keywords:</translation>
</message>
<message>
<source>Descri&amp;ption:</source>
<translation>Descri&amp;ption:</translation>
<source>Descri&amp;ption:</source>
<translation>Descri&amp;ption:</translation>
</message>
<message>
<source>P&amp;ublisher:</source>
<translation>P&amp;ublisher:</translation>
<source>P&amp;ublisher:</source>
<translation>P&amp;ublisher:</translation>
</message>
<message>
<source>&amp;Contributors:</source>
<translation>&amp;Contributors:</translation>
<source>&amp;Contributors:</source>
<translation>&amp;Contributors:</translation>
</message>
<message>
<source>Dat&amp;e:</source>
<translation>Dat&amp;e:</translation>
<source>Dat&amp;e:</source>
<translation>Dat&amp;e:</translation>
</message>
<message>
<source>T&amp;ype:</source>
<translation>T&amp;ype:</translation>
<source>T&amp;ype:</source>
<translation>T&amp;ype:</translation>
</message>
<message>
<source>F&amp;ormat:</source>
<translation>F&amp;ormat:</translation>
<source>F&amp;ormat:</source>
<translation>F&amp;ormat:</translation>
</message>
<message>
<source>Identi&amp;fier:</source>
<translation>Identi&amp;fier:</translation>
<source>Identi&amp;fier:</source>
<translation>Identi&amp;fier:</translation>
</message>
<message>
<source>&amp;Source:</source>
<translation>&amp;Source:</translation>
<source>&amp;Source:</source>
<translation>&amp;Source:</translation>
</message>
<message>
<source>&amp;Language:</source>
<translation>&amp;Language:</translation>
<source>&amp;Language:</source>
<translation>&amp;Language:</translation>
</message>
<message>
<source>&amp;Relation:</source>
<translation>&amp;Relation:</translation>
<source>&amp;Relation:</source>
<translation>&amp;Relation:</translation>
</message>
<message>
<source>Co&amp;verage:</source>
<translation>Co&amp;verage:</translation>
<source>Co&amp;verage:</source>
<translation>Co&amp;verage:</translation>
</message>
<message>
<source>Ri&amp;ghts:</source>
<translation>Ri&amp;ghts:</translation>
<source>Ri&amp;ghts:</source>
<translation>Ri&amp;ghts:</translation>
</message>
<message>
<source>Further &amp;Information</source>
<translation>Further &amp;Information</translation>
<source>Further &amp;Information</source>
<translation>Further &amp;Information</translation>
</message>
<message>
<source>A person or organisation responsible for making the document available</source>
<translation>A person or organisation responsible for making the document available</translation>
<source>A person or organisation responsible for making the document available</source>
<translation>A person or organisation responsible for making the document available</translation>
</message>
<message>
<source>A person or organisation responsible for making contributions to the content of the document</source>
<translation>A person or organisation responsible for making contributions to the content of the document</translation>
<source>A person or organisation responsible for making contributions to the content of the document</source>
<translation>A person or organisation responsible for making contributions to the content of the document</translation>
</message>
<message>
<source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source>
<translation>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation>
<source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source>
<translation>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation>
</message>
<message>
<source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
<translation>The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation>
<source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
<translation>The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation>
</message>
<message>
<source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
<translation>An unambiguous reference to the document within a given context such as ISBN or URI</translation>
<source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
<translation>An unambiguous reference to the document within a given context such as ISBN or URI</translation>
</message>
<message>
<source>A reference to a document from which the present document is derived, eg. ISBN or URI</source>
<translation>A reference to a document from which the present document is derived, eg. ISBN or URI</translation>
<source>A reference to a document from which the present document is derived, eg. ISBN or URI</source>
<translation>A reference to a document from which the present document is derived, eg. ISBN or URI</translation>
</message>
<message>
<source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
<translation>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation>
<source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
<translation>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation>
</message>
<message>
<source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
<translation>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation>
<source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
<translation>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation>
</message>
<message>
<source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
<translation>Information about rights held in and over the document, eg. copyright, patent or trademark</translation>
<source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
<translation>Information about rights held in and over the document, eg. copyright, patent or trademark</translation>
</message>
<message>
<source>Documen&amp;t</source>
<translation>Documen&amp;t</translation>
<source>Documen&amp;t</source>
<translation>Documen&amp;t</translation>
</message>
<message>
<source>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
<translation>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
<source>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
<translation>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
</message>
<message>
<source>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
<translation>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
<source>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
<translation>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
</message>
<message>
<source>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source>
<translation>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</translation>
<source>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source>
<translation>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</translation>
</message>
<message>
<source>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source>
<translation>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</translation>
<source>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source>
<translation>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</translation>
</message>
<message>
<source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</source>
<translation>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</translation>
<source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</source>
<translation>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</translation>
</message>
<message>
<source>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source>
<translation>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</translation>
<source>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source>
<translation>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</translation>
</message>
</context>
<context>
</context>
<context>
<name>DocumentItemAttributes</name>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>Relates To</source>
<translation>Relates To</translation>
<source>Relates To</source>
<translation>Relates To</translation>
</message>
<message>
<source>Is Parent Of</source>
<translation>Is Parent Of</translation>
<source>Is Parent Of</source>
<translation>Is Parent Of</translation>
</message>
<message>
<source>Is Child Of</source>
<translation>Is Child Of</translation>
<source>Is Child Of</source>
<translation>Is Child Of</translation>
</message>
<message>
<source>Text Frames</source>
<translation>Text Frames</translation>
<source>Text Frames</source>
<translation>Text Frames</translation>
</message>
<message>
<source>Image Frames</source>
<translation>Image Frames</translation>
<source>Image Frames</source>
<translation>Image Frames</translation>
</message>
<message>
<source>Boolean</source>
<translation>Boolean</translation>
<source>Boolean</source>
<translation>Boolean</translation>
</message>
<message>
<source>Integer</source>
<translation>Integer</translation>
<source>Integer</source>
<translation>Integer</translation>
</message>
<message>
<source>String</source>
<translation>String</translation>
<source>String</source>
<translation>String</translation>
</message>
<message>
<source>Document Item Attributes</source>
<translation>Document Item Attributes</translation>
<source>Document Item Attributes</source>
<translation>Document Item Attributes</translation>
</message>
<message>
<source>Name</source>
<translation>Name</translation>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Value</source>
<translation>Value</translation>
<source>Value</source>
<translation>Value</translation>
</message>
<message>
<source>Parameter</source>
<translation>Parameter</translation>
<source>Parameter</source>
<translation>Parameter</translation>
</message>
<message>
<source>Relationship</source>
<translation>Relationship</translation>
<source>Relationship</source>
<translation>Relationship</translation>
</message>
<message>
<source>Relationship To</source>
<translation>Relationship To</translation>
<source>Relationship To</source>
<translation>Relationship To</translation>
</message>
<message>
<source>Auto Add To</source>
<translation>Auto Add To</translation>
<source>Auto Add To</source>
<translation>Auto Add To</translation>
</message>
<message>
<source>&amp;Add</source>
<translation>&amp;Add</translation>
<source>&amp;Add</source>
<translation>&amp;Add</translation>
</message>
<message>
<source>Alt+A</source>
<translation>Alt+A</translation>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
</message>
<message>
<source>Alt+C</source>
<translation>Alt+C</translation>
<source>Alt+C</source>
<translation>Alt+C</translation>
</message>
<message>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
<source>Alt+D</source>
<translation>Alt+D</translation>
<source>Alt+D</source>
<translation>Alt+D</translation>
</message>
<message>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
</message>
<message>
<source>Alt+L</source>
<translation>Alt+L</translation>
<source>Alt+L</source>
<translation>Alt+L</translation>
</message>
</context>
<context>
</context>
<context>
<name>Druck</name>
<message>
<source>Setup Printer</source>
<translation>Setup Printer</translation>
<source>Setup Printer</source>
<translation>Setup Printer</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Options</source>
<translation>Options</translation>
<source>Options</source>
<translation>Options</translation>
</message>
<message>
<source>All</source>
<translation>All</translation>
<source>All</source>
<translation>All</translation>
</message>
<message>
<source>Save as</source>
<translation>Save as</translation>
<source>Save as</source>
<translation>Save as</translation>
</message>
<message>
<source>Cyan</source>
<translation>Cyan</translation>
<source>Cyan</source>
<translation>Cyan</translation>
</message>
<message>
<source>Magenta</source>
<translation>Magenta</translation>
<source>Magenta</source>
<translation>Magenta</translation>
</message>
<message>
<source>Yellow</source>
<translation>Yellow</translation>
<source>Yellow</source>
<translation>Yellow</translation>
</message>
<message>
<source>Black</source>
<translation>Black</translation>
<source>Black</source>
<translation>Black</translation>
</message>
<message>
<source>Insert a comma separated list of tokens where
<source>Insert a comma separated list of tokens where
a token can be * for all the pages, 1-5 for
a range of pages or a single page number.</source>
<translation>Insert a comma separated list of tokens where
<translation>Insert a comma separated list of tokens where
a token can be * for all the pages, 1-5 for
a range of pages or a single page number.</translation>
</message>
<message>
<source>Print Destination</source>
<translation>Print Destination</translation>
<source>Print Destination</source>
<translation>Print Destination</translation>
</message>
<message>
<source>&amp;Options...</source>
<translation>&amp;Options...</translation>
<source>&amp;Options...</source>
<translation>&amp;Options...</translation>
</message>
<message>
<source>&amp;File:</source>
<translation>&amp;File:</translation>
<source>&amp;File:</source>
<translation>&amp;File:</translation>
</message>
<message>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
</message>
<message>
<source>A&amp;lternative Printer Command</source>
<translation>A&amp;lternative Printer Command</translation>
<source>A&amp;lternative Printer Command</source>
<translation>A&amp;lternative Printer Command</translation>
</message>
<message>
<source>Co&amp;mmand:</source>
<translation>Co&amp;mmand:</translation>
<source>Co&amp;mmand:</source>
<translation>Co&amp;mmand:</translation>
</message>
<message>
<source>Range</source>
<translation>Range</translation>
<source>Range</source>
<translation>Range</translation>
</message>
<message>
<source>Print &amp;All</source>
<translation>Print &amp;All</translation>
<source>Print &amp;All</source>
<translation>Print &amp;All</translation>
</message>
<message>
<source>Print Current Pa&amp;ge</source>
<translation>Print Current Pa&amp;ge</translation>
<source>Print Current Pa&amp;ge</source>
<translation>Print Current Pa&amp;ge</translation>
</message>
<message>
<source>Print &amp;Range</source>
<translation>Print &amp;Range</translation>
<source>Print &amp;Range</source>
<translation>Print &amp;Range</translation>
</message>
<message>
<source>N&amp;umber of Copies:</source>
<translation>N&amp;umber of Copies:</translation>
<source>N&amp;umber of Copies:</source>
<translation>N&amp;umber of Copies:</translation>
</message>
<message>
<source>Print &amp;Normal</source>
<translation>Print &amp;Normal</translation>
<source>Print &amp;Normal</source>
<translation>Print &amp;Normal</translation>
</message>
<message>
<source>Print &amp;Separations</source>
<translation>Print &amp;Separations</translation>
<source>Print &amp;Separations</source>
<translation>Print &amp;Separations</translation>
</message>
<message>
<source>Pr&amp;int In Color If Available</source>
<translation>Pr&amp;int In Colour If Available</translation>
<source>Pr&amp;int In Color If Available</source>
<translation>Pr&amp;int In Colour If Available</translation>
</message>
<message>
<source>Print In Gra&amp;yscale</source>
<translation>Print In Gre&amp;yscale</translation>
<source>Print In Gra&amp;yscale</source>
<translation>Print In Gre&amp;yscale</translation>
</message>
<message>
<source>Ad&amp;vanced Options...</source>
<translation>Ad&amp;vanced Options...</translation>
<source>Ad&amp;vanced Options...</source>
<translation>Ad&amp;vanced Options...</translation>
</message>
<message>
<source>&amp;Print</source>
<translation>&amp;Print</translation>
<source>&amp;Print</source>
<translation>&amp;Print</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
<message>
<source>Use an alternative print manager, such as kprinter or gtklp,
<source>Use an alternative print manager, such as kprinter or gtklp,
to utilize additional printing options</source>
<translation>Use an alternative print manager, such as kprinter or gtklp,
<translation>Use an alternative print manager, such as kprinter or gtklp,
to utilise additional printing options</translation>
</message>
<message>
<source>Postscript Files (*.ps);;All Files (*)</source>
<translation>Postscript Files (*.ps);;All Files (*)</translation>
<source>Postscript Files (*.ps);;All Files (*)</source>
<translation>Postscript Files (*.ps);;All Files (*)</translation>
</message>
</context>
<context>
</context>
<context>
<name>EPSPlug</name>
<message>
<source>Importing File:
<source>Importing File:
%1
failed!</source>
<translation>Importing File:
<translation>Importing File:
%1
failed!</translation>
</message>
<message>
<source>Fatal Error</source>
<translation>Fatal Error</translation>
<source>Fatal Error</source>
<translation>Fatal Error</translation>
</message>
</context>
<context>
</context>
<context>
<name>EditStyle</name>
<message>
<source>Edit Style</source>
<translation>Edit Style</translation>
<source>Edit Style</source>
<translation>Edit Style</translation>
</message>
<message>
<source>Character</source>
<translation>Character</translation>
<source>Character</source>
<translation>Character</translation>
</message>
<message>
<source> pt</source>
<translation> pt</translation>
<source> pt</source>
<translation> pt</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>Line Spacing</source>
<translation>Line Spacing</translation>
<source>Line Spacing</source>
<translation>Line Spacing</translation>
</message>
<message>
<source>Warning</source>
<translation>Warning</translation>
<source>Warning</source>
<translation>Warning</translation>
</message>
<message>
<source>Name of the Style is not unique</source>
<translation>Name of the Style is not unique</translation>
<source>Name of the Style is not unique</source>
<translation>Name of the Style is not unique</translation>
</message>
<message>
<source>Name of your paragraph style</source>
<translation>Name of your paragraph style</translation>
<source>Name of your paragraph style</source>
<translation>Name of your paragraph style</translation>
</message>
<message>
<source>Font of selected text or object</source>
<translation>Font of selected text or object</translation>
<source>Font of selected text or object</source>
<translation>Font of selected text or object</translation>
</message>
<message>
<source>Font Size</source>
<translation>Font Size</translation>
<source>Font Size</source>
<translation>Font Size</translation>
</message>
<message>
<source>Color of text fill</source>
<translation>Colour of text fill</translation>
<source>Color of text fill</source>
<translation>Colour of text fill</translation>
</message>
<message>
<source>Color of text stroke</source>
<translation>Colour of text stroke</translation>
<source>Color of text stroke</source>
<translation>Colour of text stroke</translation>
</message>
<message>
<source>Determines the overall height, in line numbers, of the Drop Caps</source>
<translation>Determines the overall height, in line numbers, of the Drop Caps</translation>
<source>Determines the overall height, in line numbers, of the Drop Caps</source>
<translation>Determines the overall height, in line numbers, of the Drop Caps</translation>
</message>
<message>
<source>Spacing above the paragraph</source>
<translation>Spacing above the paragraph</translation>
<source>Spacing above the paragraph</source>
<translation>Spacing above the paragraph</translation>
</message>
<message>
<source>Spacing below the paragraph</source>
<translation>Spacing below the paragraph</translation>
<source>Spacing below the paragraph</source>
<translation>Spacing below the paragraph</translation>
</message>
<message>
<source>Tabulators and Indentation</source>
<translation>Tabulators and Indentation</translation>
<source>Tabulators and Indentation</source>
<translation>Tabulators and Indentation</translation>
</message>
<message>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>&amp;Lines:</source>
<translation>&amp;Lines:</translation>
<source>&amp;Lines:</source>
<translation>&amp;Lines:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>Distances</source>
<translation>Distances</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source>Fixed Linespacing</source>
<translation>Fixed Linespacing</translation>
</message>
<message>
<source>Distances</source>
<translation>Distances</translation>
<source>Automatic Linespacing</source>
<translation>Automatic Linespacing</translation>
</message>
<message>
<source>Fixed Linespacing</source>
<translation>Fixed Linespacing</translation>
<source>Align to Baseline Grid</source>
<translation>Align to Baseline Grid</translation>
</message>
<message>
<source>Automatic Linespacing</source>
<translation>Automatic Linespacing</translation>
<source>Drop Caps</source>
<translation>Drop Caps</translation>
</message>
<message>
<source>Align to Baseline Grid</source>
<translation>Align to Baseline Grid</translation>
<source>Distance from Text:</source>
<translation>Distance from Text:</translation>
</message>
<message>
<source>Drop Caps</source>
<translation>Drop Caps</translation>
<source>Preview of the Paragraph Style</source>
<translation>Preview of the Paragraph Style</translation>
</message>
<message>
<source>Distance from Text:</source>
<translation>Distance from Text:</translation>
<source>Determines the gap between the DropCaps and the Text</source>
<translation>Determines the gap between the DropCaps and the Text</translation>
</message>
<message>
<source>Preview of the Paragraph Style</source>
<translation>Preview of the Paragraph Style</translation>
<source>Toggles sample text of this paragraph style</source>
<translation>Toggles sample text of this paragraph style</translation>
</message>
<message>
<source>Determines the gap between the DropCaps and the Text</source>
<translation>Determines the gap between the DropCaps and the Text</translation>
</message>
<message>
<source>Toggles sample text of this paragraph style</source>
<translation>Toggles sample text of this paragraph style</translation>
</message>
</context>
<context>
</context>
<context>
<name>Editor</name>
<message>
<source>Editor</source>
<translation>Editor</translation>
<source>Editor</source>
<translation>Editor</translation>
</message>
<message>
<source>Javascripts (*.js);;All Files (*)</source>
<translation>Javascripts (*.js);;All Files (*)</translation>
<source>Javascripts (*.js);;All Files (*)</source>
<translation>Javascripts (*.js);;All Files (*)</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;New</translation>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<source>&amp;Open...</source>
<translation>&amp;Open...</translation>
<source>&amp;Open...</source>
<translation>&amp;Open...</translation>
</message>
<message>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
</message>
<message>
<source>&amp;Save and Exit</source>
<translation>&amp;Save and Exit</translation>
<source>&amp;Save and Exit</source>
<translation>&amp;Save and Exit</translation>
</message>
<message>
<source>&amp;Exit without Saving</source>
<translation>&amp;Exit without Saving</translation>
<source>&amp;Exit without Saving</source>
<translation>&amp;Exit without Saving</translation>
</message>
<message>
<source>&amp;Undo</source>
<translation>&amp;Undo</translation>
<source>&amp;Undo</source>
<translation>&amp;Undo</translation>
</message>
<message>
<source>&amp;Redo</source>
<translation>&amp;Redo</translation>
<source>&amp;Redo</source>
<translation>&amp;Redo</translation>
</message>
<message>
<source>Cu&amp;t</source>
<translation>Cu&amp;t</translation>
<source>Cu&amp;t</source>
<translation>Cu&amp;t</translation>
</message>
<message>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
<source>&amp;Copy</source>
<translation>&amp;Copy</translation>
</message>
<message>
<source>&amp;Paste</source>
<translation>&amp;Paste</translation>
<source>&amp;Paste</source>
<translation>&amp;Paste</translation>
</message>
<message>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
<source>C&amp;lear</source>
<translation>C&amp;lear</translation>
</message>
<message>
<source>&amp;Get Field Names</source>
<translation>&amp;Get Field Names</translation>
<source>&amp;Get Field Names</source>
<translation>&amp;Get Field Names</translation>
</message>
<message>
<source>&amp;File</source>
<translation>&amp;File</translation>
<source>&amp;File</source>
<translation>&amp;File</translation>
</message>
<message>
<source>&amp;Edit</source>
<translation>&amp;Edit</translation>
<source>&amp;Edit</source>
<translation>&amp;Edit</translation>
</message>
</context>
<context>
</context>
<context>
<name>EffectsDialog</name>
<message>
<source>Image Effects</source>
<translation>Image Effects</translation>
<source>Image Effects</source>
<translation>Image Effects</translation>
</message>
<message>
<source>Options:</source>
<translation>Options:</translation>
<source>Options:</source>
<translation>Options:</translation>
</message>
<message>
<source>Color:</source>
<translation>Colour:</translation>
<source>Color:</source>
<translation>Colour:</translation>
</message>
<message>
<source>Shade:</source>
<translation>Shade:</translation>
<source>Shade:</source>
<translation>Shade:</translation>
</message>
<message>
<source>Brightness:</source>
<translation>Brightness:</translation>
<source>Brightness:</source>
<translation>Brightness:</translation>
</message>
<message>
<source>Contrast:</source>
<translation>Contrast:</translation>
<source>Contrast:</source>
<translation>Contrast:</translation>
</message>
<message>
<source>Radius:</source>
<translation>Radius:</translation>
<source>Radius:</source>
<translation>Radius:</translation>
</message>
<message>
<source>Value:</source>
<translation>Value:</translation>
<source>Value:</source>
<translation>Value:</translation>
</message>
<message>
<source>Posterize:</source>
<translation>Posterise:</translation>
<source>Posterize:</source>
<translation>Posterise:</translation>
</message>
<message>
<source>Available Effects</source>
<translation>Available Effects</translation>
<source>Available Effects</source>
<translation>Available Effects</translation>
</message>
<message>
<source>Blur</source>
<translation>Blur</translation>
<source>Blur</source>
<translation>Blur</translation>
</message>
<message>
<source>Brightness</source>
<translation>Brightness</translation>
<source>Brightness</source>
<translation>Brightness</translation>
</message>
<message>
<source>Colorize</source>
<translation>Colourise</translation>
<source>Colorize</source>
<translation>Colourise</translation>
</message>
<message>
<source>Contrast</source>
<translation>Contrast</translation>
<source>Contrast</source>
<translation>Contrast</translation>
</message>
<message>
<source>Grayscale</source>
<translation>Greyscale</translation>
<source>Grayscale</source>
<translation>Greyscale</translation>
</message>
<message>
<source>Invert</source>
<translation>Invert</translation>
<source>Invert</source>
<translation>Invert</translation>
</message>
<message>
<source>Posterize</source>
<translation>Posterise</translation>
<source>Posterize</source>
<translation>Posterise</translation>
</message>
<message>
<source>Sharpen</source>
<translation>Sharpen</translation>
<source>Sharpen</source>
<translation>Sharpen</translation>
</message>
<message>
<source>>></source>
<translation>>></translation>
<source>&gt;&gt;</source>
<translation>&gt;&gt;</translation>
</message>
<message>
<source>&lt;&lt;</source>
<translation>&lt;&lt;</translation>
<source>&lt;&lt;</source>
<translation>&lt;&lt;</translation>
</message>
<message>
<source>Effects in use</source>
<translation>Effects in use</translation>
<source>Effects in use</source>
<translation>Effects in use</translation>
</message>
<message>
<source>OK</source>
<translation>OK</translation>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>ExportForm</name>
<message>
<source>&amp;All pages</source>
<translation>&amp;All pages</translation>
<source>&amp;All pages</source>
<translation>&amp;All pages</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>Change the output directory</source>
<translation>Change the output directory</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>The output directory - the place to store your images.
Name of the export file will be &apos;documentname-pagenumber.filetype&apos;</source>
<translation>The output directory - the place to store your images.
Name of the export file will be &apos;documentname-pagenumber.filetype&apos;</translation>
</message>
<message>
<source>Change the output directory</source>
<translation>Change the output directory</translation>
<source>Export only the current page</source>
<translation>Export only the current page</translation>
</message>
<message>
<source>The output directory - the place to store your images.
Name of the export file will be 'documentname-pagenumber.filetype'</source>
<translation>The output directory - the place to store your images.
Name of the export file will be 'documentname-pagenumber.filetype'</translation>
<source>Available export formats</source>
<translation>Available export formats</translation>
</message>
<message>
<source>Export only the current page</source>
<translation>Export only the current page</translation>
<source>Choose a Export Directory</source>
<translation>Choose a Export Directory</translation>
</message>
<message>
<source>Available export formats</source>
<translation>Available export formats</translation>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
</message>
<message>
<source>Choose a Export Directory</source>
<translation>Choose a Export Directory</translation>
<source>&amp;Export to Directory:</source>
<translation>&amp;Export to Directory:</translation>
</message>
<message>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
<source>Image &amp;Type:</source>
<translation>Image &amp;Type:</translation>
</message>
<message>
<source>&amp;Export to Directory:</source>
<translation>&amp;Export to Directory:</translation>
<source>&amp;Quality:</source>
<translation>&amp;Quality:</translation>
</message>
<message>
<source>Image &amp;Type:</source>
<translation>Image &amp;Type:</translation>
<source>Export as Image(s)</source>
<translation>Export as Image(s)</translation>
</message>
<message>
<source>&amp;Quality:</source>
<translation>&amp;Quality:</translation>
<source>Options</source>
<translation>Options</translation>
</message>
<message>
<source>Export as Image(s)</source>
<translation>Export as Image(s)</translation>
<source>&amp;Resolution:</source>
<translation>&amp;Resolution:</translation>
</message>
<message>
<source>Options</source>
<translation>Options</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>&amp;Resolution:</source>
<translation>&amp;Resolution:</translation>
<source> dpi</source>
<translation> dpi</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source>Range</source>
<translation>Range</translation>
</message>
<message>
<source> dpi</source>
<translation> dpi</translation>
<source>&amp;Current page</source>
<translation>&amp;Current page</translation>
</message>
<message>
<source>Range</source>
<translation>Range</translation>
<source>&amp;Range</source>
<translation>&amp;Range</translation>
</message>
<message>
<source>&amp;Current page</source>
<translation>&amp;Current page</translation>
<source>C</source>
<translation>C</translation>
</message>
<message>
<source>&amp;Range</source>
<translation>&amp;Range</translation>
<source>Export a range of pages</source>
<translation>Export a range of pages</translation>
</message>
<message>
<source>C</source>
<translation>C</translation>
</message>
<message>
<source>Export a range of pages</source>
<translation>Export a range of pages</translation>
</message>
<message>
<source>Insert a comma separated list of tokens where
<source>Insert a comma separated list of tokens where
a token can be * for all the pages, 1-5 for
a range of pages or a single page number.</source>
<translation>Insert a comma separated list of tokens where
<translation>Insert a comma separated list of tokens where
a token can be * for all the pages, 1-5 for
a range of pages or a single page number.</translation>
</message>
<message>
<source>Export all pages</source>
<translation>Export all pages</translation>
<source>Export all pages</source>
<translation>Export all pages</translation>
</message>
<message>
<source>Resolution of the Images
<source>Resolution of the Images
Use 72 dpi for Images intended for the Screen</source>
<translation>Resolution of the Images
<translation>Resolution of the Images
Use 72 dpi for Images intended for the Screen</translation>
</message>
<message>
<source>The quality of your images - 100% is the best, 1% the lowest quality</source>
<translation>The quality of your images - 100% is the best, 1% the lowest quality</translation>
<source>The quality of your images - 100% is the best, 1% the lowest quality</source>
<translation>The quality of your images - 100% is the best, 1% the lowest quality</translation>
</message>
<message>
<source>&amp;Size:</source>
<translation>&amp;Size:</translation>
<source>&amp;Size:</source>
<translation>&amp;Size:</translation>
</message>
<message>
<source>Size of the images. 100% for no changes, 200% for two times larger etc.</source>
<translation>Size of the images. 100% for no changes, 200% for two times larger etc.</translation>
<source>Size of the images. 100% for no changes, 200% for two times larger etc.</source>
<translation>Size of the images. 100% for no changes, 200% for two times larger etc.</translation>
</message>
</context>
<context>
</context>
<context>
<name>ExtImageProps</name>
<message>
<source>Extended Image Properties</source>
<translation>Extended Image Properties</translation>
<source>Extended Image Properties</source>
<translation>Extended Image Properties</translation>
</message>
<message>
<source>Normal</source>
<translation>Normal</translation>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<source>Darken</source>
<translation>Darken</translation>
<source>Darken</source>
<translation>Darken</translation>
</message>
<message>
<source>Lighten</source>
<translation>Lighten</translation>
<source>Lighten</source>
<translation>Lighten</translation>
</message>
<message>
<source>Hue</source>
<translation>Hue</translation>
<source>Hue</source>
<translation>Hue</translation>
</message>
<message>
<source>Saturation</source>
<translation>Saturation</translation>
<source>Saturation</source>
<translation>Saturation</translation>
</message>
<message>
<source>Color</source>
<translation>Colour</translation>
<source>Color</source>
<translation>Colour</translation>
</message>
<message>
<source>Luminosity</source>
<translation>Luminosity</translation>
<source>Luminosity</source>
<translation>Luminosity</translation>
</message>
<message>
<source>Multiply</source>
<translation>Multiply</translation>
<source>Multiply</source>
<translation>Multiply</translation>
</message>
<message>
<source>Screen</source>
<translation>Screen</translation>
<source>Screen</source>
<translation>Screen</translation>
</message>
<message>
<source>Dissolve</source>
<translation>Dissolve</translation>
<source>Dissolve</source>
<translation>Dissolve</translation>
</message>
<message>
<source>Overlay</source>
<translation>Overlay</translation>
<source>Overlay</source>
<translation>Overlay</translation>
</message>
<message>
<source>Hard Light</source>
<translation>Hard Light</translation>
<source>Hard Light</source>
<translation>Hard Light</translation>
</message>
<message>
<source>Soft Light</source>
<translation>Soft Light</translation>
<source>Soft Light</source>
<translation>Soft Light</translation>
</message>
<message>
<source>Difference</source>
<translation>Difference</translation>
<source>Difference</source>
<translation>Difference</translation>
</message>
<message>
<source>Exlusion</source>
<translation>Exclusion</translation>
<source>Exlusion</source>
<translation>Exclusion</translation>
</message>
<message>
<source>Color Dodge</source>
<translation>Colour Dodge</translation>
<source>Color Dodge</source>
<translation>Colour Dodge</translation>
</message>
<message>
<source>Color Burn</source>
<translation>Colour Burn</translation>
<source>Color Burn</source>
<translation>Colour Burn</translation>
</message>
<message>
<source>Blend Mode:</source>
<translation>Blend Mode:</translation>
<source>Blend Mode:</source>
<translation>Blend Mode:</translation>
</message>
<message>
<source>Opacity:</source>
<translation>Opacity:</translation>
<source>Opacity:</source>
<translation>Opacity:</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>Name</source>
<translation>Name</translation>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
<source>Background</source>
<translation>Background</translation>
<source>Background</source>
<translation>Background</translation>
</message>
<message>
<source>Layers</source>
<translation>Layers</translation>
<source>Layers</source>
<translation>Layers</translation>
</message>
<message>
<source>Don't use any Path</source>
<translation>Don't use any Path</translation>
<source>Don&apos;t use any Path</source>
<translation>Don&apos;t use any Path</translation>
</message>
<message>
<source>Paths</source>
<translation>Paths</translation>
<source>Paths</source>
<translation>Paths</translation>
</message>
<message>
<source>Exclusion</source>
<translation>Exclusion</translation>
<source>Exclusion</source>
<translation>Exclusion</translation>
</message>
</context>
<context>
</context>
<context>
<name>FDialogPreview</name>
<message>
<source>Size:</source>
<translation>Size:</translation>
<source>Size:</source>
<translation>Size:</translation>
</message>
<message>
<source>Title:</source>
<translation>Title:</translation>
<source>Title:</source>
<translation>Title:</translation>
</message>
<message>
<source>No Title</source>
<translation>No Title</translation>
<source>No Title</source>
<translation>No Title</translation>
</message>
<message>
<source>Author:</source>
<translation>Author:</translation>
<source>Author:</source>
<translation>Author:</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Scribus Document</source>
<translation>Scribus Document</translation>
<source>Scribus Document</source>
<translation>Scribus Document</translation>
</message>
<message>
<source>Resolution:</source>
<translation>Resolution:</translation>
<source>Resolution:</source>
<translation>Resolution:</translation>
</message>
<message>
<source>DPI</source>
<translation>DPI</translation>
<source>DPI</source>
<translation>DPI</translation>
</message>
<message>
<source>RGB</source>
<translation>RGB</translation>
<source>RGB</source>
<translation>RGB</translation>
</message>
<message>
<source>CMYK</source>
<translation>CMYK</translation>
<source>CMYK</source>
<translation>CMYK</translation>
</message>
<message>
<source>Grayscale</source>
<translation>Greyscale</translation>
<source>Grayscale</source>
<translation>Greyscale</translation>
</message>
<message>
<source>Colorspace:</source>
<translation>Colourspace:</translation>
<source>Colorspace:</source>
<translation>Colourspace:</translation>
</message>
</context>
<context>
</context>
<context>
<name>Farbmanager</name>
<message>
<source>Colors</source>
<translation>Colours</translation>
<source>Colors</source>
<translation>Colours</translation>
</message>
<message>
<source>Color Sets</source>
<translation>Colour Sets</translation>
<source>Color Sets</source>
<translation>Colour Sets</translation>
</message>
<message>
<source>Current Color Set:</source>
<translation>Current Colour Set:</translation>
<source>Current Color Set:</source>
<translation>Current Colour Set:</translation>
</message>
<message>
<source>Choose a Name</source>
<translation>Choose a Name</translation>
<source>Choose a Name</source>
<translation>Choose a Name</translation>
</message>
<message>
<source>Open</source>
<translation>Open</translation>
<source>Open</source>
<translation>Open</translation>
</message>
<message>
<source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source>
<translation>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</translation>
<source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source>
<translation>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</translation>
</message>
<message>
<source>Documents (*.sla *.scd);;All Files (*)</source>
<translation>Documents (*.sla *.scd);;All Files (*)</translation>
<source>Documents (*.sla *.scd);;All Files (*)</source>
<translation>Documents (*.sla *.scd);;All Files (*)</translation>
</message>
<message>
<source>New Color</source>
<translation>New Colour</translation>
<source>New Color</source>
<translation>New Colour</translation>
</message>
<message>
<source>Copy of %1</source>
<translation>Copy of %1</translation>
<source>Copy of %1</source>
<translation>Copy of %1</translation>
</message>
<message>
<source>Choose a color set to load</source>
<translation>Choose a colour set to load</translation>
<source>Choose a color set to load</source>
<translation>Choose a colour set to load</translation>
</message>
<message>
<source>Save the current color set</source>
<translation>Save the current colour set</translation>
<source>Save the current color set</source>
<translation>Save the current colour set</translation>
</message>
<message>
<source>Remove unused colors from current document's color set</source>
<translation>Remove unused colours from current document's colour set</translation>
<source>Remove unused colors from current document&apos;s color set</source>
<translation>Remove unused colours from current document&apos;s colour set</translation>
</message>
<message>
<source>Append colors to the current set from an existing document</source>
<translation>Append colours to the current set from an existing document</translation>
<source>Append colors to the current set from an existing document</source>
<translation>Append colours to the current set from an existing document</translation>
</message>
<message>
<source>Create a new color within the current set</source>
<translation>Create a new colour within the current set</translation>
<source>Create a new color within the current set</source>
<translation>Create a new colour within the current set</translation>
</message>
<message>
<source>Edit the currently selected color</source>
<translation>Edit the currently selected colour</translation>
<source>Edit the currently selected color</source>
<translation>Edit the currently selected colour</translation>
</message>
<message>
<source>Make a copy of the currently selected color</source>
<translation>Make a copy of the currently selected colour</translation>
<source>Make a copy of the currently selected color</source>
<translation>Make a copy of the currently selected colour</translation>
</message>
<message>
<source>Delete the currently selected color</source>
<translation>Delete the currently selected colour</translation>
<source>Delete the currently selected color</source>
<translation>Delete the currently selected colour</translation>
</message>
<message>
<source>Make the current colorset the default color set</source>
<translation>Make the current colourset the default colour set</translation>
<source>Make the current colorset the default color set</source>
<translation>Make the current colourset the default colour set</translation>
</message>
<message>
<source>&amp;Append</source>
<translation>&amp;Append</translation>
<source>&amp;Append</source>
<translation>&amp;Append</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;New</translation>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<source>&amp;Edit</source>
<translation>&amp;Edit</translation>
<source>&amp;Edit</source>
<translation>&amp;Edit</translation>
</message>
<message>
<source>D&amp;uplicate</source>
<translation>D&amp;uplicate</translation>
<source>D&amp;uplicate</source>
<translation>D&amp;uplicate</translation>
</message>
<message>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
<source>&amp;Remove Unused</source>
<translation>&amp;Remove Unused</translation>
<source>&amp;Remove Unused</source>
<translation>&amp;Remove Unused</translation>
</message>
<message>
<source>&amp;Save Color Set</source>
<translation>&amp;Save Colour Set</translation>
<source>&amp;Save Color Set</source>
<translation>&amp;Save Colour Set</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>&amp;Name:</source>
<translation>&amp;Name:</translation>
</message>
<message>
<source>None</source>
<translation>None</translation>
</message>
</context>
<context>
</context>
<context>
<name>FontPrefs</name>
<message>
<source>Available Fonts</source>
<translation>Available Fonts</translation>
<source>Available Fonts</source>
<translation>Available Fonts</translation>
</message>
<message>
<source>Font Substitutions</source>
<translation>Font Substitutions</translation>
<source>Font Substitutions</source>
<translation>Font Substitutions</translation>
</message>
<message>
<source>Additional Paths</source>
<translation>Additional Paths</translation>
<source>Additional Paths</source>
<translation>Additional Paths</translation>
</message>
<message>
<source>Postscript</source>
<translation>Postscript</translation>
<source>Postscript</source>
<translation>Postscript</translation>
</message>
<message>
<source>Font Name</source>
<translation>Font Name</translation>
<source>Font Name</source>
<translation>Font Name</translation>
</message>
<message>
<source>Replacement</source>
<translation>Replacement</translation>
<source>Replacement</source>
<translation>Replacement</translation>
</message>
<message>
<source>Choose a Directory</source>
<translation>Choose a Directory</translation>
<source>Choose a Directory</source>
<translation>Choose a Directory</translation>
</message>
<message>
<source>&amp;Available Fonts</source>
<translation>&amp;Available Fonts</translation>
<source>&amp;Available Fonts</source>
<translation>&amp;Available Fonts</translation>
</message>
<message>
<source>Font &amp;Substitutions</source>
<translation>Font &amp;Substitutions</translation>
<source>Font &amp;Substitutions</source>
<translation>Font &amp;Substitutions</translation>
</message>
<message>
<source>Additional &amp;Paths</source>
<translation>Additional &amp;Paths</translation>
<source>Additional &amp;Paths</source>
<translation>Additional &amp;Paths</translation>
</message>
<message>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
<source>C&amp;hange...</source>
<translation>C&amp;hange...</translation>
</message>
<message>
<source>A&amp;dd...</source>
<translation>A&amp;dd...</translation>
<source>A&amp;dd...</source>
<translation>A&amp;dd...</translation>
</message>
<message>
<source>&amp;Remove</source>
<translation>&amp;Remove</translation>
<source>&amp;Remove</source>
<translation>&amp;Remove</translation>
</message>
<message>
<source>Font Name</source>
<comment>font preview</comment>
<translation>Font Name</translation>
<source>Font Name</source>
<comment>font preview</comment>
<translation>Font Name</translation>
</message>
<message>
<source>Use Font</source>
<comment>font preview</comment>
<translation>Use Font</translation>
<source>Use Font</source>
<comment>font preview</comment>
<translation>Use Font</translation>
</message>
<message>
<source>Embed in:</source>
<comment>font preview</comment>
<translation>Embed in:</translation>
<source>Embed in:</source>
<comment>font preview</comment>
<translation>Embed in:</translation>
</message>
<message>
<source>Subset</source>
<comment>font preview</comment>
<translation>Subset</translation>
<source>Subset</source>
<comment>font preview</comment>
<translation>Subset</translation>
</message>
<message>
<source>Path to Font File</source>
<comment>font preview</comment>
<translation>Path to Font File</translation>
<source>Path to Font File</source>
<comment>font preview</comment>
<translation>Path to Font File</translation>
</message>
<message>
<source>&lt;qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.&lt;/qt></source>
<translation>&lt;qt>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit->Settings to change the font search path.&lt;/qt></translation>
<source>&lt;qt&gt;Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit-&gt;Settings to change the font search path.&lt;/qt&gt;</source>
<translation>&lt;qt&gt;Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit-&gt;Settings to change the font search path.&lt;/qt&gt;</translation>
</message>
</context>
<context>
</context>
<context>
<name>FontPreview</name>
<message>
<source>Font Name</source>
<comment>font preview</comment>
<translation>Font Name</translation>
<source>Font Name</source>
<comment>font preview</comment>
<translation>Font Name</translation>
</message>
<message>
<source>Doc</source>
<comment>font preview</comment>
<translation>Doc</translation>
<source>Doc</source>
<comment>font preview</comment>
<translation>Doc</translation>
</message>
<message>
<source>Type</source>
<comment>font preview</comment>
<translation>Type</translation>
<source>Type</source>
<comment>font preview</comment>
<translation>Type</translation>
</message>
<message>
<source>Subset</source>
<comment>font preview</comment>
<translation>Subset</translation>
<source>Subset</source>
<comment>font preview</comment>
<translation>Subset</translation>
</message>
<message>
<source>Access</source>
<comment>font preview</comment>
<translation>Access</translation>
<source>Access</source>
<comment>font preview</comment>
<translation>Access</translation>
</message>
<message>
<source>Font Size:</source>
<translation>Font Size:</translation>
<source>Font Size:</source>
<translation>Font Size:</translation>
</message>
<message>
<source>Fonts Preview</source>
<comment>font preview</comment>
<translation>Fonts Preview</translation>
<source>Fonts Preview</source>
<comment>font preview</comment>
<translation>Fonts Preview</translation>
</message>
<message>
<source>&amp;OK</source>
<comment>font preview</comment>
<translation>&amp;OK</translation>
<source>Alt+O</source>
<comment>font preview</comment>
<translation>Alt+O</translation>
</message>
<message>
<source>Alt+O</source>
<comment>font preview</comment>
<translation>Alt+O</translation>
<source>Quick Search: </source>
<translation>Quick Search: </translation>
</message>
<message>
<source>Quick Search: </source>
<translation>Quick Search: </translation>
<source>&amp;Search</source>
<translation>&amp;Search</translation>
</message>
<message>
<source>&amp;Search</source>
<translation>&amp;Search</translation>
<source>&amp;Close</source>
<comment>font preview</comment>
<translation>&amp;Close</translation>
</message>
<message>
<source>&amp;Close</source>
<comment>font preview</comment>
<translation>&amp;Close</translation>
<source>Alt+C</source>
<comment>font preview</comment>
<translation>Alt+C</translation>
</message>
<message>
<source>Alt+C</source>
<comment>font preview</comment>
<translation>Alt+C</translation>
<source>Append selected font into Style, Font menu</source>
<comment>font preview</comment>
<translation>Append selected font into Style, Font menu</translation>
</message>
<message>
<source>Append selected font into Style, Font menu</source>
<comment>font preview</comment>
<translation>Append selected font into Style, Font menu</translation>
<source>Leave preview</source>
<comment>font preview</comment>
<translation>Leave preview</translation>
</message>
<message>
<source>Leave preview</source>
<comment>font preview</comment>
<translation>Leave preview</translation>
<source>Typing the text here provides quick searching in the font names. E.g. &apos;bold&apos; shows all fonts with Bold in name. Searching is case insensitive.</source>
<translation>Typing the text here provides quick searching in the font names. E.g. &apos;bold&apos; shows all fonts with Bold in name. Searching is case insensitive.</translation>
</message>
<message>
<source>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</source>
<translation>Typing the text here provides quick searching in the font names. E.g. 'bold' shows all fonts with Bold in name. Searching is case insensitive.</translation>
<source>Start searching</source>
<translation>Start searching</translation>
</message>
<message>
<source>Start searching</source>
<translation>Start searching</translation>
<source>Size of the selected font</source>
<translation>Size of the selected font</translation>
</message>
<message>
<source>Size of the selected font</source>
<translation>Size of the selected font</translation>
<source>Woven silk pyjamas exchanged for blue quartz</source>
<comment>font preview</comment>
<translation>Woven silk pyjamas exchanged for blue quartz</translation>
</message>
<message>
<source>Woven silk pyjamas exchanged for blue quartz</source>
<comment>font preview</comment>
<translation>Woven silk pyjamas exchanged for blue quartz</translation>
<source>User</source>
<comment>font preview</comment>
<translation>User</translation>
</message>
<message>
<source>User</source>
<comment>font preview</comment>
<translation>User</translation>
<source>System</source>
<comment>font preview</comment>
<translation>System</translation>
</message>
<message>
<source>System</source>
<comment>font preview</comment>
<translation>System</translation>
</message>
</context>
<context>
</context>
<context>
<name>FontReplaceDialog</name>
<message>
<source>Font Substitution</source>
<translation>Font Substitution</translation>
<source>Font Substitution</source>
<translation>Font Substitution</translation>
</message>
<message>
<source>Original Font</source>
<translation>Original Font</translation>
<source>Original Font</source>
<translation>Original Font</translation>
</message>
<message>
<source>Substitution Font</source>
<translation>Substitution Font</translation>
<source>Substitution Font</source>
<translation>Substitution Font</translation>
</message>
<message>
<source>Make these substitutions permanent</source>
<translation>Make these substitutions permanent</translation>
<source>Make these substitutions permanent</source>
<translation>Make these substitutions permanent</translation>
</message>
<message>
<source>This document contains some fonts that are not installed on your system,
<source>This document contains some fonts that are not installed on your system,
please choose a suitable replacement for them.</source>
<translation>This document contains some fonts that are not installed on your system,
<translation>This document contains some fonts that are not installed on your system,
please choose a suitable replacement for them.</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
</context>
<context>
</context>
<context>
<name>GradientEditor</name>
<message>
<source>Position:</source>
<translation>Position:</translation>
<source>Position:</source>
<translation>Position:</translation>
</message>
<message>
<source> %</source>
<translation> %</translation>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>Here you can add, change or remove Color-Stops.</source>
<translation>Here you can add, change or remove Colour-Stops.</translation>
<source>Here you can add, change or remove Color-Stops.</source>
<translation>Here you can add, change or remove Colour-Stops.</translation>
</message>
</context>
<context>
</context>
<context>
<name>GuideManager</name>
<message>
<source>Manage Guides</source>
<translation>Manage Guides</translation>
<source>Manage Guides</source>
<translation>Manage Guides</translation>
</message>
<message>
<source>Horizontal Guides</source>
<translation>Horizontal Guides</translation>
<source>Horizontal Guides</source>
<translation>Horizontal Guides</translation>
</message>
<message>
<source>Vertical Guides</source>
<translation>Vertical Guides</translation>
<source>Vertical Guides</source>
<translation>Vertical Guides</translation>
</message>
<message>
<source>&amp;Y-Pos:</source>
<translation>&amp;Y-Pos:</translation>
<source>&amp;Y-Pos:</source>
<translation>&amp;Y-Pos:</translation>
</message>
<message>
<source>&amp;Add</source>
<translation>&amp;Add</translation>
<source>&amp;Add</source>
<translation>&amp;Add</translation>
</message>
<message>
<source>D&amp;elete</source>
<translation>D&amp;elete</translation>
<source>D&amp;elete</source>
<translation>D&amp;elete</translation>
</message>
<message>
<source>&amp;X-Pos:</source>
<translation>&amp;X-Pos:</translation>
<source>&amp;X-Pos:</source>
<translation>&amp;X-Pos:</translation>
</message>
<message>
<source>A&amp;dd</source>
<translation>A&amp;dd</translation>
<source>A&amp;dd</source>
<translation>A&amp;dd</translation>
</message>
<message>
<source>De&amp;lete</source>
<translation>De&amp;lete</translation>
<source>De&amp;lete</source>
<translation>De&amp;lete</translation>
</message>
<message>
<source>&amp;Lock Guides</source>
<translation>&amp;Lock Guides</translation>
<source>&amp;Lock Guides</source>
<translation>&amp;Lock Guides</translation>
</message>
<message>
<source>&amp;Rows:</source>
<translation>&amp;Rows:</translation>
<source>&amp;Rows:</source>
<translation>&amp;Rows:</translation>
</message>
<message>
<source>C&amp;olumns:</source>
<translation>C&amp;olumns:</translation>
<source>C&amp;olumns:</source>
<translation>C&amp;olumns:</translation>
</message>
<message>
<source>Refer to:</source>
<translation>Refer to:</translation>
<source>Refer to:</source>
<translation>Refer to:</translation>
</message>
<message>
<source>&amp;Page</source>
<translation>&amp;Page</translation>
<source>&amp;Page</source>
<translation>&amp;Page</translation>
</message>
<message>
<source>&amp;Margins</source>
<translation>&amp;Margins</translation>
<source>&amp;Margins</source>
<translation>&amp;Margins</translation>
</message>
<message>
<source>&amp;Selection</source>
<translation>&amp;Selection</translation>
<source>&amp;Selection</source>
<translation>&amp;Selection</translation>
</message>
<message>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
<source>&amp;Close</source>
<translation>&amp;Close</translation>
</message>
<message>
<source>Rows and Columns - Automatic Guides</source>
<translation>Rows and Columns - Automatic Guides</translation>
<source>Rows and Columns - Automatic Guides</source>
<translation>Rows and Columns - Automatic Guides</translation>
</message>
<message>
<source>Row &amp;Gap</source>
<translation>Row &amp;Gap</translation>
<source>Row &amp;Gap</source>
<translation>Row &amp;Gap</translation>
</message>
<message>
<source>Colum&amp;n Gap</source>
<translation>Colum&amp;n Gap</translation>
<source>Colum&amp;n Gap</source>
<translation>Colum&amp;n Gap</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Update</source>
<translation>&amp;Update</translation>
</message>
<message>
<source>&amp;Update</source>
<translation>&amp;Update</translation>
<source>Set the guides in document. Guide manager is still opened but the changes are persistant</source>
<comment>guide manager</comment>
<translation>Set the guides in document. Guide manager is still opened but the changes are persistant</translation>
</message>
<message>
<source>Set the guides in document. Guide manager is still opened but the changes are persistant</source>
<comment>guide manager</comment>
<translation>Set the guides in document. Guide manager is still opened but the changes are persistant</translation>
</message>
</context>
<context>
</context>
<context>
<name>HelpBrowser</name>
<message>
<source>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs
<source>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs
and www.scribus.net for downloads.</source>
<translation>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs
<translation>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs
and www.scribus.net for downloads.</translation>
</message>
<message>
<source>Contents</source>
<translation>Contents</translation>
<source>Contents</source>
<translation>Contents</translation>
</message>
<message>
<source>Link</source>
<translation>Link</translation>
<source>Link</source>
<translation>Link</translation>
</message>
<message>
<source>Scribus Online Help</source>
<translation>Scribus Online Help</translation>
<source>Scribus Online Help</source>
<translation>Scribus Online Help</translation>
</message>
<message>
<source>&amp;Contents</source>
<translation>&amp;Contents</translation>
<source>&amp;Contents</source>
<translation>&amp;Contents</translation>
</message>
<message>
<source>&amp;Search</source>
<translation>&amp;Search</translation>
<source>&amp;Search</source>
<translation>&amp;Search</translation>
</message>
<message>
<source>unknown</source>
<translation>unknown</translation>
<source>unknown</source>
<translation>unknown</translation>
</message>
<message>
<source>Find</source>
<translation>Find</translation>
<source>Find</source>
<translation>Find</translation>
</message>
<message>
<source>Search Term:</source>
<translation>Search Term:</translation>
<source>Search Term:</source>
<translation>Search Term:</translation>
</message>
<message>
<source>Se&amp;arch</source>
<translation>Se&amp;arch</translation>
<source>Se&amp;arch</source>
<translation>Se&amp;arch</translation>
</message>
<message>
<source>&amp;New</source>
<translation>&amp;New</translation>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
<source>De&amp;lete All</source>
<translation>De&amp;lete All</translation>
<source>De&amp;lete All</source>
<translation>De&amp;lete All</translation>
</message>
<message>
<source>Book&amp;marks</source>
<translation>Book&amp;marks</translation>
<source>Book&amp;marks</source>
<translation>Book&amp;marks</translation>
</message>
<message>
<source>&amp;Print...</source>
<translation>&amp;Print...</translation>
<source>&amp;Print...</source>
<translation>&amp;Print...</translation>
</message>
<message>
<source>E&amp;xit</source>
<translation>E&amp;xit</translation>
<source>E&amp;xit</source>
<translation>E&amp;xit</translation>
</message>
<message>
<source>Searching is case unsensitive</source>
<translation>Searching is case unsensitive</translation>
<source>Searching is case unsensitive</source>
<translation>Searching is case unsensitive</translation>
</message>
<message>
<source>New Bookmark</source>
<translation>New Bookmark</translation>
<source>New Bookmark</source>
<translation>New Bookmark</translation>
</message>
<message>
<source>New Bookmark's Title:</source>
<translation>New Bookmark's Title:</translation>
<source>New Bookmark&apos;s Title:</source>
<translation>New Bookmark&apos;s Title:</translation>
</message>
</context>
<context>
</context>
<context>
<name>HyAsk</name>
<message>
<source>Possible Hyphenation</source>
<translation>Possible Hyphenation</translation>
<source>Possible Hyphenation</source>
<translation>Possible Hyphenation</translation>
</message>
<message>
<source>Accept</source>
<translation>Accept</translation>
<source>Accept</source>
<translation>Accept</translation>
</message>
<message>
<source>Skip</source>
<translation>Skip</translation>
<source>Skip</source>
<translation>Skip</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>HySettings</name>
<message>
<source>Length of the smallest word to be hyphenated.</source>
<translation>Length of the smallest word to be hyphenated.</translation>
<source>Length of the smallest word to be hyphenated.</source>
<translation>Length of the smallest word to be hyphenated.</translation>
</message>
<message>
<source>Maximum number of Hyphenations following each other.
<source>Maximum number of Hyphenations following each other.
A value of 0 means unlimited hyphenations.</source>
<translation>Maximum number of Hyphenations following each other.
<translation>Maximum number of Hyphenations following each other.
A value of 0 means unlimited hyphenations.</translation>
</message>
<message>
<source>&amp;Language:</source>
<translation>&amp;Language:</translation>
<source>&amp;Language:</source>
<translation>&amp;Language:</translation>
</message>
<message>
<source>&amp;Smallest Word:</source>
<translation>&amp;Smallest Word:</translation>
<source>&amp;Smallest Word:</source>
<translation>&amp;Smallest Word:</translation>
</message>
<message>
<source>&amp;Hyphenation Suggestions</source>
<translation>&amp;Hyphenation Suggestions</translation>
<source>&amp;Hyphenation Suggestions</source>
<translation>&amp;Hyphenation Suggestions</translation>
</message>
<message>
<source>Hyphenate Text Automatically &amp;During Typing</source>
<translation>Hyphenate Text Automatically &amp;During Typing</translation>
<source>Hyphenate Text Automatically &amp;During Typing</source>
<translation>Hyphenate Text Automatically &amp;During Typing</translation>
</message>
<message>
<source>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</source>
<translation>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</translation>
<source>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</source>
<translation>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</translation>
</message>
<message>
<source>Enables automatic hyphenation of your text while typing.</source>
<translation>Enables automatic hyphenation of your text while typing.</translation>
<source>Enables automatic hyphenation of your text while typing.</source>
<translation>Enables automatic hyphenation of your text while typing.</translation>
</message>
<message>
<source>Consecutive Hyphenations &amp;Allowed:</source>
<translation>Consecutive Hyphenations &amp;Allowed:</translation>
<source>Consecutive Hyphenations &amp;Allowed:</source>
<translation>Consecutive Hyphenations &amp;Allowed:</translation>
</message>
</context>
<context>
</context>
<context>
<name>InsPage</name>
<message>
<source>Insert Page</source>
<translation>Insert Page</translation>
<source>Insert Page</source>
<translation>Insert Page</translation>
</message>
<message>
<source>before Page</source>
<translation>before Page</translation>
<source>before Page</source>
<translation>before Page</translation>
</message>
<message>
<source>after Page</source>
<translation>after Page</translation>
<source>after Page</source>
<translation>after Page</translation>
</message>
<message>
<source>at End</source>
<translation>at End</translation>
<source>at End</source>
<translation>at End</translation>
</message>
<message>
<source>Normal</source>
<translation>Normal</translation>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<source>Page(s)</source>
<translation>Page(s)</translation>
<source>Page(s)</source>
<translation>Page(s)</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
<source>&amp;Insert</source>
<translation>&amp;Insert</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
<source>Master Page (&amp;Left Page):</source>
<translation>Master Page (&amp;Left Page):</translation>
</message>
<message>
<source>&amp;Insert</source>
<translation>&amp;Insert</translation>
<source>&amp;Master Page:</source>
<translation>&amp;Master Page:</translation>
</message>
<message>
<source>Master Page (&amp;Left Page):</source>
<translation>Master Page (&amp;Left Page):</translation>
<source>Master Page (&amp;Right Page):</source>
<translation>Master Page (&amp;Right Page):</translation>
</message>
<message>
<source>&amp;Master Page:</source>
<translation>&amp;Master Page:</translation>
<source>Page Size</source>
<translation>Page Size</translation>
</message>
<message>
<source>Master Page (&amp;Right Page):</source>
<translation>Master Page (&amp;Right Page):</translation>
<source>&amp;Size:</source>
<translation>&amp;Size:</translation>
</message>
<message>
<source>Page Size</source>
<translation>Page Size</translation>
<source>Custom</source>
<translation>Custom</translation>
</message>
<message>
<source>&amp;Size:</source>
<translation>&amp;Size:</translation>
<source>Orie&amp;ntation:</source>
<translation>Orie&amp;ntation:</translation>
</message>
<message>
<source>Custom</source>
<translation>Custom</translation>
<source>Portrait</source>
<translation>Portrait</translation>
</message>
<message>
<source>Orie&amp;ntation:</source>
<translation>Orie&amp;ntation:</translation>
<source>Landscape</source>
<translation>Landscape</translation>
</message>
<message>
<source>Portrait</source>
<translation>Portrait</translation>
<source>&amp;Width:</source>
<translation>&amp;Width:</translation>
</message>
<message>
<source>Landscape</source>
<translation>Landscape</translation>
<source>&amp;Height:</source>
<translation>&amp;Height:</translation>
</message>
<message>
<source>&amp;Width:</source>
<translation>&amp;Width:</translation>
<source>Move Objects with their Page</source>
<translation>Move Objects with their Page</translation>
</message>
<message>
<source>&amp;Height:</source>
<translation>&amp;Height:</translation>
</message>
<message>
<source>Move Objects with their Page</source>
<translation>Move Objects with their Page</translation>
</message>
</context>
<context>
</context>
<context>
<name>InsertTable</name>
<message>
<source>Insert Table</source>
<translation>Insert Table</translation>
<source>Insert Table</source>
<translation>Insert Table</translation>
</message>
<message>
<source>Number of rows:</source>
<translation>Number of rows:</translation>
<source>Number of rows:</source>
<translation>Number of rows:</translation>
</message>
<message>
<source>Number of columns:</source>
<translation>Number of columns:</translation>
<source>Number of columns:</source>
<translation>Number of columns:</translation>
</message>
<message>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
<message>
<source>&amp;Cancel</source>
<translation>&amp;Cancel</translation>
</message>
</context>
<context>
</context>
<context>
<name>JavaDocs</name>
<message>
<source>New Script</source>
<translation>New Script</translation>
<source>New Script</source>
<translation>New Script</translation>
</message>
<message>
<source>Edit JavaScripts</source>
<translation>Edit JavaScripts</translation>
<source>Edit JavaScripts</source>
<translation>Edit JavaScripts</translation>
</message>
<message>
<source>Warning</source>
<translation>Warning</translation>
<source>Warning</source>
<translation>Warning</translation>
</message>
<message>
<source>&amp;Edit...</source>
<translation>&amp;Edit...</translation>
<source>&amp;Edit...</source>
<translation>&amp;Edit...</translation>
</message>