/trunk/Scribus/ChangeLogCVS |
---|
1,5 → 1,11 |
Changes since Version 1.1.7 |
28.07.2004 |
* bug #135: Text properties disappears when using story editor and not set by styles |
* feature #746: Story Editor rewrite |
* feature #896: German translation update |
* feature #897: Finnish translation update |
27.07.2004 |
* bug #892: resizing imported svg with rotated elements hurts gradients |
* feature #893: Polish Translation Update |
/trunk/Scribus/scribus/align.cpp |
---|
94,7 → 94,7 |
AVert->setEnabled(false); |
TextLabelD2->setBuddy(AVert); |
QString tmp = (ein == 0) ? tr(" pts") : |
QString tmp = (ein == 0) ? tr(" pt") : |
(ein == 1) ? tr(" mm") : |
(ein == 2) ? tr(" in") : tr(" p"); |
AHor->setSuffix(tmp); |
/trunk/Scribus/scribus/mpalette.cpp |
---|
328,16 → 328,6 |
layout60->addItem( spacer5 ); |
pageLayout->addLayout( layout60 ); |
Textflow = new QCheckBox( page, "Textflow" ); |
Textflow->setText( tr( "Text &Flows Around Frame" ) ); |
pageLayout->addWidget( Textflow ); |
Textflow2 = new QCheckBox( page, "Textflow2" ); |
Textflow2->setText( tr( "Use &Bounding Box" ) ); |
pageLayout->addWidget( Textflow2 ); |
Textflow3 = new QCheckBox( page, "Textflow3" ); |
Textflow3->setText( tr( "&Use Contour Line" ) ); |
pageLayout->addWidget( Textflow3 ); |
QSpacerItem* spacer13 = new QSpacerItem( 0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding ); |
pageLayout->addItem( spacer13 ); |
TabStack->addWidget( page, 0 ); |
457,6 → 447,17 |
TabStack2->addWidget( page_2b, 1 ); |
pageLayout_2->addWidget( TabStack2 ); |
Textflow = new QCheckBox( page_2, "Textflow" ); |
Textflow->setText( tr( "Text &Flows Around Frame" ) ); |
pageLayout_2->addWidget( Textflow ); |
Textflow2 = new QCheckBox( page_2, "Textflow2" ); |
Textflow2->setText( tr( "Use &Bounding Box" ) ); |
pageLayout_2->addWidget( Textflow2 ); |
Textflow3 = new QCheckBox( page_2, "Textflow3" ); |
Textflow3->setText( tr( "&Use Contour Line" ) ); |
pageLayout_2->addWidget( Textflow3 ); |
QSpacerItem* spacer6 = new QSpacerItem( 0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding ); |
pageLayout_2->addItem( spacer6 ); |
TabStack->addWidget( page_2, 1 ); |
/trunk/Scribus/scribus/story.cpp |
---|
16,12 → 16,12 |
***************************************************************************/ |
#include "story.h" |
#include "story.moc" |
#include <qlayout.h> |
#include <qtooltip.h> |
#include <qpixmap.h> |
#include <qcombobox.h> |
#include <qmessagebox.h> |
#include <qregexp.h> |
#include <qhbox.h> |
#include "serializer.h" |
#include "customfdialog.h" |
#include "search.h" |
30,299 → 30,976 |
extern QPixmap loadIcon(QString nam); |
SEditor::SEditor(QWidget* parent) : QTextEdit(parent) |
SEditor::SEditor(QWidget* parent, ScribusDoc *docc) : QTextEdit(parent) |
{ |
clines = 0; |
setFrameStyle( QFrame::NoFrame | QFrame::Plain ); |
doc = docc; |
StyledText.clear(); |
StyledText.setAutoDelete(true); |
setUndoRedoEnabled(true); |
setUndoDepth(50); |
// setTextFormat(Qt::RichText); |
setUndoDepth(0); |
setTextFormat(Qt::PlainText); |
} |
void SEditor::focusInEvent(QFocusEvent *f) |
void SEditor::keyPressEvent(QKeyEvent *k) |
{ |
bool u = isUndoAvailable(); |
bool r = isRedoAvailable(); |
emit UnRe(u, r); |
QTextEdit::focusInEvent(f); |
int p, i; |
getCursorPosition(&p, &i); |
int KeyMod; |
switch (k->state()) |
{ |
case ShiftButton: |
KeyMod = 0x00200000; |
break; |
case AltButton: |
KeyMod = 0x00800000; |
break; |
case ControlButton: |
KeyMod = 0x00400000; |
break; |
default: |
KeyMod = 0; |
break; |
} |
if ((k->key() + KeyMod) == ScApp->Prefs.KeyActions[60].KeyID) |
{ |
insChars(QString(QChar(30))); |
insert("#"); |
return; |
} |
switch (k->state()) |
{ |
case ControlButton: |
case ControlButton|ShiftButton: |
case ControlButton|Keypad: |
case ControlButton|ShiftButton|Keypad: |
break; |
case NoButton: |
case Keypad: |
case ShiftButton: |
if (UniCinp) |
{ |
int conv = 0; |
bool ok = false; |
UniCinS += k->text(); |
conv = UniCinS.toInt(&ok, 16); |
if (!ok) |
{ |
UniCinp = false; |
UniCinC = 0; |
UniCinS = ""; |
return; |
} |
UniCinC++; |
if (UniCinC == 4) |
{ |
UniCinp = false; |
UniCinC = 0; |
UniCinS = ""; |
if (ok) |
{ |
if (conv < 31) |
conv = 32; |
insChars(QString(QChar(conv))); |
insert(QString(QChar(conv))); |
return; |
} |
} |
else |
return; |
} |
switch (k->key()) |
{ |
case Key_F12: |
UniCinp = true; |
UniCinC = 0; |
UniCinS = ""; |
return; |
break; |
case Key_Delete: |
if (!hasSelectedText()) |
{ |
ChList *chars = StyledText.at(p); |
if (i < static_cast<int>(chars->count())) |
chars->remove(i); |
else |
{ |
if (p < static_cast<int>(StyledText.count()-1)) |
{ |
struct PtiSmall *hg; |
ChList *chars2 = StyledText.at(p+1); |
int a = static_cast<int>(chars2->count()); |
if (a > 0) |
{ |
int ca; |
if (chars->count() > 0) |
ca = chars->at(0)->cab; |
else |
ca = CurrentABStil; |
for (int s = 0; s < a; ++s) |
{ |
hg = chars2->take(0); |
hg->cab = ca; |
chars->append(hg); |
} |
} |
StyledText.remove(p+1); |
} |
} |
} |
else |
deleteSel(); |
break; |
case Key_Backspace: |
if (!hasSelectedText()) |
{ |
ChList *chars = StyledText.at(p); |
if (i > 0) |
chars->remove(i-1); |
else |
{ |
if (p > 0) |
{ |
struct PtiSmall *hg; |
ChList *chars2 = StyledText.at(p-1); |
int a = static_cast<int>(chars->count()); |
if (a > 0) |
{ |
int ca; |
if (chars2->count() > 0) |
ca = chars2->at(0)->cab; |
else |
ca = chars->at(0)->cab; |
for (int s = 0; s < a; ++s) |
{ |
hg = chars->take(0); |
hg->cab = ca; |
chars2->append(hg); |
} |
} |
StyledText.remove(p); |
} |
} |
} |
else |
deleteSel(); |
break; |
case Key_Return: |
case Key_Enter: |
{ |
if (hasSelectedText()) |
deleteSel(); |
ChList *chars; |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
if (StyledText.count() != 0) |
{ |
ChList *chars2 = StyledText.at(p); |
int a = static_cast<int>(chars2->count()); |
for (int s = i; s < a; ++s) |
{ |
chars->append(chars2->take(i)); |
} |
StyledText.insert(p+1, chars); |
} |
else |
StyledText.append(chars); |
} |
break; |
case Key_Left: |
case Key_Right: |
case Key_Prior: |
case Key_Next: |
case Key_Up: |
case Key_Down: |
case Key_Home: |
case Key_End: |
break; |
default: |
if (k->text() != "") |
insChars(k->text()); |
break; |
} |
break; |
default: |
break; |
} |
QTextEdit::keyPressEvent(k); |
} |
void SEditor::keyPressEvent(QKeyEvent *k) |
void SEditor::insChars(QString t) |
{ |
int p, i; |
getCursorPosition(&p, &i); |
if (UniCinp) |
if (hasSelectedText()) |
deleteSel(); |
ChList *chars; |
if ((p >= static_cast<int>(StyledText.count())) || (StyledText.count() == 0)) |
{ |
int conv = 0; |
bool ok = false; |
UniCinS += k->text(); |
conv = UniCinS.toInt(&ok, 16); |
if (!ok) |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
StyledText.append(chars); |
} |
else |
chars = StyledText.at(p); |
for (uint a = 0; a < t.length(); ++a) |
{ |
struct PtiSmall *hg; |
hg = new PtiSmall; |
hg->ch = t[a]; |
hg->ccolor = CurrTextFill; |
hg->cshade = CurrTextFillSh; |
hg->cstroke = CurrTextStroke; |
hg->cshade2 = CurrTextStrokeSh; |
hg->cfont = CurrFont; |
hg->csize = CurrFontSize; |
hg->cstyle = CurrentStyle; |
hg->cab = CurrentABStil; |
hg->cextra = CurrTextKern; |
hg->cscale = CurrTextScale; |
chars->insert(i, hg); |
i++; |
} |
} |
void SEditor::saveItemText(PageItem* b) |
{ |
ChList *chars; |
b->CPos = 0; |
b->Ptext.clear(); |
uint c = 0; |
for (uint p = 0; p < StyledText.count(); ++p) |
{ |
if (p != 0) |
{ |
UniCinp = false; |
UniCinC = 0; |
UniCinS = ""; |
return; |
} |
UniCinC++; |
if (UniCinC == 4) |
{ |
UniCinp = false; |
UniCinC = 0; |
UniCinS = ""; |
if (ok) |
c = StyledText.at(p-1)->count()-1; |
struct Pti *hg; |
hg = new Pti; |
hg->ch = QChar(13); |
if (chars->count() != 0) |
{ |
if (conv < 31) |
conv = 32; |
insert(QString(QChar(conv))); |
return; |
hg->cfont = chars->at(c)->cfont; |
hg->csize = chars->at(c)->csize; |
hg->ccolor = chars->at(c)->ccolor; |
hg->cshade = chars->at(c)->cshade; |
hg->cstroke = chars->at(c)->cstroke; |
hg->cshade2 = chars->at(c)->cshade2; |
hg->cscale = chars->at(c)->cscale; |
hg->cstyle = chars->at(c)->cstyle; |
hg->cab = chars->at(c)->cab; |
hg->cextra = chars->at(c)->cextra; |
} |
else |
{ |
hg->ccolor = CurrTextFill; |
hg->cshade = CurrTextFillSh; |
hg->cstroke = CurrTextStroke; |
hg->cshade2 = CurrTextStrokeSh; |
hg->cfont = CurrFont; |
hg->csize = CurrFontSize; |
hg->cstyle = CurrentStyle; |
hg->cab = CurrentABStil; |
hg->cextra = CurrTextKern; |
hg->cscale = CurrTextScale; |
if (doc->Vorlagen[CurrentABStil].Font != "") |
{ |
hg->cfont = doc->Vorlagen[CurrentABStil].Font; |
hg->csize = doc->Vorlagen[CurrentABStil].FontSize; |
} |
} |
hg->cselect = false; |
hg->xp = 0; |
hg->yp = 0; |
hg->PRot = 0; |
hg->PtransX = 0; |
hg->PtransY = 0; |
b->Ptext.append(hg); |
} |
else |
return; |
chars = StyledText.at(p); |
for (uint c = 0; c < chars->count(); ++c) |
{ |
struct Pti *hg; |
hg = new Pti; |
hg->ch = chars->at(c)->ch; |
hg->cfont = chars->at(c)->cfont; |
hg->csize = chars->at(c)->csize; |
hg->ccolor = chars->at(c)->ccolor; |
hg->cshade = chars->at(c)->cshade; |
hg->cstroke = chars->at(c)->cstroke; |
hg->cshade2 = chars->at(c)->cshade2; |
hg->cscale = chars->at(c)->cscale; |
hg->cstyle = chars->at(c)->cstyle; |
hg->cab = chars->at(c)->cab; |
hg->cextra = chars->at(c)->cextra; |
hg->cselect = false; |
hg->xp = 0; |
hg->yp = 0; |
hg->PRot = 0; |
hg->PtransX = 0; |
hg->PtransY = 0; |
b->Ptext.append(hg); |
} |
} |
if ((k->key() == Key_Backspace) && (i == 0) && (!hasSelectedText())) |
} |
void SEditor::setAlign(int style) |
{ |
int align = 0; |
if (style > 4) |
align = doc->Vorlagen[style].Ausri; |
else |
align = style; |
switch (align) |
{ |
emit bsPressed(); |
return; |
case 0: |
setAlignment(Qt::AlignLeft); |
break; |
case 1: |
setAlignment(Qt::AlignCenter); |
break; |
case 2: |
setAlignment(Qt::AlignRight); |
break; |
case 3: |
case 4: |
setAlignment(Qt::AlignJustify); |
break; |
default: |
break; |
} |
if ((k->key() == Key_Delete) && (i == static_cast<int>(text().length())) && (!hasSelectedText())) |
} |
void SEditor::loadItemText(PageItem* b) |
{ |
struct PtiSmall *hg; |
QString Text = ""; |
QString Ccol = ""; |
int Csha; |
int Csty; |
int Ali = 0; |
PageItem *nb = b; |
StyledText.clear(); |
ChList *chars; |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
while (nb != 0) |
{ |
emit delPressed(); |
return; |
if (nb->BackBox != 0) |
nb = nb->BackBox; |
else |
break; |
} |
if (k->key() == Key_F12) |
if (nb != 0) |
{ |
UniCinp = true; |
UniCinC = 0; |
UniCinS = ""; |
return; |
if (nb->Ptext.count() != 0) |
{ |
Ccol = nb->Ptext.at(0)->ccolor; |
Csha = nb->Ptext.at(0)->cshade; |
Csty = nb->Ptext.at(0)->cstyle; |
Ali = nb->Ptext.at(0)->cab; |
} |
else |
{ |
Ccol = b->TxtFill; |
Csha = b->ShTxtFill; |
Csha = b->TxTStyle; |
Ali = b->Ausrich; |
} |
setAlign(Ali); |
setFarbe(Ccol, Csha); |
setStyle(Csty); |
} |
QTextEdit::keyPressEvent(k); |
if (clines != lines()) |
emit wrapped(); |
clines = lines(); |
bool u = isUndoAvailable(); |
bool r = isRedoAvailable(); |
emit UnRe(u, r); |
ensureCursorVisible(); |
while (nb != 0) |
{ |
for (uint a = 0; a < nb->Ptext.count(); ++a) |
{ |
if (nb->Ptext.at(a)->ch == QChar(13)) |
{ |
StyledText.append(chars); |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
Text += "\n"; |
} |
else |
{ |
hg = new PtiSmall; |
hg->ch = nb->Ptext.at(a)->ch; |
hg->cfont = nb->Ptext.at(a)->cfont; |
hg->csize = nb->Ptext.at(a)->csize; |
hg->ccolor = nb->Ptext.at(a)->ccolor; |
hg->cshade = nb->Ptext.at(a)->cshade; |
hg->cstroke = nb->Ptext.at(a)->cstroke; |
hg->cshade2 = nb->Ptext.at(a)->cshade2; |
hg->cscale = nb->Ptext.at(a)->cscale; |
hg->cstyle = nb->Ptext.at(a)->cstyle; |
hg->cab = nb->Ptext.at(a)->cab; |
hg->cextra = nb->Ptext.at(a)->cextra; |
if ((Ccol == hg->ccolor) && (Ali == hg->cab) && (Csha == hg->cshade) && (Csty == hg->cstyle)) |
{ |
if (hg->ch == QChar(30)) |
{ |
setFarbe(Ccol, Csha); |
setAlign(Ali); |
setStyle(Csty); |
insert(Text); |
insert("#"); |
Text = ""; |
chars->append(hg); |
continue; |
} |
else |
Text += hg->ch; |
} |
else |
{ |
setFarbe(Ccol, Csha); |
setAlign(Ali); |
setStyle(Csty); |
insert(Text); |
Text = hg->ch; |
Ccol = hg->ccolor; |
Csha = hg->cshade; |
Csty = hg->cstyle; |
Ali = hg->cab; |
} |
chars->append(hg); |
} |
} |
nb = nb->NextBox; |
} |
setAlign(Ali); |
setFarbe(Ccol, Csha); |
setStyle(Csty); |
insert(Text); |
if (chars->count() != 0) |
StyledText.append(chars); |
if (StyledText.count() != 0) |
emit setProps(0, 0); |
setCursorPosition(0, 0); |
} |
STable::STable(QWidget* parent) : QTable(parent) |
void SEditor::loadText(QString tx, PageItem* b) |
{ |
setShowGrid(false); |
HomeK = 0; |
EndK = 0; |
struct PtiSmall *hg; |
QString Text = ""; |
StyledText.clear(); |
ChList *chars; |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
setAlign(b->Ausrich); |
setFarbe(b->TxtFill, b->ShTxtFill); |
setStyle(b->TxTStyle); |
for (uint a = 0; a < tx.length(); ++a) |
{ |
if (tx[a] == QChar(13)) |
{ |
StyledText.append(chars); |
chars = new ChList; |
chars->setAutoDelete(true); |
chars->clear(); |
Text += "\n"; |
} |
else |
{ |
hg = new PtiSmall; |
hg->ch = tx[a]; |
hg->cfont = b->IFont; |
hg->csize = b->ISize; |
hg->ccolor = b->TxtFill; |
hg->cshade = b->ShTxtFill; |
hg->cstroke = b->TxtStroke; |
hg->cshade2 = b->ShTxtStroke; |
hg->cscale = b->TxtScale; |
hg->cstyle = b->TxTStyle; |
hg->cab = b->Ausrich; |
hg->cextra = 0; |
Text += hg->ch; |
chars->append(hg); |
} |
} |
insert(Text); |
if (chars->count() != 0) |
StyledText.append(chars); |
if (StyledText.count() != 0) |
emit setProps(0, 0); |
setCursorPosition(0, 0); |
} |
void STable::keyPressEvent(QKeyEvent *k) |
void SEditor::updateFromChars(int pa) |
{ |
QString tmp; |
int p, i, l, r, c, n; |
SEditor *tt; |
n = numRows(); |
r = currentRow(); |
c = currentColumn(); |
if (c == 1) |
ChList *chars = StyledText.at(pa); |
if (chars->count() == 0) |
return; |
int SelStart = 0; |
int SelEnd = 0; |
int p, i; |
getCursorPosition(&p, &i); |
removeSelection(); |
QString Ccol = chars->at(0)->ccolor; |
int Csha = chars->at(0)->cshade; |
int Csty = chars->at(0)->cstyle; |
for (uint a = 0; a < chars->count(); ++a) |
{ |
tt = static_cast<SEditor*>(cellWidget(r, 1)); |
if ((k->key() == Key_Prior) || (k->key() == Key_Next)) |
if ((Ccol == chars->at(a)->ccolor) && (Csha == chars->at(a)->cshade) && (Csty == chars->at(a)->cstyle)) |
SelEnd++; |
else |
{ |
HomeK = 0; |
EndK = 0; |
return; |
setSelection(pa, SelStart, pa, SelEnd); |
setFarbe(Ccol, Csha); |
setStyle(Csty); |
removeSelection(); |
Ccol = chars->at(a)->ccolor; |
Csha = chars->at(a)->cshade; |
Csty = chars->at(a)->cstyle; |
SelEnd++; |
SelStart = SelEnd; |
} |
if ((k->key() == Key_Left) |
|| (k->key() == Key_Right) |
|| (k->key() == Key_Down) |
|| (k->key() == Key_Up) |
|| (k->key() == Key_Home) |
|| (k->key() == Key_End)) |
} |
setSelection(pa, SelStart, pa, SelEnd); |
setFarbe(Ccol, Csha); |
setStyle(Csty); |
removeSelection(); |
setCursorPosition(p, i); |
} |
/* updates the internal PtiSmall structure, to be useable for all members of the PtiSmall struct |
there is a code as first parameter to indicate which member should be updated. |
0 = Fill Colour and Fill Shade |
1 = Stroke Colour and Stroke Shade |
2 = Font |
3 = Font Size |
4 = Character Style |
5 = Character Scaling |
6 = Kerning |
*/ |
void SEditor::updateSel(int code, struct PtiSmall *hg) |
{ |
int PStart, PEnd, SelStart, SelEnd, start, end; |
ChList *chars; |
getSelection(&PStart, &SelStart, &PEnd, &SelEnd); |
for (int pa = PStart; pa < PEnd+1; ++pa) |
{ |
chars = StyledText.at(pa); |
if (pa == PStart) |
start = SelStart; |
else |
start = 0; |
if (pa == PEnd) |
end = SelEnd; |
else |
end = chars->count(); |
for (int ca = start; ca < end; ++ca) |
{ |
QTextEdit::CursorAction move; |
tt->getCursorPosition(&p, &i); |
switch (k->key()) |
switch (code) |
{ |
case Key_Home: |
EndK = 0; |
HomeK++; |
switch (HomeK) |
{ |
case 0: |
chars->at(ca)->ccolor = hg->ccolor; |
chars->at(ca)->cshade = hg->cshade; |
break; |
case 1: |
move = QTextEdit::MoveLineStart; |
chars->at(ca)->cstroke = hg->cstroke; |
chars->at(ca)->cshade2 = hg->cshade2; |
break; |
case 2: |
move = QTextEdit::MoveHome; |
chars->at(ca)->cfont = hg->cfont; |
break; |
case 3: |
tt = dynamic_cast<SEditor*>(cellWidget(0, 1)); |
setCurrentCell(0, 1); |
move = QTextEdit::MoveHome; |
HomeK = 0; |
chars->at(ca)->csize = hg->csize; |
break; |
} |
break; |
case Key_End: |
HomeK = 0; |
EndK++; |
switch (EndK) |
{ |
case 1: |
move = QTextEdit::MoveLineEnd; |
case 4: |
chars->at(ca)->cstyle &= ~127; |
chars->at(ca)->cstyle |= hg->cstyle; |
break; |
case 2: |
move = QTextEdit::MoveEnd; |
case 5: |
chars->at(ca)->cscale = hg->cscale; |
break; |
case 3: |
tt = dynamic_cast<SEditor*>(cellWidget(n-1, 1)); |
setCurrentCell(n-1, 1); |
move = QTextEdit::MoveEnd; |
EndK = 0; |
case 6: |
chars->at(ca)->cextra = hg->cextra; |
break; |
} |
break; |
case Key_Left: |
if ((i == 0) && (r > 0)) |
{ |
tt = dynamic_cast<SEditor*>(cellWidget(r-1, 1)); |
setCurrentCell(r-1, 1); |
move = QTextEdit::MoveEnd; |
} |
else |
move = QTextEdit::MoveBackward; |
break; |
case Key_Right: |
if ((i == static_cast<int>(tt->text().length())) && (r < n-1)) |
{ |
tt = dynamic_cast<SEditor*>(cellWidget(r+1, 1)); |
setCurrentCell(r+1, 1); |
move = QTextEdit::MoveLineStart; |
} |
else |
move = QTextEdit::MoveForward; |
break; |
case Key_Up: |
l = tt->lineOfChar(0, i); |
if ((l == 0) && (r > 0)) |
{ |
tt = dynamic_cast<SEditor*>(cellWidget(r-1, 1)); |
setCurrentCell(r-1, 1); |
move = QTextEdit::MoveEnd; |
} |
else |
move = QTextEdit::MoveUp; |
break; |
case Key_Down: |
l = tt->lineOfChar(0, i); |
if ((l == tt->lines()-1) && (r < n-1)) |
{ |
tt = dynamic_cast<SEditor*>(cellWidget(r+1, 1)); |
setCurrentCell(r+1, 1); |
move = QTextEdit::MoveLineStart; |
} |
else |
move = QTextEdit::MoveDown; |
break; |
default: |
break; |
} |
if (k->key() != Key_Home) |
HomeK = 0; |
if (k->key() != Key_End) |
EndK = 0; |
tt->moveCursor(move, false); |
tt->setFocus(); |
#if QT_VERSION >= 0x030100 |
updateHeaderStates(); |
#endif |
emit StatBarUpdt(); |
return; |
} |
} |
HomeK = 0; |
EndK = 0; |
QTable::keyPressEvent(k); |
} |
void STable::adjHeight(int r) |
void SEditor::deleteSel() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(cellWidget(r, 1)); |
cp->sync(); |
QFontMetrics fm2(cp->currentFont()); |
setRowHeight(r, QMAX((fm2.lineSpacing() * (cp->lines()+1)), 24)); |
#if QT_VERSION >= 0x030100 |
updateHeaderStates(); |
#endif |
int PStart, PEnd, SelStart, SelEnd, start, end; |
ChList *chars; |
getSelection(&PStart, &SelStart, &PEnd, &SelEnd); |
if (PStart == PEnd) |
{ |
chars = StyledText.at(PStart); |
for (int a = 0; a < SelEnd-SelStart; ++a) |
{ |
chars->remove(SelStart); |
} |
} |
else |
{ |
for (int pa = PStart; pa < PEnd+1; ++pa) |
{ |
chars = StyledText.at(pa); |
if (pa == PStart) |
start = SelStart; |
else |
start = 0; |
if (pa == PEnd) |
end = SelEnd; |
else |
end = chars->count(); |
for (int ca = 0; ca < end-start; ++ca) |
{ |
chars->remove(start); |
} |
} |
if (PEnd-PStart > 1) |
{ |
for (int pa2 = 0; pa2 < PEnd - PStart - 1; ++pa2) |
{ |
StyledText.remove(PStart+1); |
} |
} |
struct PtiSmall *hg; |
ChList *chars2 = StyledText.at(PStart+1); |
chars = StyledText.at(PStart); |
int a = static_cast<int>(chars2->count()); |
if (a > 0) |
{ |
int ca; |
if (chars->count() > 0) |
ca = chars->at(0)->cab; |
else |
ca = CurrentABStil; |
for (int s = 0; s < a; ++s) |
{ |
hg = chars2->take(0); |
hg->cab = ca; |
chars->append(hg); |
} |
} |
StyledText.remove(PStart+1); |
} |
setCursorPosition(PStart, SelStart); |
} |
StoryEditor::StoryEditor(QWidget* parent, ScribusDoc *docc, PageItem *ite) : QDialog(parent, "StoryEditor", true, 0) |
void SEditor::setStyle(int Csty) |
{ |
uint a; |
int para = 0; |
int pstyle; |
doc = docc; |
QString Dat = ""; |
setCaption( tr( "Story Editor" ) ); |
setIcon(loadIcon("AppIcon.png")); |
Form1Layout = new QVBoxLayout( this, 5, 5, "Form1Layout"); |
edList.clear(); |
stList.clear(); |
style.clear(); |
if (doc->Vorlagen.count() > 5) |
if (Csty & 8) |
setUnderline(true); |
else |
setUnderline(false); |
if (Csty & 1) |
setVerticalAlignment(AlignSuperScript); |
else if (Csty & 2) |
setVerticalAlignment(AlignSubScript); |
else |
setVerticalAlignment(AlignNormal); |
} |
void SEditor::setFarbe(QString farbe, int shad) |
{ |
int h, s, v, sneu; |
QColor tmp; |
doc->PageColors[farbe].getRGBColor().rgb(&h, &s, &v); |
if ((h == s) && (s == v)) |
{ |
for (uint a = 5; a < doc->Vorlagen.count(); ++a) |
style.append(doc->Vorlagen[a].Vname); |
doc->PageColors[farbe].getRGBColor().hsv(&h, &s, &v); |
sneu = 255 - ((255 - v) * shad / 100); |
tmp.setHsv(h, s, sneu); |
} |
style.sort(); |
QString tmp[] = { tr("Forced"), tr("Block"), tr("Right"), tr("Center"), tr("Left") }; |
size_t ar = sizeof(tmp) / sizeof(*tmp); |
for (uint a = 0; a < ar; ++a) |
style.prepend(tmp[a]); |
CurrItem = ite; |
else |
{ |
doc->PageColors[farbe].getRGBColor().hsv(&h, &s, &v); |
sneu = s * shad / 100; |
tmp.setHsv(h, sneu, v); |
} |
setColor(tmp); |
} |
void SEditor::cut() |
{ |
} |
void SEditor::paste() |
{ |
} |
/* Toolbar for Fill Colour */ |
SToolBColorF::SToolBColorF(QMainWindow* parent, ScribusDoc *doc) : QToolBar( tr("F&ill Color Settings"), parent) |
{ |
FillIcon = new QLabel( "", this, "FillIcon" ); |
FillIcon->setPixmap(loadIcon("fill.png")); |
FillIcon->setScaledContents( false ); |
TxFill = new QComboBox( true, this, "TxFill" ); |
TxFill->setEditable(false); |
PM2 = new ShadeButton(this); |
TxFill->clear(); |
CListe::Iterator it; |
QPixmap pm = QPixmap(15, 15); |
TxFill->insertItem( tr("None")); |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
pm.fill(doc->PageColors[it.key()].getRGBColor()); |
TxFill->insertItem(pm, it.key()); |
} |
TxFill->listBox()->setMinimumWidth(TxFill->listBox()->maxItemWidth()+24); |
QToolTip::add( TxFill, tr( "Color of text fill" ) ); |
QToolTip::add( PM2, tr( "Saturation of color of text fill" ) ); |
connect(TxFill, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
connect(PM2, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
} |
void SToolBColorF::SetColor(int c) |
{ |
disconnect(TxFill, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
TxFill->setCurrentItem(c); |
connect(TxFill, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
} |
void SToolBColorF::SetShade(int s) |
{ |
disconnect(PM2, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
PM2->setValue(s); |
connect(PM2, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
} |
void SToolBColorF::newShadeHandler() |
{ |
emit NewColor(TxFill->currentItem(), PM2->getValue()); |
} |
/* Toolbar for Stroke Colour */ |
SToolBColorS::SToolBColorS(QMainWindow* parent, ScribusDoc *doc) : QToolBar( tr("&Stroke Color Settings"), parent) |
{ |
StrokeIcon = new QLabel( "", this, "StrokeIcon" ); |
StrokeIcon->setPixmap(loadIcon("Stiftalt.xpm")); |
StrokeIcon->setScaledContents( false ); |
TxStroke = new QComboBox( true, this, "TxStroke" ); |
TxStroke->setEditable(false); |
PM1 = new ShadeButton(this); |
TxStroke->clear(); |
CListe::Iterator it; |
QPixmap pm = QPixmap(15, 15); |
TxStroke->insertItem( tr("None")); |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
pm.fill(doc->PageColors[it.key()].getRGBColor()); |
TxStroke->insertItem(pm, it.key()); |
} |
TxStroke->listBox()->setMinimumWidth(TxStroke->listBox()->maxItemWidth()+24); |
QToolTip::add( TxStroke, tr( "Color of text stroke" ) ); |
QToolTip::add( PM1, tr( "Saturation of color of text stroke" ) ); |
connect(TxStroke, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
connect(PM1, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
} |
void SToolBColorS::SetColor(int c) |
{ |
disconnect(TxStroke, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
TxStroke->setCurrentItem(c); |
connect(TxStroke, SIGNAL(activated(int)), this, SLOT(newShadeHandler())); |
} |
void SToolBColorS::SetShade(int s) |
{ |
disconnect(PM1, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
PM1->setValue(s); |
connect(PM1, SIGNAL(clicked()), this, SLOT(newShadeHandler())); |
} |
void SToolBColorS::newShadeHandler() |
{ |
emit NewColor(TxStroke->currentItem(), PM1->getValue()); |
} |
/* Toolbar for Character Style Settings */ |
SToolBStyle::SToolBStyle(QMainWindow* parent) : QToolBar( tr("&Character Settings"), parent) |
{ |
SeStyle = new StyleSelect(this); |
kerningLabel = new QLabel( tr( "Kerning:" ), this, "kerningLabel" ); |
Extra = new MSpinBox( this, 1 ); |
Extra->setValues( -300, 300, 10, 0); |
Extra->setSuffix( tr( " pt" ) ); |
QToolTip::add( Extra, tr( "Manual Kerning" ) ); |
connect(SeStyle, SIGNAL(State(int)), this, SIGNAL(NewStyle(int))); |
connect(Extra, SIGNAL(valueChanged(int)), this, SLOT(newKernHandler())); |
} |
void SToolBStyle::newKernHandler() |
{ |
emit NewKern(Extra->value()); |
} |
void SToolBStyle::SetStyle(int s) |
{ |
disconnect(SeStyle, SIGNAL(State(int)), this, SIGNAL(NewStyle(int))); |
SeStyle->setStyle(s); |
connect(SeStyle, SIGNAL(State(int)), this, SIGNAL(NewStyle(int))); |
} |
void SToolBStyle::SetKern(double k) |
{ |
disconnect(Extra, SIGNAL(valueChanged(int)), this, SLOT(newKernHandler())); |
Extra->setValue(k); |
connect(Extra, SIGNAL(valueChanged(int)), this, SLOT(newKernHandler())); |
} |
/* Toolbar for alignment of Paragraphs */ |
SToolBAlign::SToolBAlign(QMainWindow* parent) : QToolBar( tr("St&yle Settings"), parent) |
{ |
GroupAlign = new AlignSelect(this); |
Spal = new Spalette(this); |
QToolTip::add( Spal, tr( "Style of current paragraph" ) ); |
connect(Spal, SIGNAL(activated(int)), this, SLOT(newStyleHandler(int ))); |
connect(GroupAlign, SIGNAL(State(int)), this, SIGNAL(NewAlign(int ))); |
} |
void SToolBAlign::newStyleHandler(int s) |
{ |
if (s != 0) |
GroupAlign->setEnabled(false); |
else |
GroupAlign->setEnabled(true); |
emit NewStyle(s); |
} |
void SToolBAlign::SetAlign(int s) |
{ |
disconnect(Spal, SIGNAL(activated(int)), this, SIGNAL(NewStyle(int ))); |
disconnect(GroupAlign, SIGNAL(State(int)), this, SIGNAL(NewAlign(int ))); |
if (s < 5) |
{ |
GroupAlign->setEnabled(true); |
GroupAlign->setStyle(s); |
} |
else |
GroupAlign->setEnabled(false); |
Spal->setFormat(s); |
connect(Spal, SIGNAL(activated(int)), this, SIGNAL(NewStyle(int ))); |
connect(GroupAlign, SIGNAL(State(int)), this, SIGNAL(NewAlign(int ))); |
} |
/* Toolbar for Font related Settings */ |
SToolBFont::SToolBFont(QMainWindow* parent) : QToolBar( tr("&Font Settings"), parent) |
{ |
Fonts = new FontCombo(this, &ScApp->Prefs); |
Fonts->setMaximumSize(190, 30); |
Size = new MSpinBox( 1, 1024, this, 1 ); |
Size->setPrefix( "" ); |
Size->setSuffix( tr( " pt" ) ); |
ChScale = new QSpinBox( this, "ChScale" ); |
ChScale->setMaxValue( 400 ); |
ChScale->setMinValue( 25 ); |
ChScale->setValue( 100 ); |
ChScale->setSuffix( tr( " %" ) ); |
QToolTip::add( Fonts, tr( "Font of selected text" ) ); |
QToolTip::add( Size, tr( "Font Size" ) ); |
QToolTip::add( ChScale, tr( "Scaling width of characters" ) ); |
connect(ChScale, SIGNAL(valueChanged(int)), this, SIGNAL(NewScale(int))); |
connect(Fonts, SIGNAL(activated(const QString &)), this, SIGNAL(NewFont(const QString &))); |
connect(Size, SIGNAL(valueChanged(int)), this, SLOT(newSizeHandler())); |
} |
void SToolBFont::SetFont(QString f) |
{ |
disconnect(Fonts, SIGNAL(activated(const QString &)), this, SIGNAL(NewFont(const QString &))); |
Fonts->setCurrentText(f); |
connect(Fonts, SIGNAL(activated(const QString &)), this, SIGNAL(NewFont(const QString &))); |
} |
void SToolBFont::SetSize(double s) |
{ |
disconnect(Size, SIGNAL(valueChanged(int)), this, SLOT(newSizeHandler())); |
Size->setValue(s); |
connect(Size, SIGNAL(valueChanged(int)), this, SLOT(newSizeHandler())); |
} |
void SToolBFont::SetScale(int s) |
{ |
disconnect(ChScale, SIGNAL(valueChanged(int)), this, SIGNAL(NewScale(int))); |
ChScale->setValue(s); |
connect(ChScale, SIGNAL(valueChanged(int)), this, SIGNAL(NewScale(int))); |
} |
void SToolBFont::newSizeHandler() |
{ |
emit NewSize(Size->value()); |
} |
/* Main Story Editor Class */ |
StoryEditor::StoryEditor(QWidget* parent, ScribusDoc *docc, PageItem *ite) |
: QMainWindow(parent, "StoryEditor", WShowModal | WType_Dialog) |
{ |
setCaption( tr( "Story Editor" ) ); |
setIcon(loadIcon("AppIcon.png")); |
doc = docc; |
QHBox* vb = new QHBox( this ); |
StoryEd2Layout = new QHBoxLayout( 0, 5, 5, "StoryEd2Layout"); |
/* Setting up Menu Bar */ |
fmenu = new QPopupMenu(); |
fmenu->insertItem(loadIcon("DateiNeu16.png"), tr("New"), this, SLOT(Do_new()), CTRL+Key_N); |
fmenu->insertItem(loadIcon("DateiNeu16.png"), tr("&New"), this, SLOT(Do_new()), CTRL+Key_N); |
fid52 = fmenu->insertItem( tr("&Reload Text from Frame"), this, SLOT(slotFileRevert())); |
fmenu->insertSeparator(); |
fmenu->insertItem(loadIcon("DateiSave16.png"), tr("Save to File..."), this, SLOT(SaveTextFile())); |
fmenu->insertItem(loadIcon("DateiOpen16.png"), tr("Load from File..."), this, SLOT(LoadTextFile())); |
fmenu->insertItem(tr("Save Document"), this, SLOT(Do_saveDocument()), CTRL+Key_S); |
fmenu->insertItem(loadIcon("DateiSave16.png"), tr("&Save to File..."), this, SLOT(SaveTextFile())); |
fmenu->insertItem(loadIcon("DateiOpen16.png"), tr("&Load from File..."), this, SLOT(LoadTextFile())); |
fmenu->insertItem(tr("Save &Document"), this, SLOT(Do_saveDocument()), CTRL+Key_S); |
fmenu->insertSeparator(); |
/* changes to fit the #662 bug 05/28/04 petr vanek */ |
fmenu->insertItem( tr("Update Text Frame and Exit"), this, SLOT(accept())); |
fmenu->insertItem( tr("Exit Without Updating Text Frame"), this, SLOT(Do_leave())); |
fmenu->insertItem( tr("&Update Text Frame and Exit"), this, SLOT(Do_leave2())); |
fmenu->insertItem( tr("&Exit Without Updating Text Frame"), this, SLOT(Do_leave())); |
/* end of changes */ |
emenu = new QPopupMenu(); |
Mundo = emenu->insertItem( tr("Undo"), this, SLOT(Do_undo()), CTRL+Key_Z); |
Mredo = emenu->insertItem( tr("Redo"), this, SLOT(Do_redo())); |
Mcopy = emenu->insertItem(loadIcon("editcut.png"), tr("Cu&t"), this, SLOT(Do_cut()), CTRL+Key_X); |
Mcut = emenu->insertItem(loadIcon("editcopy.png"), tr("&Copy"), this, SLOT(Do_copy()), CTRL+Key_C); |
Mpaste = emenu->insertItem(loadIcon("editpaste.png"), tr("&Paste"), this, SLOT(Do_paste()), CTRL+Key_V); |
Mdel = emenu->insertItem(loadIcon("editdelete.png"), tr("C&lear"), this, SLOT(Do_del()), CTRL+Key_V); |
emenu->insertSeparator(); |
Mcopy = emenu->insertItem(loadIcon("editcut.png"), tr("Cut"), this, SLOT(Do_cut()), CTRL+Key_X); |
Mcut = emenu->insertItem(loadIcon("editcopy.png"), tr("Copy"), this, SLOT(Do_copy()), CTRL+Key_C); |
Mpaste = emenu->insertItem(loadIcon("editpaste.png"), tr("Paste"), this, SLOT(Do_paste()), CTRL+Key_V); |
Mdel = emenu->insertItem(loadIcon("editdelete.png"), tr("Clear"), this, SLOT(Do_del()), CTRL+Key_V); |
emenu->insertSeparator(); |
// int sr = emenu->insertItem( tr("Search/Replace..."), this, SLOT(SearchText())); |
emenu->insertItem( tr("Insert Special..."), this , SLOT(Do_insSp())); |
// int sr = emenu->insertItem( tr("&Search/Replace..."), this, SLOT(SearchText())); |
emenu->insertItem( tr("&Insert Special..."), this , SLOT(Do_insSp())); |
// emenu->setItemEnabled(sr, 0); |
emenu->insertSeparator(); |
emenu->insertItem( tr("Edit Styles..."), this , SLOT(slotEditStyles())); |
Mupdt = emenu->insertItem( tr("Update Text Frame"), this, SLOT(updateTextFrame())); |
menuBar = new QMenuBar(this); |
menuBar->insertItem( tr("File"), fmenu); |
menuBar->insertItem( tr("Edit"), emenu); |
Form1Layout->setMenuBar( menuBar ); |
table1 = new STable( this ); |
table1->setNumCols( 2 ); |
table1->horizontalHeader()->setLabel( 0, tr( "Style" ) ); |
table1->horizontalHeader()->setLabel( 1, tr( "Text" ) ); |
table1->setSelectionMode( QTable::Single ); |
table1->setColumnStretchable(0, false); |
table1->setColumnStretchable(1, true); |
table1->verticalHeader()->hide(); |
table1->setLeftMargin(0); |
Form1Layout->addWidget( table1 ); |
// emenu->insertItem( tr("&Edit Styles..."), this , SLOT(slotEditStyles())); |
Mupdt = emenu->insertItem( tr("&Update Text Frame"), this, SLOT(updateTextFrame())); |
// menuBar = new QMenuBar(this); |
menuBar()->insertItem( tr("&File"), fmenu); |
menuBar()->insertItem( tr("&Edit"), emenu); |
StateBar = new QStatusBar(this, "st"); |
/* Setting up Toolbars */ |
FontTools = new SToolBFont(this); |
setDockEnabled(FontTools, DockLeft, false); |
setDockEnabled(FontTools, DockRight, false); |
setDockEnabled(FontTools, DockBottom, false); |
AlignTools = new SToolBAlign(this); |
setDockEnabled(AlignTools, DockLeft, false); |
setDockEnabled(AlignTools, DockRight, false); |
setDockEnabled(AlignTools, DockBottom, false); |
AlignTools->Spal->SetFormats(doc); |
StyleTools = new SToolBStyle(this); |
setDockEnabled(StyleTools, DockLeft, false); |
setDockEnabled(StyleTools, DockRight, false); |
setDockEnabled(StyleTools, DockBottom, false); |
StrokeTools = new SToolBColorS(this, doc); |
setDockEnabled(StrokeTools, DockLeft, false); |
setDockEnabled(StrokeTools, DockRight, false); |
setDockEnabled(StrokeTools, DockBottom, false); |
StrokeTools->setEnabled(false); |
FillTools = new SToolBColorF(this, doc); |
setDockEnabled(FillTools, DockLeft, false); |
setDockEnabled(FillTools, DockRight, false); |
setDockEnabled(FillTools, DockBottom, false); |
ButtonGroup1 = new QButtonGroup( StateBar, "ButtonGroup1" ); |
/* Editor Widget, subclass of QTextEdit */ |
Editor = new SEditor(vb, docc); |
StoryEd2Layout->addWidget( Editor ); |
/* Setting up Status Bar */ |
ButtonGroup1 = new QButtonGroup( statusBar(), "ButtonGroup1" ); |
ButtonGroup1->setFrameShape( QButtonGroup::NoFrame ); |
ButtonGroup1->setFrameShadow( QButtonGroup::Plain ); |
ButtonGroup1->setTitle(""); |
347,9 → 1024,8 |
ButtonGroup1Layout->addWidget( CharCT, 1, 2 ); |
CharC = new QLabel(ButtonGroup1, "cc"); |
ButtonGroup1Layout->addWidget( CharC, 1, 3 ); |
StateBar->addWidget(ButtonGroup1, 1, true); |
ButtonGroup2 = new QButtonGroup( StateBar, "ButtonGroup2" ); |
statusBar()->addWidget(ButtonGroup1, 1, true); |
ButtonGroup2 = new QButtonGroup( statusBar(), "ButtonGroup2" ); |
ButtonGroup2->setFrameShape( QButtonGroup::NoFrame ); |
ButtonGroup2->setFrameShadow( QButtonGroup::Plain ); |
ButtonGroup2->setTitle(""); |
379,70 → 1055,285 |
ButtonGroup2Layout->addWidget( CharCT2, 1, 4 ); |
CharC2 = new QLabel(ButtonGroup2, "cc"); |
ButtonGroup2Layout->addWidget( CharC2, 1, 5 ); |
StateBar->addWidget(ButtonGroup2, 1, true); |
statusBar()->addWidget(ButtonGroup2, 1, true); |
setCentralWidget( vb ); |
/* Final polishment */ |
fmenu->setItemEnabled(fid52, 0); |
emenu->setItemEnabled(Mcopy, 0); |
emenu->setItemEnabled(Mcut, 0); |
emenu->setItemEnabled(Mpaste, 0); |
emenu->setItemEnabled(Mdel, 0); |
emenu->setItemEnabled(Mupdt, 0); |
resize( QSize(660, 500).expandedTo(minimumSizeHint()) ); |
CurrItem = ite; |
Editor->loadItemText(ite); |
updateProps(0,0); |
updateStatus(); |
Editor->setFocus(); |
TextChanged = false; |
connect(Editor, SIGNAL(textChanged()), this, SLOT(modifiedText())); |
connect(Editor, SIGNAL(clicked(int, int)), this, SLOT(updateStatus())); |
connect(Editor, SIGNAL(setProps(int, int)), this, SLOT(updateProps(int, int))); |
connect(Editor, SIGNAL(cursorPositionChanged(int, int)), this, SLOT(updateProps(int, int))); |
connect(AlignTools, SIGNAL(NewStyle(int)), this, SLOT(styleChange(int))); |
connect(AlignTools, SIGNAL(NewAlign(int)), this, SLOT(newAlign(int))); |
connect(FillTools, SIGNAL(NewColor(int, int)), this, SLOT(newTxFill(int, int))); |
connect(StrokeTools, SIGNAL(NewColor(int, int)), this, SLOT(newTxStroke(int, int))); |
connect(FontTools, SIGNAL(NewSize(double )), this, SLOT(newTxSize(double))); |
connect(FontTools, SIGNAL(NewFont(const QString& )), this, SLOT(newTxFont(const QString& ))); |
connect(FontTools, SIGNAL(NewScale(int )), this, SLOT(newTxScale(int ))); |
connect(StyleTools, SIGNAL(NewKern(double )), this, SLOT(newTxKern(double ))); |
connect(StyleTools, SIGNAL(NewStyle(int )), this, SLOT(newTxStyle(int ))); |
} |
Form1Layout->addWidget( StateBar ); |
int StoryEditor::exec() |
{ |
clearWFlags( WDestructiveClose ); |
setWFlags( WShowModal ); |
result = 0; |
show(); |
qApp->enter_loop(); |
clearWFlags( WShowModal ); |
return result; |
} |
resize( QSize(509, 326).expandedTo(minimumSizeHint()) ); |
show(); |
QPtrList<Pti> y; |
PageItem *nb = ite; |
while (nb != 0) |
void StoryEditor::closeEvent(QCloseEvent *event) |
{ |
if (TextChanged) |
{ |
if (nb->BackBox != 0) |
nb = nb->BackBox; |
else |
break; |
int t = QMessageBox::warning(this, tr("Warning"), |
tr("Do you want to save your changes?"), |
QMessageBox::Yes, QMessageBox::No, QMessageBox::Cancel); |
if (t == QMessageBox::Yes) |
result = QDialog::Accepted; |
else if (t == QMessageBox::Cancel) |
return; |
else if (t == QMessageBox::No) |
result = QDialog::Rejected; |
} |
while (nb != 0) |
else |
result = QDialog::Rejected; |
hide(); |
qApp->exit_loop(); |
} |
void StoryEditor::newTxFill(int c, int s) |
{ |
Editor->CurrTextFill = FillTools->TxFill->text(c); |
Editor->CurrTextFillSh = s; |
Editor->setFarbe(Editor->CurrTextFill, Editor->CurrTextFillSh); |
struct PtiSmall hg; |
hg.ccolor = Editor->CurrTextFill; |
hg.cshade = Editor->CurrTextFillSh; |
Editor->updateSel(0, &hg); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxStroke(int c, int s) |
{ |
Editor->CurrTextStroke = StrokeTools->TxStroke->text(c); |
Editor->CurrTextStrokeSh = s; |
struct PtiSmall hg; |
hg.cstroke = Editor->CurrTextStroke; |
hg.cshade2 = Editor->CurrTextStrokeSh; |
Editor->updateSel(1, &hg); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxFont(const QString &f) |
{ |
Editor->CurrFont = f; |
struct PtiSmall hg; |
hg.cfont = Editor->CurrFont; |
Editor->updateSel(2, &hg); |
if(!doc->UsedFonts.contains(Editor->CurrFont)) |
doc->AddFont(Editor->CurrFont, ScApp->Prefs.AvailFonts[Editor->CurrFont]->Font); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxSize(double s) |
{ |
Editor->CurrFontSize = qRound(s * 10.0); |
struct PtiSmall hg; |
hg.csize = Editor->CurrFontSize; |
Editor->updateSel(3, &hg); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxStyle(int s) |
{ |
Editor->CurrentStyle = s; |
struct PtiSmall hg; |
hg.cstyle = Editor->CurrentStyle; |
Editor->updateSel(4, &hg); |
Editor->setStyle(s); |
if (s & 4) |
StrokeTools->setEnabled(true); |
else |
StrokeTools->setEnabled(false); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxScale(int s) |
{ |
Editor->CurrTextScale = s; |
struct PtiSmall hg; |
hg.cscale = Editor->CurrTextScale; |
Editor->updateSel(5, &hg); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::newTxKern(double s) |
{ |
Editor->CurrTextKern = s; |
struct PtiSmall hg; |
hg.cextra = Editor->CurrTextKern; |
Editor->updateSel(6, &hg); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::updateProps(int p, int ch) |
{ |
CListe::Iterator it; |
int c = 0; |
SEditor::ChList *chars; |
if ((p >= static_cast<int>(Editor->StyledText.count())) || (Editor->StyledText.count() == 0)) |
{ |
y = nb->Ptext; |
for (a = 0; a < y.count(); ++a) |
Editor->CurrTextFill = CurrItem->TxtFill; |
Editor->CurrTextFillSh = CurrItem->ShTxtFill; |
Editor->CurrTextStroke = CurrItem->TxtStroke; |
Editor->CurrTextStrokeSh = CurrItem->ShTxtStroke; |
Editor->CurrFont = CurrItem->IFont; |
Editor->CurrFontSize = CurrItem->ISize; |
Editor->CurrentStyle = CurrItem->TxTStyle; |
Editor->CurrentABStil = CurrItem->Ausrich; |
Editor->CurrTextKern = CurrItem->ExtraV; |
Editor->CurrTextScale = CurrItem->TxtScale; |
c = 0; |
StrokeTools->SetShade(CurrItem->ShTxtStroke); |
FillTools->SetShade(CurrItem->ShTxtFill); |
QString b = CurrItem->TxtFill; |
if ((b != "None") && (b != "")) |
{ |
QString b = y.at(a)->ch; |
pstyle = y.at(a)->cab; |
if (b == QChar(13)) |
c++; |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
addPar(para, Dat, pstyle); |
Dat = ""; |
para++; |
if (it.key() == b) |
break; |
c++; |
} |
else |
Dat += b; |
} |
nb = nb->NextBox; |
FillTools->SetColor(c); |
c = 0; |
b = CurrItem->TxtStroke; |
if ((b != "None") && (b != "")) |
{ |
c++; |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
if (it.key() == b) |
break; |
c++; |
} |
} |
StrokeTools->SetColor(c); |
if (CurrItem->TxTStyle & 4) |
StrokeTools->setEnabled(true); |
else |
StrokeTools->setEnabled(false); |
AlignTools->SetAlign(CurrItem->Ausrich); |
StyleTools->SetKern(CurrItem->ExtraV); |
StyleTools->SetStyle(CurrItem->TxTStyle); |
FontTools->SetSize(CurrItem->ISize / 10.0); |
FontTools->SetFont(CurrItem->IFont); |
FontTools->SetScale(CurrItem->TxtScale); |
return; |
} |
if (Dat != "") |
addPar(para, Dat, pstyle); |
if (table1->numRows() == 0) |
addPar(0, "", doc->CurrentABStil); |
TextChanged = false; |
table1->setCurrentCell(0, 1); |
table1->ensureVisible(0, 1); |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(0, 1)); |
cp->setFocus(); |
cp->setCursorPosition(0, 0); |
for (uint a = 0; a < edList.count(); ++a) |
chars = Editor->StyledText.at(p); |
if (chars->count() == 0) |
{ |
SEditor *tt = edList.at(a); |
tt->setUndoRedoEnabled(false); |
tt->setUndoRedoEnabled(true); |
Editor->setColor(doc->PageColors[CurrItem->TxtFill].getRGBColor()); |
Editor->CurrTextFill = CurrItem->TxtFill; |
Editor->setAlignment(Qt::AlignLeft); |
AlignTools->SetAlign(0); |
Editor->CurrentABStil = 0; |
return; |
} |
emenu->setItemEnabled(Mundo, 0); |
emenu->setItemEnabled(Mredo, 0); |
emenu->setItemEnabled(Mcopy, 0); |
emenu->setItemEnabled(Mcut, 0); |
emenu->setItemEnabled(Mdel, 0); |
emenu->setItemEnabled(Mupdt, 0); |
struct PtiSmall *hg; |
if (Editor->hasSelectedText()) |
{ |
int PStart, PEnd, SelStart, SelEnd; |
Editor->getSelection(&PStart, &SelStart, &PEnd, &SelEnd); |
if ((SelStart != -1) && (SelStart < static_cast<int>(chars->count()))) |
hg = chars->at(SelStart); |
else |
hg = chars->at(QMIN(QMAX(ch-1, 0), chars->count()-1)); |
} |
else |
hg = chars->at(QMIN(QMAX(ch-1, 0), chars->count()-1)); |
Editor->CurrTextFill = hg->ccolor; |
Editor->CurrTextFillSh = hg->cshade; |
Editor->CurrTextStroke = hg->cstroke; |
Editor->CurrTextStrokeSh = hg->cshade2; |
Editor->CurrFont = hg->cfont; |
Editor->CurrFontSize = hg->csize; |
Editor->CurrentStyle = hg->cstyle & 127; |
Editor->CurrentABStil = hg->cab; |
Editor->CurrTextKern = hg->cextra; |
Editor->CurrTextScale = hg->cscale; |
StrokeTools->SetShade(hg->cshade2); |
FillTools->SetShade(hg->cshade); |
QString b = hg->ccolor; |
if ((b != "None") && (b != "")) |
{ |
c++; |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
if (it.key() == b) |
break; |
c++; |
} |
} |
FillTools->SetColor(c); |
c = 0; |
b = hg->cstroke; |
if ((b != "None") && (b != "")) |
{ |
c++; |
for (it = doc->PageColors.begin(); it != doc->PageColors.end(); ++it) |
{ |
if (it.key() == b) |
break; |
c++; |
} |
} |
StrokeTools->SetColor(c); |
if (hg->cstyle & 4) |
StrokeTools->setEnabled(true); |
else |
StrokeTools->setEnabled(false); |
AlignTools->SetAlign(hg->cab); |
StyleTools->SetKern(hg->cextra); |
StyleTools->SetStyle(hg->cstyle & 127); |
FontTools->SetSize(hg->csize / 10.0); |
FontTools->SetFont(hg->cfont); |
FontTools->SetScale(hg->cscale); |
updateStatus(); |
connect(table1, SIGNAL(StatBarUpdt()), this, SLOT(updateStatus())); |
} |
void StoryEditor::updateStatus() |
{ |
QString tmp; |
ParC->setText(tmp.setNum(edList.count())); |
SEditor *cp = (SEditor*)table1->cellWidget(table1->currentRow(), 1); |
int p, i; |
Editor->getCursorPosition(&p, &i); |
ParC->setText(tmp.setNum(Editor->StyledText.count())); |
QRegExp rx( "(\\w+)\\b" ); |
int pos = 0; |
int counter = 0; |
450,7 → 1341,7 |
int counter2 = 0; |
while ( pos >= 0 ) |
{ |
pos = rx.search( cp->text(), pos ); |
pos = rx.search( Editor->text(p), pos ); |
if ( pos > -1 ) |
{ |
counter++; |
458,14 → 1349,13 |
} |
} |
WordC->setText(tmp.setNum(counter)); |
CharC->setText(tmp.setNum(cp->length())); |
for (uint a = 0; a < edList.count(); ++a) |
CharC->setText(tmp.setNum(Editor->text(p).length()-1)); |
for (uint a = 0; a < Editor->StyledText.count(); ++a) |
{ |
SEditor *tt = edList.at(a); |
int pos = 0; |
while ( pos >= 0 ) |
{ |
pos = rx.search( tt->text(), pos ); |
pos = rx.search( Editor->text(a), pos ); |
if ( pos > -1 ) |
{ |
counter2++; |
472,61 → 1362,30 |
pos += rx.matchedLength(); |
} |
} |
counter1 += tt->length()+1; |
counter1 += Editor->text(a).length(); |
} |
WordC2->setText(tmp.setNum(counter2)); |
CharC2->setText(tmp.setNum(counter1-1)); |
CharC2->setText(tmp.setNum(Editor->length())); |
} |
void StoryEditor::closeEvent(QCloseEvent *event) |
{ |
if (!event->isAccepted()) |
{ |
if (TextChanged) |
{ |
int t = QMessageBox::warning(this, tr("Warning"), |
tr("Do you want to save your changes?"), |
QMessageBox::Yes, QMessageBox::No, QMessageBox::Cancel); |
if (t == QMessageBox::Yes) |
accept(); |
else if (t == QMessageBox::Cancel) |
return; |
else if (t == QMessageBox::No) |
reject(); |
} |
else |
reject(); |
} |
} |
void StoryEditor::Do_insSp() |
{ |
SEditor *ed = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
QComboBox *cp = stList.at(table1->currentRow()); |
int st = cp->currentItem(); |
QString font; |
if (st > 4) |
{ |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
{ |
if (doc->Vorlagen[x].Vname == cp->text(st)) |
{ |
st = x; |
break; |
} |
} |
font = doc->Vorlagen[st].Font; |
} |
else |
font = doc->CurrFont; |
ScApp->DLLinput = font; |
ScApp->DLLinput = Editor->CurrFont; |
ScApp->DLLReturn = ""; |
ScApp->CallDLL( tr("&Insert Special") ); |
ed->insert(ScApp->DLLReturn); |
Editor->insChars(ScApp->DLLReturn); |
Editor->insert(ScApp->DLLReturn); |
ScApp->DLLinput = ""; |
ScApp->DLLReturn = ""; |
} |
void StoryEditor::Do_leave2() |
{ |
result = QDialog::Accepted; |
hide(); |
qApp->exit_loop(); |
} |
void StoryEditor::Do_leave() |
{ |
if (TextChanged) |
537,7 → 1396,9 |
if (t == QMessageBox::No) |
return; |
} |
reject(); |
result = QDialog::Rejected; |
hide(); |
qApp->exit_loop(); |
} |
/*! Saves the document with editation continued. Signal called from menu. |
549,79 → 1410,65 |
ScApp->slotFileSave(); |
} |
void StoryEditor::Do_new() |
bool StoryEditor::Do_new() |
{ |
int t = QMessageBox::warning(this, tr("Warning"), |
tr("Do you really want to clear all your Text?"), |
QMessageBox::No, QMessageBox::Yes, QMessageBox::NoButton); |
if (t == QMessageBox::No) |
return; |
table1->setNumCols( 2 ); |
table1->setNumRows( 0 ); |
stList.clear(); |
edList.clear(); |
addPar(0, "", doc->CurrentABStil); |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(0, 1)); |
cp->setUndoRedoEnabled(false); |
cp->setUndoRedoEnabled(true); |
cp->setFocus(); |
cp->setCursorPosition(0, 0); |
emenu->setItemEnabled(Mundo, 0); |
emenu->setItemEnabled(Mredo, 0); |
return false; |
Editor->StyledText.clear(); |
Editor->clear(); |
Editor->setUndoRedoEnabled(false); |
Editor->setUndoRedoEnabled(true); |
Editor->setCursorPosition(0, 0); |
emenu->setItemEnabled(Mcopy, 0); |
emenu->setItemEnabled(Mcut, 0); |
emenu->setItemEnabled(Mdel, 0); |
fmenu->setItemEnabled(fid52, 0); |
TextChanged = false; |
updateProps(0, 0); |
updateStatus(); |
return true; |
} |
void StoryEditor::Do_undo() |
void StoryEditor::slotFileRevert() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->undo(); |
table1->adjHeight(table1->currentRow()); |
if (Do_new()) |
{ |
Editor->loadItemText(CurrItem); |
updateStatus(); |
} |
} |
void StoryEditor::Do_redo() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->redo(); |
table1->adjHeight(table1->currentRow()); |
} |
void StoryEditor::Do_copy() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
/* SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->copy(); |
table1->adjHeight(table1->currentRow()); |
table1->adjHeight(table1->currentRow()); */ |
} |
void StoryEditor::Do_paste() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
/* SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->paste(); |
table1->adjHeight(table1->currentRow()); |
table1->adjHeight(table1->currentRow()); */ |
} |
void StoryEditor::Do_cut() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
/* SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->cut(); |
table1->adjHeight(table1->currentRow()); |
table1->adjHeight(table1->currentRow()); */ |
} |
void StoryEditor::Do_del() |
{ |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
/* SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(table1->currentRow(), 1)); |
cp->del(); |
table1->adjHeight(table1->currentRow()); |
table1->adjHeight(table1->currentRow()); */ |
} |
void StoryEditor::UnReMenu(bool u, bool r) |
{ |
emenu->setItemEnabled(Mundo, u); |
emenu->setItemEnabled(Mredo, r); |
} |
void StoryEditor::CopyAvail(bool u) |
{ |
emenu->setItemEnabled(Mcopy, u); |
631,7 → 1478,6 |
void StoryEditor::updateTextFrame() |
{ |
bool first = false; |
PageItem *nb = CurrItem; |
while (nb != 0) |
{ |
640,30 → 1486,7 |
else |
break; |
} |
for (uint a = 0; a < edList.count(); ++a) |
{ |
Serializer *ss = new Serializer(""); |
SEditor *tt = edList.at(a); |
QComboBox *cp = stList.at(a); |
ss->Objekt = tt->text(); |
if (a < edList.count()-1) |
ss->Objekt += QChar(10); |
int st = cp->currentItem(); |
if (st > 4) |
{ |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
{ |
if (doc->Vorlagen[x].Vname == cp->text(st)) |
{ |
st = x; |
break; |
} |
} |
} |
ss->GetText(nb, st, doc->Vorlagen[st].Font, doc->Vorlagen[st].FontSize, first); |
delete ss; |
first = true; |
} |
Editor->saveItemText(nb); |
while (nb != 0) |
{ |
if (doc->Trenner->AutoCheck) |
686,19 → 1509,20 |
} |
TextChanged = false; |
emenu->setItemEnabled(Mupdt, 0); |
fmenu->setItemEnabled(fid52, 0); |
emit DocChanged(); |
} |
void StoryEditor::SearchText() |
{ |
SearchReplace* dia = new SearchReplace(this, doc, 0, CurrItem, false); |
/* SearchReplace* dia = new SearchReplace(this, doc, 0, CurrItem, false); |
dia->exec(); |
delete dia; |
delete dia; */ |
} |
void StoryEditor::slotEditStyles() |
{ |
int sty; |
/* int sty; |
QComboBox *ct; |
emit EditSt(); |
style.clear(); |
738,282 → 1562,135 |
ct->setCurrentItem(align); |
disconnect(ct, SIGNAL(highlighted(int)), this, SLOT(styleChange(int))); |
connect(ct, SIGNAL(activated(int)), this, SLOT(styleChange(int))); |
} |
} */ |
} |
void StoryEditor::styleChange(int st) |
{ |
int r = stList.findRef((QComboBox*)sender()); |
if (r != -1) |
if (st == 0) |
Editor->CurrentABStil = 0; |
else |
Editor->CurrentABStil = st+4; |
int align = 0; |
if (st > 0) |
{ |
QComboBox *c = stList.at(r); |
int align; |
if (st > 4) |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
{ |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
if (doc->Vorlagen[x].Vname == AlignTools->Spal->text(st)) |
{ |
if (doc->Vorlagen[x].Vname == c->text(st)) |
{ |
align = doc->Vorlagen[x].Ausri; |
break; |
} |
align = doc->Vorlagen[x].Ausri; |
break; |
} |
} |
else |
align = st; |
SEditor *tt = dynamic_cast<SEditor*>(table1->cellWidget(r, 1)); |
switch (align) |
{ |
case 0: |
tt->setAlignment(Qt::AlignLeft); |
break; |
case 1: |
tt->setAlignment(Qt::AlignCenter); |
break; |
case 2: |
tt->setAlignment(Qt::AlignRight); |
break; |
case 3: |
case 4: |
tt->setAlignment(Qt::AlignJustify); |
break; |
default: |
break; |
} |
modifiedText(); |
} |
else |
align = 0; |
changeAlign(align); |
} |
int StoryEditor::getStyle(int where) |
void StoryEditor::newAlign(int st) |
{ |
QComboBox *cp = stList.at(where); |
int st = cp->currentItem(); |
if (st > 4) |
{ |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
{ |
if (doc->Vorlagen[x].Vname == cp->text(st)) |
{ |
st = x; |
break; |
} |
} |
} |
return st; |
Editor->CurrentABStil = st; |
changeAlign(st); |
} |
void StoryEditor::addPar(int where, QString text, int sty) |
void StoryEditor::changeAlign(int align) |
{ |
int styl = sty; |
table1->insertRows(where); |
QComboBox *ct = new QComboBox( this ); |
ct->insertStringList(style); |
ct->setMaximumSize(200, 24); |
ct->setEditable(false); |
table1->setCellWidget(where, 0, ct); |
SEditor *cp = new SEditor(this); |
stList.insert(where, ct); |
edList.insert(where, cp); |
table1->setCellWidget(where, 1, cp); |
table1->setCurrentCell(where, 1); |
cp->setText(text); |
table1->adjHeight(where); |
connect(ct, SIGNAL(highlighted(int)), this, SLOT(styleChange(int))); |
if (styl > 4) |
switch (align) |
{ |
for (uint x = 5; x < doc->Vorlagen.count(); ++x) |
case 0: |
Editor->setAlignment(Qt::AlignLeft); |
break; |
case 1: |
Editor->setAlignment(Qt::AlignCenter); |
break; |
case 2: |
Editor->setAlignment(Qt::AlignRight); |
break; |
case 3: |
case 4: |
Editor->setAlignment(Qt::AlignJustify); |
break; |
default: |
break; |
} |
int p, i; |
Editor->getCursorPosition(&p, &i); |
if (Editor->StyledText.at(p)->count() > 0) |
{ |
for (uint s = 0; s < Editor->StyledText.at(p)->count(); ++s) |
{ |
if (doc->Vorlagen[styl].Vname == ct->text(x)) |
if (Editor->CurrentABStil > 4) |
{ |
styl = x; |
break; |
if (doc->Vorlagen[Editor->CurrentABStil].Font != "") |
{ |
Editor->StyledText.at(p)->at(s)->cfont = doc->Vorlagen[Editor->CurrentABStil].Font; |
Editor->StyledText.at(p)->at(s)->csize = doc->Vorlagen[Editor->CurrentABStil].FontSize; |
Editor->StyledText.at(p)->at(s)->cstyle &= ~127; |
Editor->StyledText.at(p)->at(s)->cstyle |= doc->Vorlagen[Editor->CurrentABStil].FontEffect; |
Editor->StyledText.at(p)->at(s)->ccolor = doc->Vorlagen[Editor->CurrentABStil].FColor; |
Editor->StyledText.at(p)->at(s)->cshade = doc->Vorlagen[Editor->CurrentABStil].FShade; |
Editor->StyledText.at(p)->at(s)->cstroke = doc->Vorlagen[Editor->CurrentABStil].SColor; |
Editor->StyledText.at(p)->at(s)->cshade2 = doc->Vorlagen[Editor->CurrentABStil].SShade; |
} |
} |
if ((Editor->CurrentABStil < 5) && (Editor->StyledText.at(p)->at(s)->cab > 4)) |
{ |
Editor->StyledText.at(p)->at(s)->ccolor = CurrItem->TxtFill; |
Editor->StyledText.at(p)->at(s)->cshade = CurrItem->ShTxtFill; |
Editor->StyledText.at(p)->at(s)->cstroke = CurrItem->TxtStroke; |
Editor->StyledText.at(p)->at(s)->cshade2 = CurrItem->ShTxtStroke; |
Editor->StyledText.at(p)->at(s)->cfont = CurrItem->IFont; |
Editor->StyledText.at(p)->at(s)->csize = CurrItem->ISize; |
Editor->StyledText.at(p)->at(s)->cstyle &= ~127; |
Editor->StyledText.at(p)->at(s)->cstyle |= CurrItem->TxTStyle; |
} |
Editor->StyledText.at(p)->at(s)->cab = Editor->CurrentABStil; |
} |
disconnect(Editor, SIGNAL(cursorPositionChanged(int, int)), this, SLOT(updateProps(int, int))); |
Editor->updateFromChars(p); |
connect(Editor, SIGNAL(cursorPositionChanged(int, int)), this, SLOT(updateProps(int, int))); |
updateProps(p, i); |
} |
ct->setCurrentItem(styl); |
disconnect(ct, SIGNAL(highlighted(int)), this, SLOT(styleChange(int))); |
cp->setFocus(); |
cp->setCursorPosition(0, 0); |
connect(cp, SIGNAL(copyAvailable(bool)), this, SLOT(CopyAvail(bool))); |
connect(cp, SIGNAL(UnRe(bool, bool)), this, SLOT(UnReMenu(bool, bool))); |
connect(cp, SIGNAL(wrapped()), this, SLOT(WrapHandler())); |
connect(cp, SIGNAL(delPressed()), this, SLOT(KeyDel())); |
connect(cp, SIGNAL(bsPressed()), this, SLOT(KeyBS())); |
connect(cp, SIGNAL(returnPressed()), this, SLOT(KeyRet())); |
connect(cp, SIGNAL(clicked(int, int)), this, SLOT(clickAt(int, int))); |
connect(cp, SIGNAL(textChanged()), this, SLOT(modifiedText())); |
connect(ct, SIGNAL(activated(int)), this, SLOT(styleChange(int))); |
modifiedText(); |
Editor->setFocus(); |
} |
void StoryEditor::modifiedText() |
{ |
TextChanged = true; |
table1->HomeK = 0; |
table1->EndK = 0; |
emenu->setItemEnabled(Mupdt, 1); |
fmenu->setItemEnabled(fid52, 1); |
updateStatus(); |
} |
void StoryEditor::WrapHandler() |
{ |
int r = edList.findRef((SEditor*)sender()); |
if (r != -1) |
table1->adjHeight(r); |
} |
void StoryEditor::clickAt( int row, int col) |
{ |
int r = edList.findRef((SEditor*)sender()); |
if (r != -1) |
{ |
table1->setCurrentCell(r, 1); |
table1->cellWidget(r, 1)->setFocus(); |
#if QT_VERSION >= 0x030100 |
table1->updateHeaderStates(); |
#endif |
updateStatus(); |
} |
} |
void StoryEditor::KeyDel() |
{ |
QString tmp, tmp2; |
int r = table1->currentRow(); |
SEditor *tt = (SEditor*)sender(); |
tmp = tt->text(); |
if (r < table1->numRows()-1) |
{ |
int al = tt->alignment(); |
SEditor *bt = edList.at(r+1); |
tmp2 = bt->text(); |
tt->setText(tmp + tmp2); |
tt->setAlignment(al); |
edList.remove(r+1); |
stList.remove(r+1); |
table1->removeRow(r+1); |
table1->setCurrentCell(r, 1); |
table1->adjHeight(r); |
tt->setFocus(); |
tt->setCursorPosition(0, tmp.length()); |
updateStatus(); |
} |
} |
void StoryEditor::KeyBS() |
{ |
QString tmp, tmp2; |
int r = table1->currentRow(); |
SEditor *tt = (SEditor*)sender(); |
tmp = tt->text(); |
if (r > 0) |
{ |
SEditor *bt = edList.at(r-1); |
int al = bt->alignment(); |
tmp2 = bt->text(); |
bt->setText(tmp2 + tmp); |
bt->setAlignment(al); |
edList.remove(r); |
stList.remove(r); |
table1->removeRow(r); |
table1->setCurrentCell(r-1, 1); |
table1->adjHeight(r-1); |
bt->setFocus(); |
bt->setCursorPosition(0, tmp2.length()); |
updateStatus(); |
} |
} |
void StoryEditor::KeyRet() |
{ |
QString tmp, tmp2; |
QString tmp3 = ""; |
SEditor *tt = (SEditor*)sender(); |
tmp = tt->text(); |
int al = tt->alignment(); |
int st = getStyle(table1->currentRow()); |
int rPos = tmp.find("\n"); |
if (CurrItem->PType == 8) |
{ |
tmp.remove("\n"); |
tt->setText(tmp); |
tt->setAlignment(al); |
return; |
} |
if (rPos < static_cast<int>(tmp.length())) |
{ |
tmp2 = tmp.left(rPos); |
tmp3 = tmp.mid(rPos+1); |
tt->setText(tmp2); |
} |
else |
{ |
tmp.remove("\n"); |
tt->setText(tmp); |
} |
tt->setAlignment(al); |
table1->adjHeight(table1->currentRow()); |
addPar(table1->currentRow()+1, tmp3, st); |
updateStatus(); |
} |
void StoryEditor::LoadTextFile() |
{ |
QString LoadEnc = ""; |
QString fileName = ""; |
int para = 0; |
CustomFDialog dia(this, tr("Open"), tr("Text Files (*.txt);;All Files(*)"), false, true, false, true); |
if (dia.exec() != QDialog::Accepted) |
return; |
LoadEnc = dia.TxCodeM->currentText(); |
fileName = dia.selectedFile(); |
if (!fileName.isEmpty()) |
if (Do_new()) |
{ |
table1->setNumCols( 2 ); |
table1->setNumRows( 0 ); |
stList.clear(); |
edList.clear(); |
Serializer *ss = new Serializer(fileName); |
if (ss->Read(LoadEnc)) |
QString LoadEnc = ""; |
QString fileName = ""; |
CustomFDialog dia(this, tr("Open"), tr("Text Files (*.txt);;All Files(*)"), false, true, false, true); |
if (dia.exec() != QDialog::Accepted) |
return; |
LoadEnc = dia.TxCodeM->currentText(); |
fileName = dia.selectedFile(); |
if (!fileName.isEmpty()) |
{ |
QString data = ss->GetObjekt(); |
QString Dat = ""; |
data.replace(QRegExp("\r"), ""); |
data.replace(QRegExp("\n"), QChar(13)); |
for (uint a = 0; a < data.length(); ++a) |
Serializer *ss = new Serializer(fileName); |
if (ss->Read(LoadEnc)) |
{ |
QChar b = data.at(a); |
if (b == QChar(13)) |
{ |
addPar(para, Dat, 0); |
Dat = ""; |
para++; |
} |
else |
Dat += b; |
QString data = ss->GetObjekt(); |
QString Dat = ""; |
data.replace(QRegExp("\r"), ""); |
data.replace(QRegExp("\n"), QChar(13)); |
Editor->loadText(data, CurrItem); |
emenu->setItemEnabled(Mpaste, 0); |
emenu->setItemEnabled(Mcopy, 0); |
emenu->setItemEnabled(Mcut, 0); |
emenu->setItemEnabled(Mdel, 0); |
delete ss; |
} |
if (Dat != "") |
addPar(para, Dat, 0); |
if (table1->numRows() == 0) |
addPar(0, "", doc->CurrentABStil); |
TextChanged = true; |
table1->setCurrentCell(0, 1); |
table1->ensureVisible(0, 1); |
SEditor *cp = dynamic_cast<SEditor*>(table1->cellWidget(0, 1)); |
cp->setFocus(); |
cp->setCursorPosition(0, 0); |
for (uint a = 0; a < edList.count(); ++a) |
{ |
SEditor *tt = edList.at(a); |
tt->setUndoRedoEnabled(false); |
tt->setUndoRedoEnabled(true); |
} |
emenu->setItemEnabled(Mundo, 0); |
emenu->setItemEnabled(Mredo, 0); |
emenu->setItemEnabled(Mcopy, 0); |
emenu->setItemEnabled(Mcut, 0); |
emenu->setItemEnabled(Mdel, 0); |
updateStatus(); |
delete ss; |
} |
} |
} |
1030,13 → 1707,7 |
if (!fileName.isEmpty()) |
{ |
Serializer *ss = new Serializer(fileName); |
for (uint a = 0; a < edList.count(); ++a) |
{ |
SEditor *tt = edList.at(a); |
ss->Objekt += tt->text(); |
if (a < edList.count()-1) |
ss->Objekt += QChar(10); |
} |
ss->Objekt = Editor->text(); |
ss->Write(LoadEnc); |
delete ss; |
} |
/trunk/Scribus/scribus/werktoolb.cpp |
---|
272,7 → 272,7 |
Linien->setOn(true); |
} |
WerkToolBP::WerkToolBP(QMainWindow* parent) : QToolBar( tr("PDF-Tools"), parent) |
WerkToolBP::WerkToolBP(QMainWindow* parent) : QToolBar( tr("PDF Tools"), parent) |
{ |
PDFM = new QPopupMenu(); |
char *tmp_icn[] = {"pushbutton.png", "textview.png", "checkbox.png", "combobox.png", "listbox.png"}; |
280,7 → 280,7 |
size_t ar_tmp = sizeof(tmp_icn) / sizeof(*tmp_icn); |
for (uint a = 0; a < ar_tmp; ++a) |
PDFM->insertItem(loadIcon(tmp_icn[a]), tmp_txt[a]); |
PDFTool = new QToolButton(loadIcon("pushbutton.png"), tr("Insert PDF-Fields"), QString::null, this, |
PDFTool = new QToolButton(loadIcon("pushbutton.png"), tr("Insert PDF Fields"), QString::null, this, |
SLOT(ModeFromTB()), this); |
PDFTool->setToggleButton(true); |
PDFTool->setPopup(PDFM); |
289,7 → 289,7 |
PDFA = new QPopupMenu(); |
PDFA->insertItem(loadIcon("charset.png"), tr("Text")); |
PDFA->insertItem(loadIcon("goto.png"), tr("Link")); |
PDFaTool = new QToolButton(loadIcon("charset.png"), tr("Insert PDF-Annotations"), QString::null, this, |
PDFaTool = new QToolButton(loadIcon("charset.png"), tr("Insert PDF Annotations"), QString::null, this, |
SLOT(ModeFromTB()), this); |
PDFaTool->setToggleButton(true); |
PDFaTool->setPopup(PDFA); |
/trunk/Scribus/scribus/libabout/about.cpp |
---|
56,7 → 56,7 |
tabLayout1->addWidget( PixmapLabel1 ); |
BuildID = new QLabel( tab, "BB" ); |
BuildID->setAlignment(Qt::AlignCenter); |
QString bu = tr("%1. %2 %3 ").arg("27").arg("July").arg("2004"); |
QString bu = tr("%1. %2 %3 ").arg("28").arg("July").arg("2004"); |
#ifdef HAVE_CMS |
bu += "C"; |
#else |
/trunk/Scribus/scribus/spalette.cpp |
---|
20,9 → 20,9 |
Spalette::Spalette(QWidget* parent) : QComboBox(true, parent, "Sfloat") |
{ |
setMinimumSize(QSize(10,static_cast<int>(font().pointSize()*2.5))); |
setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)3, (QSizePolicy::SizeType)1, 0, 0, |
sizePolicy().hasHeightForWidth() ) ); |
// setMinimumSize(QSize(10,static_cast<int>(font().pointSize()*2.5))); |
// setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)3, (QSizePolicy::SizeType)1, 0, 0, |
// sizePolicy().hasHeightForWidth() ) ); |
setEditable(false); |
insertItem( tr("No Style")); |
doc = 0; |
/trunk/Scribus/scribus/scribus.cpp |
---|
7946,10 → 7946,11 |
{ |
fileMenu->setAccel(Prefs.KeyActions[a].KeyID, Prefs.KeyActions[a].MenuID); |
} |
for (a = 9; a < 19; ++a) |
for (a = 9; a < 17; ++a) |
{ |
editMenu->setAccel(Prefs.KeyActions[a].KeyID, Prefs.KeyActions[a].MenuID); |
} |
editMenu->setAccel(Prefs.KeyActions[19].KeyID, Prefs.KeyActions[19].MenuID); |
for (a = 20; a < 30; ++a) |
{ |
ObjMenu->setAccel(Prefs.KeyActions[a].KeyID, Prefs.KeyActions[a].MenuID); |
7981,6 → 7982,7 |
toolMenu->setAccel(Prefs.KeyActions[65].KeyID, Prefs.KeyActions[65].MenuID); |
ObjMenu->setAccel(Prefs.KeyActions[66].KeyID, Prefs.KeyActions[66].MenuID); |
ObjMenu->setAccel(Prefs.KeyActions[67].KeyID, Prefs.KeyActions[67].MenuID); |
fileMenu->setAccel(Prefs.KeyActions[18].KeyID, Prefs.KeyActions[18].MenuID); |
} |
void ScribusApp::PutScrap(QString t) |
8690,6 → 8692,7 |
if (dia->TextChanged) |
dia->updateTextFrame(); |
} |
BuildFontMenu(); |
delete dia; |
} |
} |
/trunk/Scribus/scribus/libprefs/prefs.cpp |
---|
104,7 → 104,7 |
ButtonGroup1Layout->addWidget( GUICombo, 0, 1, Qt::AlignRight ); |
GFsize = new QSpinBox(ButtonGroup1, "gfs" ); |
GFsize->setSuffix( tr( " pts" ) ); |
GFsize->setSuffix( tr( " pt" ) ); |
GFsize->setMaxValue( 22 ); |
GFsize->setMinValue( 8 ); |
GFsize->setValue( Vor->AppFontSize ); |
630,7 → 630,7 |
GroupBox4_3aLayout->setMargin( 11 ); |
BaseGrid = new MSpinBox( 1, 100, GroupBox4_3a, 1 ); |
BaseGrid->setSuffix( tr( " pts" ) ); |
BaseGrid->setSuffix( tr( " pt" ) ); |
BaseGrid->setValue(ap->HaveDoc ? ap->doc->BaseGrid : Vor->BaseGrid ); |
TextLabel2_3_3b = new QLabel( BaseGrid, tr( "Baseline &Grid:" ), GroupBox4_3a, "TextLabel2_3_3" ); |
GroupBox4_3aLayout->addWidget( TextLabel2_3_3b, 0, 0 ); |
638,7 → 638,7 |
GroupBox4_3aLayout->addWidget( BaseGrid, 0, 1 ); |
BaseOffs = new MSpinBox( 0, 1000, GroupBox4_3a, 1 ); |
BaseOffs->setSuffix( tr( " pts" ) ); |
BaseOffs->setSuffix( tr( " pt" ) ); |
BaseOffs->setValue(ap->HaveDoc ? ap->doc->BaseOffs : Vor->BaseOffs ); |
TextLabel2_3_3c = new QLabel( BaseOffs, tr( "Baseline &Offset:" ), GroupBox4_3a, "TextLabel2_3_3" ); |
GroupBox4_3aLayout->addWidget( TextLabel2_3_3c, 1, 0 ); |
1018,7 → 1018,7 |
Layout15c->addWidget(Linestyle2, 2, 1); |
LineW2 = new MSpinBox( 1, 36, ToolFrame3, 1 ); |
LineW2->setSuffix( tr( " pts" ) ); |
LineW2->setSuffix( tr( " pt" ) ); |
LineW2->setValue(ap->HaveDoc ? ap->doc->DwidthLine : Vor->DwidthLine); |
TextLabelT36 = new QLabel( LineW2, tr( "Line &Width:" ), ToolFrame3, "TextLabel2_3_4" ); |
TextLabelT36->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)3, (QSizePolicy::SizeType)1, |
/trunk/Scribus/scribus/plugins/printpreview/preview.cpp |
---|
68,9 → 68,11 |
ind++; |
} |
int id = plug->fileMenu->insertItem(QObject::tr("Print Previe&w"), -1, ind+1); |
plug->fileMenu->setAccel(Qt::CTRL+Qt::SHIFT+Qt::Key_P, id); |
plug->fileMenu->connectItem(id, Tes, SLOT(RunPreview())); |
plug->fileMenu->setItemEnabled(id, 0); |
plug->MenuItemsFile.append(id); |
plug->SetKeyEntry(18, QObject::tr("Print Previe&w"), id, Qt::CTRL+Qt::SHIFT+Qt::Key_P); |
} |
void CleanUpPlug() |
/trunk/Scribus/scribus/annot.cpp |
---|
109,7 → 109,7 |
GroupBox40Layout = new QGridLayout( GroupBox40->layout() ); |
GroupBox40Layout->setAlignment( Qt::AlignTop ); |
TextLabel60 = new QLabel( GroupBox40, "TextLabel6" ); |
TextLabel60->setText( tr( "Font for use with PDF-1.3:" ) ); |
TextLabel60->setText( tr( "Font for use with PDF 1.3:" ) ); |
GroupBox40Layout->addWidget( TextLabel60, 0, 0 ); |
Schrift = new QComboBox( true, GroupBox40, "Schrift" ); |
/* PFJ - 28/02/04 - Altered from char* to QString. Renamed to fonts and the |
1072,8 → 1072,8 |
connect(PlaceIcon, SIGNAL(clicked()), this, SLOT(IPlace())); |
connect(ChFile, SIGNAL(clicked()), this, SLOT(GetFile())); |
connect(LExtern, SIGNAL(clicked()), this, SLOT(SetExternL())); |
QToolTip::add(NoSpell, tr( "Flag is ignored for PDF-1.3" ) ); |
QToolTip::add(NoScroll, tr( "Flag is ignored for PDF-1.3" ) ); |
QToolTip::add(NoSpell, tr( "Flag is ignored for PDF 1.3" ) ); |
QToolTip::add(NoScroll, tr( "Flag is ignored for PDF 1.3" ) ); |
QToolTip::add(CalcFields, tr( "Enter a comma separated list of fields here" ) ); |
QToolTip::add(IconNR, tr("You need at least the Icon for Normal to use Icons for Buttons")); |
SetPg(QMIN(SpinBox11->value(), MaxSeite)); |
2107,7 → 2107,7 |
void Annot::GetFile() |
{ |
QString fn; |
CustomFDialog dia(this, tr("Open"), tr("PDF-Documents (*.pdf);;All Files (*)")); |
CustomFDialog dia(this, tr("Open"), tr("PDF Documents (*.pdf);;All Files (*)")); |
if (Destfile->text() != "") |
dia.setSelection(Destfile->text()); |
if (dia.exec() == QDialog::Accepted) |
/trunk/Scribus/scribus/frameedit.cpp |
---|
185,22 → 185,26 |
QToolTip::add( MoveControl, tr( "Move Control Points" ) ); |
QToolTip::add( AddNode, tr( "Add Nodes" ) ); |
QToolTip::add( DeleteNode, tr( "Delete Nodes" ) ); |
QToolTip::add( AsymMove, tr( "Move Control Points independently" ) ); |
QToolTip::add( SymMove, tr( "Move Control Points symmetrical" ) ); |
QToolTip::add( AsymMove, tr( "Move Control Points Independently" ) ); |
QToolTip::add( SymMove, tr( "Move Control Points Symmetrical" ) ); |
QToolTip::add( ResNode, tr( "Reset Control Points" ) ); |
QToolTip::add( Res1Node, tr( "Reset this Control Point" ) ); |
QToolTip::add( PolySplit, tr( "Opens a Polygon or cuts a Bezier Curve" ) ); |
QToolTip::add( BezierClose, tr( "Closes this Bezier Curve" ) ); |
QToolTip::add( PolyMirrorH, tr( "Mirrors the Path Horizontally" ) ); |
QToolTip::add( PolyMirrorV, tr( "Mirrors the Path Vertically" ) ); |
QToolTip::add( PolyShearR, tr( "Shears the Path horizontal to the right" ) ); |
QToolTip::add( PolyShearL, tr( "Shears the Path horizontal to the left" ) ); |
QToolTip::add( PolyShearU, tr( "Shears the Path vertical up" ) ); |
QToolTip::add( PolyShearD, tr( "Shears the Path vertical down" ) ); |
QToolTip::add( RotateCCW, tr( "Rotates the Path counter-clockwise" ) ); |
QToolTip::add( RotateCW, tr( "Rotates the Path clockwise" ) ); |
QToolTip::add( Crop, tr( "Reduce the Size of the Path" ) ); |
QToolTip::add( Expand, tr( "Enlarges the Size of the Path" ) ); |
QToolTip::add( PolySplit, tr( "Open a Polygon or Cuts a Bezier Curve" ) ); |
QToolTip::add( BezierClose, tr( "Close this Bezier Curve" ) ); |
QToolTip::add( PolyMirrorH, tr( "Mirror the Path Horizontally" ) ); |
QToolTip::add( PolyMirrorV, tr( "Mirror the Path Vertically" ) ); |
QToolTip::add( PolyShearR, tr( "Shear the Path Horizontally to the Rright" ) ); |
QToolTip::add( PolyShearL, tr( "Shear the Path Horizontally to the Left" ) ); |
QToolTip::add( PolyShearU, tr( "Shear the Path Vertically Up" ) ); |
QToolTip::add( PolyShearD, tr( "Shear the Path Vertically Down" ) ); |
QToolTip::add( RotateCCW, tr( "Rotate the Path Counter-Clockwise" ) ); |
QToolTip::add( RotateCW, tr( "Rotate the Path Clockwise" ) ); |
QToolTip::add( Crop, tr( "Reduce the Size of the Path by shown %" ) ); |
QToolTip::add( Expand, tr( "Enlarge the Size of the Path by shown %" ) ); |
QToolTip::add( RotVal, tr( "Angle of Rotation" ) ); |
QToolTip::add( ScaleVal, tr( "% to Enlarge or Reduce By" ) ); |
QToolTip::add( EditCont, tr( "Activate Contour Line Editing Mode" ) ); |
QToolTip::add( ResetCont, tr( "Reset the Contour Line to the Original Shape of the Frame" ) ); |
QToolTip::add( AbsMode, tr( "When checked use Coordinates relative to the Page,\notherwise Coordinates are relative to the Object." ) ); |
// signals and slots connections |
/trunk/Scribus/scribus/story.h |
---|
19,7 → 19,7 |
#define STORY_H |
#include <qvariant.h> |
#include <qdialog.h> |
#include <qmainwindow.h> |
#include <qptrlist.h> |
#include <qtable.h> |
#include <qtextedit.h> |
28,64 → 28,199 |
#include <qstatusbar.h> |
#include <qlabel.h> |
#include <qbuttongroup.h> |
#include <qspinbox.h> |
#include <qtoolbutton.h> |
#include <qtoolbar.h> |
#include <qlayout.h> |
#include "pageitem.h" |
class QVBoxLayout; |
class QHBoxLayout; |
class QGridLayout; |
class QComboBox; |
#include "mspinbox.h" |
#include "spalette.h" |
#include "fontcombo.h" |
#include "styleselect.h" |
#include "alignselect.h" |
#include "shadebutton.h" |
struct PtiSmall { |
int csize; |
int cshade; |
int cshade2; |
int cstyle; |
int cab; |
int cscale; |
double cextra; |
QString ch; |
QString cfont; |
QString ccolor; |
QString cstroke; |
}; |
class SEditor : public QTextEdit |
{ |
Q_OBJECT |
public: |
SEditor (QWidget* parent); |
SEditor (QWidget* parent, ScribusDoc *docc); |
~SEditor() {}; |
void focusInEvent(QFocusEvent *f); |
void keyPressEvent(QKeyEvent *k); |
int clines; |
void setAlign(int style); |
void saveItemText(PageItem* b); |
void loadItemText(PageItem* b); |
void loadText(QString tx, PageItem* b); |
void updateFromChars(int p); |
void updateSel(int code, struct PtiSmall *hg); |
void deleteSel(); |
void setStyle(int Csty); |
void setFarbe(QString farbe, int shad); |
void insChars(QString t); |
typedef QPtrList<PtiSmall> ChList; |
QPtrList<ChList> StyledText; |
ScribusDoc* doc; |
bool UniCinp; |
int UniCinC; |
int CurrentStyle; |
int CurrentABStil; |
int CurrFontSize; |
int CurrTextFillSh; |
int CurrTextStrokeSh; |
int CurrTextScale; |
double CurrTextKern; |
QString CurrTextStroke; |
QString CurrTextFill; |
QString CurrFont; |
QString UniCinS; |
public slots: |
void cut(); |
void paste(); |
signals: |
void UnRe(bool, bool); |
void wrapped(); |
void bsPressed(); |
void delPressed(); |
void setProps(int, int); |
}; |
class STable : public QTable |
class SToolBColorF : public QToolBar |
{ |
Q_OBJECT |
public: |
STable (QWidget* parent); |
~STable() {}; |
void keyPressEvent(QKeyEvent *k); |
void adjHeight(int r); |
int HomeK; |
int EndK; |
public: |
SToolBColorF(QMainWindow* parent, ScribusDoc *doc); |
~SToolBColorF() {}; |
QLabel* FillIcon; |
QComboBox* TxFill; |
ShadeButton *PM2; |
public slots: |
void SetColor(int c); |
void SetShade(int s); |
void newShadeHandler(); |
signals: |
void StatBarUpdt(); |
void NewColor(int, int); |
}; |
class StoryEditor : public QDialog |
class SToolBColorS : public QToolBar |
{ |
Q_OBJECT |
public: |
SToolBColorS(QMainWindow* parent, ScribusDoc *doc); |
~SToolBColorS() {}; |
QLabel* StrokeIcon; |
QComboBox* TxStroke; |
ShadeButton *PM1; |
public slots: |
void SetColor(int c); |
void SetShade(int s); |
void newShadeHandler(); |
signals: |
void NewColor(int, int); |
}; |
class SToolBStyle : public QToolBar |
{ |
Q_OBJECT |
public: |
SToolBStyle(QMainWindow* parent); |
~SToolBStyle() {}; |
StyleSelect* SeStyle; |
QLabel* kerningLabel; |
MSpinBox* Extra; |
public slots: |
void newKernHandler(); |
void SetStyle(int s); |
void SetKern(double k); |
signals: |
void NewKern(double); |
void NewStyle(int); |
}; |
class SToolBAlign : public QToolBar |
{ |
Q_OBJECT |
public: |
SToolBAlign(QMainWindow* parent); |
~SToolBAlign() {}; |
AlignSelect* GroupAlign; |
Spalette *Spal; |
public slots: |
void newStyleHandler(int s); |
void SetAlign(int s); |
signals: |
void NewAlign(int); |
void NewStyle(int); |
}; |
class SToolBFont : public QToolBar |
{ |
Q_OBJECT |
public: |
SToolBFont(QMainWindow* parent); |
~SToolBFont() {}; |
FontCombo* Fonts; |
MSpinBox* Size; |
QSpinBox* ChScale; |
public slots: |
void SetFont(QString f); |
void SetSize(double s); |
void SetScale(int s); |
void newSizeHandler(); |
signals: |
void NewFont(const QString &); |
void NewSize(double); |
void NewScale(int); |
}; |
class StoryEditor : public QMainWindow |
{ |
Q_OBJECT |
public: |
StoryEditor( QWidget* parent, ScribusDoc *docc, PageItem* ite ); |
~StoryEditor() {}; |
void closeEvent(QCloseEvent *event); |
int getStyle(int where); |
void addPar(int where, QString text, int sty); |
void closeEvent(QCloseEvent *); |
int exec(); |
void changeAlign(int align); |
int result; |
QPopupMenu* fmenu; |
QPopupMenu* emenu; |
QMenuBar* menuBar; |
QStatusBar* StateBar; |
SToolBFont* FontTools; |
SToolBAlign* AlignTools; |
SToolBColorF* FillTools; |
SToolBColorS* StrokeTools; |
SToolBStyle* StyleTools; |
SEditor* Editor; |
QButtonGroup* ButtonGroup1; |
QButtonGroup* ButtonGroup2; |
QLabel* WordCT1; |
100,45 → 235,45 |
QLabel* WordC2; |
QLabel* CharCT2; |
QLabel* CharC2; |
STable* table1; |
QPtrList<SEditor> edList; |
QPtrList<QComboBox> stList; |
QStringList style; |
ScribusDoc* doc; |
PageItem* CurrItem; |
bool TextChanged; |
int Mundo; |
int Mredo; |
int Mcopy; |
int Mcut; |
int Mdel; |
int Mpaste; |
int Mupdt; |
int fid52; |
public slots: |
void newTxFill(int c, int s); |
void newTxStroke(int c, int s); |
void newTxFont(const QString &f); |
void newTxSize(double s); |
void newTxScale(int s); |
void newTxStyle(int s); |
void newTxKern(double s); |
void updateProps(int p, int ch); |
void styleChange(int st); |
void newAlign(int st); |
void updateStatus(); |
void Do_leave(); |
void Do_leave2(); |
void Do_saveDocument(); |
void Do_new(); |
void Do_undo(); |
void Do_redo(); |
bool Do_new(); |
void slotFileRevert(); |
void Do_copy(); |
void Do_paste(); |
void Do_cut(); |
void Do_del(); |
void Do_insSp(); |
void UnReMenu(bool u, bool r); |
void CopyAvail(bool u); |
void updateTextFrame(); |
void SearchText(); |
void slotEditStyles(); |
void styleChange(int st); |
void modifiedText(); |
void WrapHandler(); |
void clickAt( int row, int col); |
void KeyDel(); |
void KeyBS(); |
void KeyRet(); |
void LoadTextFile(); |
void SaveTextFile(); |
147,7 → 282,7 |
void EditSt(); |
protected: |
QVBoxLayout* Form1Layout; |
QHBoxLayout* StoryEd2Layout; |
QGridLayout* ButtonGroup1Layout; |
QGridLayout* ButtonGroup2Layout; |
/trunk/Scribus/scribus/po/scribus.tr_TR.po |
---|
6,7 → 6,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.8\n" |
"POT-Creation-Date: 2004-07-19 23:24+0200\n" |
"POT-Creation-Date: 2004-07-28 23:12+0200\n" |
"PO-Revision-Date: 2002-09-18 09:47+0300\n" |
"Last-Translator: erkan <Selamsana@uni.de>\n" |
"Language-Team: Türkçe <tr@li.org>\n" |
24,9 → 24,6 |
msgid "Horizontal" |
msgstr "Dikey" |
msgid "between:" |
msgstr "arasında:" |
msgid "Left Sides" |
msgstr "Sol kenarda" |
36,13 → 33,20 |
msgid "Right Sides" |
msgstr "Sağ kenarda" |
msgid "Don't change" |
msgstr "Değiştirme" |
#, fuzzy |
msgid "&Between:" |
msgstr "arasında:" |
msgid "Displacement" |
#, fuzzy |
msgid "A&lign" |
msgstr "Sırala" |
#, fuzzy |
msgid "Di&splacement" |
msgstr "Uzaklık" |
msgid "Distribute evenly" |
#, fuzzy |
msgid "Distribute &Evenly" |
msgstr "Eşit parçalarda böl" |
msgid "Vertical" |
54,7 → 58,23 |
msgid "Bottom Sides" |
msgstr "Alt kenarda" |
msgid " pts" |
#, fuzzy |
msgid "Bet&ween:" |
msgstr "arasında:" |
#, fuzzy |
msgid "Do &Not Change" |
msgstr "Değiştirme" |
#, fuzzy |
msgid "Al&ign" |
msgstr "Sırala" |
#, fuzzy |
msgid "Dis&placement" |
msgstr "Uzaklık" |
msgid " pt" |
msgstr "" |
msgid " mm" |
67,6 → 87,10 |
msgstr "" |
#, fuzzy |
msgid "Distribute E&venly" |
msgstr "Eşit parçalarda böl" |
#, fuzzy |
msgid "&OK" |
msgstr "Tamam" |
111,7 → 135,8 |
msgid "Text" |
msgstr "Metin" |
msgid "Font for use with PDF-1.3:" |
#, fuzzy |
msgid "Font for use with PDF 1.3:" |
msgstr "PDF-1.3 için yazıtipi:" |
msgid "Border" |
339,9 → 364,6 |
msgid "X-Pos:" |
msgstr "Yerel X-Pos:" |
msgid " pt" |
msgstr "" |
#, fuzzy |
msgid "Y-Pos:" |
msgstr "Yerel Y-Pos:" |
460,7 → 482,8 |
msgid "Cancel" |
msgstr "Vazgeç" |
msgid "Flag is ignored for PDF-1.3" |
#, fuzzy |
msgid "Flag is ignored for PDF 1.3" |
msgstr "PDF-1.3 için kullanılamaz" |
#, fuzzy |
486,7 → 509,7 |
msgstr "Seçimi değiştir" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgid "PDF Documents (*.pdf);;All Files (*)" |
msgstr "Belgeler (*.sdc);; Bütün dosyalar (*)" |
msgid "Annotation Properties" |
501,6 → 524,10 |
msgid "External Web-Link" |
msgstr "" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgstr "Belgeler (*.sdc);; Bütün dosyalar (*)" |
msgid "Apply Template" |
msgstr "Geçici sayfayı uygula" |
697,7 → 724,12 |
msgid "Edit Color" |
msgstr "Renk düzenle" |
msgid "Color Model" |
#, fuzzy |
msgid "&Name:" |
msgstr "İsim:" |
#, fuzzy |
msgid "Color &Model" |
msgstr "Renk modeli" |
msgid "CMYK" |
1182,24 → 1214,30 |
msgid "Advanced Options" |
msgstr "Dosya seçenekleri" |
msgid "Mirror Page(s) horizontal" |
msgid "Mirror Page(s) &Horizontal" |
msgstr "" |
msgid "Mirror Page(s) vertical" |
msgid "Mirror Page(s) &Vertical" |
msgstr "" |
msgid "Appy Under Color &Removal" |
msgstr "" |
#, fuzzy |
msgid "Apply ICC-Profiles" |
msgid "Apply &ICC Profiles" |
msgstr "Sistem profili" |
msgid "PostScript Level 3" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &1" |
msgstr "Dikey" |
msgid "PostScript Level 2" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &2" |
msgstr "Dikey" |
msgid "PostScript Level 1" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &3" |
msgstr "Dikey" |
msgid "Creates PostScript Level 3" |
msgstr "" |
1217,7 → 1255,8 |
msgid "Setup Printer" |
msgstr "Yazıcı ayarları" |
msgid "Print destination" |
#, fuzzy |
msgid "Print Destination" |
msgstr "Yazdırma açıklaması" |
# msgid "Use Icons" |
1320,30 → 1359,39 |
msgstr "Dosya" |
#, fuzzy |
msgid "Options..." |
msgid "&Options..." |
msgstr "Seçenekler" |
msgid "File:" |
#, fuzzy |
msgid "&File:" |
msgstr "Dosya:" |
#, fuzzy |
msgid "Alternative Printer Command" |
msgid "C&hange..." |
msgstr "Değiştir..." |
#, fuzzy |
msgid "A<ernative Printer Command" |
msgstr "Başka bir komut ile yazdır" |
msgid "Command:" |
#, fuzzy |
msgid "Co&mmand:" |
msgstr "Komut:" |
msgid "Range:" |
#, fuzzy |
msgid "Range" |
msgstr "Yazdırma alanı:" |
msgid "Print all" |
#, fuzzy |
msgid "Print &All" |
msgstr "Hepsini yazdır" |
#, fuzzy |
msgid "Print current page" |
msgid "Print Current Pa&ge" |
msgstr "Alanı yazdır" |
msgid "Print range" |
#, fuzzy |
msgid "Print &Range" |
msgstr "Alanı yazdır" |
msgid "" |
1352,13 → 1400,16 |
"a range of pages or a single page number." |
msgstr "" |
msgid "Number of copies:" |
#, fuzzy |
msgid "N&umber of Copies:" |
msgstr "Kopya sayısı:" |
msgid "Print Normal" |
#, fuzzy |
msgid "Print &Normal" |
msgstr "Normal yazdır" |
msgid "Print Separations" |
#, fuzzy |
msgid "Print &Separations" |
msgstr "Ayraçları yazdır" |
msgid "All" |
1378,16 → 1429,20 |
msgid "Black" |
msgstr "Blok" |
msgid "Print in color if available" |
#, fuzzy |
msgid "Pr&int In Color If Available" |
msgstr "Mümkünse renkli yazdır" |
msgid "Print in grayscale" |
#, fuzzy |
msgid "Print In Gra&yscale" |
msgstr "Gri tonlarda yazdır" |
msgid "Advanced Options..." |
msgstr "" |
#, fuzzy |
msgid "Ad&vanced Options..." |
msgstr "Dosya seçenekleri" |
msgid "Print" |
#, fuzzy |
msgid "&Print" |
msgstr "Yazdır" |
msgid "Save as" |
1403,45 → 1458,54 |
msgid "Character" |
msgstr "Karakter" |
msgid "Face:" |
msgstr "Yazı şekli:" |
#, fuzzy |
msgid "&Font:" |
msgstr "&Yazıtipi" |
#, fuzzy |
msgid "Si&ze:" |
msgstr "Boyut:" |
#, fuzzy |
msgid "Effect:" |
msgstr "Efekt" |
#, fuzzy |
msgid "Alignment:" |
msgid "&Alignment:" |
msgstr "Sıralama" |
msgid "Drop Caps" |
msgid "&Drop Caps" |
msgstr "" |
#, fuzzy |
msgid "Lines:" |
msgid "&Lines:" |
msgstr "Çizgi" |
msgid "Fill Color:" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Doldurma rengi:" |
#, fuzzy |
msgid "Stroke Color:" |
msgid "St&roke Color:" |
msgstr "Yeni renk:" |
msgid "Vertical Spaces" |
msgstr "Yatay boşluklar" |
msgid "Adjust to Baseline Grid" |
msgstr "" |
#, fuzzy |
msgid "Adjust to Baseline &Grid" |
msgstr "Yardımcı çizgileri sakla" |
#, fuzzy |
msgid "Line Spacing:" |
msgid "Line &Spacing:" |
msgstr "Çizgi boşluğu:" |
msgid "Above:" |
#, fuzzy |
msgid "Abo&ve:" |
msgstr "Üst:" |
msgid "Below:" |
#, fuzzy |
msgid "&Below:" |
msgstr "Alt:" |
msgid "Tabulators and Indentation" |
1504,41 → 1568,149 |
msgid "Editor" |
msgstr "Düzenle" |
msgid "Save as..." |
#, fuzzy |
msgid "&Open..." |
msgstr "Aç..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Farklı kaydet..." |
msgid "Load..." |
msgstr "Yükle..." |
msgid "Save and Exit" |
#, fuzzy |
msgid "&Save and Exit" |
msgstr "Kaydet ve çık" |
msgid "Exit without Saving" |
#, fuzzy |
msgid "&Exit without Saving" |
msgstr "Kaydetmeden çık" |
msgid "Undo" |
#, fuzzy |
msgid "&Undo" |
msgstr "Geri" |
msgid "Redo" |
#, fuzzy |
msgid "&Redo" |
msgstr "Tekrar oluştur" |
msgid "Cut" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Kes" |
msgid "Copy" |
#, fuzzy |
msgid "&Copy" |
msgstr "Kopyala" |
msgid "Paste" |
#, fuzzy |
msgid "&Paste" |
msgstr "Yapıştır" |
msgid "Clear" |
#, fuzzy |
msgid "C&lear" |
msgstr "Sil" |
msgid "Get Field Names" |
#, fuzzy |
msgid "&Get Field Names" |
msgstr "Alan ismini seçin" |
msgid "Edit" |
msgstr "Düzenle" |
# msgid "Use Icons" |
# msgstr "İkonları kullan" |
# msgid "Remove" |
# msgstr "Sil" |
# msgid "Pressed" |
# msgstr "Basıldı" |
# msgid "Roll Over" |
# msgstr "Roll Over" |
# msgid "Icon Placement..." |
# msgstr "Düzenle..." |
# msgid "Editable" |
# msgstr "Düzenlenebilir" |
# msgid "Submit to URL:" |
# msgstr "URL'ye gönder:" |
# msgid "Submit Data as HTML" |
# msgstr "Verileri HTML olarak gönder" |
# msgid "Layout:" |
# msgstr "Düzen:" |
# msgid "Caption only" |
# msgstr "Sadece metin" |
# msgid "Icon only" |
# msgstr "Sadece ikon" |
# msgid "Caption below Icon" |
# msgstr "Metin ikonun altında" |
# msgid "Caption above Icon" |
# msgstr "Metin ikonun üstünde" |
# msgid "Caption right to Icon" |
# msgstr "Metin ikonun sağında" |
# msgid "Caption left to Icon" |
# msgstr "Metin ikonun solunda" |
# msgid "Caption overlays Icon" |
# msgstr "Metin ikonun üstünde" |
# msgid "Scale When:" |
# msgstr "Ölçek:" |
# msgid "Always" |
# msgstr "Daima" |
# msgid "When Icon is too small" |
# msgstr "Eğer ikon çok küçükse" |
# msgid "When Icon is too big" |
# msgstr "Eğer ikon çok büyükse" |
# msgid "Never" |
# msgstr "Asla" |
# msgid "Scale How:" |
# msgstr "Ölçekleme yöntemi:" |
# msgid "Proportional" |
# msgstr "Orantılı" |
# msgid "Non Proportional" |
# msgstr "Orantısız" |
# msgid "Reset" |
# msgstr "Sıfırla" |
# msgid "You need at least the Icon for Normal to use Icons for Buttons" |
# msgstr "İkonları kullanabilmek için en azından normal olarak bu ikona ihtıyacınız var" |
# msgid "Save and Exit" |
# msgstr "Kaydet ve çık" |
# msgid "Exit without Saving" |
# msgstr "Kaydetmeden çık" |
# msgid "Get Field Names" |
# msgstr "Alan ismini seçin" |
# msgid "JavaScripts (*.js);; All Files (*)" |
# msgstr "JavaScripts (*.js);; Bütün dosyalar (*)" |
# msgid "Pick..." |
# msgstr "Seçin..." |
# msgid "Export Range" |
# msgstr "Kenarlar" |
# msgid "All Pages" |
# msgstr "Bütün sayfalar" |
# msgid "From:" |
# msgstr "Burdan:" |
# msgid "Insert PDF-Fields" |
# msgstr "PDF-alanları ekle" |
# msgid "Undo" |
# msgstr "Geri" |
# msgid "Redo" |
# msgstr "Tekrar oluştur" |
# msgid "Select Fields" |
# msgstr "Alan seçin" |
# msgid "Available Fields" |
# msgstr "Mevcut alanlar" |
# msgid "Selected Fields" |
# msgstr "Seçilen alanlar" |
# msgid "Field Properties" |
# msgstr "Alan özellikleri" |
# msgid "Global JavaScripts" |
# msgstr "Genel JavaScripts" |
# msgid "Add..." |
# msgstr "Ekle..." |
# msgid "New Script:" |
# msgstr "Yeni Script:" |
# msgid "New Script" |
# msgstr "Yeni Script" |
# msgid "Insert PDF-Annotations" |
# msgstr "PDF-Notu ekle" |
# msgid "Import Data" |
# msgstr "Verileri içe aktar" |
# msgid "Import Data from:" |
# msgstr "Veriler burdan içe aktar:" |
#, fuzzy |
msgid "&File" |
msgstr "Dosya" |
#, fuzzy |
msgid "Javascripts (*.js);;All Files (*)" |
1597,10 → 1769,6 |
msgstr "" |
#, fuzzy |
msgid "C&hange..." |
msgstr "Değiştir..." |
#, fuzzy |
msgid "A&dd..." |
msgstr "Ekle..." |
1618,14 → 1786,27 |
msgstr "Düğümler" |
#, fuzzy |
msgid "Absolute Coordinates" |
msgid "&Absolute Coordinates" |
msgstr "Tam renk ölçer" |
#, fuzzy |
msgid "Edit Contour Line" |
msgid "&X-Pos:" |
msgstr "Yerel X-Pos:" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Yerel Y-Pos:" |
#, fuzzy |
msgid "Edit &Contour Line" |
msgstr "Renk düzenle" |
msgid "End Editing" |
#, fuzzy |
msgid "&Reset Contour Line" |
msgstr "Kontrol noktalarını sıfırla" |
#, fuzzy |
msgid "&End Editing" |
msgstr "Bitir" |
msgid "Move Nodes" |
1640,10 → 1821,12 |
msgid "Delete Nodes" |
msgstr "Düğüm sil" |
msgid "Move Control Points independently" |
#, fuzzy |
msgid "Move Control Points Independently" |
msgstr "Kontrol noktalarını bağımsız taşı" |
msgid "Move Control Points symmetrical" |
#, fuzzy |
msgid "Move Control Points Symmetrical" |
msgstr "Kontrol noktalarını simetrik taşı" |
msgid "Reset Control Points" |
1653,42 → 1836,58 |
msgid "Reset this Control Point" |
msgstr "Bu kontrol noktalarını sıfırla" |
msgid "Opens a Polygon or cuts a Bezier Curve" |
#, fuzzy |
msgid "Open a Polygon or Cuts a Bezier Curve" |
msgstr "Çokgen aç veya bezir eğrisini kes" |
msgid "Closes this Bezier Curve" |
#, fuzzy |
msgid "Close this Bezier Curve" |
msgstr "Bu bezir eğrisini kapat" |
msgid "Mirrors the Path Horizontally" |
msgid "Mirror the Path Horizontally" |
msgstr "" |
msgid "Mirrors the Path Vertically" |
msgid "Mirror the Path Vertically" |
msgstr "" |
msgid "Shears the Path horizontal to the right" |
msgid "Shear the Path Horizontally to the Rright" |
msgstr "" |
msgid "Shears the Path horizontal to the left" |
msgid "Shear the Path Horizontally to the Left" |
msgstr "" |
msgid "Shears the Path vertical up" |
msgid "Shear the Path Vertically Up" |
msgstr "" |
msgid "Shears the Path vertical down" |
msgid "Shear the Path Vertically Down" |
msgstr "" |
msgid "Rotates the Path counter-clockwise" |
msgid "Rotate the Path Counter-Clockwise" |
msgstr "" |
msgid "Rotates the Path clockwise" |
msgid "Rotate the Path Clockwise" |
msgstr "" |
msgid "Reduce the Size of the Path by 10%" |
msgid "Reduce the Size of the Path by shown %" |
msgstr "" |
msgid "Enlarges the Size of the Path by 10%" |
msgid "Enlarge the Size of the Path by shown %" |
msgstr "" |
#, fuzzy |
msgid "Angle of Rotation" |
msgstr "Eğim:" |
#, c-format |
msgid "% to Enlarge or Reduce By" |
msgstr "" |
msgid "Activate Contour Line Editing Mode" |
msgstr "" |
msgid "Reset the Contour Line to the Original Shape of the Frame" |
msgstr "" |
msgid "" |
"When checked use Coordinates relative to the Page,\n" |
"otherwise Coordinates are relative to the Object." |
1703,10 → 1902,6 |
msgstr "Dikey çevrildi" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Yerel Y-Pos:" |
#, fuzzy |
msgid "&Add" |
msgstr "Ekle..." |
1719,10 → 1914,6 |
msgstr "Yatay boşluklar" |
#, fuzzy |
msgid "&X-Pos:" |
msgstr "Yerel X-Pos:" |
#, fuzzy |
msgid "A&dd" |
msgstr "Ekle..." |
1784,11 → 1975,12 |
msgid "Insert Page" |
msgstr "Sayfa ekle" |
msgid "Inserting" |
#, fuzzy |
msgid "&Inserting" |
msgstr "Buradan ekle" |
#, fuzzy |
msgid "page(s)" |
msgid "Page(s)" |
msgstr "Sayfa(lar)" |
msgid "before Page" |
1801,15 → 1993,14 |
msgid "at End" |
msgstr "Belge sonunda" |
msgid "Inserting" |
msgstr "Buradan ekle" |
#, fuzzy |
msgid "Template (Left Page):" |
msgid "&Template (Left Page):" |
msgstr "Bu sayfa için geçici dosya " |
#, fuzzy |
msgid "Template:" |
msgstr "Yeni geçici sayfa" |
#, fuzzy |
msgid "Template (Right Page):" |
msgstr "Bu sayfa için geçici dosya " |
1829,7 → 2020,8 |
msgid "&Close" |
msgstr "Kapat" |
msgid "New Script:" |
#, fuzzy |
msgid "&New Script:" |
msgstr "Yeni script:" |
msgid "New Script" |
1839,6 → 2031,14 |
msgid "Do you really want do delete this Script?" |
msgstr "Bu biçemi silmek istediğinizden eminmisiniz?" |
#, fuzzy |
msgid "&No" |
msgstr "Hayır" |
#, fuzzy |
msgid "&Yes" |
msgstr "Evet" |
msgid "Manage Keyboard Shortcuts" |
msgstr "Kısayol tuşlarını yönet" |
1978,19 → 2178,30 |
msgid "Move Page(s):" |
msgstr "Sayfa(lar) taşı:" |
msgid "X, Y, Z" |
msgid "X, Y, &Z" |
msgstr "" |
msgid "Shape" |
#, fuzzy |
msgid "&Shape" |
msgstr "Biçim" |
msgid "Image" |
#, fuzzy |
msgid "&Text" |
msgstr "Metin" |
#, fuzzy |
msgid "&Image" |
msgstr "Resim" |
msgid "Line" |
#, fuzzy |
msgid "&Line" |
msgstr "Çizgi" |
#, fuzzy |
msgid "&Colors" |
msgstr "Renk" |
#, fuzzy |
msgid "Name" |
msgstr "İsim:" |
1997,10 → 2208,16 |
msgid "Geometry" |
msgstr "" |
msgid "Height:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Genişlik:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Yükseklik:" |
msgid "Rotation:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Eğim:" |
#, fuzzy |
2012,27 → 2229,16 |
msgstr "Vurgulu" |
#, fuzzy |
msgid "Text flows around frame" |
msgstr "Metin kutu etrafında" |
msgid "Use Bounding Box" |
msgstr "" |
#, fuzzy |
msgid "Use Contour Line" |
msgstr "Kontrol noktalarını sıfırla" |
#, fuzzy |
msgid "Shape:" |
msgstr "Biçim" |
#, fuzzy |
msgid "Edit Shape..." |
msgid "&Edit Shape..." |
msgstr "Düzenle..." |
#, fuzzy |
msgid "" |
"Round\n" |
"R&ound\n" |
"Corners:" |
msgstr "Köşe:" |
2040,26 → 2246,31 |
msgid "Distance of Text" |
msgstr "Eğriye olan mesafe:" |
msgid "Columns:" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Kolanlar:" |
msgid "Gap:" |
msgid "&Gap:" |
msgstr "" |
msgid "Top:" |
#, fuzzy |
msgid "To&p:" |
msgstr "Üst:" |
msgid "Bottom:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Alt:" |
msgid "Left:" |
#, fuzzy |
msgid "&Left:" |
msgstr "Sol:" |
msgid "Right:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Sağ:" |
#, fuzzy |
msgid "Tabulators..." |
msgid "T&abulators..." |
msgstr "Geçici sayfalar..." |
#, fuzzy |
2076,7 → 2287,19 |
msgid "Distance from Curve:" |
msgstr "Eğriye olan mesafe:" |
msgid "Font Size:" |
#, fuzzy |
msgid "Text &Flows Around Frame" |
msgstr "Metin kutu etrafında" |
msgid "Use &Bounding Box" |
msgstr "" |
#, fuzzy |
msgid "&Use Contour Line" |
msgstr "Kontrol noktalarını sıfırla" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Yazıtipi boyutu:" |
#, fuzzy |
2084,36 → 2307,41 |
msgstr "Kullanıcı tanımlı" |
#, fuzzy |
msgid "Kerning:" |
msgid "&Kerning:" |
msgstr "Uyarı" |
#, fuzzy |
msgid "Language:" |
msgstr "Yazdırma alanı:" |
msgid "L&ine Spacing:" |
msgstr "Çizgi boşluğu:" |
msgid "Free Scaling" |
msgstr "Serbest ölçek" |
#, fuzzy |
msgid "St&yle:" |
msgstr "Biçem" |
#, fuzzy |
msgid "X-Pos.:" |
msgstr "X-Koordinatları.:" |
msgid "Lan&guage:" |
msgstr "Yazdırma alanı:" |
#, fuzzy |
msgid "Y-Pos.:" |
msgstr "Y-Koordinatları.:" |
msgid "&Free Scaling" |
msgstr "Serbest ölçek" |
#, fuzzy |
msgid "X-Scale:" |
msgid "X-Sc&ale:" |
msgstr "Ölçekleme yöntemi:" |
#, fuzzy |
msgid "Y-Scale:" |
msgid "Y-Scal&e:" |
msgstr "Ölçekleme yöntemi:" |
#, fuzzy |
msgid "Scale to Frame Size" |
msgid "Scale &To Frame Size" |
msgstr "Resimleri çerçeve boyutuna ölçekle" |
#, fuzzy |
msgid "P&roportional" |
msgstr "Orantılı" |
msgid "Input Profile:" |
msgstr "Renkprofili:" |
2127,15 → 2355,18 |
msgid "End Points" |
msgstr "Son noktalar" |
msgid "Type of Line:" |
msgstr "" |
#, fuzzy |
msgid "&Basepoint:" |
msgstr "Örnek sayfa:" |
msgid "Line Width:" |
#, fuzzy |
msgid "T&ype of Line:" |
msgstr "Sistem profili" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Çizgi genişliği:" |
msgid "Edges:" |
msgstr "Köşe:" |
#, fuzzy |
msgid "Miter Join" |
msgstr "Sivri" |
2148,8 → 2379,9 |
msgid "Round Join" |
msgstr "Yuvarlak" |
msgid "Endings:" |
msgstr "Çizgi sonları:" |
#, fuzzy |
msgid "Ed&ges:" |
msgstr "Köşe:" |
#, fuzzy |
msgid "Flat Cap" |
2163,6 → 2395,10 |
msgid "Round Cap" |
msgstr "Yuvarlatılmış" |
#, fuzzy |
msgid "&Endings:" |
msgstr "Çizgi sonları:" |
msgid "No Style" |
msgstr "Biçem yok" |
2374,7 → 2610,20 |
msgid "Rendering intent for the image" |
msgstr "Rendering amaçlar" |
msgid "&X1:" |
msgstr "" |
msgid "X&2:" |
msgstr "" |
msgid "Y&1:" |
msgstr "" |
#, fuzzy |
msgid "&Y2:" |
msgstr "Evet" |
#, fuzzy |
msgid "Column width" |
msgstr "Sütun dağılımı" |
2396,6 → 2645,9 |
msgid "p" |
msgstr "" |
msgid "Line Width:" |
msgstr "Çizgi genişliği:" |
msgid " pt " |
msgstr "" |
2454,14 → 2706,6 |
msgstr "Konum:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Genişlik:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Yükseklik:" |
#, fuzzy |
msgid "&Facing Pages" |
msgstr "Çift sayfalar" |
2473,22 → 2717,10 |
msgstr "Aralık" |
#, fuzzy |
msgid "&Left:" |
msgstr "Sol:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Sağ:" |
#, fuzzy |
msgid "&Top:" |
msgstr "Üst:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Alt:" |
#, fuzzy |
msgid "F&irst Page Number:" |
msgstr "Birinci sayfa numarası:" |
2517,13 → 2749,6 |
msgid "Column Guides" |
msgstr "Sütun dağılımı" |
msgid "&Gap:" |
msgstr "" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Kolanlar:" |
msgid "Document page size, either a standard size or a custom size" |
msgstr "" |
2599,10 → 2824,6 |
msgstr "Buraya taşı" |
#, fuzzy |
msgid "&Paste" |
msgstr "Yapıştır" |
#, fuzzy |
msgid "Show &Margins" |
msgstr "Kenarları göster" |
2817,14 → 3038,6 |
msgstr "Dönüştürme" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Kes" |
#, fuzzy |
msgid "&Copy" |
msgstr "Kopyala" |
#, fuzzy |
msgid "C&lear Contents" |
msgstr "İçerik" |
2848,6 → 3061,12 |
msgid "Copy of" |
msgstr "Kopyası" |
msgid "Image" |
msgstr "Resim" |
msgid "Line" |
msgstr "Çizgi" |
msgid "Polygon" |
msgstr "Çokgen" |
3171,7 → 3390,7 |
msgstr "Yoğun renkler:" |
#, fuzzy |
msgid "Use ICC-Profile" |
msgid "Use ICC Profile" |
msgstr "Sistem profili" |
#, fuzzy |
3185,10 → 3404,6 |
msgid "Images:" |
msgstr "Resim:" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Sistem profili" |
msgid "Don't use embedded ICC profiles" |
msgstr "" |
3362,6 → 3577,15 |
"Choose Printer when printing to a true 4 color CMYK printer." |
msgstr "" |
msgid "" |
"This is an advanced setting which is not enabled by default. This should " |
"only be enabled\n" |
"when specifically requested by your printer and they have given you the " |
"exact details needed.\n" |
"Otherwise, your exported PDF may not print properly and is truly not " |
"portable across systems." |
msgstr "" |
msgid "Embed a color profile for solid colors" |
msgstr "" |
3429,6 → 3653,9 |
msgid "Path" |
msgstr "Yol" |
msgid "Print" |
msgstr "Yazdır" |
msgid "Status" |
msgstr "Durum" |
3447,6 → 3674,9 |
msgid "Corners:" |
msgstr "Köşe:" |
msgid "Rotation:" |
msgstr "Eğim:" |
msgid "Convex Polygon" |
msgstr "Dış bükey çokgen" |
3468,10 → 3698,6 |
msgstr "Yükle..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Farklı kaydet..." |
#, fuzzy |
msgid "&Small" |
msgstr "Küçük" |
3483,107 → 3709,7 |
msgid "&Large" |
msgstr "Sayfa" |
# msgid "Use Icons" |
# msgstr "İkonları kullan" |
# msgid "Remove" |
# msgstr "Sil" |
# msgid "Pressed" |
# msgstr "Basıldı" |
# msgid "Roll Over" |
# msgstr "Roll Over" |
# msgid "Icon Placement..." |
# msgstr "Düzenle..." |
# msgid "Editable" |
# msgstr "Düzenlenebilir" |
# msgid "Submit to URL:" |
# msgstr "URL'ye gönder:" |
# msgid "Submit Data as HTML" |
# msgstr "Verileri HTML olarak gönder" |
# msgid "Layout:" |
# msgstr "Düzen:" |
# msgid "Caption only" |
# msgstr "Sadece metin" |
# msgid "Icon only" |
# msgstr "Sadece ikon" |
# msgid "Caption below Icon" |
# msgstr "Metin ikonun altında" |
# msgid "Caption above Icon" |
# msgstr "Metin ikonun üstünde" |
# msgid "Caption right to Icon" |
# msgstr "Metin ikonun sağında" |
# msgid "Caption left to Icon" |
# msgstr "Metin ikonun solunda" |
# msgid "Caption overlays Icon" |
# msgstr "Metin ikonun üstünde" |
# msgid "Scale When:" |
# msgstr "Ölçek:" |
# msgid "Always" |
# msgstr "Daima" |
# msgid "When Icon is too small" |
# msgstr "Eğer ikon çok küçükse" |
# msgid "When Icon is too big" |
# msgstr "Eğer ikon çok büyükse" |
# msgid "Never" |
# msgstr "Asla" |
# msgid "Scale How:" |
# msgstr "Ölçekleme yöntemi:" |
# msgid "Proportional" |
# msgstr "Orantılı" |
# msgid "Non Proportional" |
# msgstr "Orantısız" |
# msgid "Reset" |
# msgstr "Sıfırla" |
# msgid "You need at least the Icon for Normal to use Icons for Buttons" |
# msgstr "İkonları kullanabilmek için en azından normal olarak bu ikona ihtıyacınız var" |
# msgid "Save and Exit" |
# msgstr "Kaydet ve çık" |
# msgid "Exit without Saving" |
# msgstr "Kaydetmeden çık" |
# msgid "Get Field Names" |
# msgstr "Alan ismini seçin" |
# msgid "JavaScripts (*.js);; All Files (*)" |
# msgstr "JavaScripts (*.js);; Bütün dosyalar (*)" |
# msgid "Pick..." |
# msgstr "Seçin..." |
# msgid "Export Range" |
# msgstr "Kenarlar" |
# msgid "All Pages" |
# msgstr "Bütün sayfalar" |
# msgid "From:" |
# msgstr "Burdan:" |
# msgid "Insert PDF-Fields" |
# msgstr "PDF-alanları ekle" |
# msgid "Undo" |
# msgstr "Geri" |
# msgid "Redo" |
# msgstr "Tekrar oluştur" |
# msgid "Select Fields" |
# msgstr "Alan seçin" |
# msgid "Available Fields" |
# msgstr "Mevcut alanlar" |
# msgid "Selected Fields" |
# msgstr "Seçilen alanlar" |
# msgid "Field Properties" |
# msgstr "Alan özellikleri" |
# msgid "Global JavaScripts" |
# msgstr "Genel JavaScripts" |
# msgid "Add..." |
# msgstr "Ekle..." |
# msgid "New Script:" |
# msgstr "Yeni Script:" |
# msgid "New Script" |
# msgstr "Yeni Script" |
# msgid "Insert PDF-Annotations" |
# msgstr "PDF-Notu ekle" |
# msgid "Import Data" |
# msgstr "Verileri içe aktar" |
# msgid "Import Data from:" |
# msgstr "Veriler burdan içe aktar:" |
#, fuzzy |
msgid "&File" |
msgstr "Dosya" |
#, fuzzy |
msgid "&Preview" |
msgstr "Önizleme" |
3675,6 → 3801,9 |
msgid "Javascripts..." |
msgstr "Java Script" |
msgid "Undo" |
msgstr "Geri" |
msgid "Show Page Palette" |
msgstr "Sayfa paletini göster" |
3688,8 → 3817,9 |
msgid "Reading Preferences" |
msgstr "Ayarlar" |
msgid "Getting ICC-Profiles" |
msgstr "" |
#, fuzzy |
msgid "Getting ICC Profiles" |
msgstr "Sistem profili" |
msgid "Init Hyphenator" |
msgstr "" |
3709,10 → 3839,6 |
msgstr "" |
#, fuzzy |
msgid "&Open..." |
msgstr "Aç..." |
#, fuzzy |
msgid "Open &Recent" |
msgstr "Belge aç" |
3725,6 → 3851,9 |
msgid "Save" |
msgstr "Kaydet" |
msgid "Save as..." |
msgstr "Farklı kaydet..." |
#, fuzzy |
msgid "Re&vert to Saved" |
msgstr "Eski haline getir" |
3793,17 → 3922,21 |
msgstr "Çık" |
#, fuzzy |
msgid "&Undo" |
msgstr "Geri" |
msgid "Select &All" |
msgstr "Hepsini seç" |
#, fuzzy |
msgid "C&lear" |
msgid "Cut" |
msgstr "Kes" |
msgid "Copy" |
msgstr "Kopyala" |
msgid "Paste" |
msgstr "Yapıştır" |
msgid "Clear" |
msgstr "Sil" |
#, fuzzy |
msgid "Select &All" |
msgstr "Hepsini seç" |
msgid "Select all" |
msgstr "Hepsini seç" |
3885,10 → 4018,6 |
msgstr "Çerçeve düzenle" |
#, fuzzy |
msgid "&Shape" |
msgstr "Biçim" |
#, fuzzy |
msgid "&Attach Text to Path" |
msgstr "Yola metin ekle" |
3937,7 → 4066,7 |
msgstr "Geçici sayfaları uygula..." |
#, fuzzy |
msgid "&Manage Guides..." |
msgid "Manage &Guides..." |
msgstr "Aralık" |
#, fuzzy |
4280,6 → 4409,10 |
msgid "Scribus Manual" |
msgstr "Scribus Kılavuzu" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Gölge:" |
msgid "Hide Baseline Grid" |
msgstr "" |
4566,13 → 4699,15 |
msgstr "" |
#, fuzzy |
msgid "PDF-Tools" |
msgid "PDF Tools" |
msgstr "Araçlar" |
msgid "Insert PDF-Fields" |
#, fuzzy |
msgid "Insert PDF Fields" |
msgstr "PDF alanları ekle" |
msgid "Insert PDF-Annotations" |
#, fuzzy |
msgid "Insert PDF Annotations" |
msgstr "PDF notu ekle" |
#, fuzzy |
4579,52 → 4714,67 |
msgid "Manage Tabulators" |
msgstr "Resimleri düzenle" |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "F&ill Color Settings" |
msgstr "Doldurma rengi:" |
msgid "Forced" |
msgstr "Gerekli Blok" |
#, fuzzy |
msgid "&Stroke Color Settings" |
msgstr "Renkleri göster" |
msgid "Block" |
msgstr "Blok" |
#, fuzzy |
msgid "&Character Settings" |
msgstr "Karakterler" |
msgid "Right" |
msgstr "Sağ" |
#, fuzzy |
msgid "Kerning:" |
msgstr "Uyarı" |
msgid "Center" |
msgstr "Ortala" |
#, fuzzy |
msgid "St&yle Settings" |
msgstr "Fare ayarları" |
msgid "Left" |
msgstr "Sol" |
#, fuzzy |
msgid "&Font Settings" |
msgstr "Fare ayarları" |
#, fuzzy |
msgid "Save to File..." |
msgstr "PDF olarak kaydet..." |
msgid "Font of selected text" |
msgstr "Silinen nesneyi geri al" |
msgid "Load from File..." |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "Save Document" |
msgid "&Reload Text from Frame" |
msgstr "Yola metin ekle" |
#, fuzzy |
msgid "&Save to File..." |
msgstr "PDF olarak kaydet..." |
#, fuzzy |
msgid "&Load from File..." |
msgstr "PDF olarak kaydet..." |
#, fuzzy |
msgid "Save &Document" |
msgstr "Yeni belge" |
msgid "Update Text Frame and Exit" |
msgstr "" |
#, fuzzy |
msgid "&Update Text Frame and Exit" |
msgstr "Metin çerçevesi" |
#, fuzzy |
msgid "Exit Without Updating Text Frame" |
msgid "&Exit Without Updating Text Frame" |
msgstr "Kaydetmeden çık" |
#, fuzzy |
msgid "Insert Special..." |
msgid "&Insert Special..." |
msgstr "Arasına ekle..." |
#, fuzzy |
msgid "Edit Styles..." |
msgstr "Biçemleri düzenle" |
#, fuzzy |
msgid "Update Text Frame" |
msgid "&Update Text Frame" |
msgstr "Metin çerçevesi" |
msgid "Current Paragraph:" |
4678,26 → 4828,42 |
msgid "Stroke Shade" |
msgstr "" |
msgid "Left" |
msgstr "Sol" |
msgid "Center" |
msgstr "Ortala" |
msgid "Right" |
msgstr "Sağ" |
msgid "Block" |
msgstr "Blok" |
msgid "Forced" |
msgstr "Gerekli Blok" |
#, fuzzy |
msgid "Replace with:" |
msgstr "Değiştir:" |
msgid "Whole Word" |
msgid "&Whole Word" |
msgstr "" |
msgid "Ignore Case" |
msgid "&Ignore Case" |
msgstr "" |
#, fuzzy |
msgid "Replace" |
msgid "&Search" |
msgstr "Ara" |
#, fuzzy |
msgid "&Replace" |
msgstr "Değiştir:" |
msgid "Replace All" |
msgstr "" |
#, fuzzy |
msgid "Leave" |
msgstr "Kaydet" |
msgid "Replace &All" |
msgstr "Değiştir:" |
msgid "Search finished" |
msgstr "" |
4730,6 → 4896,39 |
msgid "Other..." |
msgstr "Diğer..." |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Komut:" |
#, fuzzy |
msgid "&Position:" |
msgstr "Açıklama:" |
#, fuzzy |
msgid "First &Line:" |
msgstr "İlk satır:" |
#, fuzzy |
msgid "Ind&ent:" |
msgstr "Sol:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Sil" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Renk sil" |
msgid "" |
"<h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ " |
"toolkit for multiplatform GUI & application development.</p><p>Qt " |
4874,14 → 5073,6 |
msgstr "" |
#, fuzzy |
msgid "&Yes" |
msgstr "Evet" |
#, fuzzy |
msgid "&No" |
msgstr "Hayır" |
#, fuzzy |
msgid "New Folder 1" |
msgstr "Yeni renk" |
4926,10 → 5117,6 |
msgstr "Hepsini seç" |
#, fuzzy |
msgid "&Redo" |
msgstr "Tekrar oluştur" |
#, fuzzy |
msgid "Line up" |
msgstr "Çizgi" |
5039,38 → 5226,6 |
msgid "Number of Columns:" |
msgstr "Kopya sayısı:" |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Komut:" |
#, fuzzy |
msgid "Position:" |
msgstr "Açıklama:" |
msgid "First Line:" |
msgstr "İlk satır:" |
#, fuzzy |
msgid "Indent:" |
msgstr "Sol:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Sil" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Renk sil" |
msgid "Distances" |
msgstr "Mesafe" |
5086,6 → 5241,10 |
msgid "Length:" |
msgstr "Uzunluk:" |
#, fuzzy |
msgid "Position:" |
msgstr "Açıklama:" |
msgid "Here you can add, change or remove Color-Stops." |
msgstr "" |
5249,10 → 5408,6 |
msgid "&Theme:" |
msgstr "Tema" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Yazıtipi boyutu:" |
msgid "Units" |
msgstr "Birimler" |
5445,10 → 5600,6 |
msgstr "Sistem profili" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Çizgi genişliği:" |
#, fuzzy |
msgid "Mi&nimum:" |
msgstr "asgari" |
5461,10 → 5612,6 |
msgstr "Adım adım:" |
#, fuzzy |
msgid "&Free Scaling" |
msgstr "Serbest ölçek" |
#, fuzzy |
msgid "&Horizontal Scaling:" |
msgstr "Dikey ölçek" |
5481,18 → 5628,10 |
msgstr "Uzun bağlantıları bırak" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Doldurma rengi:" |
#, fuzzy |
msgid "Corn&ers:" |
msgstr "Köşe:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Eğim:" |
#, fuzzy |
msgid "Conve&x Polygon" |
msgstr "Dış bükey çokgen" |
5571,6 → 5710,9 |
msgid "Clip to Page &Margins" |
msgstr "Kenarları sakla" |
msgid "Apply &Under Color Removal" |
msgstr "" |
msgid "" |
"Choose the default window decoration and looks.\n" |
"Scribus inherits any available KDE or Qt themes" |
5869,6 → 6011,9 |
msgid "&Display CMYK" |
msgstr "Göster" |
msgid "&Under Color Removal" |
msgstr "" |
msgid "&C" |
msgstr "" |
6013,19 → 6158,16 |
msgid "Export as Image" |
msgstr "Kenarlar" |
msgid "Export to directory:" |
msgstr "" |
msgid "Alt+C" |
msgstr "" |
#, fuzzy |
msgid "Image type:" |
msgstr "Resim:" |
msgid "&Export to Directory:" |
msgstr "Yön:" |
#, fuzzy |
msgid "Quality :" |
msgstr "Çık" |
msgid "Image &Type:" |
msgstr "Resim:" |
msgid "%" |
msgstr "" |
6271,6 → 6413,84 |
msgid "Save as &Template..." |
msgstr "Metni kaydet..." |
#~ msgid "Number of copies:" |
#~ msgstr "Kopya sayısı:" |
#~ msgid "Face:" |
#~ msgstr "Yazı şekli:" |
#~ msgid "Fill Color:" |
#~ msgstr "Doldurma rengi:" |
#~ msgid "Load..." |
#~ msgstr "Yükle..." |
#~ msgid "Redo" |
#~ msgstr "Tekrar oluştur" |
#~ msgid "Edit" |
#~ msgstr "Düzenle" |
#, fuzzy |
#~ msgid "Template:" |
#~ msgstr "Yeni geçici sayfa" |
#~ msgid "Shape" |
#~ msgstr "Biçim" |
#~ msgid "Height:" |
#~ msgstr "Yükseklik:" |
#~ msgid "Columns:" |
#~ msgstr "Kolanlar:" |
#~ msgid "Bottom:" |
#~ msgstr "Alt:" |
#~ msgid "Left:" |
#~ msgstr "Sol:" |
#~ msgid "Right:" |
#~ msgstr "Sağ:" |
#~ msgid "Font Size:" |
#~ msgstr "Yazıtipi boyutu:" |
#~ msgid "Free Scaling" |
#~ msgstr "Serbest ölçek" |
#, fuzzy |
#~ msgid "X-Pos.:" |
#~ msgstr "X-Koordinatları.:" |
#, fuzzy |
#~ msgid "Y-Pos.:" |
#~ msgstr "Y-Koordinatları.:" |
#, fuzzy |
#~ msgid "Use ICC-Profile" |
#~ msgstr "Sistem profili" |
#, fuzzy |
#~ msgid "&Manage Guides..." |
#~ msgstr "Aralık" |
#, fuzzy |
#~ msgid "PDF-Tools" |
#~ msgstr "Araçlar" |
#, fuzzy |
#~ msgid "Edit Styles..." |
#~ msgstr "Biçemleri düzenle" |
#, fuzzy |
#~ msgid "Leave" |
#~ msgstr "Kaydet" |
#, fuzzy |
#~ msgid "Quality :" |
#~ msgstr "Çık" |
#~ msgid "From page:" |
#~ msgstr "Başlangıç:" |
/trunk/Scribus/scribus/po/scribus.id.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 1.0\n" |
"POT-Creation-Date: 2004-07-19 23:24+0200\n" |
"POT-Creation-Date: 2004-07-28 23:12+0200\n" |
"PO-Revision-Date: 2003-07-30 09:04+0700\n" |
"Last-Translator: Triyan W. Nugroho <iyan_kid@yahoo.com>\n" |
"Language-Team: Bahasa Indonesia <id@li.org>\n" |
21,9 → 21,6 |
msgid "Horizontal" |
msgstr "Horisontal" |
msgid "between:" |
msgstr "di antara:" |
msgid "Left Sides" |
msgstr "Sisi Kiri" |
33,13 → 30,20 |
msgid "Right Sides" |
msgstr "Sisi Kanan" |
msgid "Don't change" |
msgstr "Jangan dirubah" |
#, fuzzy |
msgid "&Between:" |
msgstr "di antara:" |
msgid "Displacement" |
msgstr "" |
#, fuzzy |
msgid "A&lign" |
msgstr "Bariskan" |
msgid "Distribute evenly" |
#, fuzzy |
msgid "Di&splacement" |
msgstr "Penggantian" |
#, fuzzy |
msgid "Distribute &Evenly" |
msgstr "Sebar mendatar" |
msgid "Vertical" |
51,7 → 55,23 |
msgid "Bottom Sides" |
msgstr "Sisi Bawah" |
msgid " pts" |
#, fuzzy |
msgid "Bet&ween:" |
msgstr "di antara:" |
#, fuzzy |
msgid "Do &Not Change" |
msgstr "Jangan dirubah" |
#, fuzzy |
msgid "Al&ign" |
msgstr "Bariskan" |
#, fuzzy |
msgid "Dis&placement" |
msgstr "Penggantian" |
msgid " pt" |
msgstr "" |
msgid " mm" |
64,6 → 84,10 |
msgstr "" |
#, fuzzy |
msgid "Distribute E&venly" |
msgstr "Sebar mendatar" |
#, fuzzy |
msgid "&OK" |
msgstr "OK" |
108,7 → 132,8 |
msgid "Text" |
msgstr "Teks" |
msgid "Font for use with PDF-1.3:" |
#, fuzzy |
msgid "Font for use with PDF 1.3:" |
msgstr "Font yang digunakan dengan PDF-1.3:" |
msgid "Border" |
333,9 → 358,6 |
msgid "X-Pos:" |
msgstr "" |
msgid " pt" |
msgstr "" |
msgid "Y-Pos:" |
msgstr "" |
453,7 → 475,8 |
msgid "Cancel" |
msgstr "Batal" |
msgid "Flag is ignored for PDF-1.3" |
#, fuzzy |
msgid "Flag is ignored for PDF 1.3" |
msgstr "Bendera diabaikan untuk PDF-1.3" |
#, fuzzy |
478,7 → 501,7 |
msgstr "Perubahan Pilihan" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgid "PDF Documents (*.pdf);;All Files (*)" |
msgstr "Dokumen (*.sla *.scd);; Semua File (*)" |
msgid "Annotation Properties" |
493,6 → 516,10 |
msgid "External Web-Link" |
msgstr "" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgstr "Dokumen (*.sla *.scd);; Semua File (*)" |
msgid "Apply Template" |
msgstr "Terapkan Template" |
687,7 → 714,12 |
msgid "Edit Color" |
msgstr "Edit Warna" |
msgid "Color Model" |
#, fuzzy |
msgid "&Name:" |
msgstr "Nama:" |
#, fuzzy |
msgid "Color &Model" |
msgstr "Model Warna" |
msgid "CMYK" |
1169,23 → 1201,32 |
msgid "Advanced Options" |
msgstr "Pilihan Advanced" |
msgid "Mirror Page(s) horizontal" |
#, fuzzy |
msgid "Mirror Page(s) &Horizontal" |
msgstr "Balik Halaman horisontal" |
msgid "Mirror Page(s) vertical" |
#, fuzzy |
msgid "Mirror Page(s) &Vertical" |
msgstr "Balik Halaman vertikal" |
msgid "Apply ICC-Profiles" |
msgid "Appy Under Color &Removal" |
msgstr "" |
#, fuzzy |
msgid "Apply &ICC Profiles" |
msgstr "Terapkan Profil ICC" |
msgid "PostScript Level 3" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &1" |
msgstr "Tegak" |
msgid "PostScript Level 2" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &2" |
msgstr "Tegak" |
msgid "PostScript Level 1" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &3" |
msgstr "Tegak" |
msgid "Creates PostScript Level 3" |
msgstr "" |
1203,36 → 1244,47 |
msgid "Setup Printer" |
msgstr "Pengaturan Printer" |
msgid "Print destination" |
#, fuzzy |
msgid "Print Destination" |
msgstr "Tujuan cetak" |
msgid "File" |
msgstr "Berkas" |
msgid "Options..." |
#, fuzzy |
msgid "&Options..." |
msgstr "Pilihan..." |
msgid "File:" |
#, fuzzy |
msgid "&File:" |
msgstr "File:" |
#, fuzzy |
msgid "Alternative Printer Command" |
msgid "C&hange..." |
msgstr "Ubah..." |
#, fuzzy |
msgid "A<ernative Printer Command" |
msgstr "Cetak melalui Perintah lain" |
msgid "Command:" |
#, fuzzy |
msgid "Co&mmand:" |
msgstr "Perintah:" |
msgid "Range:" |
#, fuzzy |
msgid "Range" |
msgstr "Cakupan:" |
msgid "Print all" |
#, fuzzy |
msgid "Print &All" |
msgstr "Cetak semua" |
#, fuzzy |
msgid "Print current page" |
msgid "Print Current Pa&ge" |
msgstr "Cakupan cetak" |
msgid "Print range" |
#, fuzzy |
msgid "Print &Range" |
msgstr "Cakupan cetak" |
msgid "" |
1241,13 → 1293,16 |
"a range of pages or a single page number." |
msgstr "" |
msgid "Number of copies:" |
#, fuzzy |
msgid "N&umber of Copies:" |
msgstr "Jumlah salinan:" |
msgid "Print Normal" |
#, fuzzy |
msgid "Print &Normal" |
msgstr "Cetak Normal" |
msgid "Print Separations" |
#, fuzzy |
msgid "Print &Separations" |
msgstr "Cetak Separasi" |
msgid "All" |
1267,16 → 1322,20 |
msgid "Black" |
msgstr "Blok" |
msgid "Print in color if available" |
#, fuzzy |
msgid "Pr&int In Color If Available" |
msgstr "Cetak berwarna jika tersedia" |
msgid "Print in grayscale" |
#, fuzzy |
msgid "Print In Gra&yscale" |
msgstr "Cetak abu-abu" |
msgid "Advanced Options..." |
#, fuzzy |
msgid "Ad&vanced Options..." |
msgstr "Pilihan Advanced" |
msgid "Print" |
#, fuzzy |
msgid "&Print" |
msgstr "Cetak" |
msgid "Save as" |
1292,45 → 1351,54 |
msgid "Character" |
msgstr "Karakter" |
msgid "Face:" |
msgstr "Bentuk:" |
#, fuzzy |
msgid "&Font:" |
msgstr "&Font" |
#, fuzzy |
msgid "Si&ze:" |
msgstr "Ukuran:" |
#, fuzzy |
msgid "Effect:" |
msgstr "Efek" |
#, fuzzy |
msgid "Alignment:" |
msgid "&Alignment:" |
msgstr "Peletakan" |
msgid "Drop Caps" |
msgid "&Drop Caps" |
msgstr "" |
#, fuzzy |
msgid "Lines:" |
msgid "&Lines:" |
msgstr "Baris:" |
msgid "Fill Color:" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Warna Isian:" |
#, fuzzy |
msgid "Stroke Color:" |
msgid "St&roke Color:" |
msgstr "Warna Baru:" |
msgid "Vertical Spaces" |
msgstr "Spasi Vertikal" |
msgid "Adjust to Baseline Grid" |
msgstr "" |
#, fuzzy |
msgid "Adjust to Baseline &Grid" |
msgstr "Sembunyikan Grid" |
#, fuzzy |
msgid "Line Spacing:" |
msgid "Line &Spacing:" |
msgstr "Spasi Baris:" |
msgid "Above:" |
#, fuzzy |
msgid "Abo&ve:" |
msgstr "Atas:" |
msgid "Below:" |
#, fuzzy |
msgid "&Below:" |
msgstr "Bawah:" |
msgid "Tabulators and Indentation" |
1393,41 → 1461,53 |
msgid "Editor" |
msgstr "Edit" |
msgid "Save as..." |
#, fuzzy |
msgid "&Open..." |
msgstr "Buka..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Simpan sebagai..." |
msgid "Load..." |
msgstr "Muatkan..." |
msgid "Save and Exit" |
#, fuzzy |
msgid "&Save and Exit" |
msgstr "Simpan dan Keluar" |
msgid "Exit without Saving" |
#, fuzzy |
msgid "&Exit without Saving" |
msgstr "Keluar tanpa Simpan" |
msgid "Undo" |
#, fuzzy |
msgid "&Undo" |
msgstr "Batal" |
msgid "Redo" |
#, fuzzy |
msgid "&Redo" |
msgstr "Redo" |
msgid "Cut" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Cut" |
msgid "Copy" |
#, fuzzy |
msgid "&Copy" |
msgstr "Salin" |
msgid "Paste" |
#, fuzzy |
msgid "&Paste" |
msgstr "Tempel" |
msgid "Clear" |
#, fuzzy |
msgid "C&lear" |
msgstr "Bersihkan" |
msgid "Get Field Names" |
#, fuzzy |
msgid "&Get Field Names" |
msgstr "Dapatkan Nama Field" |
msgid "Edit" |
msgstr "Edit" |
#, fuzzy |
msgid "&File" |
msgstr "Berkas" |
#, fuzzy |
msgid "Javascripts (*.js);;All Files (*)" |
1481,10 → 1561,6 |
msgstr "Substitusi Font" |
#, fuzzy |
msgid "C&hange..." |
msgstr "Ubah..." |
#, fuzzy |
msgid "A&dd..." |
msgstr "Tambahkan..." |
1503,14 → 1579,25 |
msgstr "Node" |
#, fuzzy |
msgid "Absolute Coordinates" |
msgid "&Absolute Coordinates" |
msgstr "Colorimetric Absolut" |
msgid "&X-Pos:" |
msgstr "" |
msgid "&Y-Pos:" |
msgstr "" |
#, fuzzy |
msgid "Edit Contour Line" |
msgid "Edit &Contour Line" |
msgstr "Edit Warna" |
msgid "End Editing" |
#, fuzzy |
msgid "&Reset Contour Line" |
msgstr "Garis Putus Titik" |
#, fuzzy |
msgid "&End Editing" |
msgstr "Selesai Mengedit" |
msgid "Move Nodes" |
1525,10 → 1612,12 |
msgid "Delete Nodes" |
msgstr "Hapus Node" |
msgid "Move Control Points independently" |
#, fuzzy |
msgid "Move Control Points Independently" |
msgstr "Pindahkan Titik Kontrol secara independen" |
msgid "Move Control Points symmetrical" |
#, fuzzy |
msgid "Move Control Points Symmetrical" |
msgstr "Pindahkan Titik Kontrol secara simetris" |
msgid "Reset Control Points" |
1538,42 → 1627,62 |
msgid "Reset this Control Point" |
msgstr "Reset Titik Kontrol ini" |
msgid "Opens a Polygon or cuts a Bezier Curve" |
#, fuzzy |
msgid "Open a Polygon or Cuts a Bezier Curve" |
msgstr "Buka Poligon atau cut Kurva Bezier" |
msgid "Closes this Bezier Curve" |
#, fuzzy |
msgid "Close this Bezier Curve" |
msgstr "Tutup Kurva Bezier ini" |
#, fuzzy |
msgid "Mirrors the Path Horizontally" |
msgid "Mirror the Path Horizontally" |
msgstr "Balik Halaman horisontal" |
#, fuzzy |
msgid "Mirrors the Path Vertically" |
msgid "Mirror the Path Vertically" |
msgstr "Balik Halaman vertikal" |
msgid "Shears the Path horizontal to the right" |
msgstr "" |
#, fuzzy |
msgid "Shear the Path Horizontally to the Rright" |
msgstr "Balik Halaman horisontal" |
msgid "Shears the Path horizontal to the left" |
#, fuzzy |
msgid "Shear the Path Horizontally to the Left" |
msgstr "Balik Halaman horisontal" |
#, fuzzy |
msgid "Shear the Path Vertically Up" |
msgstr "Balik Halaman vertikal" |
#, fuzzy |
msgid "Shear the Path Vertically Down" |
msgstr "Balik Halaman vertikal" |
msgid "Rotate the Path Counter-Clockwise" |
msgstr "" |
msgid "Shears the Path vertical up" |
msgid "Rotate the Path Clockwise" |
msgstr "" |
msgid "Shears the Path vertical down" |
msgid "Reduce the Size of the Path by shown %" |
msgstr "" |
msgid "Rotates the Path counter-clockwise" |
msgid "Enlarge the Size of the Path by shown %" |
msgstr "" |
msgid "Rotates the Path clockwise" |
#, fuzzy |
msgid "Angle of Rotation" |
msgstr "Rotasi" |
#, c-format |
msgid "% to Enlarge or Reduce By" |
msgstr "" |
msgid "Reduce the Size of the Path by 10%" |
msgid "Activate Contour Line Editing Mode" |
msgstr "" |
msgid "Enlarges the Size of the Path by 10%" |
msgid "Reset the Contour Line to the Original Shape of the Frame" |
msgstr "" |
msgid "" |
1587,9 → 1696,6 |
msgid "Horizontal Guides" |
msgstr "Pemandu Horisontal" |
msgid "&Y-Pos:" |
msgstr "" |
#, fuzzy |
msgid "&Add" |
msgstr "Tambahkan" |
1601,9 → 1707,6 |
msgid "Vertical Guides" |
msgstr "Pemandu Vertikal" |
msgid "&X-Pos:" |
msgstr "" |
#, fuzzy |
msgid "A&dd" |
msgstr "Tambahkan" |
1668,10 → 1771,12 |
msgid "Insert Page" |
msgstr "Masukkan Halaman" |
msgid "Inserting" |
#, fuzzy |
msgid "&Inserting" |
msgstr "Memasukkan" |
msgid "page(s)" |
#, fuzzy |
msgid "Page(s)" |
msgstr "halaman" |
msgid "before Page" |
1683,12 → 1788,13 |
msgid "at End" |
msgstr "di Akhir" |
msgid "Template (Left Page):" |
msgid "Inserting" |
msgstr "Memasukkan" |
#, fuzzy |
msgid "&Template (Left Page):" |
msgstr "Template (Halaman Kiri):" |
msgid "Template:" |
msgstr "Template:" |
msgid "Template (Right Page):" |
msgstr "Template (Halaman Kanan):" |
1707,7 → 1813,8 |
msgid "&Close" |
msgstr "&Tutup" |
msgid "New Script:" |
#, fuzzy |
msgid "&New Script:" |
msgstr "Skrip Baru:" |
msgid "New Script" |
1717,6 → 1824,14 |
msgid "Do you really want do delete this Script?" |
msgstr "Apakah anda benar-benar ingin menghapus Gaya ini?" |
#, fuzzy |
msgid "&No" |
msgstr "Tidak" |
#, fuzzy |
msgid "&Yes" |
msgstr "Ya" |
msgid "Manage Keyboard Shortcuts" |
msgstr "Atur Shortcut Keyboard" |
1855,19 → 1970,30 |
msgid "Move Page(s):" |
msgstr "Pindah Halaman:" |
msgid "X, Y, Z" |
msgid "X, Y, &Z" |
msgstr "" |
msgid "Shape" |
#, fuzzy |
msgid "&Shape" |
msgstr "Bentuk" |
msgid "Image" |
#, fuzzy |
msgid "&Text" |
msgstr "Teks" |
#, fuzzy |
msgid "&Image" |
msgstr "Gambar" |
msgid "Line" |
#, fuzzy |
msgid "&Line" |
msgstr "Garis" |
#, fuzzy |
msgid "&Colors" |
msgstr "Warna" |
#, fuzzy |
msgid "Name" |
msgstr "Nama:" |
1874,10 → 2000,16 |
msgid "Geometry" |
msgstr "Geometri" |
msgid "Height:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Lebar:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Tinggi:" |
msgid "Rotation:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Rotasi:" |
msgid "Basepoint:" |
1887,52 → 2019,47 |
msgstr "Level" |
#, fuzzy |
msgid "Text flows around frame" |
msgstr "Teks di seputar Kotak" |
#, fuzzy |
msgid "Use Bounding Box" |
msgstr "gunakan Kotak Bounding" |
#, fuzzy |
msgid "Use Contour Line" |
msgstr "Garis Putus Titik" |
#, fuzzy |
msgid "Shape:" |
msgstr "Bentuk" |
msgid "Edit Shape..." |
#, fuzzy |
msgid "&Edit Shape..." |
msgstr "Edit Bentuk..." |
#, fuzzy |
msgid "" |
"Round\n" |
"R&ound\n" |
"Corners:" |
msgstr "" |
msgstr "Sudut:" |
msgid "Distance of Text" |
msgstr "Jarak Teks" |
msgid "Columns:" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Kolom:" |
msgid "Gap:" |
msgid "&Gap:" |
msgstr "" |
msgid "Top:" |
#, fuzzy |
msgid "To&p:" |
msgstr "Atas:" |
msgid "Bottom:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Bawah:" |
msgid "Left:" |
#, fuzzy |
msgid "&Left:" |
msgstr "Kiri:" |
msgid "Right:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Kanan:" |
#, fuzzy |
msgid "Tabulators..." |
msgid "T&abulators..." |
msgstr "Template..." |
#, fuzzy |
1949,7 → 2076,20 |
msgid "Distance from Curve:" |
msgstr "Jarak dari Kurva:" |
msgid "Font Size:" |
#, fuzzy |
msgid "Text &Flows Around Frame" |
msgstr "Teks di seputar Kotak" |
#, fuzzy |
msgid "Use &Bounding Box" |
msgstr "gunakan Kotak Bounding" |
#, fuzzy |
msgid "&Use Contour Line" |
msgstr "Garis Putus Titik" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Ukuran Font:" |
msgid "Custom Spacing" |
1956,32 → 2096,41 |
msgstr "Spasi Sendiri" |
#, fuzzy |
msgid "Kerning:" |
msgid "&Kerning:" |
msgstr "Peringatan" |
msgid "Language:" |
#, fuzzy |
msgid "L&ine Spacing:" |
msgstr "Spasi Baris:" |
#, fuzzy |
msgid "St&yle:" |
msgstr "Gaya" |
#, fuzzy |
msgid "Lan&guage:" |
msgstr "Bahasa:" |
msgid "Free Scaling" |
#, fuzzy |
msgid "&Free Scaling" |
msgstr "Skala Bebas" |
msgid "X-Pos.:" |
msgstr "" |
msgid "Y-Pos.:" |
msgstr "" |
#, fuzzy |
msgid "X-Scale:" |
msgid "X-Sc&ale:" |
msgstr "Skala:" |
#, fuzzy |
msgid "Y-Scale:" |
msgid "Y-Scal&e:" |
msgstr "Skala:" |
msgid "Scale to Frame Size" |
#, fuzzy |
msgid "Scale &To Frame Size" |
msgstr "Skala ke Ukuran Halaman" |
#, fuzzy |
msgid "P&roportional" |
msgstr "Proporsional" |
msgid "Input Profile:" |
msgstr "Profil Masukan:" |
1995,15 → 2144,17 |
msgid "End Points" |
msgstr "Titik Akhir" |
msgid "Type of Line:" |
msgid "&Basepoint:" |
msgstr "" |
msgid "Line Width:" |
#, fuzzy |
msgid "T&ype of Line:" |
msgstr "Profil Sistem" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Lebar Garis:" |
msgid "Edges:" |
msgstr "Tepi:" |
msgid "Miter Join" |
msgstr "" |
2013,8 → 2164,9 |
msgid "Round Join" |
msgstr "" |
msgid "Endings:" |
msgstr "Akhir:" |
#, fuzzy |
msgid "Ed&ges:" |
msgstr "Tepi:" |
msgid "Flat Cap" |
msgstr "" |
2026,6 → 2178,10 |
msgid "Round Cap" |
msgstr "" |
#, fuzzy |
msgid "&Endings:" |
msgstr "Akhir:" |
msgid "No Style" |
msgstr "Tanpa Gaya" |
2238,7 → 2394,20 |
msgid "Rendering intent for the image" |
msgstr "Intensitas Rendering" |
msgid "&X1:" |
msgstr "" |
msgid "X&2:" |
msgstr "" |
msgid "Y&1:" |
msgstr "" |
#, fuzzy |
msgid "&Y2:" |
msgstr "Ya" |
#, fuzzy |
msgid "Column width" |
msgstr "Pemandu Kolom" |
2262,6 → 2431,9 |
msgid "p" |
msgstr "" |
msgid "Line Width:" |
msgstr "Lebar Garis:" |
msgid " pt " |
msgstr "" |
2318,14 → 2490,6 |
msgstr "Orientasi:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Lebar:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Tinggi:" |
#, fuzzy |
msgid "&Facing Pages" |
msgstr "Halaman Berhadapan" |
2337,22 → 2501,10 |
msgstr "Pemandu Gari Tepi" |
#, fuzzy |
msgid "&Left:" |
msgstr "Kiri:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Kanan:" |
#, fuzzy |
msgid "&Top:" |
msgstr "Atas:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Bawah:" |
#, fuzzy |
msgid "F&irst Page Number:" |
msgstr "Nomor Halaman Pertama:" |
2380,13 → 2532,6 |
msgid "Column Guides" |
msgstr "Pemandu Kolom" |
msgid "&Gap:" |
msgstr "" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Kolom:" |
msgid "Document page size, either a standard size or a custom size" |
msgstr "" |
2462,10 → 2607,6 |
msgstr "Pindah ke Sini" |
#, fuzzy |
msgid "&Paste" |
msgstr "Tempel" |
#, fuzzy |
msgid "Show &Margins" |
msgstr "Tampilkan Garis Tepi" |
2681,14 → 2822,6 |
msgstr "Konversikan ke" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Cut" |
#, fuzzy |
msgid "&Copy" |
msgstr "Salin" |
#, fuzzy |
msgid "C&lear Contents" |
msgstr "Isi" |
2712,6 → 2845,12 |
msgid "Copy of" |
msgstr "Salinan dari" |
msgid "Image" |
msgstr "Gambar" |
msgid "Line" |
msgstr "Garis" |
msgid "Polygon" |
msgstr "Poligon" |
3033,7 → 3172,8 |
msgid "Solid Colors:" |
msgstr "Warna Solid:" |
msgid "Use ICC-Profile" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Gunakan Profil ICC" |
#, fuzzy |
3047,10 → 3187,6 |
msgstr "Gambar:" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Gunakan Profil ICC" |
#, fuzzy |
msgid "Don't use embedded ICC profiles" |
msgstr "Jangan gunakan Profil yang dimasukkan" |
3225,6 → 3361,15 |
"Choose Printer when printing to a true 4 color CMYK printer." |
msgstr "" |
msgid "" |
"This is an advanced setting which is not enabled by default. This should " |
"only be enabled\n" |
"when specifically requested by your printer and they have given you the " |
"exact details needed.\n" |
"Otherwise, your exported PDF may not print properly and is truly not " |
"portable across systems." |
msgstr "" |
msgid "Embed a color profile for solid colors" |
msgstr "" |
3292,6 → 3437,9 |
msgid "Path" |
msgstr "Lokasi" |
msgid "Print" |
msgstr "Cetak" |
msgid "Status" |
msgstr "Status" |
3310,6 → 3458,9 |
msgid "Corners:" |
msgstr "Sudut:" |
msgid "Rotation:" |
msgstr "Rotasi:" |
msgid "Convex Polygon" |
msgstr "Poligon Cembung" |
3331,10 → 3482,6 |
msgstr "Muatkan..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Simpan sebagai..." |
#, fuzzy |
msgid "&Small" |
msgstr "Kecil" |
3347,10 → 3494,6 |
msgstr "Halaman" |
#, fuzzy |
msgid "&File" |
msgstr "Berkas" |
#, fuzzy |
msgid "&Preview" |
msgstr "Prapandang" |
3441,6 → 3584,9 |
msgid "Javascripts..." |
msgstr "Java Script" |
msgid "Undo" |
msgstr "Batal" |
msgid "Show Page Palette" |
msgstr "Tampilkan Palet Halaman" |
3454,7 → 3600,8 |
msgid "Reading Preferences" |
msgstr "Membaca Preferensi" |
msgid "Getting ICC-Profiles" |
#, fuzzy |
msgid "Getting ICC Profiles" |
msgstr "Dapatkan Profil ICC" |
msgid "Init Hyphenator" |
3474,10 → 3621,6 |
msgstr "Inisialisasi Plugin" |
#, fuzzy |
msgid "&Open..." |
msgstr "Buka..." |
#, fuzzy |
msgid "Open &Recent" |
msgstr "Buka Dokumen" |
3490,6 → 3633,9 |
msgid "Save" |
msgstr "Simpan" |
msgid "Save as..." |
msgstr "Simpan sebagai..." |
#, fuzzy |
msgid "Re&vert to Saved" |
msgstr "Kembalikan seperti semula" |
3559,17 → 3705,21 |
msgstr "Keluar" |
#, fuzzy |
msgid "&Undo" |
msgstr "Batal" |
msgid "Select &All" |
msgstr "Pilih semua" |
#, fuzzy |
msgid "C&lear" |
msgid "Cut" |
msgstr "Cut" |
msgid "Copy" |
msgstr "Salin" |
msgid "Paste" |
msgstr "Tempel" |
msgid "Clear" |
msgstr "Bersihkan" |
#, fuzzy |
msgid "Select &All" |
msgstr "Pilih semua" |
msgid "Select all" |
msgstr "Pilih semua" |
3651,10 → 3801,6 |
msgstr "Edit Frame" |
#, fuzzy |
msgid "&Shape" |
msgstr "Bentuk" |
#, fuzzy |
msgid "&Attach Text to Path" |
msgstr "Masukkan Teks ke Path" |
3703,7 → 3849,7 |
msgstr "Terapkan Template..." |
#, fuzzy |
msgid "&Manage Guides..." |
msgid "Manage &Guides..." |
msgstr "Atur Pemandu..." |
msgid "Manage Guides..." |
4042,6 → 4188,10 |
msgstr "Manual Scribus" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Tingkat Kegelapan:" |
#, fuzzy |
msgid "Hide Baseline Grid" |
msgstr "Sembunyikan Grid" |
4322,13 → 4472,15 |
msgstr "" |
#, fuzzy |
msgid "PDF-Tools" |
msgstr "Tampilkan Alat PDF" |
msgid "PDF Tools" |
msgstr "Alat bantu" |
msgid "Insert PDF-Fields" |
#, fuzzy |
msgid "Insert PDF Fields" |
msgstr "Masukkan Field-PDF" |
msgid "Insert PDF-Annotations" |
#, fuzzy |
msgid "Insert PDF Annotations" |
msgstr "Masukkan Anotasi PDF" |
#, fuzzy |
4335,52 → 4487,67 |
msgid "Manage Tabulators" |
msgstr "Manajemen Gambar" |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "F&ill Color Settings" |
msgstr "Warna Isian:" |
msgid "Forced" |
msgstr "Paksakan" |
#, fuzzy |
msgid "&Stroke Color Settings" |
msgstr "Warna Baru" |
msgid "Block" |
msgstr "Blok" |
#, fuzzy |
msgid "&Character Settings" |
msgstr "Pengaturan Karakter" |
msgid "Right" |
msgstr "Kanan" |
#, fuzzy |
msgid "Kerning:" |
msgstr "Peringatan" |
msgid "Center" |
msgstr "Tengah" |
#, fuzzy |
msgid "St&yle Settings" |
msgstr "Pengaturan" |
msgid "Left" |
msgstr "Kiri" |
#, fuzzy |
msgid "&Font Settings" |
msgstr "Pengaturan" |
#, fuzzy |
msgid "Save to File..." |
msgstr "Simpan sebagai PDF..." |
msgid "Font of selected text" |
msgstr "Batalkan Hapus obyek" |
msgid "Load from File..." |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "Save Document" |
msgid "&Reload Text from Frame" |
msgstr "Masukkan Teks ke Path" |
#, fuzzy |
msgid "&Save to File..." |
msgstr "Simpan sebagai PDF..." |
#, fuzzy |
msgid "&Load from File..." |
msgstr "Simpan sebagai PDF..." |
#, fuzzy |
msgid "Save &Document" |
msgstr "Dokumen Baru" |
msgid "Update Text Frame and Exit" |
msgstr "" |
#, fuzzy |
msgid "&Update Text Frame and Exit" |
msgstr "Frame Teks" |
#, fuzzy |
msgid "Exit Without Updating Text Frame" |
msgid "&Exit Without Updating Text Frame" |
msgstr "Keluar tanpa Simpan" |
#, fuzzy |
msgid "Insert Special..." |
msgid "&Insert Special..." |
msgstr "Masukkan Spesial" |
#, fuzzy |
msgid "Edit Styles..." |
msgstr "Edit Gaya" |
#, fuzzy |
msgid "Update Text Frame" |
msgid "&Update Text Frame" |
msgstr "Frame Teks" |
msgid "Current Paragraph:" |
4434,27 → 4601,43 |
msgid "Stroke Shade" |
msgstr "" |
msgid "Left" |
msgstr "Kiri" |
msgid "Center" |
msgstr "Tengah" |
msgid "Right" |
msgstr "Kanan" |
msgid "Block" |
msgstr "Blok" |
msgid "Forced" |
msgstr "Paksakan" |
#, fuzzy |
msgid "Replace with:" |
msgstr "Gantikan dengan:" |
msgid "Whole Word" |
msgstr "" |
#, fuzzy |
msgid "&Whole Word" |
msgstr "Kata Terpendek:" |
msgid "Ignore Case" |
msgid "&Ignore Case" |
msgstr "" |
#, fuzzy |
msgid "Replace" |
msgstr "Penggantian" |
msgid "&Search" |
msgstr "Cari" |
#, fuzzy |
msgid "Replace All" |
msgid "&Replace" |
msgstr "Penggantian" |
#, fuzzy |
msgid "Leave" |
msgstr "Level" |
msgid "Replace &All" |
msgstr "Penggantian" |
msgid "Search finished" |
msgstr "" |
4487,6 → 4670,39 |
msgid "Other..." |
msgstr "Lainnya..." |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Perintah:" |
#, fuzzy |
msgid "&Position:" |
msgstr "Uraian:" |
#, fuzzy |
msgid "First &Line:" |
msgstr "Baris Pertama:" |
#, fuzzy |
msgid "Ind&ent:" |
msgstr "Indentasi Kiri:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Hapus" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Hapus Warna" |
msgid "" |
"<h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ " |
"toolkit for multiplatform GUI & application development.</p><p>Qt " |
4632,14 → 4848,6 |
msgstr "" |
#, fuzzy |
msgid "&Yes" |
msgstr "Ya" |
#, fuzzy |
msgid "&No" |
msgstr "Tidak" |
#, fuzzy |
msgid "New Folder 1" |
msgstr "Buat Folder Baru" |
4684,10 → 4892,6 |
msgid "Select All" |
msgstr "Pilih semua" |
#, fuzzy |
msgid "&Redo" |
msgstr "Redo" |
msgid "Line up" |
msgstr "" |
4793,38 → 4997,6 |
msgid "Number of Columns:" |
msgstr "Jumlah salinan:" |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Perintah:" |
#, fuzzy |
msgid "Position:" |
msgstr "Uraian:" |
msgid "First Line:" |
msgstr "Baris Pertama:" |
#, fuzzy |
msgid "Indent:" |
msgstr "Indentasi Kiri:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Hapus" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Hapus Warna" |
msgid "Distances" |
msgstr "Jarak" |
4840,6 → 5012,10 |
msgid "Length:" |
msgstr "Panjang:" |
#, fuzzy |
msgid "Position:" |
msgstr "Uraian:" |
msgid "Here you can add, change or remove Color-Stops." |
msgstr "" |
5004,10 → 5180,6 |
msgid "&Theme:" |
msgstr "Tema" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Ukuran Font:" |
msgid "Units" |
msgstr "Satuan" |
5197,10 → 5369,6 |
msgstr "Profil Sistem" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Lebar Garis:" |
#, fuzzy |
msgid "Mi&nimum:" |
msgstr "minimum" |
5213,10 → 5381,6 |
msgstr "Langkah:" |
#, fuzzy |
msgid "&Free Scaling" |
msgstr "Skala Bebas" |
#, fuzzy |
msgid "&Horizontal Scaling:" |
msgstr "Skala Horisontal" |
5232,18 → 5396,10 |
msgstr "" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Warna Isian:" |
#, fuzzy |
msgid "Corn&ers:" |
msgstr "Sudut:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Rotasi:" |
#, fuzzy |
msgid "Conve&x Polygon" |
msgstr "Poligon Cembung" |
5328,6 → 5484,9 |
msgid "Clip to Page &Margins" |
msgstr "Sembunyikan Garis Tepi" |
msgid "Apply &Under Color Removal" |
msgstr "" |
msgid "" |
"Choose the default window decoration and looks.\n" |
"Scribus inherits any available KDE or Qt themes" |
5627,6 → 5786,9 |
msgid "&Display CMYK" |
msgstr "Tampilan" |
msgid "&Under Color Removal" |
msgstr "" |
msgid "&C" |
msgstr "" |
5772,19 → 5934,16 |
msgid "Export as Image" |
msgstr "Ekspor Cakupan" |
msgid "Export to directory:" |
msgstr "" |
msgid "Alt+C" |
msgstr "" |
#, fuzzy |
msgid "Image type:" |
msgstr "Gambar:" |
msgid "&Export to Directory:" |
msgstr "Pilih Direktori" |
#, fuzzy |
msgid "Quality :" |
msgstr "Keluar" |
msgid "Image &Type:" |
msgstr "Gambar:" |
msgid "%" |
msgstr "" |
6034,6 → 6193,74 |
msgid "Save as &Template..." |
msgstr "Simpan Teks..." |
#~ msgid "Number of copies:" |
#~ msgstr "Jumlah salinan:" |
#~ msgid "Face:" |
#~ msgstr "Bentuk:" |
#~ msgid "Fill Color:" |
#~ msgstr "Warna Isian:" |
#~ msgid "Load..." |
#~ msgstr "Muatkan..." |
#~ msgid "Redo" |
#~ msgstr "Redo" |
#~ msgid "Edit" |
#~ msgstr "Edit" |
#~ msgid "Template:" |
#~ msgstr "Template:" |
#~ msgid "Shape" |
#~ msgstr "Bentuk" |
#~ msgid "Height:" |
#~ msgstr "Tinggi:" |
#~ msgid "Columns:" |
#~ msgstr "Kolom:" |
#~ msgid "Bottom:" |
#~ msgstr "Bawah:" |
#~ msgid "Left:" |
#~ msgstr "Kiri:" |
#~ msgid "Right:" |
#~ msgstr "Kanan:" |
#~ msgid "Font Size:" |
#~ msgstr "Ukuran Font:" |
#~ msgid "Free Scaling" |
#~ msgstr "Skala Bebas" |
#~ msgid "Use ICC-Profile" |
#~ msgstr "Gunakan Profil ICC" |
#, fuzzy |
#~ msgid "&Manage Guides..." |
#~ msgstr "Atur Pemandu..." |
#, fuzzy |
#~ msgid "PDF-Tools" |
#~ msgstr "Tampilkan Alat PDF" |
#, fuzzy |
#~ msgid "Edit Styles..." |
#~ msgstr "Edit Gaya" |
#, fuzzy |
#~ msgid "Leave" |
#~ msgstr "Level" |
#, fuzzy |
#~ msgid "Quality :" |
#~ msgstr "Keluar" |
#~ msgid "From page:" |
#~ msgstr "Dari halaman:" |
6351,9 → 6578,6 |
#~ msgid "Scaling" |
#~ msgstr "Skala" |
#~ msgid "Character Settings" |
#~ msgstr "Pengaturan Karakter" |
#~ msgid "Edit Polygon" |
#~ msgstr "Edit Poligon" |
6387,9 → 6611,6 |
#~ msgid "Hide Bookmarks" |
#~ msgstr "Sembunyikan Bookmark" |
#~ msgid "Rotation" |
#~ msgstr "Rotasi" |
#~ msgid "by:" |
#~ msgstr "oleh:" |
/trunk/Scribus/scribus/po/scribus.es_ES.po |
---|
177,7 → 177,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus.es_ES\n" |
"POT-Creation-Date: 2004-07-19 23:24+0200\n" |
"POT-Creation-Date: 2004-07-28 23:12+0200\n" |
"PO-Revision-Date: 2002-09-22 21:20+0200\n" |
"Last-Translator: \n" |
"Language-Team: <ca@li.org>\n" |
194,9 → 194,6 |
msgid "Horizontal" |
msgstr "Horizontal" |
msgid "between:" |
msgstr "entre:" |
msgid "Left Sides" |
msgstr "Lados izquierdos" |
206,13 → 203,20 |
msgid "Right Sides" |
msgstr "Lados derechos" |
msgid "Don't change" |
msgstr "No cambies" |
#, fuzzy |
msgid "&Between:" |
msgstr "entre:" |
msgid "Displacement" |
#, fuzzy |
msgid "A&lign" |
msgstr "Alineación" |
#, fuzzy |
msgid "Di&splacement" |
msgstr "Desplazamiento" |
msgid "Distribute evenly" |
#, fuzzy |
msgid "Distribute &Evenly" |
msgstr "Distribuye equitativamente" |
msgid "Vertical" |
224,7 → 228,23 |
msgid "Bottom Sides" |
msgstr "Lados inferiores" |
msgid " pts" |
#, fuzzy |
msgid "Bet&ween:" |
msgstr "entre:" |
#, fuzzy |
msgid "Do &Not Change" |
msgstr "No cambies" |
#, fuzzy |
msgid "Al&ign" |
msgstr "Alineación" |
#, fuzzy |
msgid "Dis&placement" |
msgstr "Desplazamiento" |
msgid " pt" |
msgstr "" |
msgid " mm" |
237,6 → 257,10 |
msgstr "" |
#, fuzzy |
msgid "Distribute E&venly" |
msgstr "Distribuye equitativamente" |
#, fuzzy |
msgid "&OK" |
msgstr "Bien" |
281,7 → 305,8 |
msgid "Text" |
msgstr "Texto" |
msgid "Font for use with PDF-1.3:" |
#, fuzzy |
msgid "Font for use with PDF 1.3:" |
msgstr "Fuente a usar para PDF-1.3:" |
msgid "Border" |
507,9 → 532,6 |
msgid "X-Pos:" |
msgstr "Pos X Local:" |
msgid " pt" |
msgstr "" |
#, fuzzy |
msgid "Y-Pos:" |
msgstr "Pos Y Local:" |
628,7 → 650,8 |
msgid "Cancel" |
msgstr "Cancelar" |
msgid "Flag is ignored for PDF-1.3" |
#, fuzzy |
msgid "Flag is ignored for PDF 1.3" |
msgstr "Flag ignorado por PDF-1.3" |
#, fuzzy |
653,7 → 676,7 |
msgstr "Cambio Selección" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgid "PDF Documents (*.pdf);;All Files (*)" |
msgstr "Documentos (*.scd);; Todos los ficheros (*)" |
msgid "Annotation Properties" |
668,6 → 691,10 |
msgid "External Web-Link" |
msgstr "" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgstr "Documentos (*.scd);; Todos los ficheros (*)" |
msgid "Apply Template" |
msgstr "Aplicar Plantilla" |
867,7 → 894,11 |
msgstr "Editar color" |
#, fuzzy |
msgid "Color Model" |
msgid "&Name:" |
msgstr "Nombre:" |
#, fuzzy |
msgid "Color &Model" |
msgstr "Tipos de colores" |
msgid "CMYK" |
1352,24 → 1383,30 |
msgid "Advanced Options" |
msgstr "Opciones del Fichero" |
msgid "Mirror Page(s) horizontal" |
msgid "Mirror Page(s) &Horizontal" |
msgstr "" |
msgid "Mirror Page(s) vertical" |
msgid "Mirror Page(s) &Vertical" |
msgstr "" |
msgid "Appy Under Color &Removal" |
msgstr "" |
#, fuzzy |
msgid "Apply ICC-Profiles" |
msgid "Apply &ICC Profiles" |
msgstr "Perfiles del Sistema" |
msgid "PostScript Level 3" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &1" |
msgstr "Vertical" |
msgid "PostScript Level 2" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &2" |
msgstr "Vertical" |
msgid "PostScript Level 1" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &3" |
msgstr "Vertical" |
msgid "Creates PostScript Level 3" |
msgstr "" |
1387,7 → 1424,8 |
msgid "Setup Printer" |
msgstr "Configuración de la impresora" |
msgid "Print destination" |
#, fuzzy |
msgid "Print Destination" |
msgstr "Destinación de la impresión" |
msgid "File" |
1394,30 → 1432,39 |
msgstr "Fichero" |
#, fuzzy |
msgid "Options..." |
msgid "&Options..." |
msgstr "Opciones" |
msgid "File:" |
#, fuzzy |
msgid "&File:" |
msgstr "Fichero:" |
#, fuzzy |
msgid "Alternative Printer Command" |
msgid "C&hange..." |
msgstr "Cambiar..." |
#, fuzzy |
msgid "A<ernative Printer Command" |
msgstr "Imprimir con otro Comando" |
msgid "Command:" |
#, fuzzy |
msgid "Co&mmand:" |
msgstr "Comando:" |
msgid "Range:" |
#, fuzzy |
msgid "Range" |
msgstr "Intervalo:" |
msgid "Print all" |
#, fuzzy |
msgid "Print &All" |
msgstr "Imprimir todo" |
#, fuzzy |
msgid "Print current page" |
msgid "Print Current Pa&ge" |
msgstr "Imprimir el intervalo" |
msgid "Print range" |
#, fuzzy |
msgid "Print &Range" |
msgstr "Imprimir el intervalo" |
msgid "" |
1426,13 → 1473,16 |
"a range of pages or a single page number." |
msgstr "" |
msgid "Number of copies:" |
#, fuzzy |
msgid "N&umber of Copies:" |
msgstr "Número de copias:" |
msgid "Print Normal" |
#, fuzzy |
msgid "Print &Normal" |
msgstr "Impresión normal" |
msgid "Print Separations" |
#, fuzzy |
msgid "Print &Separations" |
msgstr "Imprimir separaciones" |
msgid "All" |
1452,16 → 1502,20 |
msgid "Black" |
msgstr "Bloque" |
msgid "Print in color if available" |
#, fuzzy |
msgid "Pr&int In Color If Available" |
msgstr "Imprimir en color si está disponible" |
msgid "Print in grayscale" |
#, fuzzy |
msgid "Print In Gra&yscale" |
msgstr "Imprimir en escala de grises" |
msgid "Advanced Options..." |
msgstr "" |
#, fuzzy |
msgid "Ad&vanced Options..." |
msgstr "Opciones del Fichero" |
msgid "Print" |
#, fuzzy |
msgid "&Print" |
msgstr "Imprimir" |
msgid "Save as" |
1477,45 → 1531,54 |
msgid "Character" |
msgstr "Carácter" |
msgid "Face:" |
msgstr "Cara:" |
#, fuzzy |
msgid "&Font:" |
msgstr "&Fuente" |
#, fuzzy |
msgid "Si&ze:" |
msgstr "Tamaño:" |
#, fuzzy |
msgid "Effect:" |
msgstr "Efectos" |
#, fuzzy |
msgid "Alignment:" |
msgid "&Alignment:" |
msgstr "Alineación" |
msgid "Drop Caps" |
msgid "&Drop Caps" |
msgstr "" |
#, fuzzy |
msgid "Lines:" |
msgid "&Lines:" |
msgstr "Linea" |
msgid "Fill Color:" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Color de relleno:" |
#, fuzzy |
msgid "Stroke Color:" |
msgid "St&roke Color:" |
msgstr "Nuevo color:" |
msgid "Vertical Spaces" |
msgstr "Espaciado vertical" |
msgid "Adjust to Baseline Grid" |
msgstr "" |
#, fuzzy |
msgid "Adjust to Baseline &Grid" |
msgstr "Ocultar las guías" |
#, fuzzy |
msgid "Line Spacing:" |
msgid "Line &Spacing:" |
msgstr "Espaciado de linea" |
msgid "Above:" |
#, fuzzy |
msgid "Abo&ve:" |
msgstr "Superior:" |
msgid "Below:" |
#, fuzzy |
msgid "&Below:" |
msgstr "Inferior:" |
msgid "Tabulators and Indentation" |
1577,41 → 1640,53 |
msgid "Editor" |
msgstr "Editar" |
msgid "Save as..." |
#, fuzzy |
msgid "&Open..." |
msgstr "Abrir..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Guardar como..." |
msgid "Load..." |
msgstr "Carga..." |
msgid "Save and Exit" |
#, fuzzy |
msgid "&Save and Exit" |
msgstr "Guardar y Salir" |
msgid "Exit without Saving" |
#, fuzzy |
msgid "&Exit without Saving" |
msgstr "Salir sin Guardar" |
msgid "Undo" |
#, fuzzy |
msgid "&Undo" |
msgstr "Deshacer" |
msgid "Redo" |
#, fuzzy |
msgid "&Redo" |
msgstr "Rehacer" |
msgid "Cut" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Cortar" |
msgid "Copy" |
#, fuzzy |
msgid "&Copy" |
msgstr "Copiar" |
msgid "Paste" |
#, fuzzy |
msgid "&Paste" |
msgstr "Pegar" |
msgid "Clear" |
#, fuzzy |
msgid "C&lear" |
msgstr "Limpiar" |
msgid "Get Field Names" |
#, fuzzy |
msgid "&Get Field Names" |
msgstr "Conseguir nombre de los campos" |
msgid "Edit" |
msgstr "Editar" |
#, fuzzy |
msgid "&File" |
msgstr "Fichero" |
#, fuzzy |
msgid "Javascripts (*.js);;All Files (*)" |
1669,10 → 1744,6 |
msgstr "" |
#, fuzzy |
msgid "C&hange..." |
msgstr "Cambiar..." |
#, fuzzy |
msgid "A&dd..." |
msgstr "Añadir..." |
1690,15 → 1761,27 |
msgstr "Nodos" |
#, fuzzy |
msgid "Absolute Coordinates" |
msgid "&Absolute Coordinates" |
msgstr "Colormetrage Absoluto" |
#, fuzzy |
msgid "Edit Contour Line" |
msgid "&X-Pos:" |
msgstr "Pos X Local:" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Pos Y Local:" |
#, fuzzy |
msgid "Edit &Contour Line" |
msgstr "Editar color" |
#, fuzzy |
msgid "End Editing" |
msgid "&Reset Contour Line" |
msgstr "Reinicia Puntos de Control" |
#, fuzzy |
msgid "&End Editing" |
msgstr "Fin de edición del marco" |
#, fuzzy |
1718,11 → 1801,11 |
msgstr "Borrar nodo" |
#, fuzzy |
msgid "Move Control Points independently" |
msgid "Move Control Points Independently" |
msgstr "Reinicia Puntos de Control" |
#, fuzzy |
msgid "Move Control Points symmetrical" |
msgid "Move Control Points Symmetrical" |
msgstr "Reinicia Puntos de Control" |
msgid "Reset Control Points" |
1732,42 → 1815,58 |
msgid "Reset this Control Point" |
msgstr "Reinicia este Punto de Control" |
msgid "Opens a Polygon or cuts a Bezier Curve" |
#, fuzzy |
msgid "Open a Polygon or Cuts a Bezier Curve" |
msgstr "Abre un Polígono o corta una Curva Bézier" |
msgid "Closes this Bezier Curve" |
#, fuzzy |
msgid "Close this Bezier Curve" |
msgstr "Cierra esta Curva Bézier" |
msgid "Mirrors the Path Horizontally" |
msgid "Mirror the Path Horizontally" |
msgstr "" |
msgid "Mirrors the Path Vertically" |
msgid "Mirror the Path Vertically" |
msgstr "" |
msgid "Shears the Path horizontal to the right" |
msgid "Shear the Path Horizontally to the Rright" |
msgstr "" |
msgid "Shears the Path horizontal to the left" |
msgid "Shear the Path Horizontally to the Left" |
msgstr "" |
msgid "Shears the Path vertical up" |
msgid "Shear the Path Vertically Up" |
msgstr "" |
msgid "Shears the Path vertical down" |
msgid "Shear the Path Vertically Down" |
msgstr "" |
msgid "Rotates the Path counter-clockwise" |
msgid "Rotate the Path Counter-Clockwise" |
msgstr "" |
msgid "Rotates the Path clockwise" |
msgid "Rotate the Path Clockwise" |
msgstr "" |
msgid "Reduce the Size of the Path by 10%" |
msgid "Reduce the Size of the Path by shown %" |
msgstr "" |
msgid "Enlarges the Size of the Path by 10%" |
msgid "Enlarge the Size of the Path by shown %" |
msgstr "" |
#, fuzzy |
msgid "Angle of Rotation" |
msgstr "Rotación:" |
#, c-format |
msgid "% to Enlarge or Reduce By" |
msgstr "" |
msgid "Activate Contour Line Editing Mode" |
msgstr "" |
msgid "Reset the Contour Line to the Original Shape of the Frame" |
msgstr "" |
msgid "" |
"When checked use Coordinates relative to the Page,\n" |
"otherwise Coordinates are relative to the Object." |
1782,10 → 1881,6 |
msgstr "Vuelta horizontal" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Pos Y Local:" |
#, fuzzy |
msgid "&Add" |
msgstr "Añadir..." |
1798,10 → 1893,6 |
msgstr "Espaciado vertical" |
#, fuzzy |
msgid "&X-Pos:" |
msgstr "Pos X Local:" |
#, fuzzy |
msgid "A&dd" |
msgstr "Añadir..." |
1863,11 → 1954,12 |
msgid "Insert Page" |
msgstr "Insertar página" |
msgid "Inserting" |
#, fuzzy |
msgid "&Inserting" |
msgstr "Insertando" |
#, fuzzy |
msgid "page(s)" |
msgid "Page(s)" |
msgstr "Página(s)" |
msgid "before Page" |
1880,15 → 1972,14 |
msgid "at End" |
msgstr "Al final" |
msgid "Inserting" |
msgstr "Insertando" |
#, fuzzy |
msgid "Template (Left Page):" |
msgid "&Template (Left Page):" |
msgstr "Plantilla para esta página:" |
#, fuzzy |
msgid "Template:" |
msgstr "Nueva Plantilla" |
#, fuzzy |
msgid "Template (Right Page):" |
msgstr "Plantilla para esta página:" |
1908,7 → 1999,8 |
msgid "&Close" |
msgstr "Cerrar" |
msgid "New Script:" |
#, fuzzy |
msgid "&New Script:" |
msgstr "Script nuevo:" |
msgid "New Script" |
1918,6 → 2010,14 |
msgid "Do you really want do delete this Script?" |
msgstr "¿Realmente quiere borrar este Estilo?" |
#, fuzzy |
msgid "&No" |
msgstr "No" |
#, fuzzy |
msgid "&Yes" |
msgstr "Sí" |
msgid "Manage Keyboard Shortcuts" |
msgstr "Administrar Atajos de Teclado" |
2057,19 → 2157,30 |
msgid "Move Page(s):" |
msgstr "Mover página(s):" |
msgid "X, Y, Z" |
msgid "X, Y, &Z" |
msgstr "" |
msgid "Shape" |
#, fuzzy |
msgid "&Shape" |
msgstr "Figura" |
msgid "Image" |
#, fuzzy |
msgid "&Text" |
msgstr "Texto" |
#, fuzzy |
msgid "&Image" |
msgstr "Imagen" |
msgid "Line" |
#, fuzzy |
msgid "&Line" |
msgstr "Linea" |
#, fuzzy |
msgid "&Colors" |
msgstr "Colores" |
#, fuzzy |
msgid "Name" |
msgstr "Nombre:" |
2076,10 → 2187,16 |
msgid "Geometry" |
msgstr "" |
msgid "Height:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Ancho:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Altura:" |
msgid "Rotation:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Rotación:" |
#, fuzzy |
2090,27 → 2207,16 |
msgstr "" |
#, fuzzy |
msgid "Text flows around frame" |
msgstr "Texto alrededor de la caja" |
msgid "Use Bounding Box" |
msgstr "" |
#, fuzzy |
msgid "Use Contour Line" |
msgstr "Reinicia Puntos de Control" |
#, fuzzy |
msgid "Shape:" |
msgstr "Figura" |
#, fuzzy |
msgid "Edit Shape..." |
msgid "&Edit Shape..." |
msgstr "Editar..." |
#, fuzzy |
msgid "" |
"Round\n" |
"R&ound\n" |
"Corners:" |
msgstr "Esquinas:" |
2118,26 → 2224,31 |
msgid "Distance of Text" |
msgstr "Distancia desde Curva:" |
msgid "Columns:" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Columnas:" |
msgid "Gap:" |
msgid "&Gap:" |
msgstr "" |
msgid "Top:" |
#, fuzzy |
msgid "To&p:" |
msgstr "Superior:" |
msgid "Bottom:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Inferior:" |
msgid "Left:" |
#, fuzzy |
msgid "&Left:" |
msgstr "Izquierda:" |
msgid "Right:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Derecha:" |
#, fuzzy |
msgid "Tabulators..." |
msgid "T&abulators..." |
msgstr "Plantillas..." |
#, fuzzy |
2153,7 → 2264,19 |
msgid "Distance from Curve:" |
msgstr "Distancia desde Curva:" |
msgid "Font Size:" |
#, fuzzy |
msgid "Text &Flows Around Frame" |
msgstr "Texto alrededor de la caja" |
msgid "Use &Bounding Box" |
msgstr "" |
#, fuzzy |
msgid "&Use Contour Line" |
msgstr "Reinicia Puntos de Control" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Cuerpo fuente:" |
#, fuzzy |
2161,37 → 2284,42 |
msgstr "Scripts Propios" |
#, fuzzy |
msgid "Kerning:" |
msgid "&Kerning:" |
msgstr "Alerta" |
#, fuzzy |
msgid "Language:" |
msgstr "Intervalo:" |
msgid "L&ine Spacing:" |
msgstr "Espaciado de linea" |
msgid "Free Scaling" |
msgstr "Escalado Libre" |
#, fuzzy |
msgid "St&yle:" |
msgstr "Estilo" |
#, fuzzy |
msgid "X-Pos.:" |
msgstr "Coor. X:" |
msgid "Lan&guage:" |
msgstr "Intervalo:" |
#, fuzzy |
msgid "Y-Pos.:" |
msgstr "Coor. Y:" |
msgid "&Free Scaling" |
msgstr "Escalado Libre" |
#, fuzzy |
msgid "X-Scale:" |
msgid "X-Sc&ale:" |
msgstr "Escalar como:" |
#, fuzzy |
msgid "Y-Scale:" |
msgid "Y-Scal&e:" |
msgstr "Escalar como:" |
#, fuzzy |
msgid "Scale to Frame Size" |
msgid "Scale &To Frame Size" |
msgstr "Escalar Imagen al tamaño del marco" |
#, fuzzy |
msgid "P&roportional" |
msgstr "Proporcional" |
#, fuzzy |
msgid "Input Profile:" |
msgstr "Perfil Entrada:" |
2205,15 → 2333,18 |
msgid "End Points" |
msgstr "Final Segm:" |
msgid "Type of Line:" |
msgstr "" |
#, fuzzy |
msgid "&Basepoint:" |
msgstr "Basada en:" |
msgid "Line Width:" |
#, fuzzy |
msgid "T&ype of Line:" |
msgstr "Perfiles del Sistema" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Ancho de linea:" |
msgid "Edges:" |
msgstr "Aristas:" |
#, fuzzy |
msgid "Miter Join" |
msgstr "Juntas Mitradas" |
2226,8 → 2357,9 |
msgid "Round Join" |
msgstr "Juntas Redondeadas" |
msgid "Endings:" |
msgstr "Final Segm:" |
#, fuzzy |
msgid "Ed&ges:" |
msgstr "Aristas:" |
#, fuzzy |
msgid "Flat Cap" |
2241,6 → 2373,10 |
msgid "Round Cap" |
msgstr "Encapsulado Redondeado" |
#, fuzzy |
msgid "&Endings:" |
msgstr "Final Segm:" |
msgid "No Style" |
msgstr "No hay Estilo" |
2451,7 → 2587,20 |
msgid "Rendering intent for the image" |
msgstr "Intentos Renderizar:" |
msgid "&X1:" |
msgstr "" |
msgid "X&2:" |
msgstr "" |
msgid "Y&1:" |
msgstr "" |
#, fuzzy |
msgid "&Y2:" |
msgstr "Sí" |
#, fuzzy |
msgid "Column width" |
msgstr "Columnas de las guías" |
2473,6 → 2622,9 |
msgid "p" |
msgstr "" |
msgid "Line Width:" |
msgstr "Ancho de linea:" |
msgid " pt " |
msgstr "" |
2532,14 → 2684,6 |
msgstr "Orientación:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Ancho:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Altura:" |
#, fuzzy |
msgid "&Facing Pages" |
msgstr "Páginas enfrentadas" |
2551,22 → 2695,10 |
msgstr "Márgenes de las guías" |
#, fuzzy |
msgid "&Left:" |
msgstr "Izquierda:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Derecha:" |
#, fuzzy |
msgid "&Top:" |
msgstr "Superior:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Inferior:" |
#, fuzzy |
msgid "F&irst Page Number:" |
msgstr "Primer NúmPágina:" |
2595,13 → 2727,6 |
msgid "Column Guides" |
msgstr "Columnas de las guías" |
msgid "&Gap:" |
msgstr "" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Columnas:" |
msgid "Document page size, either a standard size or a custom size" |
msgstr "" |
2677,10 → 2802,6 |
msgstr "Mover aquí" |
#, fuzzy |
msgid "&Paste" |
msgstr "Pegar" |
#, fuzzy |
msgid "Show &Margins" |
msgstr "Mostrar los márgenes" |
2895,14 → 3016,6 |
msgstr "Convertir a" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Cortar" |
#, fuzzy |
msgid "&Copy" |
msgstr "Copiar" |
#, fuzzy |
msgid "C&lear Contents" |
msgstr "Contenidos" |
2926,6 → 3039,12 |
msgid "Copy of" |
msgstr "Copiar de " |
msgid "Image" |
msgstr "Imagen" |
msgid "Line" |
msgstr "Linea" |
msgid "Polygon" |
msgstr "Polígono" |
3250,7 → 3369,7 |
msgstr "Colores Sólidos:" |
#, fuzzy |
msgid "Use ICC-Profile" |
msgid "Use ICC Profile" |
msgstr "Perfiles del Sistema" |
#, fuzzy |
3264,10 → 3383,6 |
msgid "Images:" |
msgstr "Imágenes:" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Perfiles del Sistema" |
msgid "Don't use embedded ICC profiles" |
msgstr "" |
3442,6 → 3557,15 |
"Choose Printer when printing to a true 4 color CMYK printer." |
msgstr "" |
msgid "" |
"This is an advanced setting which is not enabled by default. This should " |
"only be enabled\n" |
"when specifically requested by your printer and they have given you the " |
"exact details needed.\n" |
"Otherwise, your exported PDF may not print properly and is truly not " |
"portable across systems." |
msgstr "" |
msgid "Embed a color profile for solid colors" |
msgstr "" |
3509,6 → 3633,9 |
msgid "Path" |
msgstr "Camino" |
msgid "Print" |
msgstr "Imprimir" |
msgid "Status" |
msgstr "Estado" |
3527,6 → 3654,9 |
msgid "Corners:" |
msgstr "Esquinas:" |
msgid "Rotation:" |
msgstr "Rotación:" |
msgid "Convex Polygon" |
msgstr "Polígono Convexo" |
3548,10 → 3678,6 |
msgstr "Carga..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Guardar como..." |
#, fuzzy |
msgid "&Small" |
msgstr "Pequeño" |
3564,10 → 3690,6 |
msgstr "Página" |
#, fuzzy |
msgid "&File" |
msgstr "Fichero" |
#, fuzzy |
msgid "&Preview" |
msgstr "Previsualizar" |
3659,6 → 3781,9 |
msgid "Javascripts..." |
msgstr "Java Script" |
msgid "Undo" |
msgstr "Deshacer" |
msgid "Show Page Palette" |
msgstr "Mostrar Paleta Página" |
3672,8 → 3797,9 |
msgid "Reading Preferences" |
msgstr "Preferencias" |
msgid "Getting ICC-Profiles" |
msgstr "" |
#, fuzzy |
msgid "Getting ICC Profiles" |
msgstr "Perfiles del Sistema" |
msgid "Init Hyphenator" |
msgstr "" |
3693,10 → 3819,6 |
msgstr "" |
#, fuzzy |
msgid "&Open..." |
msgstr "Abrir..." |
#, fuzzy |
msgid "Open &Recent" |
msgstr "Abrir un documento" |
3709,6 → 3831,9 |
msgid "Save" |
msgstr "Guardar" |
msgid "Save as..." |
msgstr "Guardar como..." |
#, fuzzy |
msgid "Re&vert to Saved" |
msgstr "Revertir al guardado" |
3777,17 → 3902,21 |
msgstr "Salir" |
#, fuzzy |
msgid "&Undo" |
msgstr "Deshacer" |
msgid "Select &All" |
msgstr "Seleccionar todo" |
#, fuzzy |
msgid "C&lear" |
msgid "Cut" |
msgstr "Cortar" |
msgid "Copy" |
msgstr "Copiar" |
msgid "Paste" |
msgstr "Pegar" |
msgid "Clear" |
msgstr "Limpiar" |
#, fuzzy |
msgid "Select &All" |
msgstr "Seleccionar todo" |
msgid "Select all" |
msgstr "Seleccionar todo" |
3869,10 → 3998,6 |
msgstr "Editar marco" |
#, fuzzy |
msgid "&Shape" |
msgstr "Figura" |
#, fuzzy |
msgid "&Attach Text to Path" |
msgstr "Adjuntar Texto al Trazado" |
3921,7 → 4046,7 |
msgstr "Aplicar Plantillas..." |
#, fuzzy |
msgid "&Manage Guides..." |
msgid "Manage &Guides..." |
msgstr "Márgenes de las guías" |
#, fuzzy |
4264,6 → 4389,10 |
msgid "Scribus Manual" |
msgstr "Manual del Scribus" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Intensidad:" |
msgid "Hide Baseline Grid" |
msgstr "" |
4550,13 → 4679,15 |
msgstr "" |
#, fuzzy |
msgid "PDF-Tools" |
msgid "PDF Tools" |
msgstr "Herramientas" |
msgid "Insert PDF-Fields" |
#, fuzzy |
msgid "Insert PDF Fields" |
msgstr "Insertar campos PDF" |
msgid "Insert PDF-Annotations" |
#, fuzzy |
msgid "Insert PDF Annotations" |
msgstr "Insertar anotaciones PDF" |
#, fuzzy |
4563,52 → 4694,67 |
msgid "Manage Tabulators" |
msgstr "Administrar imágenes" |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "F&ill Color Settings" |
msgstr "Color de relleno:" |
msgid "Forced" |
msgstr "Forzado" |
#, fuzzy |
msgid "&Stroke Color Settings" |
msgstr "Mostrar colores" |
msgid "Block" |
msgstr "Bloque" |
#, fuzzy |
msgid "&Character Settings" |
msgstr "Carácteres" |
msgid "Right" |
msgstr "Derecha" |
#, fuzzy |
msgid "Kerning:" |
msgstr "Alerta" |
msgid "Center" |
msgstr "Centro" |
#, fuzzy |
msgid "St&yle Settings" |
msgstr "Configuración del ratón" |
msgid "Left" |
msgstr "Izquierda" |
#, fuzzy |
msgid "&Font Settings" |
msgstr "Configuración del ratón" |
#, fuzzy |
msgid "Save to File..." |
msgstr "Guardar como PDF..." |
msgid "Font of selected text" |
msgstr "Deshacer borrar objeto" |
msgid "Load from File..." |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "Save Document" |
msgid "&Reload Text from Frame" |
msgstr "Adjuntar Texto al Trazado" |
#, fuzzy |
msgid "&Save to File..." |
msgstr "Guardar como PDF..." |
#, fuzzy |
msgid "&Load from File..." |
msgstr "Guardar como PDF..." |
#, fuzzy |
msgid "Save &Document" |
msgstr "Nuevo documento" |
msgid "Update Text Frame and Exit" |
msgstr "" |
#, fuzzy |
msgid "&Update Text Frame and Exit" |
msgstr "Marco Texto" |
#, fuzzy |
msgid "Exit Without Updating Text Frame" |
msgid "&Exit Without Updating Text Frame" |
msgstr "Salir sin Guardar" |
#, fuzzy |
msgid "Insert Special..." |
msgid "&Insert Special..." |
msgstr "Insertar..." |
#, fuzzy |
msgid "Edit Styles..." |
msgstr "Editar Estilos" |
#, fuzzy |
msgid "Update Text Frame" |
msgid "&Update Text Frame" |
msgstr "Marco Texto" |
msgid "Current Paragraph:" |
4662,26 → 4808,42 |
msgid "Stroke Shade" |
msgstr "" |
msgid "Left" |
msgstr "Izquierda" |
msgid "Center" |
msgstr "Centro" |
msgid "Right" |
msgstr "Derecha" |
msgid "Block" |
msgstr "Bloque" |
msgid "Forced" |
msgstr "Forzado" |
#, fuzzy |
msgid "Replace with:" |
msgstr "Reemplazar con:" |
msgid "Whole Word" |
msgid "&Whole Word" |
msgstr "" |
msgid "Ignore Case" |
msgid "&Ignore Case" |
msgstr "" |
#, fuzzy |
msgid "Replace" |
msgid "&Search" |
msgstr "Buscar" |
#, fuzzy |
msgid "&Replace" |
msgstr "Reemplazar con:" |
msgid "Replace All" |
msgstr "" |
#, fuzzy |
msgid "Leave" |
msgstr "Guardar" |
msgid "Replace &All" |
msgstr "Reemplazar con:" |
msgid "Search finished" |
msgstr "" |
4714,6 → 4876,39 |
msgid "Other..." |
msgstr "Otro..." |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Comando:" |
#, fuzzy |
msgid "&Position:" |
msgstr "Descripción:" |
#, fuzzy |
msgid "First &Line:" |
msgstr "Primera linea:" |
#, fuzzy |
msgid "Ind&ent:" |
msgstr "Sangría Izquierda:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Borrar" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Borrar color" |
msgid "" |
"<h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ " |
"toolkit for multiplatform GUI & application development.</p><p>Qt " |
4858,14 → 5053,6 |
msgstr "" |
#, fuzzy |
msgid "&Yes" |
msgstr "Sí" |
#, fuzzy |
msgid "&No" |
msgstr "No" |
#, fuzzy |
msgid "New Folder 1" |
msgstr "Nuevo color" |
4910,10 → 5097,6 |
msgstr "Seleccionar todo" |
#, fuzzy |
msgid "&Redo" |
msgstr "Rehacer" |
#, fuzzy |
msgid "Line up" |
msgstr "Linea" |
5022,38 → 5205,6 |
msgid "Number of Columns:" |
msgstr "Número de copias:" |
msgid "Full Stop" |
msgstr "" |
#, fuzzy |
msgid "Comma" |
msgstr "Comando:" |
#, fuzzy |
msgid "Position:" |
msgstr "Descripción:" |
msgid "First Line:" |
msgstr "Primera linea:" |
#, fuzzy |
msgid "Indent:" |
msgstr "Sangría Izquierda:" |
#, fuzzy |
msgid "Delete All" |
msgstr "Borrar" |
msgid "Indentation for first line of the paragraph" |
msgstr "" |
msgid "Indentation from the left for the whole paragraph" |
msgstr "" |
#, fuzzy |
msgid "Delete all Tabulators" |
msgstr "Borrar color" |
msgid "Distances" |
msgstr "Distancias" |
5069,6 → 5220,10 |
msgid "Length:" |
msgstr "Longitud:" |
#, fuzzy |
msgid "Position:" |
msgstr "Descripción:" |
msgid "Here you can add, change or remove Color-Stops." |
msgstr "" |
5232,10 → 5387,6 |
msgid "&Theme:" |
msgstr "Nueva Plantilla" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Cuerpo fuente:" |
msgid "Units" |
msgstr "Unidades" |
5428,10 → 5579,6 |
msgstr "Perfiles del Sistema" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Ancho de linea:" |
#, fuzzy |
msgid "Mi&nimum:" |
msgstr "mínimo" |
5444,10 → 5591,6 |
msgstr "Secuencia:" |
#, fuzzy |
msgid "&Free Scaling" |
msgstr "Escalado Libre" |
#, fuzzy |
msgid "&Horizontal Scaling:" |
msgstr "Escalado horizontal" |
5464,18 → 5607,10 |
msgstr "Mantener el aspecto actual" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Color de relleno:" |
#, fuzzy |
msgid "Corn&ers:" |
msgstr "Esquinas:" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Rotación:" |
#, fuzzy |
msgid "Conve&x Polygon" |
msgstr "Polígono Convexo" |
5554,6 → 5689,9 |
msgid "Clip to Page &Margins" |
msgstr "Ocultar los márgenes" |
msgid "Apply &Under Color Removal" |
msgstr "" |
msgid "" |
"Choose the default window decoration and looks.\n" |
"Scribus inherits any available KDE or Qt themes" |
5850,6 → 5988,9 |
msgid "&Display CMYK" |
msgstr "Visualizar" |
msgid "&Under Color Removal" |
msgstr "" |
msgid "&C" |
msgstr "" |
5994,19 → 6135,16 |
msgid "Export as Image" |
msgstr "Exportar Rango" |
msgid "Export to directory:" |
msgstr "" |
msgid "Alt+C" |
msgstr "" |
#, fuzzy |
msgid "Image type:" |
msgstr "Imágenes:" |
msgid "&Export to Directory:" |
msgstr "Dirección:" |
#, fuzzy |
msgid "Quality :" |
msgstr "Salir" |
msgid "Image &Type:" |
msgstr "Imágenes:" |
msgid "%" |
msgstr "" |
6252,6 → 6390,84 |
msgid "Save as &Template..." |
msgstr "Guardar el texto..." |
#~ msgid "Number of copies:" |
#~ msgstr "Número de copias:" |
#~ msgid "Face:" |
#~ msgstr "Cara:" |
#~ msgid "Fill Color:" |
#~ msgstr "Color de relleno:" |
#~ msgid "Load..." |
#~ msgstr "Carga..." |
#~ msgid "Redo" |
#~ msgstr "Rehacer" |
#~ msgid "Edit" |
#~ msgstr "Editar" |
#, fuzzy |
#~ msgid "Template:" |
#~ msgstr "Nueva Plantilla" |
#~ msgid "Shape" |
#~ msgstr "Figura" |
#~ msgid "Height:" |
#~ msgstr "Altura:" |
#~ msgid "Columns:" |
#~ msgstr "Columnas:" |
#~ msgid "Bottom:" |
#~ msgstr "Inferior:" |
#~ msgid "Left:" |
#~ msgstr "Izquierda:" |
#~ msgid "Right:" |
#~ msgstr "Derecha:" |
#~ msgid "Font Size:" |
#~ msgstr "Cuerpo fuente:" |
#~ msgid "Free Scaling" |
#~ msgstr "Escalado Libre" |
#, fuzzy |
#~ msgid "X-Pos.:" |
#~ msgstr "Coor. X:" |
#, fuzzy |
#~ msgid "Y-Pos.:" |
#~ msgstr "Coor. Y:" |
#, fuzzy |
#~ msgid "Use ICC-Profile" |
#~ msgstr "Perfiles del Sistema" |
#, fuzzy |
#~ msgid "&Manage Guides..." |
#~ msgstr "Márgenes de las guías" |
#, fuzzy |
#~ msgid "PDF-Tools" |
#~ msgstr "Herramientas" |
#, fuzzy |
#~ msgid "Edit Styles..." |
#~ msgstr "Editar Estilos" |
#, fuzzy |
#~ msgid "Leave" |
#~ msgstr "Guardar" |
#, fuzzy |
#~ msgid "Quality :" |
#~ msgstr "Salir" |
#~ msgid "From page:" |
#~ msgstr "De la página:" |
/trunk/Scribus/scribus/po/scribus.ru.ts |
---|
195,35 → 195,35 |
</message> |
<message> |
<source>Mirror Page(s) horizontal</source> |
<translation>Зеркалировать по горизонтали</translation> |
<translation type="obsolete">Зеркалировать по горизонтали</translation> |
</message> |
<message> |
<source>Mirror Page(s) vertical</source> |
<translation>Зеркалировать по вертикали</translation> |
<translation type="obsolete">Зеркалировать по вертикали</translation> |
</message> |
<message> |
<source>Apply ICC-Profiles</source> |
<translation>Применить ICC-профили</translation> |
<translation type="obsolete">Применить ICC-профили</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>PostScript Level 3</source> |
<translation>PostScript Level 3</translation> |
<translation type="obsolete">PostScript Level 3</translation> |
</message> |
<message> |
<source>PostScript Level 2</source> |
<translation>PostScript Level 2</translation> |
<translation type="obsolete">PostScript Level 2</translation> |
</message> |
<message> |
<source>PostScript Level 1</source> |
<translation>PostScript Level 1</translation> |
<translation type="obsolete">PostScript Level 1</translation> |
</message> |
<message> |
<source>Creates PostScript Level 3</source> |
241,6 → 241,42 |
<translation>Создать только PostScript Level 1 |
Осторожно! Файл может получиться огромным.</translation> |
</message> |
<message> |
<source>Mirror Page(s) &Horizontal</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Mirror Page(s) &Vertical</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Appy Under Color &Removal</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Apply &ICC Profiles</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>PostScript Level &1</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>PostScript Level &2</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>PostScript Level &3</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>Align</name> |
258,7 → 294,7 |
</message> |
<message> |
<source>between:</source> |
<translation>между:</translation> |
<translation type="obsolete">между:</translation> |
</message> |
<message> |
<source>Left Sides</source> |
274,15 → 310,15 |
</message> |
<message> |
<source>Don't change</source> |
<translation>Не изменять</translation> |
<translation type="obsolete">Не изменять</translation> |
</message> |
<message> |
<source>Displacement</source> |
<translation>Смещение</translation> |
<translation type="obsolete">Смещение</translation> |
</message> |
<message> |
<source>Distribute evenly</source> |
<translation>Распределить равномерно</translation> |
<translation type="obsolete">Распределить равномерно</translation> |
</message> |
<message> |
<source>Vertical</source> |
298,7 → 334,7 |
</message> |
<message> |
<source> pts</source> |
<translation>pts</translation> |
<translation type="obsolete">pts</translation> |
</message> |
<message> |
<source> mm</source> |
336,6 → 372,46 |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
<message> |
<source>&Between:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>A&lign</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Di&splacement</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Distribute &Evenly</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Bet&ween:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Do &Not Change</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Al&ign</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Dis&placement</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source> pt</source> |
<translation type="unfinished">pt</translation> |
</message> |
<message> |
<source>Distribute E&venly</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
408,7 → 484,7 |
</message> |
<message> |
<source>Font for use with PDF-1.3:</source> |
<translation>Шрифт для PDF-1.3:</translation> |
<translation type="obsolete">Шрифт для PDF-1.3:</translation> |
</message> |
<message> |
<source>Border</source> |
864,7 → 940,7 |
</message> |
<message> |
<source>Flag is ignored for PDF-1.3</source> |
<translation>Флажок игнорируется в PDF-1.3</translation> |
<translation type="obsolete">Флажок игнорируется в PDF-1.3</translation> |
</message> |
<message> |
<source>Enter a comma separated list of fields here</source> |
893,8 → 969,20 |
</message> |
<message> |
<source>PDF-Documents (*.pdf);;All Files (*)</source> |
<translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
<translation type="obsolete">PDF-документы (*.pdf);;Все файлы (*)</translation> |
</message> |
<message> |
<source>Font for use with PDF 1.3:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Flag is ignored for PDF 1.3</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>PDF Documents (*.pdf);;All Files (*)</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
1082,7 → 1170,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Имя:</translation> |
<translation type="obsolete">Имя:</translation> |
</message> |
<message> |
<source>New Entry</source> |
1146,6 → 1234,10 |
<source>&Preview</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>BookMView</name> |
1447,11 → 1539,11 |
</message> |
<message> |
<source>Name:</source> |
<translation>Имя:</translation> |
<translation type="obsolete">Имя:</translation> |
</message> |
<message> |
<source>Color Model</source> |
<translation>Цветовая модель</translation> |
<translation type="obsolete">Цветовая модель</translation> |
</message> |
<message> |
<source>CMYK</source> |
1479,7 → 1571,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>C:</source> |
1533,6 → 1625,22 |
<source>HSV-Colormap</source> |
<translation>Карта цветов HSV</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Color &Model</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>Cpalette</name> |
1717,11 → 1825,11 |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>This panel displays various CUPS options when printing. |
1731,6 → 1839,14 |
Missing library support is indicated by a *</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>CustomFDialog</name> |
1800,12 → 1916,20 |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>DmF</name> |
2030,7 → 2154,7 |
</message> |
<message> |
<source>Print destination</source> |
<translation>Куда печатать</translation> |
<translation type="obsolete">Куда печатать</translation> |
</message> |
<message> |
<source>File</source> |
2038,27 → 2162,27 |
</message> |
<message> |
<source>Options...</source> |
<translation>Параметры...</translation> |
<translation type="obsolete">Параметры...</translation> |
</message> |
<message> |
<source>File:</source> |
<translation>Файл:</translation> |
<translation type="obsolete">Файл:</translation> |
</message> |
<message> |
<source>Change...</source> |
<translation>Изменить...</translation> |
<translation type="obsolete">Изменить...</translation> |
</message> |
<message> |
<source>Alternative Printer Command</source> |
<translation>Альтернативная команда для принтера</translation> |
<translation type="obsolete">Альтернативная команда для принтера</translation> |
</message> |
<message> |
<source>Command:</source> |
<translation>Команда:</translation> |
<translation type="obsolete">Команда:</translation> |
</message> |
<message> |
<source>Range:</source> |
<translation>Диапазон:</translation> |
<translation type="obsolete">Диапазон:</translation> |
</message> |
<message> |
<source>To page:</source> |
2070,11 → 2194,11 |
</message> |
<message> |
<source>Print range</source> |
<translation>Диапазон печати</translation> |
<translation type="obsolete">Диапазон печати</translation> |
</message> |
<message> |
<source>Print all</source> |
<translation>Напечатать все</translation> |
<translation type="obsolete">Напечатать все</translation> |
</message> |
<message> |
<source>Print last page first</source> |
2086,7 → 2210,7 |
</message> |
<message> |
<source>Number of copies:</source> |
<translation>Количество копий:</translation> |
<translation type="obsolete">Количество копий:</translation> |
</message> |
<message> |
<source>Options</source> |
2094,11 → 2218,11 |
</message> |
<message> |
<source>Print Normal</source> |
<translation>Печатать обычным образом</translation> |
<translation type="obsolete">Печатать обычным образом</translation> |
</message> |
<message> |
<source>Print Separations</source> |
<translation>Напечатать цветоделения</translation> |
<translation type="obsolete">Напечатать цветоделения</translation> |
</message> |
<message> |
<source>All</source> |
2106,19 → 2230,19 |
</message> |
<message> |
<source>Print in color if available</source> |
<translation>В цвете, если возможно</translation> |
<translation type="obsolete">В цвете, если возможно</translation> |
</message> |
<message> |
<source>Print in grayscale</source> |
<translation>В оттенках серого</translation> |
<translation type="obsolete">В оттенках серого</translation> |
</message> |
<message> |
<source>Advanced Options...</source> |
<translation>Дополнительные параметры</translation> |
<translation type="obsolete">Дополнительные параметры</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>Save as</source> |
2146,11 → 2270,11 |
</message> |
<message> |
<source>Print</source> |
<translation>Печать</translation> |
<translation type="obsolete">Печать</translation> |
</message> |
<message> |
<source>Print current page</source> |
<translation>Напечатать текущую страницу</translation> |
<translation type="obsolete">Напечатать текущую страницу</translation> |
</message> |
<message> |
<source>Insert a comma separated list of tokens where |
2158,6 → 2282,78 |
a range of pages or a single page number.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print Destination</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Options...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&File:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>A&lternative Printer Command</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Co&mmand:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Range</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print &All</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print Current Pa&ge</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print &Range</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>N&umber of Copies:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print &Normal</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print &Separations</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Pr&int In Color If Available</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Print In Gra&yscale</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Ad&vanced Options...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Print</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>EPSPlug</name> |
2182,7 → 2378,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Имя:</translation> |
<translation type="obsolete">Имя:</translation> |
</message> |
<message> |
<source>Character</source> |
2190,7 → 2386,7 |
</message> |
<message> |
<source>Face:</source> |
<translation>Вид:</translation> |
<translation type="obsolete">Вид:</translation> |
</message> |
<message> |
<source> pt</source> |
2198,7 → 2394,7 |
</message> |
<message> |
<source>Size:</source> |
<translation>Кегль:</translation> |
<translation type="obsolete">Кегль:</translation> |
</message> |
<message> |
<source>Vertical Spaces</source> |
2210,11 → 2406,11 |
</message> |
<message> |
<source>Above:</source> |
<translation>Над:</translation> |
<translation type="obsolete">Над:</translation> |
</message> |
<message> |
<source>Below:</source> |
<translation>Под:</translation> |
<translation type="obsolete">Под:</translation> |
</message> |
<message> |
<source>OK</source> |
2222,7 → 2418,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>Warning</source> |
2234,11 → 2430,11 |
</message> |
<message> |
<source>Drop Caps</source> |
<translation>Буквица</translation> |
<translation type="obsolete">Буквица</translation> |
</message> |
<message> |
<source>Lines:</source> |
<translation>Строк:</translation> |
<translation type="obsolete">Строк:</translation> |
</message> |
<message> |
<source>Effect:</source> |
2246,15 → 2442,15 |
</message> |
<message> |
<source>Alignment:</source> |
<translation>Выравнивание:</translation> |
<translation type="obsolete">Выравнивание:</translation> |
</message> |
<message> |
<source>Fill Color:</source> |
<translation>Цвет заливки:</translation> |
<translation type="obsolete">Цвет заливки:</translation> |
</message> |
<message> |
<source>Stroke Color:</source> |
<translation>Цвет штриха:</translation> |
<translation type="obsolete">Цвет штриха:</translation> |
</message> |
<message> |
<source>None</source> |
2262,7 → 2458,7 |
</message> |
<message> |
<source>Adjust to Baseline Grid</source> |
<translation>Подстроить под опорную сетку</translation> |
<translation type="obsolete">Подстроить под опорную сетку</translation> |
</message> |
<message> |
<source> mm</source> |
2323,8 → 2519,64 |
</message> |
<message> |
<source>Line Spacing:</source> |
<translation>Между строками:</translation> |
<translation type="obsolete">Между строками:</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Font:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Si&ze:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Alignment:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Drop Caps</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Lines:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>F&ill Color:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>St&roke Color:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Adjust to Baseline &Grid</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Line &Spacing:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Abo&ve:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Below:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>Editor</name> |
2334,64 → 2586,120 |
</message> |
<message> |
<source>New</source> |
<translation>Новый</translation> |
<translation type="obsolete">Новый</translation> |
</message> |
<message> |
<source>Save as...</source> |
<translation>Сохранить как...</translation> |
<translation type="obsolete">Сохранить как...</translation> |
</message> |
<message> |
<source>Load...</source> |
<translation>Загрузить...</translation> |
<translation type="obsolete">Загрузить...</translation> |
</message> |
<message> |
<source>Save and Exit</source> |
<translation>Сохранить и выйти</translation> |
<translation type="obsolete">Сохранить и выйти</translation> |
</message> |
<message> |
<source>Exit without Saving</source> |
<translation>Выйти без сохранения</translation> |
<translation type="obsolete">Выйти без сохранения</translation> |
</message> |
<message> |
<source>Undo</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>Redo</source> |
<translation>Возвратить</translation> |
<translation type="obsolete">Возвратить</translation> |
</message> |
<message> |
<source>Cut</source> |
<translation>Вырезать</translation> |
<translation type="obsolete">Вырезать</translation> |
</message> |
<message> |
<source>Copy</source> |
<translation>Скопировать</translation> |
<translation type="obsolete">Скопировать</translation> |
</message> |
<message> |
<source>Paste</source> |
<translation>Вставить</translation> |
<translation type="obsolete">Вставить</translation> |
</message> |
<message> |
<source>Clear</source> |
<translation>Очистить</translation> |
<translation type="obsolete">Очистить</translation> |
</message> |
<message> |
<source>Get Field Names</source> |
<translation>Получить имена полей</translation> |
<translation type="obsolete">Получить имена полей</translation> |
</message> |
<message> |
<source>File</source> |
<translation>Файл</translation> |
<translation type="obsolete">Файл</translation> |
</message> |
<message> |
<source>Edit</source> |
<translation>Правка</translation> |
<translation type="obsolete">Правка</translation> |
</message> |
<message> |
<source>Javascripts (*.js);;All Files (*)</source> |
<translation>Javascripts (*.js);;Все файлы (*)</translation> |
</message> |
<message> |
<source>&New</source> |
<translation type="unfinished">&Новый</translation> |
</message> |
<message> |
<source>&Open...</source> |
<translation type="unfinished">&Открыть...</translation> |
</message> |
<message> |
<source>Save &As...</source> |
<translation type="unfinished">Сохранить &как</translation> |
</message> |
<message> |
<source>&Save and Exit</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Exit without Saving</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Undo</source> |
<translation type="unfinished">&Отменить</translation> |
</message> |
<message> |
<source>&Redo</source> |
<translation type="unfinished">Пов&торить</translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation type="unfinished">&Вырезать</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation type="unfinished">Вст&авить</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation type="unfinished">О&чистить</translation> |
</message> |
<message> |
<source>&Get Field Names</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&File</source> |
<translation type="unfinished">&Файл</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation type="unfinished">&Правка</translation> |
</message> |
</context> |
<context> |
<name>ExportForm</name> |
2401,11 → 2709,11 |
</message> |
<message> |
<source>Export to directory:</source> |
<translation>Экспортировать в каталог:</translation> |
<translation type="obsolete">Экспортировать в каталог:</translation> |
</message> |
<message> |
<source>&Change...</source> |
<translation>&Изменить...</translation> |
<translation type="obsolete">&Изменить...</translation> |
</message> |
<message> |
<source>Alt+C</source> |
2413,11 → 2721,11 |
</message> |
<message> |
<source>Image type:</source> |
<translation>Тип изображения:</translation> |
<translation type="obsolete">Тип изображения:</translation> |
</message> |
<message> |
<source>Quality :</source> |
<translation>Качество :</translation> |
<translation type="obsolete">Качество :</translation> |
</message> |
<message> |
<source>%</source> |
2425,7 → 2733,7 |
</message> |
<message> |
<source>Size:</source> |
<translation>Размер:</translation> |
<translation type="obsolete">Размер:</translation> |
</message> |
<message> |
<source>Export </source> |
2515,6 → 2823,26 |
<source>Choose a Export Directory</source> |
<translation>Выберите каталог для экспорта</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Export to Directory:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Image &Type:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Quality:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>FDialogPreview</name> |
2648,7 → 2976,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Имя:</translation> |
<translation type="obsolete">Имя:</translation> |
</message> |
<message> |
<source>Choose a Name</source> |
2698,6 → 3026,10 |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>FontPrefs</name> |
3077,7 → 3409,7 |
</message> |
<message> |
<source>page(s)</source> |
<translation>страниц(а)</translation> |
<translation type="obsolete">страниц(а)</translation> |
</message> |
<message> |
<source>before Page</source> |
3093,11 → 3425,11 |
</message> |
<message> |
<source>Template (Left Page):</source> |
<translation>Шаблон (Левая страница):</translation> |
<translation type="obsolete">Шаблон (Левая страница):</translation> |
</message> |
<message> |
<source>Template:</source> |
<translation>Шаблон:</translation> |
<translation type="obsolete">Шаблон:</translation> |
</message> |
<message> |
<source>Normal</source> |
3109,12 → 3441,36 |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>&Inserting</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Page(s)</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Template (Left Page):</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Template:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>InsertTable</name> |
3167,7 → 3523,7 |
</message> |
<message> |
<source>New Script:</source> |
<translation>Новый сценарий:</translation> |
<translation type="obsolete">Новый сценарий:</translation> |
</message> |
<message> |
<source>Warning</source> |
3179,11 → 3535,11 |
</message> |
<message> |
<source>No</source> |
<translation>Нет</translation> |
<translation type="obsolete">Нет</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Да</translation> |
<translation type="obsolete">Да</translation> |
</message> |
<message> |
<source>&Edit...</source> |
3201,6 → 3557,18 |
<source>&Close</source> |
<translation type="unfinished">&Закрыть</translation> |
</message> |
<message> |
<source>&New Script:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&No</source> |
<translation type="unfinished">&Нет</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation type="unfinished">&Да</translation> |
</message> |
</context> |
<context> |
<name>KeyManager</name> |
3384,11 → 3752,11 |
</message> |
<message> |
<source>No</source> |
<translation>Нет</translation> |
<translation type="obsolete">Нет</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Да</translation> |
<translation type="obsolete">Да</translation> |
</message> |
<message> |
<source>Open</source> |
3438,6 → 3806,14 |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
<message> |
<source>&No</source> |
<translation type="unfinished">&Нет</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation type="unfinished">&Да</translation> |
</message> |
</context> |
<context> |
<name>MSpinBox</name> |
3749,12 → 4125,16 |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation></translation> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>Mpalette</name> |
3764,27 → 4144,27 |
</message> |
<message> |
<source>X, Y, Z</source> |
<translation>X, Y, Z</translation> |
<translation type="obsolete">X, Y, Z</translation> |
</message> |
<message> |
<source>Shape</source> |
<translation>Очертания</translation> |
<translation type="obsolete">Очертания</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Текст</translation> |
<translation type="obsolete">Текст</translation> |
</message> |
<message> |
<source>Image</source> |
<translation>Изображение</translation> |
<translation type="obsolete">Изображение</translation> |
</message> |
<message> |
<source>Line</source> |
<translation>Линия</translation> |
<translation type="obsolete">Линия</translation> |
</message> |
<message> |
<source>Colors</source> |
<translation>Цвета</translation> |
<translation type="obsolete">Цвета</translation> |
</message> |
<message> |
<source>Name</source> |
3796,19 → 4176,19 |
</message> |
<message> |
<source>X-Pos:</source> |
<translation>X-Поз:</translation> |
<translation type="obsolete">X-Поз:</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation>Y-Поз:</translation> |
<translation type="obsolete">Y-Поз:</translation> |
</message> |
<message> |
<source>Width:</source> |
<translation>Ширина:</translation> |
<translation type="obsolete">Ширина:</translation> |
</message> |
<message> |
<source>Height:</source> |
<translation>Высота:</translation> |
<translation type="obsolete">Высота:</translation> |
</message> |
<message> |
<source> pt</source> |
3820,16 → 4200,16 |
</message> |
<message> |
<source>Use Bounding Box</source> |
<translation>Ограничивающий прямоугольник</translation> |
<translation type="obsolete">Ограничивающий прямоугольник</translation> |
</message> |
<message> |
<source>Edit Shape...</source> |
<translation>Изменить очертания...</translation> |
<translation type="obsolete">Изменить очертания...</translation> |
</message> |
<message> |
<source>Round |
Corners:</source> |
<translation>Закруглённые |
<translation type="obsolete">Закруглённые |
углы:</translation> |
</message> |
<message> |
3850,19 → 4230,19 |
</message> |
<message> |
<source>Top:</source> |
<translation>Сверху:</translation> |
<translation type="obsolete">Сверху:</translation> |
</message> |
<message> |
<source>Bottom:</source> |
<translation>Снизу:</translation> |
<translation type="obsolete">Снизу:</translation> |
</message> |
<message> |
<source>Left:</source> |
<translation>Слева:</translation> |
<translation type="obsolete">Слева:</translation> |
</message> |
<message> |
<source>Right:</source> |
<translation>Справа:</translation> |
<translation type="obsolete">Справа:</translation> |
</message> |
<message> |
<source> %</source> |
3874,23 → 4254,23 |
</message> |
<message> |
<source>Kerning:</source> |
<translation>Кернинг:</translation> |
<translation type="obsolete">Кернинг:</translation> |
</message> |
<message> |
<source>Line Spacing:</source> |
<translation>Между строками:</translation> |
<translation type="obsolete">Между строками:</translation> |
</message> |
<message> |
<source>Free Scaling</source> |
<translation>Свободное масштабирование</translation> |
<translation type="obsolete">Свободное масштабирование</translation> |
</message> |
<message> |
<source>Scale to Frame Size</source> |
<translation>Масштабировать до размера рамки</translation> |
<translation type="obsolete">Масштабировать до размера рамки</translation> |
</message> |
<message> |
<source>Proportional</source> |
<translation>Пропорционально</translation> |
<translation type="obsolete">Пропорционально</translation> |
</message> |
<message> |
<source>Input Profile:</source> |
3930,11 → 4310,11 |
</message> |
<message> |
<source>Line Width:</source> |
<translation>Толщина линии:</translation> |
<translation type="obsolete">Толщина линии:</translation> |
</message> |
<message> |
<source>Edges:</source> |
<translation>Края:</translation> |
<translation type="obsolete">Края:</translation> |
</message> |
<message> |
<source>Miter Join</source> |
3950,7 → 4330,7 |
</message> |
<message> |
<source>Endings:</source> |
<translation>Окончания:</translation> |
<translation type="obsolete">Окончания:</translation> |
</message> |
<message> |
<source>Flat Cap</source> |
3986,19 → 4366,19 |
</message> |
<message> |
<source>X1:</source> |
<translation>X1:</translation> |
<translation type="obsolete">X1:</translation> |
</message> |
<message> |
<source>X2:</source> |
<translation>X2:</translation> |
<translation type="obsolete">X2:</translation> |
</message> |
<message> |
<source>Y1:</source> |
<translation>Y1:</translation> |
<translation type="obsolete">Y1:</translation> |
</message> |
<message> |
<source>Y2:</source> |
<translation>Y2:</translation> |
<translation type="obsolete">Y2:</translation> |
</message> |
<message> |
<source>None</source> |
4024,7 → 4404,7 |
</message> |
<message> |
<source>Rotation:</source> |
<translation>Поворот:</translation> |
<translation type="obsolete">Поворот:</translation> |
</message> |
<message> |
<source>Basepoint:</source> |
4032,19 → 4412,19 |
</message> |
<message> |
<source>Columns:</source> |
<translation>Столбцов:</translation> |
<translation type="obsolete">Столбцов:</translation> |
</message> |
<message> |
<source>Gap:</source> |
<translation>Интервал:</translation> |
<translation type="obsolete">Интервал:</translation> |
</message> |
<message> |
<source>Tabulators...</source> |
<translation>Табуляторы...</translation> |
<translation type="obsolete">Табуляторы...</translation> |
</message> |
<message> |
<source>Text flows around frame</source> |
<translation>Текст обтекает рамку</translation> |
<translation type="obsolete">Текст обтекает рамку</translation> |
</message> |
<message> |
<source>Shade:</source> |
4052,23 → 4432,23 |
</message> |
<message> |
<source>Language:</source> |
<translation>Язык:</translation> |
<translation type="obsolete">Язык:</translation> |
</message> |
<message> |
<source>X-Pos.:</source> |
<translation>X-Поз:</translation> |
<translation type="obsolete">X-Поз:</translation> |
</message> |
<message> |
<source>Y-Pos.:</source> |
<translation>Y-Поз:</translation> |
<translation type="obsolete">Y-Поз:</translation> |
</message> |
<message> |
<source>X-Scale:</source> |
<translation>X-Масшт.:</translation> |
<translation type="obsolete">X-Масшт.:</translation> |
</message> |
<message> |
<source>Y-Scale:</source> |
<translation>Y-Масшт.:</translation> |
<translation type="obsolete">Y-Масшт.:</translation> |
</message> |
<message> |
<source>Cell Lines</source> |
4316,7 → 4696,7 |
</message> |
<message> |
<source>Style:</source> |
<translation>Стиль:</translation> |
<translation type="obsolete">Стиль:</translation> |
</message> |
<message> |
<source>Keep the aspect ratio</source> |
4357,16 → 4737,181 |
</message> |
<message> |
<source>Font Size:</source> |
<translation>Кегль шрифта:</translation> |
<translation type="obsolete">Кегль шрифта:</translation> |
</message> |
<message> |
<source>Type of Line:</source> |
<translation>Тип линии:</translation> |
<translation type="obsolete">Тип линии:</translation> |
</message> |
<message> |
<source>Use Contour Line</source> |
<source>X, Y, &Z</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Shape</source> |
<translation type="unfinished">О&чертания</translation> |
</message> |
<message> |
<source>&Text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Image</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Colors</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&X-Pos:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Width:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Height:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Rotation:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Edit Shape...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>R&ound |
Corners:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Colu&mns:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Gap:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>To&p:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Bottom:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Left:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Right:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>T&abulators...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Text &Flows Around Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Use &Bounding Box</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Use Contour Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Font Size:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Kerning:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>L&ine Spacing:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>St&yle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Lan&guage:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Free Scaling</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>X-Sc&ale:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Y-Scal&e:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Scale &To Frame Size</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>P&roportional</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Basepoint:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>T&ype of Line:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Line &Width:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Ed&ges:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Endings:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&X1:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>X&2:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Y&1:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Y2:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>MultiLine</name> |
4416,7 → 4961,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source> pt </source> |
4452,6 → 4997,14 |
<translation>Имя "%1" уже использовано. |
Выберите другое.</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>MusterSeiten</name> |
4485,11 → 5038,11 |
</message> |
<message> |
<source>No</source> |
<translation>Нет</translation> |
<translation type="obsolete">Нет</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Да</translation> |
<translation type="obsolete">Да</translation> |
</message> |
<message> |
<source>Copy of %1</source> |
4535,6 → 5088,18 |
<source>&Close</source> |
<translation type="unfinished">&Закрыть</translation> |
</message> |
<message> |
<source>&No</source> |
<translation type="unfinished">&Нет</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation type="unfinished">&Да</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>NewDoc</name> |
4849,12 → 5414,20 |
</message> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>NodePalette</name> |
4864,19 → 5437,19 |
</message> |
<message> |
<source>Absolute Coordinates</source> |
<translation>Абсолют. координаты</translation> |
<translation type="obsolete">Абсолют. координаты</translation> |
</message> |
<message> |
<source>X-Pos:</source> |
<translation>X-Поз:</translation> |
<translation type="obsolete">X-Поз:</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation>Y-Поз:</translation> |
<translation type="obsolete">Y-Поз:</translation> |
</message> |
<message> |
<source>End Editing</source> |
<translation>Завершить</translation> |
<translation type="obsolete">Завершить</translation> |
</message> |
<message> |
<source>Move Nodes</source> |
4896,11 → 5469,11 |
</message> |
<message> |
<source>Move Control Points independently</source> |
<translation>Переместить контрольные точки независимо</translation> |
<translation type="obsolete">Переместить контрольные точки независимо</translation> |
</message> |
<message> |
<source>Move Control Points symmetrical</source> |
<translation>Переместить контрольные точки симметрично</translation> |
<translation type="obsolete">Переместить контрольные точки симметрично</translation> |
</message> |
<message> |
<source>Reset Control Points</source> |
4912,37 → 5485,37 |
</message> |
<message> |
<source>Opens a Polygon or cuts a Bezier Curve</source> |
<translation>Разомкнуть многоугольник или кривую Безье</translation> |
<translation type="obsolete">Разомкнуть многоугольник или кривую Безье</translation> |
</message> |
<message> |
<source>Closes this Bezier Curve</source> |
<translation>Замкнуть эту кривую Безье</translation> |
<translation type="obsolete">Замкнуть эту кривую Безье</translation> |
</message> |
<message> |
<source>Mirrors the Path Horizontally</source> |
<translation>Зеркально отразить этот |
<translation type="obsolete">Зеркально отразить этот |
контур по горизонтали</translation> |
</message> |
<message> |
<source>Mirrors the Path Vertically</source> |
<translation>Зеркально отразить этот |
<translation type="obsolete">Зеркально отразить этот |
контур по вертикали</translation> |
</message> |
<message> |
<source>Shears the Path horizontal to the right</source> |
<translation>Разрезать контур по горизонтали направо</translation> |
<translation type="obsolete">Разрезать контур по горизонтали направо</translation> |
</message> |
<message> |
<source>Shears the Path horizontal to the left</source> |
<translation>Разрезать контур по горизонтали налево</translation> |
<translation type="obsolete">Разрезать контур по горизонтали налево</translation> |
</message> |
<message> |
<source>Shears the Path vertical up</source> |
<translation>Разрезать контур по вертикали вверх</translation> |
<translation type="obsolete">Разрезать контур по вертикали вверх</translation> |
</message> |
<message> |
<source>Shears the Path vertical down</source> |
<translation>Разрезать контур по вертикали вниз</translation> |
<translation type="obsolete">Разрезать контур по вертикали вниз</translation> |
</message> |
<message> |
<source>When checked use Coordinates relative to the Page, |
4952,24 → 5525,116 |
</message> |
<message> |
<source>Rotates the Path counter-clockwise</source> |
<translation>Вращать контур против часовой стрелки</translation> |
<translation type="obsolete">Вращать контур против часовой стрелки</translation> |
</message> |
<message> |
<source>Rotates the Path clockwise</source> |
<translation>Вращать контур по часовой стрелке</translation> |
<translation type="obsolete">Вращать контур по часовой стрелке</translation> |
</message> |
<message> |
<source>Reduce the Size of the Path by 10%</source> |
<translation>Уменьшить контур на 10%</translation> |
<translation type="obsolete">Уменьшить контур на 10%</translation> |
</message> |
<message> |
<source>Enlarges the Size of the Path by 10%</source> |
<translation>Увеличить контур на 10%</translation> |
<translation type="obsolete">Увеличить контур на 10%</translation> |
</message> |
<message> |
<source>Edit Contour Line</source> |
<source>&Absolute Coordinates</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&X-Pos:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Edit &Contour Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Reset Contour Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&End Editing</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Move Control Points Independently</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Move Control Points Symmetrical</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Open a Polygon or Cuts a Bezier Curve</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Close this Bezier Curve</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Mirror the Path Horizontally</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Mirror the Path Vertically</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Horizontally to the Rright</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Horizontally to the Left</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Vertically Up</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Vertically Down</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Rotate the Path Counter-Clockwise</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Rotate the Path Clockwise</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Reduce the Size of the Path by shown %</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Enlarge the Size of the Path by shown %</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Angle of Rotation</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>% to Enlarge or Reduce By</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Activate Contour Line Editing Mode</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Reset the Contour Line to the Original Shape of the Frame</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>PConsole</name> |
5230,7 → 5895,7 |
</message> |
<message> |
<source>Use ICC-Profile</source> |
<translation>Использовать ICC-профиль</translation> |
<translation type="obsolete">Использовать ICC-профиль</translation> |
</message> |
<message> |
<source>Profile:</source> |
5878,6 → 6543,12 |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>This is an advanced setting which is not enabled by default. This should only be enabled |
when specifically requested by your printer and they have given you the exact details needed. |
Otherwise, your exported PDF may not print properly and is truly not portable across systems.</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>PPreview</name> |
5990,6 → 6661,10 |
<source>&K</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Under Color Removal</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>Page</name> |
6689,7 → 7364,7 |
</message> |
<message> |
<source> pts</source> |
<translation>pts</translation> |
<translation type="obsolete">pts</translation> |
</message> |
<message> |
<source>Units</source> |
7865,6 → 8540,10 |
<source>O&utside:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Apply &Under Color Removal</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>QColorDialog</name> |
8672,12 → 9351,20 |
<name>Query</name> |
<message> |
<source>OK</source> |
<translation>ОК</translation> |
<translation type="obsolete">ОК</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation type="unfinished">&ОК</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation type="unfinished">О&тменить</translation> |
</message> |
</context> |
<context> |
<name>ReformDoc</name> |
8817,6 → 9504,101 |
</message> |
</context> |
<context> |
<name>SToolBAlign</name> |
<message> |
<source>St&yle Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Style of current paragraph</source> |
<translation type="unfinished">Стиль текущего параграфа</translation> |
</message> |
</context> |
<context> |
<name>SToolBColorF</name> |
<message> |
<source>F&ill Color Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>None</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Color of text fill</source> |
<translation type="unfinished">Цвет заполнения текста</translation> |
</message> |
<message> |
<source>Saturation of color of text fill</source> |
<translation type="unfinished">Насыщение цвета заполнения текста</translation> |
</message> |
</context> |
<context> |
<name>SToolBColorS</name> |
<message> |
<source>&Stroke Color Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>None</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Color of text stroke</source> |
<translation type="unfinished">Цвет текстового штриха</translation> |
</message> |
<message> |
<source>Saturation of color of text stroke</source> |
<translation type="unfinished">Насыщение цвета текстового штриха</translation> |
</message> |
</context> |
<context> |
<name>SToolBFont</name> |
<message> |
<source>&Font Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source> pt</source> |
<translation type="unfinished">pt</translation> |
</message> |
<message> |
<source> %</source> |
<translation type="unfinished">%</translation> |
</message> |
<message> |
<source>Font of selected text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Font Size</source> |
<translation type="unfinished">Кегль шрифта</translation> |
</message> |
<message> |
<source>Scaling width of characters</source> |
<translation type="unfinished">Изменяемая ширина символов</translation> |
</message> |
</context> |
<context> |
<name>SToolBStyle</name> |
<message> |
<source>&Character Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Kerning:</source> |
<translation type="unfinished">Кернинг:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation type="unfinished">pt</translation> |
</message> |
<message> |
<source>Manual Kerning</source> |
<translation type="unfinished">Задаваемый кернинг</translation> |
</message> |
</context> |
<context> |
<name>ScriXmlDoc</name> |
<message> |
<source>Background</source> |
8903,7 → 9685,7 |
</message> |
<message> |
<source>Getting ICC-Profiles</source> |
<translation>Получение ICC-профилей</translation> |
<translation type="obsolete">Получение ICC-профилей</translation> |
</message> |
<message> |
<source>Init Hyphenator</source> |
9613,11 → 10395,11 |
</message> |
<message> |
<source>Size:</source> |
<translation>Размер:</translation> |
<translation type="obsolete">Размер:</translation> |
</message> |
<message> |
<source>Shade:</source> |
<translation>Тень:</translation> |
<translation type="obsolete">Тень:</translation> |
</message> |
<message> |
<source>Finnish</source> |
9969,7 → 10751,7 |
</message> |
<message> |
<source>&Manage Guides...</source> |
<translation>Настроить &направляющие...</translation> |
<translation type="obsolete">Настроить &направляющие...</translation> |
</message> |
<message> |
<source>&Fit in Window</source> |
10235,6 → 11017,22 |
<source>Found nothing to import</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Getting ICC Profiles</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Manage &Guides...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Shade:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>ScribusView</name> |
10408,27 → 11206,27 |
</message> |
<message> |
<source>Whole Word</source> |
<translation>Целое слово</translation> |
<translation type="obsolete">Целое слово</translation> |
</message> |
<message> |
<source>Ignore Case</source> |
<translation>Не учитывать регистр</translation> |
<translation type="obsolete">Не учитывать регистр</translation> |
</message> |
<message> |
<source>Search</source> |
<translation>Найти</translation> |
<translation type="obsolete">Найти</translation> |
</message> |
<message> |
<source>Replace</source> |
<translation>Заменить</translation> |
<translation type="obsolete">Заменить</translation> |
</message> |
<message> |
<source>Replace All</source> |
<translation>Заменить все</translation> |
<translation type="obsolete">Заменить все</translation> |
</message> |
<message> |
<source>Leave</source> |
<translation>Оставить</translation> |
<translation type="obsolete">Оставить</translation> |
</message> |
<message> |
<source>Search finished</source> |
10438,6 → 11236,30 |
<source>OK</source> |
<translation>ОК</translation> |
</message> |
<message> |
<source>&Whole Word</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Ignore Case</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Search</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Replace</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Replace &All</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Close</source> |
<translation type="unfinished">&Закрыть</translation> |
</message> |
</context> |
<context> |
<name>SeitenPal</name> |
10537,12 → 11359,16 |
</message> |
<message> |
<source>Shade:</source> |
<translation>Тень:</translation> |
<translation type="obsolete">Тень:</translation> |
</message> |
<message> |
<source>Shade</source> |
<translation>Тень</translation> |
</message> |
<message> |
<source>&Shade:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>Spalette</name> |
10666,27 → 11492,27 |
</message> |
<message> |
<source>Left</source> |
<translation>Влево</translation> |
<translation type="obsolete">Влево</translation> |
</message> |
<message> |
<source>Center</source> |
<translation>По центру</translation> |
<translation type="obsolete">По центру</translation> |
</message> |
<message> |
<source>Right</source> |
<translation>Вправо</translation> |
<translation type="obsolete">Вправо</translation> |
</message> |
<message> |
<source>Block</source> |
<translation>По ширине</translation> |
<translation type="obsolete">По ширине</translation> |
</message> |
<message> |
<source>Forced</source> |
<translation>Принудительно</translation> |
<translation type="obsolete">Принудительно</translation> |
</message> |
<message> |
<source>New</source> |
<translation>Новый</translation> |
<translation type="obsolete">Новый</translation> |
</message> |
<message> |
<source>Save and Exit</source> |
10698,47 → 11524,47 |
</message> |
<message> |
<source>Undo</source> |
<translation>Отменить</translation> |
<translation type="obsolete">Отменить</translation> |
</message> |
<message> |
<source>Redo</source> |
<translation>Возвратить</translation> |
<translation type="obsolete">Возвратить</translation> |
</message> |
<message> |
<source>Cut</source> |
<translation>Вырезать</translation> |
<translation type="obsolete">Вырезать</translation> |
</message> |
<message> |
<source>Copy</source> |
<translation>Скопировать</translation> |
<translation type="obsolete">Скопировать</translation> |
</message> |
<message> |
<source>Paste</source> |
<translation>Вставить</translation> |
<translation type="obsolete">Вставить</translation> |
</message> |
<message> |
<source>Clear</source> |
<translation>Очистить</translation> |
<translation type="obsolete">Очистить</translation> |
</message> |
<message> |
<source>Edit Styles...</source> |
<translation>Изменить стили...</translation> |
<translation type="obsolete">Изменить стили...</translation> |
</message> |
<message> |
<source>File</source> |
<translation>Файл</translation> |
<translation type="obsolete">Файл</translation> |
</message> |
<message> |
<source>Edit</source> |
<translation>Правка</translation> |
<translation type="obsolete">Правка</translation> |
</message> |
<message> |
<source>Style</source> |
<translation>Стиль</translation> |
<translation type="obsolete">Стиль</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Текст</translation> |
<translation type="obsolete">Текст</translation> |
</message> |
<message> |
<source>Warning</source> |
10774,15 → 11600,15 |
</message> |
<message> |
<source>Save to File...</source> |
<translation>Сохранить в файл...</translation> |
<translation type="obsolete">Сохранить в файл...</translation> |
</message> |
<message> |
<source>Load from File...</source> |
<translation>Загрузить из файла...</translation> |
<translation type="obsolete">Загрузить из файла...</translation> |
</message> |
<message> |
<source>Update Text Frame</source> |
<translation>Обновить текстовую рамку</translation> |
<translation type="obsolete">Обновить текстовую рамку</translation> |
</message> |
<message> |
<source>Open</source> |
10798,7 → 11624,7 |
</message> |
<message> |
<source>Insert Special...</source> |
<translation>Вставить символ...</translation> |
<translation type="obsolete">Вставить символ...</translation> |
</message> |
<message> |
<source>Insert Special</source> |
10810,20 → 11636,80 |
</message> |
<message> |
<source>Save Document</source> |
<translation>Сохранить документ</translation> |
<translation type="obsolete">Сохранить документ</translation> |
</message> |
<message> |
<source>Update Text Frame and Exit</source> |
<translation>Обновиь текстовую рамку и выйти</translation> |
<translation type="obsolete">Обновиь текстовую рамку и выйти</translation> |
</message> |
<message> |
<source>Exit Without Updating Text Frame</source> |
<translation>Выйти без обновления текстовой рамки</translation> |
<translation type="obsolete">Выйти без обновления текстовой рамки</translation> |
</message> |
<message> |
<source>&Insert Special</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&New</source> |
<translation type="unfinished">&Новый</translation> |
</message> |
<message> |
<source>&Reload Text from Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Save to File...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Load from File...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Save &Document</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Update Text Frame and Exit</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Exit Without Updating Text Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation type="unfinished">&Вырезать</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation type="unfinished">Вст&авить</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation type="unfinished">О&чистить</translation> |
</message> |
<message> |
<source>&Insert Special...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&Update Text Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>&File</source> |
<translation type="unfinished">&Файл</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation type="unfinished">&Правка</translation> |
</message> |
</context> |
<context> |
<name>StyleSelect</name> |
10899,15 → 11785,15 |
</message> |
<message> |
<source>Position:</source> |
<translation>Положение:</translation> |
<translation type="obsolete">Положение:</translation> |
</message> |
<message> |
<source>First Line:</source> |
<translation>Красная строка:</translation> |
<translation type="obsolete">Красная строка:</translation> |
</message> |
<message> |
<source>Indent:</source> |
<translation>Отступ:</translation> |
<translation type="obsolete">Отступ:</translation> |
</message> |
<message> |
<source>Delete All</source> |
10941,6 → 11827,18 |
<source> p</source> |
<translation>p</translation> |
</message> |
<message> |
<source>&Position:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>First &Line:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Ind&ent:</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>Tree</name> |
11098,7 → 11996,7 |
<name>WerkToolBP</name> |
<message> |
<source>PDF-Tools</source> |
<translation>PDF-инструменты</translation> |
<translation type="obsolete">PDF-инструменты</translation> |
</message> |
<message> |
<source>Button</source> |
11122,7 → 12020,7 |
</message> |
<message> |
<source>Insert PDF-Fields</source> |
<translation>Вставить PDF-поля</translation> |
<translation type="obsolete">Вставить PDF-поля</translation> |
</message> |
<message> |
<source>Text</source> |
11134,8 → 12032,20 |
</message> |
<message> |
<source>Insert PDF-Annotations</source> |
<translation>Вставить PDF-аннотации</translation> |
<translation type="obsolete">Вставить PDF-аннотации</translation> |
</message> |
<message> |
<source>PDF Tools</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Insert PDF Fields</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Insert PDF Annotations</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>ZAuswahl</name> |
/trunk/Scribus/scribus/po/scribus.de.ts |
---|
198,35 → 198,35 |
</message> |
<message> |
<source>Mirror Page(s) horizontal</source> |
<translation>Seite(n) horizontal spiegeln</translation> |
<translation type="obsolete">Seite(n) horizontal spiegeln</translation> |
</message> |
<message> |
<source>Mirror Page(s) vertical</source> |
<translation>Seite(n) vertikal spiegeln</translation> |
<translation type="obsolete">Seite(n) vertikal spiegeln</translation> |
</message> |
<message> |
<source>Apply ICC-Profiles</source> |
<translation>ICC-Profile anwenden</translation> |
<translation type="obsolete">ICC-Profile anwenden</translation> |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>PostScript Level 3</source> |
<translation>PostScript-Level 3</translation> |
<translation type="obsolete">PostScript-Level 3</translation> |
</message> |
<message> |
<source>PostScript Level 2</source> |
<translation>PostScript-Level 2</translation> |
<translation type="obsolete">PostScript-Level 2</translation> |
</message> |
<message> |
<source>PostScript Level 1</source> |
<translation>PostScript-Level 1</translation> |
<translation type="obsolete">PostScript-Level 1</translation> |
</message> |
<message> |
<source>Creates PostScript Level 3</source> |
244,6 → 244,42 |
<translation>Erstellt eine PostScript-Level 1 Datei. Vorsicht: |
hierbei können sehr große Dateien entstehen</translation> |
</message> |
<message> |
<source>Mirror Page(s) &Horizontal</source> |
<translation>Seiten &horizontal spiegeln</translation> |
</message> |
<message> |
<source>Mirror Page(s) &Vertical</source> |
<translation>Seiten &vertikal spiegeln</translation> |
</message> |
<message> |
<source>Appy Under Color &Removal</source> |
<translation>Unterfarben&reduktion anwenden</translation> |
</message> |
<message> |
<source>Apply &ICC Profiles</source> |
<translation>&ICC-Profile anwenden</translation> |
</message> |
<message> |
<source>PostScript Level &1</source> |
<translation>PostScript-Level &1</translation> |
</message> |
<message> |
<source>PostScript Level &2</source> |
<translation>PostScript-Level &2</translation> |
</message> |
<message> |
<source>PostScript Level &3</source> |
<translation>PostScript-Level &3</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>Align</name> |
261,7 → 297,7 |
</message> |
<message> |
<source>between:</source> |
<translation>zwischen:</translation> |
<translation type="obsolete">zwischen:</translation> |
</message> |
<message> |
<source>Left Sides</source> |
277,15 → 313,15 |
</message> |
<message> |
<source>Don't change</source> |
<translation>Nicht ändern</translation> |
<translation type="obsolete">Nicht ändern</translation> |
</message> |
<message> |
<source>Displacement</source> |
<translation>Versatz</translation> |
<translation type="obsolete">Versatz</translation> |
</message> |
<message> |
<source>Distribute evenly</source> |
<translation>Gleichmäßig verteilen</translation> |
<translation type="obsolete">Gleichmäßig verteilen</translation> |
</message> |
<message> |
<source>Vertical</source> |
301,7 → 337,7 |
</message> |
<message> |
<source> pts</source> |
<translation>pts</translation> |
<translation type="obsolete">pts</translation> |
</message> |
<message> |
<source> mm</source> |
339,6 → 375,46 |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
<message> |
<source>&Between:</source> |
<translation>&zwischen:</translation> |
</message> |
<message> |
<source>A&lign</source> |
<translation>&Ausrichten</translation> |
</message> |
<message> |
<source>Di&splacement</source> |
<translation>&Versatz</translation> |
</message> |
<message> |
<source>Distribute &Evenly</source> |
<translation>&Gleichmäßig verteilen</translation> |
</message> |
<message> |
<source>Bet&ween:</source> |
<translation>&zwischen:</translation> |
</message> |
<message> |
<source>Do &Not Change</source> |
<translation>&Nicht verändern</translation> |
</message> |
<message> |
<source>Al&ign</source> |
<translation>&Ausrichten</translation> |
</message> |
<message> |
<source>Dis&placement</source> |
<translation>&Versatz</translation> |
</message> |
<message> |
<source>Distribute E&venly</source> |
<translation>&Gleichmäßig verteilen</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
395,7 → 471,7 |
</message> |
<message> |
<source>Font for use with PDF-1.3:</source> |
<translation>Schriftart für PDF-1.3:</translation> |
<translation type="obsolete">Schriftart für PDF-1.3:</translation> |
</message> |
<message> |
<source>Border</source> |
759,7 → 835,7 |
</message> |
<message> |
<source>Flag is ignored for PDF-1.3</source> |
<translation>In PDF-1.3 nicht benutzbar</translation> |
<translation type="obsolete">In PDF-1.3 nicht benutzbar</translation> |
</message> |
<message> |
<source>Enter a comma separated list of fields here</source> |
791,7 → 867,7 |
</message> |
<message> |
<source>PDF-Documents (*.pdf);;All Files (*)</source> |
<translation>PDF-Dateien (*.pdf);;Alle Dateien (*)</translation> |
<translation type="obsolete">PDF-Dateien (*.pdf);;Alle Dateien (*)</translation> |
</message> |
<message> |
<source>Button</source> |
901,6 → 977,18 |
<source>Custom</source> |
<translation>Benutzerdefiniert</translation> |
</message> |
<message> |
<source>Font for use with PDF 1.3:</source> |
<translation>Schriftart für PDF 1.3:</translation> |
</message> |
<message> |
<source>Flag is ignored for PDF 1.3</source> |
<translation>Wird von PDF 1.3 ignoriert</translation> |
</message> |
<message> |
<source>PDF Documents (*.pdf);;All Files (*)</source> |
<translation>PDF-Dateien (*.pdf);;Alle Dateien (*)</translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
1088,7 → 1176,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Name:</translation> |
<translation type="obsolete">Name:</translation> |
</message> |
<message> |
<source>New Entry</source> |
1152,6 → 1240,10 |
<source>&Preview</source> |
<translation>Vor&schau</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
</context> |
<context> |
<name>BookMView</name> |
1446,11 → 1538,11 |
</message> |
<message> |
<source>Name:</source> |
<translation>Name:</translation> |
<translation type="obsolete">Name:</translation> |
</message> |
<message> |
<source>Color Model</source> |
<translation>Farbmodell</translation> |
<translation type="obsolete">Farbmodell</translation> |
</message> |
<message> |
<source>CMYK</source> |
1478,7 → 1570,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>C:</source> |
1536,6 → 1628,22 |
<source>HSV-Colormap</source> |
<translation>HSV-Farbwähler</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>Color &Model</source> |
<translation>Farb&modell</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>Cpalette</name> |
1724,11 → 1832,11 |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>This panel displays various CUPS options when printing. |
1742,6 → 1850,14 |
Dabei stehen die Zeichen für C=CUPS, C-LittleCMS und T=TIFF. |
Fehlende Bibliotheken werden durch ein Sternchen angezeigt</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>CustomFDialog</name> |
1819,12 → 1935,20 |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>DmF</name> |
2056,7 → 2180,7 |
</message> |
<message> |
<source>Print destination</source> |
<translation>Ziel</translation> |
<translation type="obsolete">Ziel</translation> |
</message> |
<message> |
<source>File</source> |
2064,27 → 2188,27 |
</message> |
<message> |
<source>Options...</source> |
<translation>Optionen...</translation> |
<translation type="obsolete">Optionen...</translation> |
</message> |
<message> |
<source>File:</source> |
<translation>Datei:</translation> |
<translation type="obsolete">Datei:</translation> |
</message> |
<message> |
<source>Change...</source> |
<translation>Ändern...</translation> |
<translation type="obsolete">Ändern...</translation> |
</message> |
<message> |
<source>Alternative Printer Command</source> |
<translation>Anderer Druckbefehl</translation> |
<translation type="obsolete">Anderer Druckbefehl</translation> |
</message> |
<message> |
<source>Command:</source> |
<translation>Befehl:</translation> |
<translation type="obsolete">Befehl:</translation> |
</message> |
<message> |
<source>Range:</source> |
<translation>Bereich:</translation> |
<translation type="obsolete">Bereich:</translation> |
</message> |
<message> |
<source>To page:</source> |
2096,11 → 2220,11 |
</message> |
<message> |
<source>Print range</source> |
<translation>Druckbereich</translation> |
<translation type="obsolete">Druckbereich</translation> |
</message> |
<message> |
<source>Print all</source> |
<translation>Alles drucken</translation> |
<translation type="obsolete">Alles drucken</translation> |
</message> |
<message> |
<source>Print last page first</source> |
2112,7 → 2236,7 |
</message> |
<message> |
<source>Number of copies:</source> |
<translation>Anzahl der Kopien:</translation> |
<translation type="obsolete">Anzahl der Kopien:</translation> |
</message> |
<message> |
<source>Options</source> |
2120,11 → 2244,11 |
</message> |
<message> |
<source>Print Normal</source> |
<translation>Normal drucken</translation> |
<translation type="obsolete">Normal drucken</translation> |
</message> |
<message> |
<source>Print Separations</source> |
<translation>Farbauszüge drucken</translation> |
<translation type="obsolete">Farbauszüge drucken</translation> |
</message> |
<message> |
<source>All</source> |
2132,15 → 2256,15 |
</message> |
<message> |
<source>Print in color if available</source> |
<translation>In Farbe drucken, wenn verfügbar</translation> |
<translation type="obsolete">In Farbe drucken, wenn verfügbar</translation> |
</message> |
<message> |
<source>Print in grayscale</source> |
<translation>In Graustufen drucken</translation> |
<translation type="obsolete">In Graustufen drucken</translation> |
</message> |
<message> |
<source>Advanced Options...</source> |
<translation>Weitere Optionen...</translation> |
<translation type="obsolete">Weitere Optionen...</translation> |
</message> |
<message> |
<source>OK</source> |
2148,7 → 2272,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>Save as</source> |
2176,11 → 2300,11 |
</message> |
<message> |
<source>Print</source> |
<translation>Drucken</translation> |
<translation type="obsolete">Drucken</translation> |
</message> |
<message> |
<source>Print current page</source> |
<translation>Aktuelle Seite drucken</translation> |
<translation type="obsolete">Aktuelle Seite drucken</translation> |
</message> |
<message> |
<source>Insert a comma separated list of tokens where |
2190,6 → 2314,78 |
Seiten importiert werden sollen, zum Beispiel |
1-5 oder 3,4. * steht für alle Seiten.</translation> |
</message> |
<message> |
<source>Print Destination</source> |
<translation>Druckerwahl</translation> |
</message> |
<message> |
<source>&Options...</source> |
<translation>&Optionen...</translation> |
</message> |
<message> |
<source>&File:</source> |
<translation>&Datei:</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>Ä&ndern...</translation> |
</message> |
<message> |
<source>A&lternative Printer Command</source> |
<translation>Al&ternativer Druckbefehl</translation> |
</message> |
<message> |
<source>Co&mmand:</source> |
<translation>&Befehl:</translation> |
</message> |
<message> |
<source>Range</source> |
<translation>Bereich</translation> |
</message> |
<message> |
<source>Print &All</source> |
<translation>&Alles drucken</translation> |
</message> |
<message> |
<source>Print Current Pa&ge</source> |
<translation>Aktue&lle Seite drucken</translation> |
</message> |
<message> |
<source>Print &Range</source> |
<translation>Be&reich drucken</translation> |
</message> |
<message> |
<source>N&umber of Copies:</source> |
<translation>Anzahl der &Kopien:</translation> |
</message> |
<message> |
<source>Print &Normal</source> |
<translation>&Normal drucken</translation> |
</message> |
<message> |
<source>Print &Separations</source> |
<translation>&Farbauszüge drucken</translation> |
</message> |
<message> |
<source>Pr&int In Color If Available</source> |
<translation>In Fa&rbe drucken, falls verfügbar</translation> |
</message> |
<message> |
<source>Print In Gra&yscale</source> |
<translation>In &Graustufen drucken</translation> |
</message> |
<message> |
<source>Ad&vanced Options...</source> |
<translation>Er&weiterte Optionen...</translation> |
</message> |
<message> |
<source>&Print</source> |
<translation>&Drucken</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>EPSPlug</name> |
2214,7 → 2410,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Name:</translation> |
<translation type="obsolete">Name:</translation> |
</message> |
<message> |
<source>Character</source> |
2222,11 → 2418,11 |
</message> |
<message> |
<source>Face:</source> |
<translation>Schriftart:</translation> |
<translation type="obsolete">Schriftart:</translation> |
</message> |
<message> |
<source>Size:</source> |
<translation>Größe:</translation> |
<translation type="obsolete">Größe:</translation> |
</message> |
<message> |
<source> pt</source> |
2238,11 → 2434,11 |
</message> |
<message> |
<source>Alignment:</source> |
<translation>Ausrichtung:</translation> |
<translation type="obsolete">Ausrichtung:</translation> |
</message> |
<message> |
<source>Fill Color:</source> |
<translation>Füllfarbe:</translation> |
<translation type="obsolete">Füllfarbe:</translation> |
</message> |
<message> |
<source>None</source> |
2250,11 → 2446,11 |
</message> |
<message> |
<source>Drop Caps</source> |
<translation>Initialien</translation> |
<translation type="obsolete">Initialien</translation> |
</message> |
<message> |
<source>Lines:</source> |
<translation>Zeilen:</translation> |
<translation type="obsolete">Zeilen:</translation> |
</message> |
<message> |
<source>Indentation</source> |
2282,11 → 2478,11 |
</message> |
<message> |
<source>Above:</source> |
<translation>Oben:</translation> |
<translation type="obsolete">Oben:</translation> |
</message> |
<message> |
<source>Below:</source> |
<translation>Unten:</translation> |
<translation type="obsolete">Unten:</translation> |
</message> |
<message> |
<source>OK</source> |
2294,7 → 2490,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>Warning</source> |
2306,11 → 2502,11 |
</message> |
<message> |
<source>Stroke Color:</source> |
<translation>Randfarbe:</translation> |
<translation type="obsolete">Randfarbe:</translation> |
</message> |
<message> |
<source>Adjust to Baseline Grid</source> |
<translation>Ausrichten am Grundlinienraster</translation> |
<translation type="obsolete">Ausrichten am Grundlinienraster</translation> |
</message> |
<message> |
<source>Name of your paragraph style</source> |
2382,8 → 2578,64 |
</message> |
<message> |
<source>Line Spacing:</source> |
<translation>Zeilenabstand:</translation> |
<translation type="obsolete">Zeilenabstand:</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
<message> |
<source>&Font:</source> |
<translation>Schrift&art:</translation> |
</message> |
<message> |
<source>Si&ze:</source> |
<translation>&Größe:</translation> |
</message> |
<message> |
<source>&Alignment:</source> |
<translation>&Ausrichtung:</translation> |
</message> |
<message> |
<source>&Drop Caps</source> |
<translation>&Initialien</translation> |
</message> |
<message> |
<source>&Lines:</source> |
<translation>&Zeilen:</translation> |
</message> |
<message> |
<source>F&ill Color:</source> |
<translation>Füll&farbe:</translation> |
</message> |
<message> |
<source>St&roke Color:</source> |
<translation>&Randfarbe:</translation> |
</message> |
<message> |
<source>Adjust to Baseline &Grid</source> |
<translation>Text am &Grundlinienraster ausrichten</translation> |
</message> |
<message> |
<source>Line &Spacing:</source> |
<translation>Zeilenab&stand:</translation> |
</message> |
<message> |
<source>Abo&ve:</source> |
<translation>&Oberhalb:</translation> |
</message> |
<message> |
<source>&Below:</source> |
<translation>&Unterhalb:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>Editor</name> |
2393,64 → 2645,120 |
</message> |
<message> |
<source>New</source> |
<translation>Neu</translation> |
<translation type="obsolete">Neu</translation> |
</message> |
<message> |
<source>Save as...</source> |
<translation>Speichern unter...</translation> |
<translation type="obsolete">Speichern unter...</translation> |
</message> |
<message> |
<source>Load...</source> |
<translation>Laden...</translation> |
<translation type="obsolete">Laden...</translation> |
</message> |
<message> |
<source>Save and Exit</source> |
<translation>Speichern und Beenden</translation> |
<translation type="obsolete">Speichern und Beenden</translation> |
</message> |
<message> |
<source>Exit without Saving</source> |
<translation>Beenden ohne Speichern</translation> |
<translation type="obsolete">Beenden ohne Speichern</translation> |
</message> |
<message> |
<source>Undo</source> |
<translation>Rückgängig</translation> |
<translation type="obsolete">Rückgängig</translation> |
</message> |
<message> |
<source>Redo</source> |
<translation>Wiederherstellen</translation> |
<translation type="obsolete">Wiederherstellen</translation> |
</message> |
<message> |
<source>Cut</source> |
<translation>Ausschneiden</translation> |
<translation type="obsolete">Ausschneiden</translation> |
</message> |
<message> |
<source>Copy</source> |
<translation>Kopieren</translation> |
<translation type="obsolete">Kopieren</translation> |
</message> |
<message> |
<source>Paste</source> |
<translation>Einfügen</translation> |
<translation type="obsolete">Einfügen</translation> |
</message> |
<message> |
<source>Clear</source> |
<translation>Löschen</translation> |
<translation type="obsolete">Löschen</translation> |
</message> |
<message> |
<source>Get Field Names</source> |
<translation>Feldnamen auswählen</translation> |
<translation type="obsolete">Feldnamen auswählen</translation> |
</message> |
<message> |
<source>File</source> |
<translation>Datei</translation> |
<translation type="obsolete">Datei</translation> |
</message> |
<message> |
<source>Edit</source> |
<translation>Bearbeiten</translation> |
<translation type="obsolete">Bearbeiten</translation> |
</message> |
<message> |
<source>Javascripts (*.js);;All Files (*)</source> |
<translation>Javascripte (*.js);;Alle Dateien (*)</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&Neu</translation> |
</message> |
<message> |
<source>&Open...</source> |
<translation>Ö&ffnen...</translation> |
</message> |
<message> |
<source>Save &As...</source> |
<translation>Speichern &unter...</translation> |
</message> |
<message> |
<source>&Save and Exit</source> |
<translation>Speicher&n und beenden</translation> |
</message> |
<message> |
<source>&Exit without Saving</source> |
<translation>Nicht speichern und &beenden</translation> |
</message> |
<message> |
<source>&Undo</source> |
<translation>&Rückgängig</translation> |
</message> |
<message> |
<source>&Redo</source> |
<translation>Wieder&herstellen</translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation>&Ausschneiden</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation>&Kopieren</translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation>Einf&ügen</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation>&Löschen</translation> |
</message> |
<message> |
<source>&Get Field Names</source> |
<translation>&Feldnamen auslesen</translation> |
</message> |
<message> |
<source>&File</source> |
<translation>&Datei</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation>&Bearbeiten</translation> |
</message> |
</context> |
<context> |
<name>ExportForm</name> |
2460,11 → 2768,11 |
</message> |
<message> |
<source>Export to directory:</source> |
<translation>Exportieren nach:</translation> |
<translation type="obsolete">Exportieren nach:</translation> |
</message> |
<message> |
<source>&Change...</source> |
<translation>&Wechseln...</translation> |
<translation type="obsolete">&Wechseln...</translation> |
</message> |
<message> |
<source>Alt+C</source> |
2476,7 → 2784,7 |
</message> |
<message> |
<source>Quality :</source> |
<translation>Qualität:</translation> |
<translation type="obsolete">Qualität:</translation> |
</message> |
<message> |
<source>%</source> |
2484,7 → 2792,7 |
</message> |
<message> |
<source>Size:</source> |
<translation>Größe:</translation> |
<translation type="obsolete">Größe:</translation> |
</message> |
<message> |
<source>Export </source> |
2578,7 → 2886,7 |
</message> |
<message> |
<source>Image type:</source> |
<translation>Exportformat:</translation> |
<translation type="obsolete">Exportformat:</translation> |
</message> |
<message> |
<source>The output directory - the place to store your images. |
2614,6 → 2922,26 |
<source>The quality of your images - 100% is the best, 1% the highest compression</source> |
<translation>Bildqualität: 100% bedeutet keine, 1% höchste Komprimierung</translation> |
</message> |
<message> |
<source>C&hange...</source> |
<translation>Ä&ndern...</translation> |
</message> |
<message> |
<source>&Export to Directory:</source> |
<translation>In &Verzeichnis exportieren:</translation> |
</message> |
<message> |
<source>Image &Type:</source> |
<translation>&Dateityp:</translation> |
</message> |
<message> |
<source>&Quality:</source> |
<translation>&Qualität:</translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation>&Größe:</translation> |
</message> |
</context> |
<context> |
<name>FDialogPreview</name> |
2694,7 → 3022,7 |
</message> |
<message> |
<source>Name:</source> |
<translation>Name:</translation> |
<translation type="obsolete">Name:</translation> |
</message> |
<message> |
<source>Choose a Name</source> |
2804,6 → 3132,10 |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
</context> |
<context> |
<name>FontPrefs</name> |
3190,7 → 3522,7 |
</message> |
<message> |
<source>page(s)</source> |
<translation>Seite(n)</translation> |
<translation type="obsolete">Seite(n)</translation> |
</message> |
<message> |
<source>before Page</source> |
3206,11 → 3538,11 |
</message> |
<message> |
<source>Template (Left Page):</source> |
<translation>Linke Seite basiert auf:</translation> |
<translation type="obsolete">Linke Seite basiert auf:</translation> |
</message> |
<message> |
<source>Template:</source> |
<translation>Musterseite:</translation> |
<translation type="obsolete">Musterseite:</translation> |
</message> |
<message> |
<source>Normal</source> |
3222,12 → 3554,36 |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>&Inserting</source> |
<translation>&Einfügen von</translation> |
</message> |
<message> |
<source>Page(s)</source> |
<translation>Seite(n)</translation> |
</message> |
<message> |
<source>&Template (Left Page):</source> |
<translation>&Musterseite (Links):</translation> |
</message> |
<message> |
<source>&Template:</source> |
<translation>&Musterseite:</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>InsertTable</name> |
3276,7 → 3632,7 |
</message> |
<message> |
<source>New Script:</source> |
<translation>Neues Script:</translation> |
<translation type="obsolete">Neues Script:</translation> |
</message> |
<message> |
<source>New Script</source> |
3296,11 → 3652,11 |
</message> |
<message> |
<source>No</source> |
<translation>Nein</translation> |
<translation type="obsolete">Nein</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Ja</translation> |
<translation type="obsolete">Ja</translation> |
</message> |
<message> |
<source>&Edit...</source> |
3318,6 → 3674,18 |
<source>&Close</source> |
<translation>Schl&ießen</translation> |
</message> |
<message> |
<source>&New Script:</source> |
<translation>&Neues Script:</translation> |
</message> |
<message> |
<source>&No</source> |
<translation>N&ein</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation>&Ja</translation> |
</message> |
</context> |
<context> |
<name>KeyManager</name> |
3505,11 → 3873,11 |
</message> |
<message> |
<source>No</source> |
<translation>Nein</translation> |
<translation type="obsolete">Nein</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Ja</translation> |
<translation type="obsolete">Ja</translation> |
</message> |
<message> |
<source>Open</source> |
3563,6 → 3931,14 |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
<message> |
<source>&No</source> |
<translation>N&ein</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation>&Ja</translation> |
</message> |
</context> |
<context> |
<name>MSpinBox</name> |
3875,12 → 4251,20 |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>Mpalette</name> |
3890,27 → 4274,27 |
</message> |
<message> |
<source>X, Y, Z</source> |
<translation>X, Y, Z</translation> |
<translation type="obsolete">X, Y, Z</translation> |
</message> |
<message> |
<source>Shape</source> |
<translation>Form</translation> |
<translation type="obsolete">Form</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Text</translation> |
<translation type="obsolete">Text</translation> |
</message> |
<message> |
<source>Image</source> |
<translation>Bild</translation> |
<translation type="obsolete">Bild</translation> |
</message> |
<message> |
<source>Line</source> |
<translation>Linie</translation> |
<translation type="obsolete">Linie</translation> |
</message> |
<message> |
<source>Colors</source> |
<translation>Farben</translation> |
<translation type="obsolete">Farben</translation> |
</message> |
<message> |
<source>Name</source> |
3922,19 → 4306,19 |
</message> |
<message> |
<source>X-Pos:</source> |
<translation>X-Position:</translation> |
<translation type="obsolete">X-Position:</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation>Y-Position:</translation> |
<translation type="obsolete">Y-Position:</translation> |
</message> |
<message> |
<source>Width:</source> |
<translation>Breite:</translation> |
<translation type="obsolete">Breite:</translation> |
</message> |
<message> |
<source>Height:</source> |
<translation>Höhe:</translation> |
<translation type="obsolete">Höhe:</translation> |
</message> |
<message> |
<source> pt</source> |
3942,7 → 4326,7 |
</message> |
<message> |
<source>Rotation:</source> |
<translation>Drehung:</translation> |
<translation type="obsolete">Drehung:</translation> |
</message> |
<message> |
<source>Basepoint:</source> |
3958,7 → 4342,7 |
</message> |
<message> |
<source>Use Bounding Box</source> |
<translation>Umgebendes Rechteck benutzen</translation> |
<translation type="obsolete">Umgebendes Rechteck benutzen</translation> |
</message> |
<message> |
<source>Shape:</source> |
3966,12 → 4350,12 |
</message> |
<message> |
<source>Edit Shape...</source> |
<translation>Form bearbeiten...</translation> |
<translation type="obsolete">Form bearbeiten...</translation> |
</message> |
<message> |
<source>Round |
Corners:</source> |
<translation>Eckrundung:</translation> |
<translation type="obsolete">Eckrundung:</translation> |
</message> |
<message> |
<source>Distance of Text</source> |
3979,31 → 4363,31 |
</message> |
<message> |
<source>Columns:</source> |
<translation>Spalten:</translation> |
<translation type="obsolete">Spalten:</translation> |
</message> |
<message> |
<source>Gap:</source> |
<translation>Abstand:</translation> |
<translation type="obsolete">Abstand:</translation> |
</message> |
<message> |
<source>Top:</source> |
<translation>Oben:</translation> |
<translation type="obsolete">Oben:</translation> |
</message> |
<message> |
<source>Bottom:</source> |
<translation>Unten:</translation> |
<translation type="obsolete">Unten:</translation> |
</message> |
<message> |
<source>Left:</source> |
<translation>Links:</translation> |
<translation type="obsolete">Links:</translation> |
</message> |
<message> |
<source>Right:</source> |
<translation>Rechts:</translation> |
<translation type="obsolete">Rechts:</translation> |
</message> |
<message> |
<source>Tabulators...</source> |
<translation>Tabulatoren...</translation> |
<translation type="obsolete">Tabulatoren...</translation> |
</message> |
<message> |
<source>Path Text Properites</source> |
4035,11 → 4419,11 |
</message> |
<message> |
<source>Kerning:</source> |
<translation>Kerning:</translation> |
<translation type="obsolete">Kerning:</translation> |
</message> |
<message> |
<source>Line Spacing:</source> |
<translation>Zeilenabstand:</translation> |
<translation type="obsolete">Zeilenabstand:</translation> |
</message> |
<message> |
<source>Styles</source> |
4051,27 → 4435,27 |
</message> |
<message> |
<source>Free Scaling</source> |
<translation>Freie Skalierung</translation> |
<translation type="obsolete">Freie Skalierung</translation> |
</message> |
<message> |
<source>X-Pos.:</source> |
<translation>X-Pos.:</translation> |
<translation type="obsolete">X-Pos.:</translation> |
</message> |
<message> |
<source>Y-Pos.:</source> |
<translation>Y-Pos.:</translation> |
<translation type="obsolete">Y-Pos.:</translation> |
</message> |
<message> |
<source>X-Scale:</source> |
<translation>X-Skalierung:</translation> |
<translation type="obsolete">X-Skalierung:</translation> |
</message> |
<message> |
<source>Y-Scale:</source> |
<translation>Y-Skalierung:</translation> |
<translation type="obsolete">Y-Skalierung:</translation> |
</message> |
<message> |
<source>Scale to Frame Size</source> |
<translation>An Rahmen anpassen</translation> |
<translation type="obsolete">An Rahmen anpassen</translation> |
</message> |
<message> |
<source>Keep Aspect Ratio</source> |
4079,7 → 4463,7 |
</message> |
<message> |
<source>Proportional</source> |
<translation>Proportional</translation> |
<translation type="obsolete">Proportional</translation> |
</message> |
<message> |
<source>Input Profile:</source> |
4119,11 → 4503,11 |
</message> |
<message> |
<source>Line Width:</source> |
<translation>Linienbreite:</translation> |
<translation type="obsolete">Linienbreite:</translation> |
</message> |
<message> |
<source>Edges:</source> |
<translation>Ecken:</translation> |
<translation type="obsolete">Ecken:</translation> |
</message> |
<message> |
<source>Miter Join</source> |
4139,7 → 4523,7 |
</message> |
<message> |
<source>Endings:</source> |
<translation>Enden:</translation> |
<translation type="obsolete">Enden:</translation> |
</message> |
<message> |
<source>Flat Cap</source> |
4207,19 → 4591,19 |
</message> |
<message> |
<source>X1:</source> |
<translation>X1:</translation> |
<translation type="obsolete">X1:</translation> |
</message> |
<message> |
<source>X2:</source> |
<translation>X2:</translation> |
<translation type="obsolete">X2:</translation> |
</message> |
<message> |
<source>Y1:</source> |
<translation>Y1:</translation> |
<translation type="obsolete">Y1:</translation> |
</message> |
<message> |
<source>Y2:</source> |
<translation>Y2:</translation> |
<translation type="obsolete">Y2:</translation> |
</message> |
<message> |
<source>None</source> |
4241,7 → 4625,7 |
</message> |
<message> |
<source>Text flows around frame</source> |
<translation>Text umfließt Rahmen</translation> |
<translation type="obsolete">Text umfließt Rahmen</translation> |
</message> |
<message> |
<source>Shade:</source> |
4249,7 → 4633,7 |
</message> |
<message> |
<source>Language:</source> |
<translation>Sprache:</translation> |
<translation type="obsolete">Sprache:</translation> |
</message> |
<message> |
<source>Name of selected object</source> |
4505,7 → 4889,7 |
</message> |
<message> |
<source>Style:</source> |
<translation>Stil:</translation> |
<translation type="obsolete">Stil:</translation> |
</message> |
<message> |
<source>Make text in lower objects flow around this frame</source> |
4553,16 → 4937,186 |
</message> |
<message> |
<source>Font Size:</source> |
<translation>Schriftgröße:</translation> |
<translation type="obsolete">Schriftgröße:</translation> |
</message> |
<message> |
<source>Type of Line:</source> |
<translation>Linienart:</translation> |
<translation type="obsolete">Linienart:</translation> |
</message> |
<message> |
<source>Use Contour Line</source> |
<translation>Umgebende Form benutzen</translation> |
<translation type="obsolete">Umgebende Form benutzen</translation> |
</message> |
<message> |
<source>X, Y, &Z</source> |
<translation>X, Y, &Z</translation> |
</message> |
<message> |
<source>&Shape</source> |
<translation>&Form</translation> |
</message> |
<message> |
<source>&Text</source> |
<translation>&Text</translation> |
</message> |
<message> |
<source>&Image</source> |
<translation>&Bild</translation> |
</message> |
<message> |
<source>&Line</source> |
<translation>&Linien</translation> |
</message> |
<message> |
<source>&Colors</source> |
<translation>&Farben</translation> |
</message> |
<message> |
<source>&X-Pos:</source> |
<translation>&X-Position:</translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation>&Y-Position:</translation> |
</message> |
<message> |
<source>&Width:</source> |
<translation>&Breite:</translation> |
</message> |
<message> |
<source>&Height:</source> |
<translation>&Höhe:</translation> |
</message> |
<message> |
<source>&Rotation:</source> |
<translation>&Drehung:</translation> |
</message> |
<message> |
<source>Text &Flows Around Frame</source> |
<translation>Text &umfließt Rahmen</translation> |
</message> |
<message> |
<source>Use &Bounding Box</source> |
<translation>&Bounding Box benutzen</translation> |
</message> |
<message> |
<source>&Use Contour Line</source> |
<translation>&Objektumriss benutzen</translation> |
</message> |
<message> |
<source>&Edit Shape...</source> |
<translation>&Form bearbeiten...</translation> |
</message> |
<message> |
<source>R&ound |
Corners:</source> |
<translation>Ecken |
ab&runden:</translation> |
</message> |
<message> |
<source>Colu&mns:</source> |
<translation>&Spalten:</translation> |
</message> |
<message> |
<source>&Gap:</source> |
<translation>&Abstand:</translation> |
</message> |
<message> |
<source>To&p:</source> |
<translation>&Oben:</translation> |
</message> |
<message> |
<source>&Bottom:</source> |
<translation>&Unten:</translation> |
</message> |
<message> |
<source>&Left:</source> |
<translation>&Links:</translation> |
</message> |
<message> |
<source>&Right:</source> |
<translation>&Rechts:</translation> |
</message> |
<message> |
<source>T&abulators...</source> |
<translation>&Tabulatoren...</translation> |
</message> |
<message> |
<source>&Font Size:</source> |
<translation>Schrift&größe:</translation> |
</message> |
<message> |
<source>&Kerning:</source> |
<translation>&Kerning:</translation> |
</message> |
<message> |
<source>L&ine Spacing:</source> |
<translation>&Zeilenabstand:</translation> |
</message> |
<message> |
<source>St&yle:</source> |
<translation>S&til:</translation> |
</message> |
<message> |
<source>Lan&guage:</source> |
<translation>&Sprache:</translation> |
</message> |
<message> |
<source>&Free Scaling</source> |
<translation>&Freie Skalierung</translation> |
</message> |
<message> |
<source>X-Sc&ale:</source> |
<translation>&X-Größe:</translation> |
</message> |
<message> |
<source>Y-Scal&e:</source> |
<translation>&Y-Größe:</translation> |
</message> |
<message> |
<source>Scale &To Frame Size</source> |
<translation>An Rahmen an&passen</translation> |
</message> |
<message> |
<source>P&roportional</source> |
<translation>&Proportional</translation> |
</message> |
<message> |
<source>&Basepoint:</source> |
<translation>&Ursprung:</translation> |
</message> |
<message> |
<source>T&ype of Line:</source> |
<translation>Linien&art:</translation> |
</message> |
<message> |
<source>Line &Width:</source> |
<translation>Linien&breite:</translation> |
</message> |
<message> |
<source>Ed&ges:</source> |
<translation>&Ecken:</translation> |
</message> |
<message> |
<source>&Endings:</source> |
<translation>En&den:</translation> |
</message> |
<message> |
<source>&X1:</source> |
<translation>&X1:</translation> |
</message> |
<message> |
<source>X&2:</source> |
<translation>X&2:</translation> |
</message> |
<message> |
<source>Y&1:</source> |
<translation>Y&1:</translation> |
</message> |
<message> |
<source>&Y2:</source> |
<translation>&Y2:</translation> |
</message> |
</context> |
<context> |
<name>MultiLine</name> |
4612,7 → 5166,7 |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source> pt </source> |
4648,6 → 5202,14 |
<translation>Der Name %1 ist nicht eindeutig. |
Bitte wählen Sie einen anderen.</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>MusterSeiten</name> |
4685,11 → 5247,11 |
</message> |
<message> |
<source>No</source> |
<translation>Nein</translation> |
<translation type="obsolete">Nein</translation> |
</message> |
<message> |
<source>Yes</source> |
<translation>Ja</translation> |
<translation type="obsolete">Ja</translation> |
</message> |
<message> |
<source>Copy of %1</source> |
4735,6 → 5297,18 |
<source>&Close</source> |
<translation>Schl&ießen</translation> |
</message> |
<message> |
<source>&No</source> |
<translation>N&ein</translation> |
</message> |
<message> |
<source>&Yes</source> |
<translation>&Ja</translation> |
</message> |
<message> |
<source>&Name:</source> |
<translation>&Name:</translation> |
</message> |
</context> |
<context> |
<name>NewDoc</name> |
5051,12 → 5625,20 |
</message> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>NodePalette</name> |
5066,19 → 5648,19 |
</message> |
<message> |
<source>Absolute Coordinates</source> |
<translation>Absolute Koordinaten</translation> |
<translation type="obsolete">Absolute Koordinaten</translation> |
</message> |
<message> |
<source>X-Pos:</source> |
<translation>X-Pos:</translation> |
<translation type="obsolete">X-Pos:</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation>Y-Pos:</translation> |
<translation type="obsolete">Y-Pos:</translation> |
</message> |
<message> |
<source>End Editing</source> |
<translation>Beenden</translation> |
<translation type="obsolete">Beenden</translation> |
</message> |
<message> |
<source>Move Nodes</source> |
5098,11 → 5680,11 |
</message> |
<message> |
<source>Move Control Points independently</source> |
<translation>Kontrollpunkte unabhängig verschieben</translation> |
<translation type="obsolete">Kontrollpunkte unabhängig verschieben</translation> |
</message> |
<message> |
<source>Move Control Points symmetrical</source> |
<translation>Kontrollpunkte symmetrisch verschieben</translation> |
<translation type="obsolete">Kontrollpunkte symmetrisch verschieben</translation> |
</message> |
<message> |
<source>Reset Control Points</source> |
5114,43 → 5696,43 |
</message> |
<message> |
<source>Opens a Polygon or cuts a Bezier Curve</source> |
<translation>Öffnet ein Polygon oder trennt eine Bezier Kurve auf</translation> |
<translation type="obsolete">Öffnet ein Polygon oder trennt eine Bezier Kurve auf</translation> |
</message> |
<message> |
<source>Closes this Bezier Curve</source> |
<translation>Schließt diese Bezier Kurve</translation> |
<translation type="obsolete">Schließt diese Bezier Kurve</translation> |
</message> |
<message> |
<source>Mirrors the Path Horizontally</source> |
<translation>Spiegelt den Pfad horizontal</translation> |
<translation type="obsolete">Spiegelt den Pfad horizontal</translation> |
</message> |
<message> |
<source>Mirrors the Path Vertically</source> |
<translation>Spiegelt den Pfad vertikal</translation> |
<translation type="obsolete">Spiegelt den Pfad vertikal</translation> |
</message> |
<message> |
<source>Shears the Path horizontal to the right</source> |
<translation>Scherung nach rechts</translation> |
<translation type="obsolete">Scherung nach rechts</translation> |
</message> |
<message> |
<source>Shears the Path horizontal to the left</source> |
<translation>Scherung nach links</translation> |
<translation type="obsolete">Scherung nach links</translation> |
</message> |
<message> |
<source>Shears the Path vertical up</source> |
<translation>Scherung nach open</translation> |
<translation type="obsolete">Scherung nach open</translation> |
</message> |
<message> |
<source>Shears the Path vertical down</source> |
<translation>Scherung nach unten</translation> |
<translation type="obsolete">Scherung nach unten</translation> |
</message> |
<message> |
<source>Rotates the Path counter-clockwise</source> |
<translation>Rotiert den Pfad um 1° gegen den Uhrzeigersinn</translation> |
<translation type="obsolete">Rotiert den Pfad um 1° gegen den Uhrzeigersinn</translation> |
</message> |
<message> |
<source>Rotates the Path clockwise</source> |
<translation>Rotiert den Pfad um 1° im Uhrzeigersinn</translation> |
<translation type="obsolete">Rotiert den Pfad um 1° im Uhrzeigersinn</translation> |
</message> |
<message> |
<source>Reduce the Size of the Path by 10%</source> |
5168,20 → 5750,116 |
</message> |
<message> |
<source>Edit Contour Line</source> |
<translation>Umgebende Form bearbeiten</translation> |
<translation type="obsolete">Umgebende Form bearbeiten</translation> |
</message> |
<message> |
<source>Reset Contour Line</source> |
<translation>Kontrollpunkte zurücksetzen</translation> |
<translation type="obsolete">Kontrollpunkte zurücksetzen</translation> |
</message> |
<message> |
<source>Reduce the Size of the Path</source> |
<translation>Verkleinert den Pfad</translation> |
<translation type="obsolete">Verkleinert den Pfad</translation> |
</message> |
<message> |
<source>Enlarges the Size of the Path</source> |
<translation>Vergrößert den Pfad</translation> |
<translation type="obsolete">Vergrößert den Pfad</translation> |
</message> |
<message> |
<source>&Absolute Coordinates</source> |
<translation>&Absolute Koordinaten</translation> |
</message> |
<message> |
<source>&X-Pos:</source> |
<translation>&X-Position:</translation> |
</message> |
<message> |
<source>&Y-Pos:</source> |
<translation>&Y-Position:</translation> |
</message> |
<message> |
<source>Edit &Contour Line</source> |
<translation>&Objektumriss bearbeiten</translation> |
</message> |
<message> |
<source>&Reset Contour Line</source> |
<translation>Objektumriss &zurücksetzen</translation> |
</message> |
<message> |
<source>&End Editing</source> |
<translation>Beabeitung &beenden</translation> |
</message> |
<message> |
<source>Move Control Points Independently</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Move Control Points Symmetrical</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Open a Polygon or Cuts a Bezier Curve</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Close this Bezier Curve</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Mirror the Path Horizontally</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Mirror the Path Vertically</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Horizontally to the Rright</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Horizontally to the Left</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Vertically Up</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Shear the Path Vertically Down</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Rotate the Path Counter-Clockwise</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Rotate the Path Clockwise</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Reduce the Size of the Path by shown %</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Enlarge the Size of the Path by shown %</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Angle of Rotation</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>% to Enlarge or Reduce By</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Activate Contour Line Editing Mode</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Reset the Contour Line to the Original Shape of the Frame</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>PConsole</name> |
5430,7 → 6108,7 |
</message> |
<message> |
<source>Use ICC-Profile</source> |
<translation>ICC-Profile einbetten</translation> |
<translation type="obsolete">ICC-Profile einbetten</translation> |
</message> |
<message> |
<source>Profile:</source> |
6083,11 → 6761,11 |
</message> |
<message> |
<source>S&pot Function:</source> |
<translation type="unfinished"></translation> |
<translation>&Punktaufbau:</translation> |
</message> |
<message> |
<source>Simple Dot</source> |
<translation type="unfinished"></translation> |
<translation>Punkt</translation> |
</message> |
<message> |
<source>Line</source> |
6130,13 → 6808,17 |
<translation>&Abbrechen</translation> |
</message> |
<message> |
<source></source> |
<translation></translation> |
</message> |
<message> |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation>PDF-Dateien (*.pdf);;Alle Dateien (*.*)</translation> |
</message> |
<message> |
<source>This is an advanced setting which is not enabled by default. This should only be enabled |
when specifically requested by your printer and they have given you the exact details needed. |
Otherwise, your exported PDF may not print properly and is truly not portable across systems.</source> |
<translation>Diese erweiterte Optio ist normalerweise deaktiviert und sollte nur aktiviert werden, |
wenn Ihre Druckerei es fordert und sie die notwendigen Informationen haben. |
Andernfalls könnte ihre PDF-Datei fehlerhaft gedruckt werden und sie kann nicht plattformübergreifend verwendet werden.</translation> |
</message> |
</context> |
<context> |
<name>PPreview</name> |
6252,6 → 6934,10 |
<source>&K</source> |
<translation>&K</translation> |
</message> |
<message> |
<source>&Under Color Removal</source> |
<translation>&Unterfarbenreduktion</translation> |
</message> |
</context> |
<context> |
<name>Page</name> |
6725,7 → 7411,7 |
</message> |
<message> |
<source>&Outlines</source> |
<translation type="unfinished"></translation> |
<translation>&Umrisse</translation> |
</message> |
<message> |
<source>&Text Frame</source> |
6943,7 → 7629,7 |
</message> |
<message> |
<source> pts</source> |
<translation>pts</translation> |
<translation type="obsolete">pts</translation> |
</message> |
<message> |
<source>Units</source> |
8165,6 → 8851,10 |
<source>O&utside:</source> |
<translation>A&ußen:</translation> |
</message> |
<message> |
<source>Apply &Under Color Removal</source> |
<translation>Unterfarben&reduktion anwenden</translation> |
</message> |
</context> |
<context> |
<name>QColorDialog</name> |
8936,11 → 9626,11 |
</message> |
<message> |
<source>Oook! You're trying to (un)lock an object doesn't exist! None selected too.</source> |
<translation type="unfinished">Fehler: Sie versuchen ein Objekt zu (ent)sperren, das gar nicht existiert. Außerdem ist gar keins ausgewählt.</translation> |
<translation>Fehler: Sie versuchen ein Objekt zu (ent)sperren, das gar nicht existiert. Außerdem ist gar keins ausgewählt.</translation> |
</message> |
<message> |
<source>Oook! You're trying to query an object doesn't exist! None selected too.</source> |
<translation type="unfinished">Fehler: Sie versuchen ein Objekt zu aktivieren, das gar nicht exisitiert! Außerdem ist nichts ausgewählt.</translation> |
<translation>Fehler: Sie versuchen ein Objekt zu aktivieren, das gar nicht exisitiert! Außerdem ist nichts ausgewählt.</translation> |
</message> |
</context> |
<context> |
9064,12 → 9754,20 |
<name>Query</name> |
<message> |
<source>OK</source> |
<translation>OK</translation> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation>Abbrechen</translation> |
<translation type="obsolete">Abbrechen</translation> |
</message> |
<message> |
<source>&OK</source> |
<translation>&OK</translation> |
</message> |
<message> |
<source>&Cancel</source> |
<translation>&Abbrechen</translation> |
</message> |
</context> |
<context> |
<name>ReformDoc</name> |
9207,6 → 9905,101 |
</message> |
</context> |
<context> |
<name>SToolBAlign</name> |
<message> |
<source>St&yle Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Style of current paragraph</source> |
<translation>Stilvorlage für aktuellen Absatz</translation> |
</message> |
</context> |
<context> |
<name>SToolBColorF</name> |
<message> |
<source>F&ill Color Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>None</source> |
<translation>Keine</translation> |
</message> |
<message> |
<source>Color of text fill</source> |
<translation>Textfarbe</translation> |
</message> |
<message> |
<source>Saturation of color of text fill</source> |
<translation>Tonwert der Textfarbe</translation> |
</message> |
</context> |
<context> |
<name>SToolBColorS</name> |
<message> |
<source>&Stroke Color Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>None</source> |
<translation>Keine</translation> |
</message> |
<message> |
<source>Color of text stroke</source> |
<translation>Textumrissfarbe</translation> |
</message> |
<message> |
<source>Saturation of color of text stroke</source> |
<translation>Tonwert der Textumrissfarbe</translation> |
</message> |
</context> |
<context> |
<name>SToolBFont</name> |
<message> |
<source>&Font Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>Font of selected text</source> |
<translation>Schriftart des Objekts</translation> |
</message> |
<message> |
<source>Font Size</source> |
<translation>Schriftgröße</translation> |
</message> |
<message> |
<source>Scaling width of characters</source> |
<translation>Zeichenbreiten skalieren</translation> |
</message> |
</context> |
<context> |
<name>SToolBStyle</name> |
<message> |
<source>&Character Settings</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Kerning:</source> |
<translation>Kerning:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<source>Manual Kerning</source> |
<translation>Manuelles Kerning</translation> |
</message> |
</context> |
<context> |
<name>ScriXmlDoc</name> |
<message> |
<source>Copy #%1 of </source> |
9317,7 → 10110,7 |
</message> |
<message> |
<source>Getting ICC-Profiles</source> |
<translation>ICC-Profile werden geladen</translation> |
<translation type="obsolete">ICC-Profile werden geladen</translation> |
</message> |
<message> |
<source>Init Hyphenator</source> |
9920,11 → 10713,11 |
</message> |
<message> |
<source>Size:</source> |
<translation>Größe:</translation> |
<translation type="obsolete">Größe:</translation> |
</message> |
<message> |
<source>Shade:</source> |
<translation>Tonwert:</translation> |
<translation type="obsolete">Tonwert:</translation> |
</message> |
<message> |
<source>The following Programs are missing:</source> |
10424,7 → 11217,7 |
</message> |
<message> |
<source>&Manage Guides...</source> |
<translation>&Hilfslinien bearbeiten...</translation> |
<translation type="obsolete">&Hilfslinien bearbeiten...</translation> |
</message> |
<message> |
<source>&Fit in Window</source> |
10690,6 → 11483,22 |
<source>P&references...</source> |
<translation>&Voreinstellungen...</translation> |
</message> |
<message> |
<source>Getting ICC Profiles</source> |
<translation>ICC-Profile werden geladen</translation> |
</message> |
<message> |
<source>Manage &Guides...</source> |
<translation>&Hilfslinien bearbeiten...</translation> |
</message> |
<message> |
<source>&Size:</source> |
<translation>&Größe:</translation> |
</message> |
<message> |
<source>&Shade:</source> |
<translation>Ton&wert:</translation> |
</message> |
</context> |
<context> |
<name>ScribusView</name> |
10851,27 → 11660,27 |
</message> |
<message> |
<source>Whole Word</source> |
<translation>Ganzes Wort</translation> |
<translation type="obsolete">Ganzes Wort</translation> |
</message> |
<message> |
<source>Ignore Case</source> |
<translation>Groß-/Kleinschreibung ignorieren</translation> |
<translation type="obsolete">Groß-/Kleinschreibung ignorieren</translation> |
</message> |
<message> |
<source>Search</source> |
<translation>Suchen</translation> |
<translation type="obsolete">Suchen</translation> |
</message> |
<message> |
<source>Replace</source> |
<translation>Ersetzen</translation> |
<translation type="obsolete">Ersetzen</translation> |
</message> |
<message> |
<source>Replace All</source> |
<translation>Alles ersetzen</translation> |
<translation type="obsolete">Alles ersetzen</translation> |
</message> |
<message> |
<source>Leave</source> |
<translation>Verlassen</translation> |
<translation type="obsolete">Verlassen</translation> |
</message> |
<message> |
<source>Search finished</source> |
10901,6 → 11710,30 |
<source>Forced</source> |
<translation>Erzw. Blocksatz</translation> |
</message> |
<message> |
<source>&Whole Word</source> |
<translation>&Ganzes Wort</translation> |
</message> |
<message> |
<source>&Ignore Case</source> |
<translation>Groß-/&Kleinschreibung ignorieren</translation> |
</message> |
<message> |
<source>&Search</source> |
<translation>&Suchen</translation> |
</message> |
<message> |
<source>&Replace</source> |
<translation>&Ersetzen</translation> |
</message> |
<message> |
<source>Replace &All</source> |
<translation>&Alles ersetzen</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation>Schl&ießen</translation> |
</message> |
</context> |
<context> |
<name>SeitenPal</name> |
11002,12 → 11835,16 |
</message> |
<message> |
<source>Shade:</source> |
<translation>Tonwert:</translation> |
<translation type="obsolete">Tonwert:</translation> |
</message> |
<message> |
<source>Shade</source> |
<translation>Tonwert</translation> |
</message> |
<message> |
<source>&Shade:</source> |
<translation>Ton&wert:</translation> |
</message> |
</context> |
<context> |
<name>Spalette</name> |
11135,15 → 11972,15 |
</message> |
<message> |
<source>New</source> |
<translation>Neu</translation> |
<translation type="obsolete">Neu</translation> |
</message> |
<message> |
<source>Save to File...</source> |
<translation>In Datei speichern...</translation> |
<translation type="obsolete">In Datei speichern...</translation> |
</message> |
<message> |
<source>Load from File...</source> |
<translation>Von Datei laden...</translation> |
<translation type="obsolete">Von Datei laden...</translation> |
</message> |
<message> |
<source>Save and Exit</source> |
11155,47 → 11992,47 |
</message> |
<message> |
<source>Undo</source> |
<translation>Rückgängig</translation> |
<translation type="obsolete">Rückgängig</translation> |
</message> |
<message> |
<source>Redo</source> |
<translation>Wiederherstellen</translation> |
<translation type="obsolete">Wiederherstellen</translation> |
</message> |
<message> |
<source>Cut</source> |
<translation>Ausschneiden</translation> |
<translation type="obsolete">Ausschneiden</translation> |
</message> |
<message> |
<source>Copy</source> |
<translation>Kopieren</translation> |
<translation type="obsolete">Kopieren</translation> |
</message> |
<message> |
<source>Paste</source> |
<translation>Einfügen</translation> |
<translation type="obsolete">Einfügen</translation> |
</message> |
<message> |
<source>Clear</source> |
<translation>Löschen</translation> |
<translation type="obsolete">Löschen</translation> |
</message> |
<message> |
<source>Edit Styles...</source> |
<translation>Stilvorlagen bearbeiten...</translation> |
<translation type="obsolete">Stilvorlagen bearbeiten...</translation> |
</message> |
<message> |
<source>File</source> |
<translation>Datei</translation> |
<translation type="obsolete">Datei</translation> |
</message> |
<message> |
<source>Edit</source> |
<translation>Bearbeiten</translation> |
<translation type="obsolete">Bearbeiten</translation> |
</message> |
<message> |
<source>Style</source> |
<translation>Stil</translation> |
<translation type="obsolete">Stil</translation> |
</message> |
<message> |
<source>Text</source> |
<translation>Text</translation> |
<translation type="obsolete">Text</translation> |
</message> |
<message> |
<source>Current Paragraph:</source> |
11243,27 → 12080,27 |
</message> |
<message> |
<source>Left</source> |
<translation>Links</translation> |
<translation type="obsolete">Links</translation> |
</message> |
<message> |
<source>Center</source> |
<translation>Zentriert</translation> |
<translation type="obsolete">Zentriert</translation> |
</message> |
<message> |
<source>Right</source> |
<translation>Rechts</translation> |
<translation type="obsolete">Rechts</translation> |
</message> |
<message> |
<source>Block</source> |
<translation>Blocksatz</translation> |
<translation type="obsolete">Blocksatz</translation> |
</message> |
<message> |
<source>Forced</source> |
<translation>Erzw. Blocksatz</translation> |
<translation type="obsolete">Erzw. Blocksatz</translation> |
</message> |
<message> |
<source>Update Text Frame</source> |
<translation>Textrahmen auffrischen</translation> |
<translation type="obsolete">Textrahmen auffrischen</translation> |
</message> |
<message> |
<source>Search/Replace...</source> |
11275,7 → 12112,7 |
</message> |
<message> |
<source>Insert Special...</source> |
<translation>Sonderzeichen einfügen...</translation> |
<translation type="obsolete">Sonderzeichen einfügen...</translation> |
</message> |
<message> |
<source>Insert Special</source> |
11287,20 → 12124,80 |
</message> |
<message> |
<source>Update Text Frame and Exit</source> |
<translation>Änderungen übernehmen</translation> |
<translation type="obsolete">Änderungen übernehmen</translation> |
</message> |
<message> |
<source>Exit Without Updating Text Frame</source> |
<translation>Änderungen ignorieren</translation> |
<translation type="obsolete">Änderungen ignorieren</translation> |
</message> |
<message> |
<source>Save Document</source> |
<translation>Dokument speichern</translation> |
<translation type="obsolete">Dokument speichern</translation> |
</message> |
<message> |
<source>&Insert Special</source> |
<translation>&Sonderzeichen einfügen</translation> |
</message> |
<message> |
<source>&New</source> |
<translation>&Neu</translation> |
</message> |
<message> |
<source>&Reload Text from Frame</source> |
<translation>&Text neu vom Text-Rahmen</translation> |
</message> |
<message> |
<source>&Save to File...</source> |
<translation>In Datei &speichern...</translation> |
</message> |
<message> |
<source>&Load from File...</source> |
<translation>Von Datei &laden...</translation> |
</message> |
<message> |
<source>Save &Document</source> |
<translation>&Dokument speichern</translation> |
</message> |
<message> |
<source>&Update Text Frame and Exit</source> |
<translation>Änderungen &übernehmen</translation> |
</message> |
<message> |
<source>&Exit Without Updating Text Frame</source> |
<translation>Änderungen &ignorieren</translation> |
</message> |
<message> |
<source>Cu&t</source> |
<translation>&Ausschneiden</translation> |
</message> |
<message> |
<source>&Copy</source> |
<translation>&Kopieren</translation> |
</message> |
<message> |
<source>&Paste</source> |
<translation>Einf&ügen</translation> |
</message> |
<message> |
<source>C&lear</source> |
<translation>&Löschen</translation> |
</message> |
<message> |
<source>&Insert Special...</source> |
<translation>&Sonderzeichen einfügen...</translation> |
</message> |
<message> |
<source>&Update Text Frame</source> |
<translation>&Textrahmen auffrischen</translation> |
</message> |
<message> |
<source>&File</source> |
<translation>&Datei</translation> |
</message> |
<message> |
<source>&Edit</source> |
<translation>&Bearbeiten</translation> |
</message> |
</context> |
<context> |
<name>StyleSelect</name> |
11420,15 → 12317,15 |
</message> |
<message> |
<source>Position:</source> |
<translation>Position:</translation> |
<translation type="obsolete">Position:</translation> |
</message> |
<message> |
<source>First Line:</source> |
<translation>Erste Zeile:</translation> |
<translation type="obsolete">Erste Zeile:</translation> |
</message> |
<message> |
<source>Indent:</source> |
<translation>Einzug:</translation> |
<translation type="obsolete">Einzug:</translation> |
</message> |
<message> |
<source>Delete All</source> |
11462,6 → 12359,18 |
<source> p</source> |
<translation>p</translation> |
</message> |
<message> |
<source>&Position:</source> |
<translation>&Position:</translation> |
</message> |
<message> |
<source>First &Line:</source> |
<translation>&Erste Zeile:</translation> |
</message> |
<message> |
<source>Ind&ent:</source> |
<translation>Ein&zug:</translation> |
</message> |
</context> |
<context> |
<name>Tree</name> |
11631,11 → 12540,11 |
<name>WerkToolBP</name> |
<message> |
<source>PDF-Tools</source> |
<translation>PDF-Werkzeuge</translation> |
<translation type="obsolete">PDF-Werkzeuge</translation> |
</message> |
<message> |
<source>Insert PDF-Fields</source> |
<translation>PDF-Felder einfügen</translation> |
<translation type="obsolete">PDF-Felder einfügen</translation> |
</message> |
<message> |
<source>Text</source> |
11647,7 → 12556,7 |
</message> |
<message> |
<source>Insert PDF-Annotations</source> |
<translation>PDF-Anmerkungen einfügen</translation> |
<translation type="obsolete">PDF-Anmerkungen einfügen</translation> |
</message> |
<message> |
<source>Button</source> |
11669,6 → 12578,18 |
<source>List Box</source> |
<translation>Listenfeld</translation> |
</message> |
<message> |
<source>PDF Tools</source> |
<translation>PDF-Werkzeuge</translation> |
</message> |
<message> |
<source>Insert PDF Fields</source> |
<translation>PDF-Felder einfügen</translation> |
</message> |
<message> |
<source>Insert PDF Annotations</source> |
<translation>PDF Anmerkungen einfügen</translation> |
</message> |
</context> |
<context> |
<name>ZAuswahl</name> |
/trunk/Scribus/scribus/po/scribus.bg_BG.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.3\n" |
"POT-Creation-Date: 2004-07-19 23:24+0200\n" |
"POT-Creation-Date: 2004-07-28 23:12+0200\n" |
"PO-Revision-Date: 2001-12-14 01:18+0200\n" |
"Last-Translator: Vasko Tomanov <vasko@web.bg>\n" |
"Content-Type: text/plain; charset=cp1251\n" |
19,9 → 19,6 |
msgid "Horizontal" |
msgstr "Õîðèçîíòàëíî" |
msgid "between:" |
msgstr "ìåæäó:" |
msgid "Left Sides" |
msgstr "Ëÿâà ñòðàíà" |
31,13 → 28,20 |
msgid "Right Sides" |
msgstr "Äÿñíà ñòðàíà" |
msgid "Don't change" |
msgstr "Áåç ïðîìÿíà" |
#, fuzzy |
msgid "&Between:" |
msgstr "ìåæäó:" |
msgid "Displacement" |
#, fuzzy |
msgid "A&lign" |
msgstr "Ïîäðàâíÿâàíå" |
#, fuzzy |
msgid "Di&splacement" |
msgstr "Ðàçìåñòâàíå" |
msgid "Distribute evenly" |
#, fuzzy |
msgid "Distribute &Evenly" |
msgstr "Ðàçïðåäåëè íåçàâèñèìî" |
msgid "Vertical" |
49,7 → 53,23 |
msgid "Bottom Sides" |
msgstr "Äîëåí êðàé" |
msgid " pts" |
#, fuzzy |
msgid "Bet&ween:" |
msgstr "ìåæäó:" |
#, fuzzy |
msgid "Do &Not Change" |
msgstr "Áåç ïðîìÿíà" |
#, fuzzy |
msgid "Al&ign" |
msgstr "Ïîäðàâíÿâàíå" |
#, fuzzy |
msgid "Dis&placement" |
msgstr "Ðàçìåñòâàíå" |
msgid " pt" |
msgstr "" |
msgid " mm" |
62,6 → 82,10 |
msgstr "" |
#, fuzzy |
msgid "Distribute E&venly" |
msgstr "Ðàçïðåäåëè íåçàâèñèìî" |
#, fuzzy |
msgid "&OK" |
msgstr "Äà" |
106,7 → 130,7 |
msgid "Text" |
msgstr "" |
msgid "Font for use with PDF-1.3:" |
msgid "Font for use with PDF 1.3:" |
msgstr "" |
msgid "Border" |
331,9 → 355,6 |
msgid "X-Pos:" |
msgstr "Ïîçèöèÿ ïî X:" |
msgid " pt" |
msgstr "" |
#, fuzzy |
msgid "Y-Pos:" |
msgstr "Ïîçèöèÿ ïî Y:" |
452,7 → 473,7 |
msgid "Cancel" |
msgstr "Îòêàç" |
msgid "Flag is ignored for PDF-1.3" |
msgid "Flag is ignored for PDF 1.3" |
msgstr "" |
msgid "Enter a comma separated list of fields here" |
476,7 → 497,7 |
msgstr "" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgid "PDF Documents (*.pdf);;All Files (*)" |
msgstr "Äîêóìåíòè (*.scd);; Âñè÷êè äîêóìåíòè (*)" |
msgid "Annotation Properties" |
491,6 → 512,10 |
msgid "External Web-Link" |
msgstr "" |
#, fuzzy |
msgid "PDF-Documents (*.pdf);;All Files (*)" |
msgstr "Äîêóìåíòè (*.scd);; Âñè÷êè äîêóìåíòè (*)" |
msgid "Apply Template" |
msgstr "Îòðàçè ôîðìàòà" |
682,7 → 707,11 |
msgstr "Ðåäàêòèðàíå íà öâÿò" |
#, fuzzy |
msgid "Color Model" |
msgid "&Name:" |
msgstr "Èìå:" |
#, fuzzy |
msgid "Color &Model" |
msgstr "Öâåòîâè ìîäåë" |
msgid "CMYK" |
1158,24 → 1187,31 |
msgid "Advanced Options" |
msgstr "Äðóãè îïöèè" |
msgid "Mirror Page(s) horizontal" |
msgid "Mirror Page(s) &Horizontal" |
msgstr "" |
msgid "Mirror Page(s) vertical" |
msgid "Mirror Page(s) &Vertical" |
msgstr "" |
msgid "Apply ICC-Profiles" |
msgid "Appy Under Color &Removal" |
msgstr "" |
msgid "PostScript Level 3" |
msgstr "" |
#, fuzzy |
msgid "Apply &ICC Profiles" |
msgstr "Ïå÷àò âúâ ôàéë:" |
msgid "PostScript Level 2" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &1" |
msgstr "Ïðàâ ôîðìàò" |
msgid "PostScript Level 1" |
msgstr "" |
#, fuzzy |
msgid "PostScript Level &2" |
msgstr "Ïðàâ ôîðìàò" |
#, fuzzy |
msgid "PostScript Level &3" |
msgstr "Ïðàâ ôîðìàò" |
msgid "Creates PostScript Level 3" |
msgstr "" |
1192,7 → 1228,8 |
msgid "Setup Printer" |
msgstr "Îïöèè íà ïðèíòåðà" |
msgid "Print destination" |
#, fuzzy |
msgid "Print Destination" |
msgstr "Îòïå÷àòàé îïèñàíèå" |
msgid "File" |
1199,29 → 1236,38 |
msgstr "Ôàéë" |
#, fuzzy |
msgid "Options..." |
msgid "&Options..." |
msgstr "Îïöèè" |
msgid "File:" |
#, fuzzy |
msgid "&File:" |
msgstr "Ôàéë:" |
msgid "Alternative Printer Command" |
msgstr "" |
#, fuzzy |
msgid "C&hange..." |
msgstr "Ïðîìÿíà..." |
msgid "Command:" |
msgid "A<ernative Printer Command" |
msgstr "" |
msgid "Range:" |
#, fuzzy |
msgid "Co&mmand:" |
msgstr "Êîìåíòàð" |
#, fuzzy |
msgid "Range" |
msgstr "Îò .. äî .." |
msgid "Print all" |
#, fuzzy |
msgid "Print &All" |
msgstr "Îòïå÷àòàé âñè÷êè" |
#, fuzzy |
msgid "Print current page" |
msgid "Print Current Pa&ge" |
msgstr "Ñòðàíèöè çà îòïå÷àòâàíå" |
msgid "Print range" |
#, fuzzy |
msgid "Print &Range" |
msgstr "Ñòðàíèöè çà îòïå÷àòâàíå" |
msgid "" |
1230,13 → 1276,16 |
"a range of pages or a single page number." |
msgstr "" |
msgid "Number of copies:" |
msgstr "Áðîé êîïèÿ " |
#, fuzzy |
msgid "N&umber of Copies:" |
msgstr "Áðîé íà êîïèÿòà:" |
msgid "Print Normal" |
#, fuzzy |
msgid "Print &Normal" |
msgstr "Íîðìàëåí ïå÷àò" |
msgid "Print Separations" |
#, fuzzy |
msgid "Print &Separations" |
msgstr "Îòïå÷àòàé öâåòîîòäåëåíî" |
msgid "All" |
1256,16 → 1305,20 |
msgid "Black" |
msgstr "Áëîê" |
msgid "Print in color if available" |
#, fuzzy |
msgid "Pr&int In Color If Available" |
msgstr "Îòïå÷àòàé ñ öâÿò, àêî å âúçìîæíî" |
msgid "Print in grayscale" |
#, fuzzy |
msgid "Print In Gra&yscale" |
msgstr "Îòïå÷àòàé ñ ñòåïåíè íà ñèâîòî" |
msgid "Advanced Options..." |
msgstr "" |
#, fuzzy |
msgid "Ad&vanced Options..." |
msgstr "Äðóãè îïöèè" |
msgid "Print" |
#, fuzzy |
msgid "&Print" |
msgstr "Ïå÷àò" |
msgid "Save as" |
1281,45 → 1334,54 |
msgid "Character" |
msgstr "Ñèìâîë" |
msgid "Face:" |
msgstr "Ëèöå:" |
#, fuzzy |
msgid "&Font:" |
msgstr "Øðèôò" |
#, fuzzy |
msgid "Si&ze:" |
msgstr "Ðàçìåð:" |
#, fuzzy |
msgid "Effect:" |
msgstr "Åôåêòè" |
#, fuzzy |
msgid "Alignment:" |
msgid "&Alignment:" |
msgstr "Ïîäðàâíÿâàíå" |
msgid "Drop Caps" |
msgid "&Drop Caps" |
msgstr "" |
#, fuzzy |
msgid "Lines:" |
msgid "&Lines:" |
msgstr "Ëèíèÿ" |
msgid "Fill Color:" |
#, fuzzy |
msgid "F&ill Color:" |
msgstr "Öâÿò íà çàïúëâàíå:" |
#, fuzzy |
msgid "Stroke Color:" |
msgid "St&roke Color:" |
msgstr "Íîâ öâÿò:" |
msgid "Vertical Spaces" |
msgstr "Âåðòèêàëíè èíòåðâàëè" |
msgid "Adjust to Baseline Grid" |
msgstr "" |
#, fuzzy |
msgid "Adjust to Baseline &Grid" |
msgstr "Ñêðèé ïîìîùíèòå ëèíèè" |
#, fuzzy |
msgid "Line Spacing:" |
msgid "Line &Spacing:" |
msgstr "Ëèíåéíî ðàçòîÿíèå" |
msgid "Above:" |
#, fuzzy |
msgid "Abo&ve:" |
msgstr "Îòãîðå:" |
msgid "Below:" |
#, fuzzy |
msgid "&Below:" |
msgstr "Îòäîëó:" |
msgid "Tabulators and Indentation" |
1380,41 → 1442,49 |
msgid "Editor" |
msgstr "Ðåäàêòèðàíå" |
msgid "Save as..." |
#, fuzzy |
msgid "&Open..." |
msgstr "Îòâîðè..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Çàïèøè êàòî..." |
msgid "Load..." |
msgstr "Çàðåæäàíå..." |
msgid "Save and Exit" |
msgid "&Save and Exit" |
msgstr "" |
msgid "Exit without Saving" |
msgid "&Exit without Saving" |
msgstr "" |
msgid "Undo" |
msgid "&Undo" |
msgstr "" |
msgid "Redo" |
msgstr "" |
#, fuzzy |
msgid "&Redo" |
msgstr "×åðâåíî:" |
msgid "Cut" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Îòðÿçâàíå" |
msgid "Copy" |
#, fuzzy |
msgid "&Copy" |
msgstr "Êîïèðàíå" |
msgid "Paste" |
#, fuzzy |
msgid "&Paste" |
msgstr "Ïîñòàâÿíå" |
msgid "Clear" |
#, fuzzy |
msgid "C&lear" |
msgstr "Èç÷èñòâàíå" |
msgid "Get Field Names" |
msgid "&Get Field Names" |
msgstr "" |
msgid "Edit" |
msgstr "Ðåäàêòèðàíå" |
#, fuzzy |
msgid "&File" |
msgstr "Ôàéë" |
#, fuzzy |
msgid "Javascripts (*.js);;All Files (*)" |
1469,10 → 1539,6 |
msgid "Font &Substitutions" |
msgstr "" |
#, fuzzy |
msgid "C&hange..." |
msgstr "Ïðîìÿíà..." |
msgid "A&dd..." |
msgstr "" |
1489,15 → 1555,27 |
msgid "Nodes" |
msgstr "Âúðõîâå" |
msgid "Absolute Coordinates" |
msgid "&Absolute Coordinates" |
msgstr "" |
#, fuzzy |
msgid "Edit Contour Line" |
msgid "&X-Pos:" |
msgstr "Ïîçèöèÿ ïî X:" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Ïîçèöèÿ ïî Y:" |
#, fuzzy |
msgid "Edit &Contour Line" |
msgstr "Ðåäàêòèðàíå íà öâÿò" |
#, fuzzy |
msgid "End Editing" |
msgid "&Reset Contour Line" |
msgstr "Ðåäàêòèðàíå íà öâÿò" |
#, fuzzy |
msgid "&End Editing" |
msgstr "Êðàé íà ðåäàêòèðàíàòà ðàìêà" |
#, fuzzy |
1515,10 → 1593,10 |
msgid "Delete Nodes" |
msgstr "Èçòðèâàíå íà âðúõ" |
msgid "Move Control Points independently" |
msgid "Move Control Points Independently" |
msgstr "" |
msgid "Move Control Points symmetrical" |
msgid "Move Control Points Symmetrical" |
msgstr "" |
msgid "Reset Control Points" |
1527,42 → 1605,56 |
msgid "Reset this Control Point" |
msgstr "" |
msgid "Opens a Polygon or cuts a Bezier Curve" |
msgid "Open a Polygon or Cuts a Bezier Curve" |
msgstr "" |
msgid "Closes this Bezier Curve" |
#, fuzzy |
msgid "Close this Bezier Curve" |
msgstr "Âìúêâàíå íà èëþñòðàöèÿ" |
msgid "Mirror the Path Horizontally" |
msgstr "" |
msgid "Mirrors the Path Horizontally" |
msgid "Mirror the Path Vertically" |
msgstr "" |
msgid "Mirrors the Path Vertically" |
msgid "Shear the Path Horizontally to the Rright" |
msgstr "" |
msgid "Shears the Path horizontal to the right" |
msgid "Shear the Path Horizontally to the Left" |
msgstr "" |
msgid "Shears the Path horizontal to the left" |
msgid "Shear the Path Vertically Up" |
msgstr "" |
msgid "Shears the Path vertical up" |
msgid "Shear the Path Vertically Down" |
msgstr "" |
msgid "Shears the Path vertical down" |
msgid "Rotate the Path Counter-Clockwise" |
msgstr "" |
msgid "Rotates the Path counter-clockwise" |
msgid "Rotate the Path Clockwise" |
msgstr "" |
msgid "Rotates the Path clockwise" |
msgid "Reduce the Size of the Path by shown %" |
msgstr "" |
msgid "Reduce the Size of the Path by 10%" |
msgid "Enlarge the Size of the Path by shown %" |
msgstr "" |
msgid "Enlarges the Size of the Path by 10%" |
msgid "Angle of Rotation" |
msgstr "" |
#, c-format |
msgid "% to Enlarge or Reduce By" |
msgstr "" |
msgid "Activate Contour Line Editing Mode" |
msgstr "" |
msgid "Reset the Contour Line to the Original Shape of the Frame" |
msgstr "" |
msgid "" |
"When checked use Coordinates relative to the Page,\n" |
"otherwise Coordinates are relative to the Object." |
1576,10 → 1668,6 |
msgid "Horizontal Guides" |
msgstr "Õîðèçîíòàëíî îáúðíàòî" |
#, fuzzy |
msgid "&Y-Pos:" |
msgstr "Ïîçèöèÿ ïî Y:" |
msgid "&Add" |
msgstr "" |
1591,10 → 1679,6 |
msgid "Vertical Guides" |
msgstr "Âåðòèêàëíè èíòåðâàëè" |
#, fuzzy |
msgid "&X-Pos:" |
msgstr "Ïîçèöèÿ ïî X:" |
msgid "A&dd" |
msgstr "" |
1656,11 → 1740,12 |
msgid "Insert Page" |
msgstr "Âìúêâàíå íà ñòðàíèöà" |
msgid "Inserting" |
#, fuzzy |
msgid "&Inserting" |
msgstr "Âìúêâàíå" |
#, fuzzy |
msgid "page(s)" |
msgid "Page(s)" |
msgstr "Ñòðàíèöà(è)" |
msgid "before Page" |
1673,15 → 1758,14 |
msgid "at End" |
msgstr "Íà êðàÿ" |
msgid "Inserting" |
msgstr "Âìúêâàíå" |
#, fuzzy |
msgid "Template (Left Page):" |
msgid "&Template (Left Page):" |
msgstr "Ôîðìà çà òàçè ñòðàíèöà" |
#, fuzzy |
msgid "Template:" |
msgstr "Íîâà ôîðìà" |
#, fuzzy |
msgid "Template (Right Page):" |
msgstr "Ôîðìà çà òàçè ñòðàíèöà" |
1699,8 → 1783,9 |
msgid "&Close" |
msgstr "Çàòâîðè" |
msgid "New Script:" |
msgstr "" |
#, fuzzy |
msgid "&New Script:" |
msgstr "Ñòàíäàðòíî" |
msgid "New Script" |
msgstr "" |
1709,6 → 1794,14 |
msgid "Do you really want do delete this Script?" |
msgstr "Íàèñòèíà ëè èñêàòå äà èçòðèåòå òîçè ñòèë?" |
#, fuzzy |
msgid "&No" |
msgstr "Íå" |
#, fuzzy |
msgid "&Yes" |
msgstr "äà" |
msgid "Manage Keyboard Shortcuts" |
msgstr "" |
1843,19 → 1936,30 |
msgid "Move Page(s):" |
msgstr "Ïðåìåñòâàíå íà ñòðàíèöà(è)" |
msgid "X, Y, Z" |
msgid "X, Y, &Z" |
msgstr "" |
msgid "Shape" |
#, fuzzy |
msgid "&Shape" |
msgstr "Ôîðìà" |
msgid "Image" |
#, fuzzy |
msgid "&Text" |
msgstr "Ñêðèé ðàìêèòå" |
#, fuzzy |
msgid "&Image" |
msgstr "Èëþñòðàöèÿ" |
msgid "Line" |
#, fuzzy |
msgid "&Line" |
msgstr "Ëèíèÿ" |
#, fuzzy |
msgid "&Colors" |
msgstr "Öâåòîâå" |
#, fuzzy |
msgid "Name" |
msgstr "Èìå:" |
1862,11 → 1966,17 |
msgid "Geometry" |
msgstr "" |
msgid "Height:" |
#, fuzzy |
msgid "&Width:" |
msgstr "Øèðî÷èíà:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Âèñî÷èíà:" |
msgid "Rotation:" |
msgstr "" |
#, fuzzy |
msgid "&Rotation:" |
msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò:" |
#, fuzzy |
msgid "Basepoint:" |
1876,25 → 1986,15 |
msgstr "" |
#, fuzzy |
msgid "Text flows around frame" |
msgstr "Òåêñò îêîëî êóòèÿòà" |
msgid "Use Bounding Box" |
msgstr "" |
msgid "Use Contour Line" |
msgstr "" |
#, fuzzy |
msgid "Shape:" |
msgstr "Ôîðìà" |
#, fuzzy |
msgid "Edit Shape..." |
msgid "&Edit Shape..." |
msgstr "Ðåäàêòèðàíå íà ðàìêà" |
msgid "" |
"Round\n" |
"R&ound\n" |
"Corners:" |
msgstr "" |
1902,26 → 2002,31 |
msgid "Distance of Text" |
msgstr "Ðàçòîÿíèå" |
msgid "Columns:" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Êîëîíè:" |
msgid "Gap:" |
msgid "&Gap:" |
msgstr "" |
msgid "Top:" |
#, fuzzy |
msgid "To&p:" |
msgstr "Îòãîðå:" |
msgid "Bottom:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Îòäîëó:" |
msgid "Left:" |
#, fuzzy |
msgid "&Left:" |
msgstr "Ëÿâî:" |
msgid "Right:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Äÿñíî:" |
#, fuzzy |
msgid "Tabulators..." |
msgid "T&abulators..." |
msgstr "Ôîðìè..." |
#, fuzzy |
1937,7 → 2042,19 |
msgid "Distance from Curve:" |
msgstr "" |
msgid "Font Size:" |
#, fuzzy |
msgid "Text &Flows Around Frame" |
msgstr "Òåêñò îêîëî êóòèÿòà" |
msgid "Use &Bounding Box" |
msgstr "" |
#, fuzzy |
msgid "&Use Contour Line" |
msgstr "Ðåäàêòèðàíå íà öâÿò" |
#, fuzzy |
msgid "&Font Size:" |
msgstr "Ðàçìåð íà øðèôò:" |
msgid "Custom Spacing" |
1944,37 → 2061,42 |
msgstr "" |
#, fuzzy |
msgid "Kerning:" |
msgid "&Kerning:" |
msgstr "Âíèìàíèÿ" |
#, fuzzy |
msgid "Language:" |
msgstr "Îò .. äî .." |
msgid "L&ine Spacing:" |
msgstr "Ëèíåéíî ðàçòîÿíèå" |
msgid "Free Scaling" |
msgstr "" |
#, fuzzy |
msgid "St&yle:" |
msgstr "Ñòèë" |
#, fuzzy |
msgid "X-Pos.:" |
msgstr "Ïîçèöèÿ ïî X:" |
msgid "Lan&guage:" |
msgstr "Îò .. äî .." |
#, fuzzy |
msgid "Y-Pos.:" |
msgstr "Ïîçèöèÿ ïî Y:" |
msgid "&Free Scaling" |
msgstr "Ìàùàáèðàíå:" |
#, fuzzy |
msgid "X-Scale:" |
msgid "X-Sc&ale:" |
msgstr "Ìàùàáèðàíå:" |
#, fuzzy |
msgid "Y-Scale:" |
msgid "Y-Scal&e:" |
msgstr "Ìàùàáèðàíå:" |
#, fuzzy |
msgid "Scale to Frame Size" |
msgid "Scale &To Frame Size" |
msgstr "Ìàùàáèðàíå " |
#, fuzzy |
msgid "P&roportional" |
msgstr "Õîðèçîíòàëíî" |
#, fuzzy |
msgid "Input Profile:" |
msgstr "Ïå÷àò âúâ ôàéë:" |
1987,15 → 2109,17 |
msgid "End Points" |
msgstr "" |
msgid "Type of Line:" |
#, fuzzy |
msgid "&Basepoint:" |
msgstr "Áàçèðàíà íà:" |
msgid "T&ype of Line:" |
msgstr "" |
msgid "Line Width:" |
#, fuzzy |
msgid "Line &Width:" |
msgstr "Øèðî÷èíà íà ëèíèÿ:" |
msgid "Edges:" |
msgstr "" |
msgid "Miter Join" |
msgstr "" |
2005,7 → 2129,7 |
msgid "Round Join" |
msgstr "" |
msgid "Endings:" |
msgid "Ed&ges:" |
msgstr "" |
msgid "Flat Cap" |
2017,6 → 2141,10 |
msgid "Round Cap" |
msgstr "" |
#, fuzzy |
msgid "&Endings:" |
msgstr "Ñÿíêà:" |
msgid "No Style" |
msgstr "Áåç ñòèë" |
2221,7 → 2349,20 |
msgid "Rendering intent for the image" |
msgstr "" |
msgid "&X1:" |
msgstr "" |
msgid "X&2:" |
msgstr "" |
msgid "Y&1:" |
msgstr "" |
#, fuzzy |
msgid "&Y2:" |
msgstr "äà" |
#, fuzzy |
msgid "Column width" |
msgstr "Êîëîííè ëèíèè" |
2243,6 → 2384,9 |
msgid "p" |
msgstr "" |
msgid "Line Width:" |
msgstr "Øèðî÷èíà íà ëèíèÿ:" |
msgid " pt " |
msgstr "" |
2301,14 → 2445,6 |
msgstr "Èäåíòè÷íîñò" |
#, fuzzy |
msgid "&Width:" |
msgstr "Øèðî÷èíà:" |
#, fuzzy |
msgid "&Height:" |
msgstr "Âèñî÷èíà:" |
#, fuzzy |
msgid "&Facing Pages" |
msgstr "Ëèöåâè ñòðàíèöè" |
2320,22 → 2456,10 |
msgstr "Ïîìîùíè ïîëåòà" |
#, fuzzy |
msgid "&Left:" |
msgstr "Ëÿâî:" |
#, fuzzy |
msgid "&Right:" |
msgstr "Äÿñíî:" |
#, fuzzy |
msgid "&Top:" |
msgstr "Îòãîðå:" |
#, fuzzy |
msgid "&Bottom:" |
msgstr "Îòäîëó:" |
#, fuzzy |
msgid "F&irst Page Number:" |
msgstr "Âìúêâàíå íà ñòðàíèöà" |
2364,13 → 2488,6 |
msgid "Column Guides" |
msgstr "Êîëîííè ëèíèè" |
msgid "&Gap:" |
msgstr "" |
#, fuzzy |
msgid "Colu&mns:" |
msgstr "Êîëîíè:" |
msgid "Document page size, either a standard size or a custom size" |
msgstr "" |
2446,10 → 2563,6 |
msgstr "Ïðåìåñòè òóê" |
#, fuzzy |
msgid "&Paste" |
msgstr "Ïîñòàâÿíå" |
#, fuzzy |
msgid "Show &Margins" |
msgstr "Ïîêàæè ïîëåòàòà" |
2657,14 → 2770,6 |
msgstr "" |
#, fuzzy |
msgid "Cu&t" |
msgstr "Îòðÿçâàíå" |
#, fuzzy |
msgid "&Copy" |
msgstr "Êîïèðàíå" |
#, fuzzy |
msgid "C&lear Contents" |
msgstr "Ñúäúðæàíèå" |
2688,6 → 2793,12 |
msgid "Copy of" |
msgstr "Êîïèå íà " |
msgid "Image" |
msgstr "Èëþñòðàöèÿ" |
msgid "Line" |
msgstr "Ëèíèÿ" |
msgid "Polygon" |
msgstr "" |
2998,8 → 3109,9 |
msgid "Solid Colors:" |
msgstr "" |
msgid "Use ICC-Profile" |
msgstr "" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Ïå÷àò âúâ ôàéë:" |
#, fuzzy |
msgid "Profile:" |
3011,10 → 3123,6 |
msgid "Images:" |
msgstr "Èëþñòðàöèè:" |
#, fuzzy |
msgid "Use ICC Profile" |
msgstr "Ïå÷àò âúâ ôàéë:" |
msgid "Don't use embedded ICC profiles" |
msgstr "" |
3186,6 → 3294,15 |
"Choose Printer when printing to a true 4 color CMYK printer." |
msgstr "" |
msgid "" |
"This is an advanced setting which is not enabled by default. This should " |
"only be enabled\n" |
"when specifically requested by your printer and they have given you the " |
"exact details needed.\n" |
"Otherwise, your exported PDF may not print properly and is truly not " |
"portable across systems." |
msgstr "" |
msgid "Embed a color profile for solid colors" |
msgstr "" |
3251,6 → 3368,9 |
msgid "Path" |
msgstr "Ïúò" |
msgid "Print" |
msgstr "Ïå÷àò" |
msgid "Status" |
msgstr "Ñúñòîÿíèå" |
3269,6 → 3389,9 |
msgid "Corners:" |
msgstr "" |
msgid "Rotation:" |
msgstr "" |
msgid "Convex Polygon" |
msgstr "" |
3290,10 → 3413,6 |
msgstr "Çàðåæäàíå..." |
#, fuzzy |
msgid "Save &As..." |
msgstr "Çàïèøè êàòî..." |
#, fuzzy |
msgid "&Small" |
msgstr "Ìàëúê" |
3306,10 → 3425,6 |
msgstr "Ñòðàíèöà" |
#, fuzzy |
msgid "&File" |
msgstr "Ôàéë" |
#, fuzzy |
msgid "&Preview" |
msgstr "Ïðåãëåä" |
3399,6 → 3514,9 |
msgid "Javascripts..." |
msgstr "" |
msgid "Undo" |
msgstr "" |
msgid "Show Page Palette" |
msgstr "" |
3412,8 → 3530,9 |
msgid "Reading Preferences" |
msgstr "Äàäåíîñòè" |
msgid "Getting ICC-Profiles" |
msgstr "" |
#, fuzzy |
msgid "Getting ICC Profiles" |
msgstr "Ïå÷àò âúâ ôàéë:" |
msgid "Init Hyphenator" |
msgstr "" |
3432,10 → 3551,6 |
msgstr "" |
#, fuzzy |
msgid "&Open..." |
msgstr "Îòâîðè..." |
#, fuzzy |
msgid "Open &Recent" |
msgstr "Îòâàðÿíå íà äîêóìåíò" |
3448,6 → 3563,9 |
msgid "Save" |
msgstr "Çàïèøè" |
msgid "Save as..." |
msgstr "Çàïèøè êàòî..." |
#, fuzzy |
msgid "Re&vert to Saved" |
msgstr "Âúñòàíîâè îò çàïèñàí" |
3513,17 → 3631,22 |
msgid "Quit" |
msgstr "Èçõîä" |
msgid "&Undo" |
msgstr "" |
#, fuzzy |
msgid "C&lear" |
msgstr "Èç÷èñòâàíå" |
#, fuzzy |
msgid "Select &All" |
msgstr "Ìàðêèðàíå íà âñè÷êî" |
msgid "Cut" |
msgstr "Îòðÿçâàíå" |
msgid "Copy" |
msgstr "Êîïèðàíå" |
msgid "Paste" |
msgstr "Ïîñòàâÿíå" |
msgid "Clear" |
msgstr "Èç÷èñòâàíå" |
msgid "Select all" |
msgstr "Ìàðêèðàíå íà âñè÷êî" |
3603,10 → 3726,6 |
msgid "&Edit Frame" |
msgstr "Ðåäàêòèðàíå íà ðàìêà" |
#, fuzzy |
msgid "&Shape" |
msgstr "Ôîðìà" |
msgid "&Attach Text to Path" |
msgstr "" |
3651,7 → 3770,7 |
msgstr "Îòðàçè ôîðìàòà..." |
#, fuzzy |
msgid "&Manage Guides..." |
msgid "Manage &Guides..." |
msgstr "Ïîìîùíè ïîëåòà" |
#, fuzzy |
3991,6 → 4110,10 |
msgid "Scribus Manual" |
msgstr "Äîêóìåíòàöèÿ" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Ñÿíêà:" |
msgid "Hide Baseline Grid" |
msgstr "" |
4272,64 → 4395,81 |
msgstr "" |
#, fuzzy |
msgid "PDF-Tools" |
msgid "PDF Tools" |
msgstr "Èíñòðóìåíòè" |
msgid "Insert PDF-Fields" |
msgstr "" |
#, fuzzy |
msgid "Insert PDF Fields" |
msgstr "Âìóêâàíå íà ëèíèè" |
msgid "Insert PDF-Annotations" |
msgstr "" |
#, fuzzy |
msgid "Insert PDF Annotations" |
msgstr "PDF àíîòàöèÿ" |
#, fuzzy |
msgid "Manage Tabulators" |
msgstr "Óïðàâëåíèå íà èëþñòðàöèè" |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "F&ill Color Settings" |
msgstr "Öâÿò íà çàïúëâàíå:" |
msgid "Forced" |
msgstr "Ôîðñèðàí" |
#, fuzzy |
msgid "&Stroke Color Settings" |
msgstr "Ïîêàæè öâåòîâåòå" |
msgid "Block" |
msgstr "Áëîê" |
#, fuzzy |
msgid "&Character Settings" |
msgstr "Ïàðàìåòðè íà ïå÷àòàùîòî óñòðîéñòâî" |
msgid "Right" |
msgstr "Äÿñíî" |
#, fuzzy |
msgid "Kerning:" |
msgstr "Âíèìàíèÿ" |
msgid "Center" |
msgstr "Â ñðåäàòà" |
#, fuzzy |
msgid "St&yle Settings" |
msgstr "Îïöèè íà ìèøêàòà" |
msgid "Left" |
msgstr "Ëÿâî" |
#, fuzzy |
msgid "&Font Settings" |
msgstr "Îïöèè íà ìèøêàòà" |
msgid "Font of selected text" |
msgstr "" |
msgid "Story Editor" |
msgstr "" |
#, fuzzy |
msgid "Save to File..." |
msgid "&Reload Text from Frame" |