/trunk/Scribus/scribus-1.1.3.pot |
---|
File deleted |
Property changes: |
Deleted: svn:eol-style |
## -1 +0,0 ## |
-native |
\ No newline at end of property |
Deleted: svn:keywords |
## -1 +0,0 ## |
-Author Date Id Revision |
\ No newline at end of property |
Index: trunk/Scribus/configure.in |
=================================================================== |
--- trunk/Scribus/configure.in (revision 130) |
+++ trunk/Scribus/configure.in (revision 131) |
@@ -13,7 +13,7 @@ |
AC_ARG_PROGRAM |
dnl Automake doc recommends to do this only here. (Janos) |
-AM_INIT_AUTOMAKE(scribus,1.1.4cvs) |
+AM_INIT_AUTOMAKE(scribus,1.1.4) |
dnl KDE_SET_PREFIX |
/trunk/Scribus/ChangeLog |
---|
1,3 → 1,49 |
Changes since Version 1.1.3 |
18.12.2003 Groups can now rotated with the Properties Palette. |
17.12.2003 Updated the German and Russian Translation. |
16.12.2003 Added new Brazilian Translation. |
Updated the Russian Translation. |
15.12.2003 Added infomation about Pictures to the Info Entry in the context Menue. |
14.12.2003 Added an Info Entry to the right mouse click context Menue. |
Fixed redraw Issues. |
Fixed Grid drawing Issues when the Zoom Factor is != 100 %. |
12.12.2003 Added a Toolbar Button for the Story Editor. |
Added a Statusbar to the Story Editor. |
10.12.2003 Fixed Preferences Issues. |
Combined the Toolbar Buttons for Rectangles and Circles into one Button |
containing all Autoforms. |
09.12.2003 Added some new Shapes to the Autoforms Menue. |
Fixed the disabled Keyboard Bug. |
07.12.2003 Added various Shapes to the Shape Tab in the Properties Palette. |
Fixed misbehaviour with some corrupted Docs. |
06.12.2003 Added Convert to Outlines to right mouse click context Menue. |
The resolution setting is now used for all Pictures if they provide one. |
05.12.2003 Fixed incorrect hyphens in the PDF-Export with Russian Text. |
04.12.2003 Fixed Crash with SVG-Import. |
03.12.2003 Updated the Danish Traslation. |
Added a Crash Handler. |
01.12.2003 Fixed crash when holding down a key whilst editing a Textframe. |
Improved import of Template Pages, Line Styles and Styles. |
Fixed PDF-Export Issues. |
30.11.2003 Template Pages and Line Styles can now imported too. |
29.11.2003 Added Button for importing Styles for other Documents to the Style Editor. |
You can now switch Blackpoint Compensation on or off in the CMS Preferences. |
Changes since Version 1.1.2 |
28.11.2003 Fixed Bug that prevented proper recognition of User Defined ICC-Profile Directorys. |
/trunk/Scribus/README |
---|
1,4 → 1,4 |
This is Scribus Version 1.1.3, the fourth Developers Relase after Scribus 1.0.1 |
This is Scribus Version 1.1.4, the fivth Developers Relase after Scribus 1.0.1 |
This Version introduces a complete rewrite of the rendering Engine. All rendering |
is now done via libart and freetype2. This requires that libart and freetype2 are |
26,4 → 26,4 |
were not installed. |
Franz Schmid |
in November 2003 |
in December 2003 |
/trunk/Scribus/scribus/mpalette.h |
---|
196,11 → 196,6 |
QLabel* SprachT; |
QComboBox* LangCombo; |
QGroupBox* GroupBoxCM; |
QWidgetStack* TabStackR; |
QWidget* pageRG; |
QWidget* pageRS; |
QToolButton* RotCW; |
QToolButton* RotCCW; |
PageItem *CurItem; |
bool HaveDoc; |
bool HaveItem; |
207,6 → 202,7 |
ScribusDoc *doc; |
double Umrech; |
bool LMode; |
int RoVal; |
public slots: |
void SetDoc(ScribusDoc *d); |
244,8 → 240,6 |
void NewY(); |
void NewW(); |
void NewH(); |
void NewRcw(); |
void NewRccw(); |
void NewR(); |
void NewRR(); |
void NewLsp(); |
338,7 → 332,6 |
QHBoxLayout* layout23; |
QHBoxLayout* layout24; |
QHBoxLayout* layoutLang; |
QHBoxLayout* Layout1RG; |
}; |
#endif |
/trunk/Scribus/scribus/mpalette.cpp |
---|
25,6 → 25,7 |
setCaption( tr( "Properties" ) ); |
HaveDoc = false; |
HaveItem = false; |
RoVal = 0; |
Umrech = UmReFaktor; |
setIcon( loadIcon("AppIcon.png") ); |
setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)1, (QSizePolicy::SizeType)1, 0, 0, sizePolicy().hasHeightForWidth() ) ); |
268,37 → 269,16 |
Layout12->addWidget( BottomRight, 2, 2, Qt::AlignCenter ); |
RotationGroupLayout->addLayout( Layout12 ); |
TabStackR = new QWidgetStack( RotationGroup, "TabStackR" ); |
TabStackR->setFrameShape( QWidgetStack::NoFrame ); |
pageRS = new QWidget( TabStackR, "pageRS" ); |
Layout15_2 = new QVBoxLayout( pageRS, 3, 0, "Layout15_2"); |
Text3 = new QLabel( pageRS, "Text3" ); |
Layout15_2 = new QVBoxLayout( 0, 3, 0, "Layout15_2"); |
Text3 = new QLabel( RotationGroup, "Text3" ); |
Text3->setText( tr( "by:" ) ); |
Layout15_2->addWidget( Text3 ); |
Rot = new MSpinBox( pageRS, 2); |
Rot = new MSpinBox( RotationGroup, 2); |
Rot->setSuffix(" °"); |
Rot->setWrapping( true ); |
Layout15_2->addWidget( Rot ); |
TabStackR->addWidget( pageRS, 0 ); |
RotationGroupLayout->addLayout(Layout15_2); |
pageRG = new QWidget( TabStackR, "pageRG" ); |
Layout1RG = new QHBoxLayout( pageRG, 0, 0, "Layout1RG"); |
RotCW = new QToolButton( pageRG, "RotCW" ); |
RotCW->setMaximumSize( QSize( 24, 24 ) ); |
RotCW->setAutoRepeat(true); |
RotCW->setText(""); |
RotCW->setPixmap(loadIcon("rotate_cw.png")); |
Layout1RG->addWidget( RotCW ); |
RotCCW = new QToolButton( pageRG, "RotCCW" ); |
RotCCW->setMaximumSize( QSize( 24, 24 ) ); |
RotCCW->setAutoRepeat(true); |
RotCCW->setText(""); |
RotCCW->setPixmap(loadIcon("rotate_ccw.png")); |
Layout1RG->addWidget( RotCCW ); |
TabStackR->addWidget( pageRG, 1 ); |
RotationGroupLayout->addWidget( TabStackR ); |
layout60a->addWidget(RotationGroup); |
QSpacerItem* spacer12 = new QSpacerItem( 0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum ); |
layout60a->addItem( spacer12 ); |
866,9 → 846,7 |
QToolTip::add( ZTop, tr( "Move to Front" ) ); |
QToolTip::add( ZBottom, tr( "Move to Back" ) ); |
QToolTip::add( Locked, tr( "Locks or unlocks the Object" ) ); |
QToolTip::add( NoPrint, tr( "Enables or disables printing of the Object" ) ); |
QToolTip::add( RotCW, tr( "Rotates Group clockwise by 1°" ) ); |
QToolTip::add( RotCCW, tr( "Rotates Group counter-clockwise by 1°" ) ); |
QToolTip::add( NoPrint, tr( "Enables or disables printing of the Object" ) );; |
connect(Xpos, SIGNAL(valueChanged(int)), this, SLOT(NewX())); |
connect(Ypos, SIGNAL(valueChanged(int)), this, SLOT(NewY())); |
connect(Width, SIGNAL(valueChanged(int)), this, SLOT(NewW())); |
932,8 → 910,6 |
connect(MonitorI, SIGNAL(activated(int)), this, SLOT(ChIntent())); |
connect(NameEdit, SIGNAL(Leaved()), this, SLOT(NewName())); |
connect(LangCombo, SIGNAL(activated(int)), this, SLOT(NewLanguage())); |
connect(RotCW, SIGNAL(clicked()), this, SLOT(NewRcw())); |
connect(RotCCW, SIGNAL(clicked()), this, SLOT(NewRccw())); |
HaveItem = false; |
Xpos->setValue(0); |
Ypos->setValue(0); |
941,7 → 917,6 |
Height->setValue(0); |
Rot->setValue(0); |
RoundRect->setValue(0); |
TabStackR->raiseWidget(0); |
TabStack->raiseWidget(0); |
TabStack->widget(0)->setEnabled(false); |
TabStack2->raiseWidget(0); |
1160,7 → 1135,7 |
int visID; |
if (doc->ActPage->GroupSel) |
{ |
TabStackR->raiseWidget(1); |
RoVal = 0; |
double gx, gy, gh, gw; |
doc->ActPage->getGroupRect(&gx, &gy, &gw, &gh); |
if (TopLeft->isChecked()) |
1196,7 → 1171,6 |
} |
else |
{ |
TabStackR->raiseWidget(0); |
NameEdit->setEnabled(true); |
FlipH->setEnabled(false); |
FlipV->setEnabled(false); |
1850,27 → 1824,16 |
} |
} |
void Mpalette::NewRcw() |
{ |
if ((HaveDoc) && (HaveItem)) |
doc->ActPage->RotateGroup(1.0); |
} |
void Mpalette::NewRccw() |
{ |
if ((HaveDoc) && (HaveItem)) |
doc->ActPage->RotateGroup(-1.0); |
} |
void Mpalette::NewR() |
{ |
if ((HaveDoc) && (HaveItem)) |
{ |
if (doc->ActPage->GroupSel) |
doc->ActPage->RotateGroup(-1); |
doc->ActPage->RotateGroup(static_cast<double>(Rot->value() - RoVal)/100.0*(-1)); |
else |
doc->ActPage->RotateItem(static_cast<double>(Rot->value())/100.0*(-1), CurItem->ItemNr); |
emit DocChanged(); |
RoVal = Rot->value(); |
} |
} |
/trunk/Scribus/scribus/libabout/about.cpp |
---|
38,7 → 38,7 |
tabLayout1->addWidget( PixmapLabel1 ); |
BuildID = new QLabel( tab, "BB" ); |
BuildID->setAlignment(Qt::AlignCenter); |
QString bu = tr("%1. %2 %3 ").arg(18).arg("December").arg(2003); |
QString bu = tr("%1. %2 %3 ").arg(20).arg("December").arg(2003); |
#ifdef HAVE_CMS |
bu += "C"; |
#else |
/trunk/Scribus/scribus/po/scribus.ru.po |
---|
File deleted |
Property changes: |
Deleted: svn:eol-style |
## -1 +0,0 ## |
-native |
\ No newline at end of property |
Deleted: svn:keywords |
## -1 +0,0 ## |
-Author Date Id Revision |
\ No newline at end of property |
Index: trunk/Scribus/scribus/po/scribus.ru.ts |
=================================================================== |
--- trunk/Scribus/scribus/po/scribus.ru.ts (nonexistent) |
+++ trunk/Scribus/scribus/po/scribus.ru.ts (revision 131) |
@@ -0,0 +1,5937 @@ |
+<!DOCTYPE TS><TS> |
+<context> |
+ <name>About</name> |
+ <message> |
+ <source>About Scribus%1%2</source> |
+ <translation>О Scribus%1%2</translation> |
+ </message> |
+ <message> |
+ <source>%1. %2 %3 </source> |
+ <translation>%1. %2 %3 </translation> |
+ </message> |
+ <message> |
+ <source>Scribus Version %1 |
+%2 %3</source> |
+ <translation>Scribus v%1 |
+%2 %3</translation> |
+ </message> |
+ <message> |
+ <source>Build-ID:</source> |
+ <translation>ID сборки:</translation> |
+ </message> |
+ <message> |
+ <source>About</source> |
+ <translation>О программе</translation> |
+ </message> |
+ <message> |
+ <source>Programming:</source> |
+ <translation>Программирование:</translation> |
+ </message> |
+ <message> |
+ <source>Contributions from:</source> |
+ <translation>Вклад от:</translation> |
+ </message> |
+ <message> |
+ <source>Documentation:</source> |
+ <translation>Документация:</translation> |
+ </message> |
+ <message> |
+ <source>Authors</source> |
+ <translation>Авторы</translation> |
+ </message> |
+ <message> |
+ <source>German:</source> |
+ <translation>На немецкий:</translation> |
+ </message> |
+ <message> |
+ <source>French:</source> |
+ <translation>На французский:</translation> |
+ </message> |
+ <message> |
+ <source>Spanish and Catalan:</source> |
+ <translation>На испанский и каталонский:</translation> |
+ </message> |
+ <message> |
+ <source>Italian:</source> |
+ <translation>На итальянский:</translation> |
+ </message> |
+ <message> |
+ <source>Hungarian:</source> |
+ <translation>На венгерский:</translation> |
+ </message> |
+ <message> |
+ <source>Ukrainian:</source> |
+ <translation>На украинский:</translation> |
+ </message> |
+ <message> |
+ <source>Bulgarian:</source> |
+ <translation>На болгарский:</translation> |
+ </message> |
+ <message> |
+ <source>Galician:</source> |
+ <translation>На галльский:</translation> |
+ </message> |
+ <message> |
+ <source>Turkish:</source> |
+ <translation>На турецкий:</translation> |
+ </message> |
+ <message> |
+ <source>Lithuanian:</source> |
+ <translation>На литовский:</translation> |
+ </message> |
+ <message> |
+ <source>Polish:</source> |
+ <translation>На польский:</translation> |
+ </message> |
+ <message> |
+ <source>Czech:</source> |
+ <translation>На чешский:</translation> |
+ </message> |
+ <message> |
+ <source>Slovak:</source> |
+ <translation>На словацкий:</translation> |
+ </message> |
+ <message> |
+ <source>Danish:</source> |
+ <translation>На датский:</translation> |
+ </message> |
+ <message> |
+ <source>Norwegian:</source> |
+ <translation>На норвежский:</translation> |
+ </message> |
+ <message> |
+ <source>English:</source> |
+ <translation>На английский:</translation> |
+ </message> |
+ <message> |
+ <source>Welsh:</source> |
+ <translation>На уэльский:</translation> |
+ </message> |
+ <message> |
+ <source>Translations</source> |
+ <translation>Переводы</translation> |
+ </message> |
+ <message> |
+ <source>Close</source> |
+ <translation>Закрыть</translation> |
+ </message> |
+ <message> |
+ <source>Russian:</source> |
+ <translation>На русский:</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>AdvOptions</name> |
+ <message> |
+ <source>Advanced Options</source> |
+ <translation>Дополнительные параметры</translation> |
+ </message> |
+ <message> |
+ <source>Mirror Page(s) horizontal</source> |
+ <translation>Зеркалировать по горизонтали</translation> |
+ </message> |
+ <message> |
+ <source>Mirror Page(s) vertical</source> |
+ <translation>Зеркалировать по вертикали</translation> |
+ </message> |
+ <message> |
+ <source>Apply ICC-Profiles</source> |
+ <translation>Применить ICC-профили</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Align</name> |
+ <message> |
+ <source>Distribute/Align</source> |
+ <translation>Распределение / Выравнивание</translation> |
+ </message> |
+ <message> |
+ <source>Align</source> |
+ <translation>Выровнять</translation> |
+ </message> |
+ <message> |
+ <source>Horizontal</source> |
+ <translation>По горизонтали</translation> |
+ </message> |
+ <message> |
+ <source>between:</source> |
+ <translation>между:</translation> |
+ </message> |
+ <message> |
+ <source>Left Sides</source> |
+ <translation>левыми сторонами</translation> |
+ </message> |
+ <message> |
+ <source>Middles</source> |
+ <translation>серединой</translation> |
+ </message> |
+ <message> |
+ <source>Right Sides</source> |
+ <translation>правыми сторонами</translation> |
+ </message> |
+ <message> |
+ <source>Don't change</source> |
+ <translation>Не изменять</translation> |
+ </message> |
+ <message> |
+ <source>Displacement</source> |
+ <translation>Смещение</translation> |
+ </message> |
+ <message> |
+ <source>Distribute evenly</source> |
+ <translation>Распределить равномерно</translation> |
+ </message> |
+ <message> |
+ <source>Vertical</source> |
+ <translation>По вертикали</translation> |
+ </message> |
+ <message> |
+ <source>Top Sides</source> |
+ <translation>верхними сторонами</translation> |
+ </message> |
+ <message> |
+ <source>Bottom Sides</source> |
+ <translation>нижними сторонами</translation> |
+ </message> |
+ <message> |
+ <source> pts</source> |
+ <translation>pts</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>мм</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Apply</source> |
+ <translation>Применить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Annot</name> |
+ <message> |
+ <source>Field Properties</source> |
+ <translation>Свойства поля</translation> |
+ </message> |
+ <message> |
+ <source>Type:</source> |
+ <translation>Тип:</translation> |
+ </message> |
+ <message> |
+ <source>Button</source> |
+ <translation>Кнопка</translation> |
+ </message> |
+ <message> |
+ <source>Text Field</source> |
+ <translation>Текстовое поле</translation> |
+ </message> |
+ <message> |
+ <source>Check Box</source> |
+ <translation>Флажок</translation> |
+ </message> |
+ <message> |
+ <source>Combo Box</source> |
+ <translation>Выпадающий список</translation> |
+ </message> |
+ <message> |
+ <source>List Box</source> |
+ <translation>Список</translation> |
+ </message> |
+ <message> |
+ <source>Properties</source> |
+ <translation>Свойства</translation> |
+ </message> |
+ <message> |
+ <source>Name:</source> |
+ <translation>Имя:</translation> |
+ </message> |
+ <message> |
+ <source>Tool-Tip:</source> |
+ <translation>Подсказка:</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Font for use with PDF-1.3:</source> |
+ <translation>Шрифт для PDF-1.3:</translation> |
+ </message> |
+ <message> |
+ <source>Courier</source> |
+ <translation>Courier</translation> |
+ </message> |
+ <message> |
+ <source>Courier Bold</source> |
+ <translation>Courier Bold</translation> |
+ </message> |
+ <message> |
+ <source>Courier Italic</source> |
+ <translation>Courier Italic</translation> |
+ </message> |
+ <message> |
+ <source>Courier Bold Italic</source> |
+ <translation>Courier Bold Italic</translation> |
+ </message> |
+ <message> |
+ <source>Helvetica</source> |
+ <translation>Helvetica</translation> |
+ </message> |
+ <message> |
+ <source>Helvetica Bold</source> |
+ <translation>Helvetica Bold</translation> |
+ </message> |
+ <message> |
+ <source>Helvetica Italic</source> |
+ <translation>Helvetica Italic</translation> |
+ </message> |
+ <message> |
+ <source>Helvetica Bold Italic</source> |
+ <translation>Helvetica Bold Italic</translation> |
+ </message> |
+ <message> |
+ <source>Times</source> |
+ <translation>Times</translation> |
+ </message> |
+ <message> |
+ <source>Times Bold</source> |
+ <translation>Times Bold</translation> |
+ </message> |
+ <message> |
+ <source>Times Italic</source> |
+ <translation>Times Italic</translation> |
+ </message> |
+ <message> |
+ <source>Times Bold Italic</source> |
+ <translation>Times Bold Italic</translation> |
+ </message> |
+ <message> |
+ <source>Zapf Dingbats</source> |
+ <translation>Zapf Dingbats</translation> |
+ </message> |
+ <message> |
+ <source>Symbol</source> |
+ <translation>Symbol</translation> |
+ </message> |
+ <message> |
+ <source>Border</source> |
+ <translation>Граница</translation> |
+ </message> |
+ <message> |
+ <source>Color:</source> |
+ <translation>Цвет:</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation>Не задано</translation> |
+ </message> |
+ <message> |
+ <source>Width:</source> |
+ <translation>Ширина:</translation> |
+ </message> |
+ <message> |
+ <source>Thin</source> |
+ <translation>Тонкая</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Нормальная</translation> |
+ </message> |
+ <message> |
+ <source>Wide</source> |
+ <translation>Широкая</translation> |
+ </message> |
+ <message> |
+ <source>Style:</source> |
+ <translation>Стиль:</translation> |
+ </message> |
+ <message> |
+ <source>Solid</source> |
+ <translation>Сплошная</translation> |
+ </message> |
+ <message> |
+ <source>Dashed</source> |
+ <translation>Пунктирная</translation> |
+ </message> |
+ <message> |
+ <source>Underline</source> |
+ <translation>Подчёркнутая</translation> |
+ </message> |
+ <message> |
+ <source>Beveled</source> |
+ <translation>С фаской</translation> |
+ </message> |
+ <message> |
+ <source>Inset</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Other</source> |
+ <translation>Другое</translation> |
+ </message> |
+ <message> |
+ <source>Read Only</source> |
+ <translation>Только для чтения</translation> |
+ </message> |
+ <message> |
+ <source>Required</source> |
+ <translation>Необходимо</translation> |
+ </message> |
+ <message> |
+ <source>Don't Export Value</source> |
+ <translation>Не экспортировать значение</translation> |
+ </message> |
+ <message> |
+ <source>Visibility:</source> |
+ <translation>Видимость:</translation> |
+ </message> |
+ <message> |
+ <source>Visible</source> |
+ <translation>Видимо</translation> |
+ </message> |
+ <message> |
+ <source>Hidden</source> |
+ <translation>Скрыто</translation> |
+ </message> |
+ <message> |
+ <source>No Print</source> |
+ <translation>Не печатается</translation> |
+ </message> |
+ <message> |
+ <source>No View</source> |
+ <translation>Не видно на экране</translation> |
+ </message> |
+ <message> |
+ <source>Appearance</source> |
+ <translation>Внешний вид</translation> |
+ </message> |
+ <message> |
+ <source>Text for Button Down</source> |
+ <translation>Текст нажатой кнопки</translation> |
+ </message> |
+ <message> |
+ <source>Text for Roll Over</source> |
+ <translation>Текст для Roll Over</translation> |
+ </message> |
+ <message> |
+ <source>Icons</source> |
+ <translation>Пиктограммы</translation> |
+ </message> |
+ <message> |
+ <source>Use Icons</source> |
+ <translation>Использовать пиктограммы</translation> |
+ </message> |
+ <message> |
+ <source>Remove</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Pressed</source> |
+ <translation>Нажато</translation> |
+ </message> |
+ <message> |
+ <source>Roll Over</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Icon Placement...</source> |
+ <translation>Расположение...</translation> |
+ </message> |
+ <message> |
+ <source>Highlight</source> |
+ <translation>В фокусе</translation> |
+ </message> |
+ <message> |
+ <source>Invert</source> |
+ <translation>Инвертировано</translation> |
+ </message> |
+ <message> |
+ <source>Outlined</source> |
+ <translation>Обведено</translation> |
+ </message> |
+ <message> |
+ <source>Push</source> |
+ <translation>Нажато</translation> |
+ </message> |
+ <message> |
+ <source>Multi-Line</source> |
+ <translation>Многострочное</translation> |
+ </message> |
+ <message> |
+ <source>Password</source> |
+ <translation>Пароль</translation> |
+ </message> |
+ <message> |
+ <source>Limit of</source> |
+ <translation>Символов не более</translation> |
+ </message> |
+ <message> |
+ <source>Characters</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Do Not Scroll</source> |
+ <translation>Без прокрутки</translation> |
+ </message> |
+ <message> |
+ <source>Do Not Spell Check</source> |
+ <translation>Без проверки орфографии</translation> |
+ </message> |
+ <message> |
+ <source>Check Style:</source> |
+ <translation>Стиль флажка:</translation> |
+ </message> |
+ <message> |
+ <source>Check</source> |
+ <translation>Галочка</translation> |
+ </message> |
+ <message> |
+ <source>Cross</source> |
+ <translation>Крестик</translation> |
+ </message> |
+ <message> |
+ <source>Diamond</source> |
+ <translation>Ромб</translation> |
+ </message> |
+ <message> |
+ <source>Circle</source> |
+ <translation>Круг</translation> |
+ </message> |
+ <message> |
+ <source>Star</source> |
+ <translation>Звезда</translation> |
+ </message> |
+ <message> |
+ <source>Square</source> |
+ <translation>Квадрат</translation> |
+ </message> |
+ <message> |
+ <source>Default is Checked</source> |
+ <translation>По умолчанию выставлен</translation> |
+ </message> |
+ <message> |
+ <source>Editable</source> |
+ <translation>Редактируем</translation> |
+ </message> |
+ <message> |
+ <source>Options</source> |
+ <translation>Параметры</translation> |
+ </message> |
+ <message> |
+ <source>Java Script</source> |
+ <translation>Java Script</translation> |
+ </message> |
+ <message> |
+ <source>Go To</source> |
+ <translation>Перейти</translation> |
+ </message> |
+ <message> |
+ <source>Submit Form</source> |
+ <translation>Переслать форму</translation> |
+ </message> |
+ <message> |
+ <source>Reset Form</source> |
+ <translation>Обнулить форму</translation> |
+ </message> |
+ <message> |
+ <source>Import Data</source> |
+ <translation>Импортировать данные</translation> |
+ </message> |
+ <message> |
+ <source>Event:</source> |
+ <translation>Событие:</translation> |
+ </message> |
+ <message> |
+ <source>Mouse Up</source> |
+ <translation>Mouse Up</translation> |
+ </message> |
+ <message> |
+ <source>Mouse Down</source> |
+ <translation>Mouse Down</translation> |
+ </message> |
+ <message> |
+ <source>Mouse Enter</source> |
+ <translation>Mouse Enter</translation> |
+ </message> |
+ <message> |
+ <source>Mouse Exit</source> |
+ <translation>Mouse Exit</translation> |
+ </message> |
+ <message> |
+ <source>On Focus</source> |
+ <translation>On Focus</translation> |
+ </message> |
+ <message> |
+ <source>On Blur</source> |
+ <translation>On Blur</translation> |
+ </message> |
+ <message> |
+ <source>Script:</source> |
+ <translation>Сценарий:</translation> |
+ </message> |
+ <message> |
+ <source>Edit...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Submit to URL:</source> |
+ <translation>Передать на URL</translation> |
+ </message> |
+ <message> |
+ <source>Submit Data as HTML</source> |
+ <translation>Переслать данные как HTML</translation> |
+ </message> |
+ <message> |
+ <source>Import Data from:</source> |
+ <translation>Откуда взять данные:</translation> |
+ </message> |
+ <message> |
+ <source>Destination</source> |
+ <translation>Цель</translation> |
+ </message> |
+ <message> |
+ <source>To File:</source> |
+ <translation>В файл:</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Page:</source> |
+ <translation>Страница:</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Action</source> |
+ <translation>Действие</translation> |
+ </message> |
+ <message> |
+ <source>Field is formatted as:</source> |
+ <translation>Формат поля:</translation> |
+ </message> |
+ <message> |
+ <source>Plain</source> |
+ <translation>Общий</translation> |
+ </message> |
+ <message> |
+ <source>Number</source> |
+ <translation>Числовой</translation> |
+ </message> |
+ <message> |
+ <source>Percentage</source> |
+ <translation>Проценты</translation> |
+ </message> |
+ <message> |
+ <source>Date</source> |
+ <translation>Дата</translation> |
+ </message> |
+ <message> |
+ <source>Time</source> |
+ <translation>Время</translation> |
+ </message> |
+ <message> |
+ <source>Custom</source> |
+ <translation>Другой</translation> |
+ </message> |
+ <message> |
+ <source>Number Format</source> |
+ <translation>Числовой формат</translation> |
+ </message> |
+ <message> |
+ <source>Decimals:</source> |
+ <translation>Цифр в дробной части:</translation> |
+ </message> |
+ <message> |
+ <source>Use Currency Symbol</source> |
+ <translation>Использовать символ валюты</translation> |
+ </message> |
+ <message> |
+ <source>Prepend Currency Symbol</source> |
+ <translation>Знак валюты перед числом</translation> |
+ </message> |
+ <message> |
+ <source>Formatting</source> |
+ <translation>Формат</translation> |
+ </message> |
+ <message> |
+ <source>Percent Format</source> |
+ <translation>Процентный формат</translation> |
+ </message> |
+ <message> |
+ <source>Date Format</source> |
+ <translation>Формат даты</translation> |
+ </message> |
+ <message> |
+ <source>Time Format</source> |
+ <translation>Формат времени</translation> |
+ </message> |
+ <message> |
+ <source>Custom Scripts</source> |
+ <translation>Другие сценарии</translation> |
+ </message> |
+ <message> |
+ <source>Format:</source> |
+ <translation>Формат:</translation> |
+ </message> |
+ <message> |
+ <source>Keystroke:</source> |
+ <translation>Нажатие клавиши:</translation> |
+ </message> |
+ <message> |
+ <source>Format</source> |
+ <translation>Формат</translation> |
+ </message> |
+ <message> |
+ <source>Value is not validated</source> |
+ <translation>Значение не проверено</translation> |
+ </message> |
+ <message> |
+ <source>Value must be greater than or equal to:</source> |
+ <translation>Значение должно быть больше или равно:</translation> |
+ </message> |
+ <message> |
+ <source>and less or equal to:</source> |
+ <translation>и меньше или равно:</translation> |
+ </message> |
+ <message> |
+ <source>Custom validate script:</source> |
+ <translation>Другой сценарий проверки:</translation> |
+ </message> |
+ <message> |
+ <source>Validate</source> |
+ <translation>Проверка</translation> |
+ </message> |
+ <message> |
+ <source>Value is not calculated</source> |
+ <translation>Значение не вычислено</translation> |
+ </message> |
+ <message> |
+ <source>Value is the</source> |
+ <translation>Значение является</translation> |
+ </message> |
+ <message> |
+ <source>sum</source> |
+ <translation>суммой</translation> |
+ </message> |
+ <message> |
+ <source>product</source> |
+ <translation>произведением</translation> |
+ </message> |
+ <message> |
+ <source>average</source> |
+ <translation>средним арифметическим</translation> |
+ </message> |
+ <message> |
+ <source>minimum</source> |
+ <translation>минимальным из</translation> |
+ </message> |
+ <message> |
+ <source>maximum</source> |
+ <translation>максимальным из</translation> |
+ </message> |
+ <message> |
+ <source>of the following fields:</source> |
+ <translation>следующих полей:</translation> |
+ </message> |
+ <message> |
+ <source>Pick...</source> |
+ <translation>Выбрать</translation> |
+ </message> |
+ <message> |
+ <source>Custom calculation script:</source> |
+ <translation>Другой сценарий для вычисления:</translation> |
+ </message> |
+ <message> |
+ <source>Calculate</source> |
+ <translation>Вычисления</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Flag is ignored for PDF-1.3</source> |
+ <translation>Флажок игнорируется в PDF-1.3</translation> |
+ </message> |
+ <message> |
+ <source>Enter a comma separated list of fields here</source> |
+ <translation>Введите разделённый запятыми список полей</translation> |
+ </message> |
+ <message> |
+ <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
+ <translation>Необходима хотя бы пиктограмма для Normal, |
+чтобы вообще использовать пиктограммы.</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
+ <translation>Изображения (*.tif *.png *.jpg *.xpm);;Файлы Postscript (*.eps);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Example:</source> |
+ <translation>Пример:</translation> |
+ </message> |
+ <message> |
+ <source>Selection Change</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>PDF-Documents (*.pdf);;All Files (*)</source> |
+ <translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Annota</name> |
+ <message> |
+ <source>Annotation Properties</source> |
+ <translation>Свойства аннотации</translation> |
+ </message> |
+ <message> |
+ <source>Type:</source> |
+ <translation>Тип:</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Link</source> |
+ <translation>ССылка</translation> |
+ </message> |
+ <message> |
+ <source>External Link</source> |
+ <translation>Внешняя ссылка</translation> |
+ </message> |
+ <message> |
+ <source>External Web-Link</source> |
+ <translation>Внешняя web-ссылка</translation> |
+ </message> |
+ <message> |
+ <source>Destination</source> |
+ <translation>Цель</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Page:</source> |
+ <translation>Стр.:</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>PDF-Documents (*.pdf);;All Files (*)</source> |
+ <translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ApplyT</name> |
+ <message> |
+ <source>Apply Template</source> |
+ <translation>Применить шаблон</translation> |
+ </message> |
+ <message> |
+ <source>Template:</source> |
+ <translation>Шаблон:</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+ <message> |
+ <source>Apply to Actual Page</source> |
+ <translation>Применить к текущей странице</translation> |
+ </message> |
+ <message> |
+ <source>Apply from Page:</source> |
+ <translation>Применить от страницы:</translation> |
+ </message> |
+ <message> |
+ <source>to:</source> |
+ <translation>до:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Biblio</name> |
+ <message> |
+ <source>Scrapbook</source> |
+ <translation>Запасник</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Save</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Save as...</source> |
+ <translation>Сохранить как...</translation> |
+ </message> |
+ <message> |
+ <source>Load...</source> |
+ <translation>Загрузить...</translation> |
+ </message> |
+ <message> |
+ <source>Close</source> |
+ <translation>Закрыть</translation> |
+ </message> |
+ <message> |
+ <source>Small</source> |
+ <translation>Небольшой</translation> |
+ </message> |
+ <message> |
+ <source>Medium</source> |
+ <translation>Средний</translation> |
+ </message> |
+ <message> |
+ <source>Big</source> |
+ <translation>Большой</translation> |
+ </message> |
+ <message> |
+ <source>File</source> |
+ <translation>Файл</translation> |
+ </message> |
+ <message> |
+ <source>Preview</source> |
+ <translation>Просмотр</translation> |
+ </message> |
+ <message> |
+ <source>Scrapbooks (*.scs);;All Files (*)</source> |
+ <translation>Запасники (*.scs);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Object</source> |
+ <translation>Объект</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>BookMView</name> |
+ <message> |
+ <source>Bookmarks</source> |
+ <translation>Закладки</translation> |
+ </message> |
+ <message> |
+ <source>Move Bookmark</source> |
+ <translation>Переместить закладку</translation> |
+ </message> |
+ <message> |
+ <source>Insert Bookmark</source> |
+ <translation>Вставить закладку</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>BookPalette</name> |
+ <message> |
+ <source>Bookmarks</source> |
+ <translation>Закладки</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ButtonIcon</name> |
+ <message> |
+ <source>Icon Placement</source> |
+ <translation>Расположение</translation> |
+ </message> |
+ <message> |
+ <source>Layout:</source> |
+ <translation>Способ:</translation> |
+ </message> |
+ <message> |
+ <source>Caption only</source> |
+ <translation>Только название</translation> |
+ </message> |
+ <message> |
+ <source>Icon only</source> |
+ <translation>Только пиктограмма</translation> |
+ </message> |
+ <message> |
+ <source>Caption below Icon</source> |
+ <translation>Название под пиктограммой</translation> |
+ </message> |
+ <message> |
+ <source>Caption above Icon</source> |
+ <translation>Название над пиктограммой</translation> |
+ </message> |
+ <message> |
+ <source>Caption right to Icon</source> |
+ <translation>Название справа от пиктограммы</translation> |
+ </message> |
+ <message> |
+ <source>Caption left to Icon</source> |
+ <translation>Название слева от пиктограммы</translation> |
+ </message> |
+ <message> |
+ <source>Caption overlays Icon</source> |
+ <translation>Название поверх пиктограммы</translation> |
+ </message> |
+ <message> |
+ <source>Scale:</source> |
+ <translation>Масштабировать:</translation> |
+ </message> |
+ <message> |
+ <source>Always</source> |
+ <translation>Всегда</translation> |
+ </message> |
+ <message> |
+ <source>When Icon is too small</source> |
+ <translation>Когда пиктограмма слишком мала</translation> |
+ </message> |
+ <message> |
+ <source>When Icon is too big</source> |
+ <translation>Когда пиктограмма слишком велика</translation> |
+ </message> |
+ <message> |
+ <source>Never</source> |
+ <translation>Никогда</translation> |
+ </message> |
+ <message> |
+ <source>Scale How:</source> |
+ <translation>Как масштабировать:</translation> |
+ </message> |
+ <message> |
+ <source>Proportional</source> |
+ <translation>Пропорционально</translation> |
+ </message> |
+ <message> |
+ <source>Non Proportional</source> |
+ <translation>Непропорционально</translation> |
+ </message> |
+ <message> |
+ <source>Icon</source> |
+ <translation>Пикт.</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Reset</source> |
+ <translation>Сбросить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>CMSPrefs</name> |
+ <message> |
+ <source>Color Management Settings</source> |
+ <translation>Настройки управления цветом</translation> |
+ </message> |
+ <message> |
+ <source>Activate Color Management</source> |
+ <translation>Задействовать управление цветом</translation> |
+ </message> |
+ <message> |
+ <source>System Profiles</source> |
+ <translation>Системные профили</translation> |
+ </message> |
+ <message> |
+ <source>Pictures:</source> |
+ <translation>Изображения:</translation> |
+ </message> |
+ <message> |
+ <source>Solid Colors:</source> |
+ <translation>Чистые цвета:</translation> |
+ </message> |
+ <message> |
+ <source>Monitor:</source> |
+ <translation>Монитор:</translation> |
+ </message> |
+ <message> |
+ <source>Printer:</source> |
+ <translation>Принтер:</translation> |
+ </message> |
+ <message> |
+ <source>Rendering Intents</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Perceptual</source> |
+ <translation>Перцепционный</translation> |
+ </message> |
+ <message> |
+ <source>Relative Colorimetric</source> |
+ <translation>Относительно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Saturation</source> |
+ <translation>Насыщенность</translation> |
+ </message> |
+ <message> |
+ <source>Absolute Colorimetric</source> |
+ <translation>Абсолютно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Simulate Printer on the Screen</source> |
+ <translation>Эмулировать принтер на экране</translation> |
+ </message> |
+ <message> |
+ <source>Mark Colors out of Gamut</source> |
+ <translation>Пометить цвета вне гаммы</translation> |
+ </message> |
+ <message> |
+ <source>Use Blackpoint Compensation</source> |
+ <translation>Использовать компенсацию чёрной точки</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Чистые цвета</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>CMYKChoose</name> |
+ <message> |
+ <source>Edit Color</source> |
+ <translation>Изменить цвет</translation> |
+ </message> |
+ <message> |
+ <source>Name:</source> |
+ <translation>Имя:</translation> |
+ </message> |
+ <message> |
+ <source>Color Model</source> |
+ <translation>Цветовая модель</translation> |
+ </message> |
+ <message> |
+ <source>CMYK</source> |
+ <translation>CMYK</translation> |
+ </message> |
+ <message> |
+ <source>RGB</source> |
+ <translation>RGB</translation> |
+ </message> |
+ <message> |
+ <source>Web Safe RGB</source> |
+ <translation>RGB для web</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Old</source> |
+ <translation>Старый</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>C:</source> |
+ <translation>C:</translation> |
+ </message> |
+ <message> |
+ <source>M:</source> |
+ <translation>M:</translation> |
+ </message> |
+ <message> |
+ <source>Y:</source> |
+ <translation>Y:</translation> |
+ </message> |
+ <message> |
+ <source>K:</source> |
+ <translation>K:</translation> |
+ </message> |
+ <message> |
+ <source>Dynamic Color Bars</source> |
+ <translation>Динамические цветовые полосы</translation> |
+ </message> |
+ <message> |
+ <source>Static Color Bars</source> |
+ <translation>Статические цветовые полосы</translation> |
+ </message> |
+ <message> |
+ <source>R:</source> |
+ <translation>R:</translation> |
+ </message> |
+ <message> |
+ <source>G:</source> |
+ <translation>G:</translation> |
+ </message> |
+ <message> |
+ <source>B:</source> |
+ <translation>B:</translation> |
+ </message> |
+ <message> |
+ <source>Websave RGB</source> |
+ <translation>RGB для web</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Cpalette</name> |
+ <message> |
+ <source>Other...</source> |
+ <translation>Другое...</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+ <message> |
+ <source>Horizontal Gradient</source> |
+ <translation>Горизонтальный градиент</translation> |
+ </message> |
+ <message> |
+ <source>Vertical Gradient</source> |
+ <translation>Вертикальный градиент</translation> |
+ </message> |
+ <message> |
+ <source>Diagonal Gradient</source> |
+ <translation>Диагональный градиент</translation> |
+ </message> |
+ <message> |
+ <source>Cross Diagonal Gradient</source> |
+ <translation>Перекрёстно-диагональный градиент</translation> |
+ </message> |
+ <message> |
+ <source>Radial Gradient</source> |
+ <translation>Радиальный градиент</translation> |
+ </message> |
+ <message> |
+ <source>Opacity:</source> |
+ <translation>Непрозрачность:</translation> |
+ </message> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation>Ничего</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>CupsOptions</name> |
+ <message> |
+ <source>Printer Options</source> |
+ <translation>Параметры печати</translation> |
+ </message> |
+ <message> |
+ <source>Option</source> |
+ <translation>Параметр</translation> |
+ </message> |
+ <message> |
+ <source>Value</source> |
+ <translation>Значение</translation> |
+ </message> |
+ <message> |
+ <source>Page Set</source> |
+ <translation>Набор страниц</translation> |
+ </message> |
+ <message> |
+ <source>All Pages</source> |
+ <translation>Все страницы</translation> |
+ </message> |
+ <message> |
+ <source>Even Pages only</source> |
+ <translation>Только чётные</translation> |
+ </message> |
+ <message> |
+ <source>Odd Pages only</source> |
+ <translation>Только нечётные</translation> |
+ </message> |
+ <message> |
+ <source>Mirror</source> |
+ <translation>Зеркалирование</translation> |
+ </message> |
+ <message> |
+ <source>No</source> |
+ <translation>Нет</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>Orientation</source> |
+ <translation>Ориентация</translation> |
+ </message> |
+ <message> |
+ <source>Portrait</source> |
+ <translation>Портрет</translation> |
+ </message> |
+ <message> |
+ <source>Landscape</source> |
+ <translation>Альбом</translation> |
+ </message> |
+ <message> |
+ <source>N-Up Printing</source> |
+ <translation>Страниц на лист</translation> |
+ </message> |
+ <message> |
+ <source>Page per Sheet</source> |
+ <translation>страница на лист</translation> |
+ </message> |
+ <message> |
+ <source>Pages per Sheet</source> |
+ <translation>страниц на лист</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>CustomFDialog</name> |
+ <message> |
+ <source>Compress File</source> |
+ <translation>Сжать файл</translation> |
+ </message> |
+ <message> |
+ <source>Encoding:</source> |
+ <translation>Кодировка:</translation> |
+ </message> |
+ <message> |
+ <source>Moves to your Document Directory. |
+This can be set in the Preferences.</source> |
+ <translation>Перемещается в каталог с документами. |
+Это можно изменить через диалог общих настроек.</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>DelColor</name> |
+ <message> |
+ <source>Delete Color</source> |
+ <translation>Удаление цвета</translation> |
+ </message> |
+ <message> |
+ <source>OK to delete Color:</source> |
+ <translation>Удалить цвет:</translation> |
+ </message> |
+ <message> |
+ <source>?</source> |
+ <translation>?</translation> |
+ </message> |
+ <message> |
+ <source>Replace it with:</source> |
+ <translation>Заменить на:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>DelPages</name> |
+ <message> |
+ <source>Delete Pages</source> |
+ <translation>Удаление страниц</translation> |
+ </message> |
+ <message> |
+ <source>Delete from:</source> |
+ <translation>Удалить от:</translation> |
+ </message> |
+ <message> |
+ <source>to:</source> |
+ <translation>до:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>DmF</name> |
+ <message> |
+ <source>Missing Font</source> |
+ <translation>Шрифт отсутствует</translation> |
+ </message> |
+ <message> |
+ <source>Select Font</source> |
+ <translation>Выберите шрифт</translation> |
+ </message> |
+ <message> |
+ <source>The Font %1 is not installed.</source> |
+ <translation>Шрифт %1 не установлен.</translation> |
+ </message> |
+ <message> |
+ <source>Select New Font:</source> |
+ <translation>Выберите новый шрифт:</translation> |
+ </message> |
+ <message> |
+ <source>Use</source> |
+ <translation>Использовать</translation> |
+ </message> |
+ <message> |
+ <source>instead</source> |
+ <translation>вместо</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>DocInfos</name> |
+ <message> |
+ <source>Document Info</source> |
+ <translation>О документе</translation> |
+ </message> |
+ <message> |
+ <source>Author:</source> |
+ <translation>Автор:</translation> |
+ </message> |
+ <message> |
+ <source>Title:</source> |
+ <translation>Название:</translation> |
+ </message> |
+ <message> |
+ <source>Description:</source> |
+ <translation>Описание:</translation> |
+ </message> |
+ <message> |
+ <source>Keywords:</source> |
+ <translation>Ключевые слова:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Druck</name> |
+ <message> |
+ <source>Setup Printer</source> |
+ <translation>Настройка принтера</translation> |
+ </message> |
+ <message> |
+ <source>Print destination</source> |
+ <translation>Куда печатать</translation> |
+ </message> |
+ <message> |
+ <source>File</source> |
+ <translation>Файл</translation> |
+ </message> |
+ <message> |
+ <source>Options...</source> |
+ <translation>Параметры...</translation> |
+ </message> |
+ <message> |
+ <source>File:</source> |
+ <translation>Файл:</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Alternative Printer Command</source> |
+ <translation>Альтернативная команда для принтера</translation> |
+ </message> |
+ <message> |
+ <source>Command:</source> |
+ <translation>Команда:</translation> |
+ </message> |
+ <message> |
+ <source>Range:</source> |
+ <translation>Диапазон:</translation> |
+ </message> |
+ <message> |
+ <source>To page:</source> |
+ <translation>До страницы:</translation> |
+ </message> |
+ <message> |
+ <source>From page:</source> |
+ <translation>От страницы:</translation> |
+ </message> |
+ <message> |
+ <source>Print range</source> |
+ <translation>Диапазон печати</translation> |
+ </message> |
+ <message> |
+ <source>Print all</source> |
+ <translation>Напечатать все</translation> |
+ </message> |
+ <message> |
+ <source>Print last page first</source> |
+ <translation>Напечатать последнюю страницу первой</translation> |
+ </message> |
+ <message> |
+ <source>Print first page first</source> |
+ <translation>Напечатать первую страницу первой</translation> |
+ </message> |
+ <message> |
+ <source>Number of copies:</source> |
+ <translation>Количество копий:</translation> |
+ </message> |
+ <message> |
+ <source>Options</source> |
+ <translation>Параметры</translation> |
+ </message> |
+ <message> |
+ <source>Print Normal</source> |
+ <translation>Печатать обычным образом</translation> |
+ </message> |
+ <message> |
+ <source>Print Separations</source> |
+ <translation>Напечатать цветоделения</translation> |
+ </message> |
+ <message> |
+ <source>All</source> |
+ <translation>Все</translation> |
+ </message> |
+ <message> |
+ <source>Print in color if available</source> |
+ <translation>В цвете, если возможно</translation> |
+ </message> |
+ <message> |
+ <source>Print in grayscale</source> |
+ <translation>В оттенках серого</translation> |
+ </message> |
+ <message> |
+ <source>Advanced Options...</source> |
+ <translation>Дополнительные параметры</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Save as</source> |
+ <translation>Сохранить как</translation> |
+ </message> |
+ <message> |
+ <source>Postscript-Files (*.ps);;All Files (*)</source> |
+ <translation>Файлы Postscript (*.ps);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>EditStyle</name> |
+ <message> |
+ <source>Edit Style</source> |
+ <translation>Правка стиля</translation> |
+ </message> |
+ <message> |
+ <source>Name:</source> |
+ <translation>Имя:</translation> |
+ </message> |
+ <message> |
+ <source>Character</source> |
+ <translation>Символ</translation> |
+ </message> |
+ <message> |
+ <source>Face:</source> |
+ <translation>Вид:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source>Size:</source> |
+ <translation>Кегль:</translation> |
+ </message> |
+ <message> |
+ <source>Indentation</source> |
+ <translation>Отступ</translation> |
+ </message> |
+ <message> |
+ <source>Left Indent:</source> |
+ <translation>Отступ слева:</translation> |
+ </message> |
+ <message> |
+ <source>First Line:</source> |
+ <translation>Красная строка:</translation> |
+ </message> |
+ <message> |
+ <source>Alignment</source> |
+ <translation>Выравнивание</translation> |
+ </message> |
+ <message> |
+ <source>Left</source> |
+ <translation>Влево</translation> |
+ </message> |
+ <message> |
+ <source>Right</source> |
+ <translation>Вправо</translation> |
+ </message> |
+ <message> |
+ <source>Center</source> |
+ <translation>По центру</translation> |
+ </message> |
+ <message> |
+ <source>Block</source> |
+ <translation>Блочно</translation> |
+ </message> |
+ <message> |
+ <source>Forced</source> |
+ <translation>Принудительно</translation> |
+ </message> |
+ <message> |
+ <source>Vertical Spaces</source> |
+ <translation>Междустрочные интервалы</translation> |
+ </message> |
+ <message> |
+ <source>Line Spacing</source> |
+ <translation>Межстрочное расстояние</translation> |
+ </message> |
+ <message> |
+ <source>Above:</source> |
+ <translation>Над:</translation> |
+ </message> |
+ <message> |
+ <source>Below:</source> |
+ <translation>Под:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Name of the Style is not unique</source> |
+ <translation>Стиль с таким именем уже существует</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Editor</name> |
+ <message> |
+ <source>Editor</source> |
+ <translation>Редактор</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Save as...</source> |
+ <translation>Сохранить как...</translation> |
+ </message> |
+ <message> |
+ <source>Load...</source> |
+ <translation>Загрузить...</translation> |
+ </message> |
+ <message> |
+ <source>Save and Exit</source> |
+ <translation>Сохранить и выйти</translation> |
+ </message> |
+ <message> |
+ <source>Exit without Saving</source> |
+ <translation>Выйти без сохранения</translation> |
+ </message> |
+ <message> |
+ <source>Undo</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Redo</source> |
+ <translation>Возвратить</translation> |
+ </message> |
+ <message> |
+ <source>Cut</source> |
+ <translation>Вырезать</translation> |
+ </message> |
+ <message> |
+ <source>Copy</source> |
+ <translation>Скопировать</translation> |
+ </message> |
+ <message> |
+ <source>Paste</source> |
+ <translation>Вставить</translation> |
+ </message> |
+ <message> |
+ <source>Clear</source> |
+ <translation>Очистить</translation> |
+ </message> |
+ <message> |
+ <source>Get Field Names</source> |
+ <translation>Получить имена полей</translation> |
+ </message> |
+ <message> |
+ <source>File</source> |
+ <translation>Файл</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Правка</translation> |
+ </message> |
+ <message> |
+ <source>Javascripts (*.js);;All Files (*)</source> |
+ <translation>Javascripts (*.js);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>FDialogPreview</name> |
+ <message> |
+ <source>Size:</source> |
+ <translation>Размер:</translation> |
+ </message> |
+ <message> |
+ <source>Title:</source> |
+ <translation>Название:</translation> |
+ </message> |
+ <message> |
+ <source>No Title</source> |
+ <translation>No Title</translation> |
+ </message> |
+ <message> |
+ <source>Author:</source> |
+ <translation>Автор:</translation> |
+ </message> |
+ <message> |
+ <source>Unknown</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Scribus-Document</source> |
+ <translation>Документ Scribus</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Farbmanager</name> |
+ <message> |
+ <source>Colors</source> |
+ <translation>Цвета</translation> |
+ </message> |
+ <message> |
+ <source>Append</source> |
+ <translation>Из файла</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Правка</translation> |
+ </message> |
+ <message> |
+ <source>Duplicate</source> |
+ <translation>Дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Save</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.scd);;All Files (*)</source> |
+ <translation>Документы (*.sla *.scd);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Copy of %1</source> |
+ <translation>Копия %1</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>FontPrefs</name> |
+ <message> |
+ <source>Global Font Settings</source> |
+ <translation>Глобальные настройки шрифтов</translation> |
+ </message> |
+ <message> |
+ <source>Available Fonts</source> |
+ <translation>Доступные шрифты</translation> |
+ </message> |
+ <message> |
+ <source>Font Substitutions</source> |
+ <translation>Замена шрифтов</translation> |
+ </message> |
+ <message> |
+ <source>Additional Paths</source> |
+ <translation>Дополнительные пути</translation> |
+ </message> |
+ <message> |
+ <source>Postscript</source> |
+ <translation>Postscript</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>Font Name</source> |
+ <translation>Имя шрифта</translation> |
+ </message> |
+ <message> |
+ <source>Use Font</source> |
+ <translation>Использовать</translation> |
+ </message> |
+ <message> |
+ <source>Embed in:</source> |
+ <translation>Встраивать в:</translation> |
+ </message> |
+ <message> |
+ <source>Subset</source> |
+ <translation>Подмножество</translation> |
+ </message> |
+ <message> |
+ <source>Type</source> |
+ <translation>Тип</translation> |
+ </message> |
+ <message> |
+ <source>Path to Font File</source> |
+ <translation>Путь к шрифту</translation> |
+ </message> |
+ <message> |
+ <source>Replacement</source> |
+ <translation>Замена</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Add...</source> |
+ <translation>Добавить...</translation> |
+ </message> |
+ <message> |
+ <source>Remove</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Choose a Directory</source> |
+ <translation>Выберите каталог</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>GuideManager</name> |
+ <message> |
+ <source>Manage Guides</source> |
+ <translation>Настройка направляющих</translation> |
+ </message> |
+ <message> |
+ <source>Horizontal Guides</source> |
+ <translation>Горизонтальные</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Add</source> |
+ <translation>Добавить</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Vertical Guides</source> |
+ <translation>Вертикальные</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Lock Guides</source> |
+ <translation>Блокировать направляющие</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>mm</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>HelpBrowser</name> |
+ <message> |
+ <source>Sorry, no manual available!</source> |
+ <translation>Извините, но руководство недоступно!</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>HyAsk</name> |
+ <message> |
+ <source>Possible Hyphenation</source> |
+ <translation>Возможен перенос</translation> |
+ </message> |
+ <message> |
+ <source>Accept</source> |
+ <translation>Принять</translation> |
+ </message> |
+ <message> |
+ <source>Skip</source> |
+ <translation>Пропустить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Вставка страницы</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>HySettings</name> |
+ <message> |
+ <source>Hyphenator Settings</source> |
+ <translation>Настройки модуля переносов</translation> |
+ </message> |
+ <message> |
+ <source>Fully Automatic</source> |
+ <translation>Автоматическая вставлять переносы</translation> |
+ </message> |
+ <message> |
+ <source>If you uncheck this you will get a dialog |
+everytime a possible Hyphenation is found.</source> |
+ <translation>Если не включить этот параметр, то при каждой |
+возможности перенести слово будет появляться диалог.</translation> |
+ </message> |
+ <message> |
+ <source>Check during Typing</source> |
+ <translation>Вставлять по мере набора текста</translation> |
+ </message> |
+ <message> |
+ <source>Enables automatic checking of your text while typing.</source> |
+ <translation>Проверять набираемый текст на предмет |
+возможности вставки переносов.</translation> |
+ </message> |
+ <message> |
+ <source>Language:</source> |
+ <translation>Язык:</translation> |
+ </message> |
+ <message> |
+ <source>Smallest Word:</source> |
+ <translation>Наименьшее слово:</translation> |
+ </message> |
+ <message> |
+ <source>This is the length of the smallest word to be hyphenated.</source> |
+ <translation>Количество букв в самом маленьком переносимом слове.</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>InsPage</name> |
+ <message> |
+ <source>Insert Page</source> |
+ <translation>Вставка страницы</translation> |
+ </message> |
+ <message> |
+ <source>Inserting</source> |
+ <translation>Вставляется</translation> |
+ </message> |
+ <message> |
+ <source>page(s)</source> |
+ <translation>страниц(а)</translation> |
+ </message> |
+ <message> |
+ <source>before Page</source> |
+ <translation>перед страницей</translation> |
+ </message> |
+ <message> |
+ <source>after Page</source> |
+ <translation>после страницы</translation> |
+ </message> |
+ <message> |
+ <source>at End</source> |
+ <translation>в конец</translation> |
+ </message> |
+ <message> |
+ <source>Template (Left Page):</source> |
+ <translation>Шаблон (Левая страница):</translation> |
+ </message> |
+ <message> |
+ <source>Template:</source> |
+ <translation>Шаблон:</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+ <message> |
+ <source>Template (Right Page):</source> |
+ <translation>Шаблон (Правая страница):</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>JavaDocs</name> |
+ <message> |
+ <source>Global JavaScripts</source> |
+ <translation>Глобальные JavaScripts</translation> |
+ </message> |
+ <message> |
+ <source>Edit...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Add...</source> |
+ <translation>Добавить...</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Close</source> |
+ <translation>Закрыть</translation> |
+ </message> |
+ <message> |
+ <source>New Script</source> |
+ <translation>Новый сценарий</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>KeyManager</name> |
+ <message> |
+ <source>Manage Keyboard Shortcuts</source> |
+ <translation>Настройка горячих клавиш</translation> |
+ </message> |
+ <message> |
+ <source>Action</source> |
+ <translation>Действие</translation> |
+ </message> |
+ <message> |
+ <source>Current Key</source> |
+ <translation>Комбинация</translation> |
+ </message> |
+ <message> |
+ <source>Select a Key for this Action</source> |
+ <translation>Выберите комбинацию клавиш для действия</translation> |
+ </message> |
+ <message> |
+ <source>No Key</source> |
+ <translation>Без горячих клавиш</translation> |
+ </message> |
+ <message> |
+ <source>User Defined Key</source> |
+ <translation>Собственная комбинация</translation> |
+ </message> |
+ <message> |
+ <source>ALT+SHIFT+T</source> |
+ <translation>ALT+SHIFT+T</translation> |
+ </message> |
+ <message> |
+ <source>Set Key</source> |
+ <translation>Установить</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Alt</source> |
+ <translation>Alt</translation> |
+ </message> |
+ <message> |
+ <source>Ctrl</source> |
+ <translation>Ctrl</translation> |
+ </message> |
+ <message> |
+ <source>Shift</source> |
+ <translation>Shift</translation> |
+ </message> |
+ <message> |
+ <source>Shift+</source> |
+ <translation>Shift+</translation> |
+ </message> |
+ <message> |
+ <source>Alt+</source> |
+ <translation>Alt+</translation> |
+ </message> |
+ <message> |
+ <source>Ctrl+</source> |
+ <translation>Ctrl+</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>This Key-Sequence is already in use</source> |
+ <translation>Эта комбинация уже использована</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>LayerPalette</name> |
+ <message> |
+ <source>Layers</source> |
+ <translation>Слои</translation> |
+ </message> |
+ <message> |
+ <source>Add a new Layer</source> |
+ <translation>Добавить новый слой</translation> |
+ </message> |
+ <message> |
+ <source>Delete Layer</source> |
+ <translation>Удалить слой</translation> |
+ </message> |
+ <message> |
+ <source>Raise Layer</source> |
+ <translation>Поднять слой</translation> |
+ </message> |
+ <message> |
+ <source>Lower Layer</source> |
+ <translation>Опустить слой</translation> |
+ </message> |
+ <message> |
+ <source>Closes this Dialog</source> |
+ <translation>Закрыть это диалог</translation> |
+ </message> |
+ <message> |
+ <source>New Layer</source> |
+ <translation>Создать новый слой</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>LineFormate</name> |
+ <message> |
+ <source>Edit Line Styles</source> |
+ <translation>Правка стилей линий</translation> |
+ </message> |
+ <message> |
+ <source>Append</source> |
+ <translation>Из файла</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Изменить</translation> |
+ </message> |
+ <message> |
+ <source>Duplicate</source> |
+ <translation>Дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Save</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Copy of %1</source> |
+ <translation>Копия %1</translation> |
+ </message> |
+ <message> |
+ <source>New Style</source> |
+ <translation>Новый стиль</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want do delete this Style?</source> |
+ <translation>Вы действительно хотите удалить этот стиль?</translation> |
+ </message> |
+ <message> |
+ <source>No</source> |
+ <translation>Нет</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.scd);;All Files (*)</source> |
+ <translation>Документы (*.sla *.scd);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Mdup</name> |
+ <message> |
+ <source>Multiple Duplicate</source> |
+ <translation>Многократное дублирование</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>mm</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+ <message> |
+ <source>Number of Copies:</source> |
+ <translation>Количество копий:</translation> |
+ </message> |
+ <message> |
+ <source>Horizontal Shift:</source> |
+ <translation>Смещение по горизонтали:</translation> |
+ </message> |
+ <message> |
+ <source>Vertical Shift:</source> |
+ <translation>Смещение по вертикали:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>MenuTest</name> |
+ <message> |
+ <source>Show Console</source> |
+ <translation>Показать консоль</translation> |
+ </message> |
+ <message> |
+ <source>Hide Console</source> |
+ <translation>Спрятать консоль</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>MergeDoc</name> |
+ <message> |
+ <source>Import a Page</source> |
+ <translation>Импорт страницы</translation> |
+ </message> |
+ <message> |
+ <source>Document to load:</source> |
+ <translation>Загружаемый документ:</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Document contains: 0 Page(s)</source> |
+ <translation>Страниц в документе: 0</translation> |
+ </message> |
+ <message> |
+ <source>Import Page Nr:</source> |
+ <translation>Импортировать стр.№:</translation> |
+ </message> |
+ <message> |
+ <source>Import</source> |
+ <translation>Импортировать</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.scd);;All Files (*)</source> |
+ <translation>Документы (*.sla *.scd);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Document contains: %1 Page(s)</source> |
+ <translation>Страниц в документе: %1</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>MovePages</name> |
+ <message> |
+ <source>Move Pages</source> |
+ <translation>Перемещение страницы</translation> |
+ </message> |
+ <message> |
+ <source>Copy Page</source> |
+ <translation>Скопировать страницу</translation> |
+ </message> |
+ <message> |
+ <source>Move Page(s):</source> |
+ <translation>Переместить страницу(ы):</translation> |
+ </message> |
+ <message> |
+ <source>to:</source> |
+ <translation>до:</translation> |
+ </message> |
+ <message> |
+ <source>before Page</source> |
+ <translation>перед страницей</translation> |
+ </message> |
+ <message> |
+ <source>after Page</source> |
+ <translation>после страницы</translation> |
+ </message> |
+ <message> |
+ <source>at End</source> |
+ <translation>в конец</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation></translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Mpalette</name> |
+ <message> |
+ <source>Properties</source> |
+ <translation>Свойства</translation> |
+ </message> |
+ <message> |
+ <source>X, Y, Z</source> |
+ <translation>X, Y, Z</translation> |
+ </message> |
+ <message> |
+ <source>Shape</source> |
+ <translation>Очертания</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Image</source> |
+ <translation>Изображение</translation> |
+ </message> |
+ <message> |
+ <source>Line</source> |
+ <translation>Линия</translation> |
+ </message> |
+ <message> |
+ <source>Colors</source> |
+ <translation>Цвета</translation> |
+ </message> |
+ <message> |
+ <source>Name</source> |
+ <translation>Имя</translation> |
+ </message> |
+ <message> |
+ <source>Geometry</source> |
+ <translation>Геометрия</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Width:</source> |
+ <translation>Ширина:</translation> |
+ </message> |
+ <message> |
+ <source>Height:</source> |
+ <translation>Высота:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source>Level</source> |
+ <translation>Уровень</translation> |
+ </message> |
+ <message> |
+ <source>Text flows around Box</source> |
+ <translation>Текст обтекает рамку</translation> |
+ </message> |
+ <message> |
+ <source>Use Bounding Box</source> |
+ <translation>Ограничивающий прямоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Rotation</source> |
+ <translation>Поворот</translation> |
+ </message> |
+ <message> |
+ <source>by:</source> |
+ <translation>на:</translation> |
+ </message> |
+ <message> |
+ <source>Edit Shape...</source> |
+ <translation>Изменить очертания...</translation> |
+ </message> |
+ <message> |
+ <source>Round |
+Corners:</source> |
+ <translation>Закруглённые |
+углы:</translation> |
+ </message> |
+ <message> |
+ <source>Path Text Properites</source> |
+ <translation>Параметры оконтуренного текста</translation> |
+ </message> |
+ <message> |
+ <source>Show Curve</source> |
+ <translation>Показать кривую</translation> |
+ </message> |
+ <message> |
+ <source>Start Offset:</source> |
+ <translation>Смещение от начала кривой:</translation> |
+ </message> |
+ <message> |
+ <source> pts</source> |
+ <translation>pts</translation> |
+ </message> |
+ <message> |
+ <source>Distance from Curve:</source> |
+ <translation>Расстояние от кривой:</translation> |
+ </message> |
+ <message> |
+ <source>Distance of Text</source> |
+ <translation>Расстояние до текста</translation> |
+ </message> |
+ <message> |
+ <source>Top:</source> |
+ <translation>Сверху:</translation> |
+ </message> |
+ <message> |
+ <source>Bottom:</source> |
+ <translation>Снизу:</translation> |
+ </message> |
+ <message> |
+ <source>Left:</source> |
+ <translation>Слева:</translation> |
+ </message> |
+ <message> |
+ <source>Right:</source> |
+ <translation>Справа:</translation> |
+ </message> |
+ <message> |
+ <source>Size:</source> |
+ <translation>Кегль:</translation> |
+ </message> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>Other...</source> |
+ <translation>Другое...</translation> |
+ </message> |
+ <message> |
+ <source>Custom Spacing</source> |
+ <translation>Настраиваемые расстояния</translation> |
+ </message> |
+ <message> |
+ <source>Kerning:</source> |
+ <translation>Кернинг:</translation> |
+ </message> |
+ <message> |
+ <source>Line Spacing:</source> |
+ <translation>Между строками:</translation> |
+ </message> |
+ <message> |
+ <source>Styles</source> |
+ <translation>Стили</translation> |
+ </message> |
+ <message> |
+ <source>Lang.:</source> |
+ <translation>Язык:</translation> |
+ </message> |
+ <message> |
+ <source>Free Scaling</source> |
+ <translation>Свободное масштабирование</translation> |
+ </message> |
+ <message> |
+ <source>Position:</source> |
+ <translation>Положение:</translation> |
+ </message> |
+ <message> |
+ <source>Horiz. Scale:</source> |
+ <translation>Горизонт. масштаб.:</translation> |
+ </message> |
+ <message> |
+ <source>Vert. Scale:</source> |
+ <translation>Вертикал. масштаб.:</translation> |
+ </message> |
+ <message> |
+ <source>Scale to Frame Size</source> |
+ <translation>Масштабировать до размера рамки</translation> |
+ </message> |
+ <message> |
+ <source>Keep Aspect Ratio</source> |
+ <translation>Сохранять соотношение сторон</translation> |
+ </message> |
+ <message> |
+ <source>Proportional</source> |
+ <translation>Пропорционально</translation> |
+ </message> |
+ <message> |
+ <source>Input Profile:</source> |
+ <translation>Входной профиль:</translation> |
+ </message> |
+ <message> |
+ <source>Rendering Intent:</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Perceptual</source> |
+ <translation>Перцепционный</translation> |
+ </message> |
+ <message> |
+ <source>Relative Colorimetric</source> |
+ <translation>Относительно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Saturation</source> |
+ <translation>Насыщенность</translation> |
+ </message> |
+ <message> |
+ <source>Absolute Colorimetric</source> |
+ <translation>Абсолютно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Left Point</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>End Points</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Line Style:</source> |
+ <translation>Стиль линии:</translation> |
+ </message> |
+ <message> |
+ <source>Line Width:</source> |
+ <translation>Толщина линии:</translation> |
+ </message> |
+ <message> |
+ <source>Edges:</source> |
+ <translation>Края:</translation> |
+ </message> |
+ <message> |
+ <source>Miter Join</source> |
+ <translation>Фацетное соединение</translation> |
+ </message> |
+ <message> |
+ <source>Bevel Join</source> |
+ <translation>Фасочное соединение</translation> |
+ </message> |
+ <message> |
+ <source>Round Join</source> |
+ <translation>Скруглённое соединение</translation> |
+ </message> |
+ <message> |
+ <source>Endings:</source> |
+ <translation>Окончания:</translation> |
+ </message> |
+ <message> |
+ <source>Flat Cap</source> |
+ <translation>Плоская шляпка</translation> |
+ </message> |
+ <message> |
+ <source>Square Cap</source> |
+ <translation>Квадратная шляпка</translation> |
+ </message> |
+ <message> |
+ <source>Round Cap</source> |
+ <translation>Округлая шляпка</translation> |
+ </message> |
+ <message> |
+ <source>No Style</source> |
+ <translation>Стилей нет</translation> |
+ </message> |
+ <message> |
+ <source>Font Size</source> |
+ <translation>Кегль шрифта</translation> |
+ </message> |
+ <message> |
+ <source>Line Spacing</source> |
+ <translation>Межстрочное расстояние</translation> |
+ </message> |
+ <message> |
+ <source>Manual Kerning</source> |
+ <translation>Задаваемый кернинг</translation> |
+ </message> |
+ <message> |
+ <source>Reverse Writing</source> |
+ <translation>Зеркальное написание</translation> |
+ </message> |
+ <message> |
+ <source>Underline</source> |
+ <translation>Подчёркнутый</translation> |
+ </message> |
+ <message> |
+ <source>Small Caps</source> |
+ <translation>Капитель</translation> |
+ </message> |
+ <message> |
+ <source>Subscript</source> |
+ <translation>Нижний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Superscript</source> |
+ <translation>Верхний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Strikeout</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Outline Text</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Align Text Left</source> |
+ <translation>Выровнять по левой стороне</translation> |
+ </message> |
+ <message> |
+ <source>Align Text Right</source> |
+ <translation>Выровнять по левой стороне</translation> |
+ </message> |
+ <message> |
+ <source>Align Text Block</source> |
+ <translation>Выровнять блочно</translation> |
+ </message> |
+ <message> |
+ <source>Align Text Center</source> |
+ <translation>Выровнять по центру</translation> |
+ </message> |
+ <message> |
+ <source>Flip horizontal</source> |
+ <translation>Перевернуть по горизонтали:</translation> |
+ </message> |
+ <message> |
+ <source>Flip vertical</source> |
+ <translation>Перевернуть по вертикали</translation> |
+ </message> |
+ <message> |
+ <source>Move one Level up</source> |
+ <translation>Сделать уровнем выше</translation> |
+ </message> |
+ <message> |
+ <source>Move one Level down</source> |
+ <translation>Сделать уровнем ниже</translation> |
+ </message> |
+ <message> |
+ <source>Move to Front</source> |
+ <translation>Послать на самый высокий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Move to Back</source> |
+ <translation>Послать на самый низкий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Locks or unlocks the Object</source> |
+ <translation>Блокировать или разблокировать объект</translation> |
+ </message> |
+ <message> |
+ <source>Enables or disables printing of the Object</source> |
+ <translation>Разрешить или запретить печать выбранного объекта</translation> |
+ </message> |
+ <message> |
+ <source>X1:</source> |
+ <translation>X1:</translation> |
+ </message> |
+ <message> |
+ <source>X2:</source> |
+ <translation>X2:</translation> |
+ </message> |
+ <message> |
+ <source>Y1:</source> |
+ <translation>Y1:</translation> |
+ </message> |
+ <message> |
+ <source>Y2:</source> |
+ <translation>Y2:</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation>Ничего</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Name "%1" isn't unique. |
+Please choose another.</source> |
+ <translation>Имя "%1" уже использовано. |
+Выберите другое.</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Shape:</source> |
+ <translation>Очертание:</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>MultiLine</name> |
+ <message> |
+ <source>Edit Style</source> |
+ <translation>Изменить стиль</translation> |
+ </message> |
+ <message> |
+ <source>Flat Cap</source> |
+ <translation>Плоская шляпка</translation> |
+ </message> |
+ <message> |
+ <source>Square Cap</source> |
+ <translation>Квадратная шляпка</translation> |
+ </message> |
+ <message> |
+ <source>Round Cap</source> |
+ <translation>Округлая шляпка</translation> |
+ </message> |
+ <message> |
+ <source>Miter Join</source> |
+ <translation>Фацетное соединение</translation> |
+ </message> |
+ <message> |
+ <source>Bevel Join</source> |
+ <translation>Фасочное соединение</translation> |
+ </message> |
+ <message> |
+ <source>Round Join</source> |
+ <translation>Скруглённое соединение</translation> |
+ </message> |
+ <message> |
+ <source>Line Width:</source> |
+ <translation>Толщина линии:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source> pt </source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source>Solid Line</source> |
+ <translation>Целая линия</translation> |
+ </message> |
+ <message> |
+ <source>Dashed Line</source> |
+ <translation>Линейный пунктир</translation> |
+ </message> |
+ <message> |
+ <source>Dotted Line</source> |
+ <translation>Пунктир</translation> |
+ </message> |
+ <message> |
+ <source>Dash Dot Line</source> |
+ <translation>Тире-точка</translation> |
+ </message> |
+ <message> |
+ <source>Dash Dot Dot Line</source> |
+ <translation>Тире-точка-точка</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Name "%1" isn't unique. |
+Please choose another.</source> |
+ <translation>Имя "%1" уже использовано. |
+Выберите другое.</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>MusterSeiten</name> |
+ <message> |
+ <source>Edit Templates</source> |
+ <translation>Правка шаблонов</translation> |
+ </message> |
+ <message> |
+ <source>Append</source> |
+ <translation>Из файла</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Duplicate</source> |
+ <translation>Дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Exit</source> |
+ <translation>Выйти</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want do delete this Template?</source> |
+ <translation>Вы действительно хотите удалить этот шаблон?</translation> |
+ </message> |
+ <message> |
+ <source>No</source> |
+ <translation>Нет</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>Copy of %1</source> |
+ <translation>Копия %1</translation> |
+ </message> |
+ <message> |
+ <source>New Template</source> |
+ <translation>Новый шаблон</translation> |
+ </message> |
+ <message> |
+ <source>Copy of </source> |
+ <translation type="obsolete">Копия</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+ <message> |
+ <source>Copy #%1 of </source> |
+ <translation>Копия #%1 из </translation> |
+ </message> |
+</context> |
+<context> |
+ <name>NewDoc</name> |
+ <message> |
+ <source>New Document</source> |
+ <translation>Новый документ</translation> |
+ </message> |
+ <message> |
+ <source>Page Size</source> |
+ <translation>Размер страницы</translation> |
+ </message> |
+ <message> |
+ <source>Size:</source> |
+ <translation>Формат:</translation> |
+ </message> |
+ <message> |
+ <source>Custom</source> |
+ <translation>Собственный</translation> |
+ </message> |
+ <message> |
+ <source>Orientation:</source> |
+ <translation>Ориентация:</translation> |
+ </message> |
+ <message> |
+ <source>Portrait</source> |
+ <translation>Портрет</translation> |
+ </message> |
+ <message> |
+ <source>Landscape</source> |
+ <translation>Альбом</translation> |
+ </message> |
+ <message> |
+ <source>Width:</source> |
+ <translation>Ширина:</translation> |
+ </message> |
+ <message> |
+ <source>Height:</source> |
+ <translation>Высота:</translation> |
+ </message> |
+ <message> |
+ <source>Facing Pages</source> |
+ <translation>Парные страницы</translation> |
+ </message> |
+ <message> |
+ <source>Left Page first</source> |
+ <translation>Левая страница первой</translation> |
+ </message> |
+ <message> |
+ <source>Margin Guides</source> |
+ <translation>Направляющие полей</translation> |
+ </message> |
+ <message> |
+ <source>Left:</source> |
+ <translation>Слева:</translation> |
+ </message> |
+ <message> |
+ <source>Right:</source> |
+ <translation>Справа:</translation> |
+ </message> |
+ <message> |
+ <source>Top:</source> |
+ <translation>Сверху:</translation> |
+ </message> |
+ <message> |
+ <source>Bottom:</source> |
+ <translation>Снизу:</translation> |
+ </message> |
+ <message> |
+ <source>Options</source> |
+ <translation>Параметры</translation> |
+ </message> |
+ <message> |
+ <source>First Page Number:</source> |
+ <translation>Номер первой страницы:</translation> |
+ </message> |
+ <message> |
+ <source>Default Unit:</source> |
+ <translation>Единица измерения:</translation> |
+ </message> |
+ <message> |
+ <source>Points (pts)</source> |
+ <translation>Точки (pt)</translation> |
+ </message> |
+ <message> |
+ <source>Millimeters (mm)</source> |
+ <translation>Миллиметры (mm)</translation> |
+ </message> |
+ <message> |
+ <source>Inches (in)</source> |
+ <translation>Дюймы (in)</translation> |
+ </message> |
+ <message> |
+ <source>Picas (p)</source> |
+ <translation>Пики (p)</translation> |
+ </message> |
+ <message> |
+ <source>Autom. Text Frames</source> |
+ <translation>Автоматические текстовые рамки</translation> |
+ </message> |
+ <message> |
+ <source>Column Guides</source> |
+ <translation>Направляющие колонок</translation> |
+ </message> |
+ <message> |
+ <source>Gutter Width:</source> |
+ <translation>Расстояние между колонками:</translation> |
+ </message> |
+ <message> |
+ <source>Columns:</source> |
+ <translation>Количество столбцов:</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Inside:</source> |
+ <translation>Внутри:</translation> |
+ </message> |
+ <message> |
+ <source>Outside:</source> |
+ <translation>Снаружи:</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>NewTm</name> |
+ <message> |
+ <source>Left Page</source> |
+ <translation>Левая страница</translation> |
+ </message> |
+ <message> |
+ <source>Right Page</source> |
+ <translation>Правая страница</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>NodePalette</name> |
+ <message> |
+ <source>Nodes</source> |
+ <translation>Узлы</translation> |
+ </message> |
+ <message> |
+ <source>Absolute Coordinates</source> |
+ <translation>Абсолютные координаты</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>End Editing</source> |
+ <translation>Завершить правку</translation> |
+ </message> |
+ <message> |
+ <source>Move Nodes</source> |
+ <translation>Переместить узлы</translation> |
+ </message> |
+ <message> |
+ <source>Move Control Points</source> |
+ <translation>Переместить контрольные точки</translation> |
+ </message> |
+ <message> |
+ <source>Add Nodes</source> |
+ <translation>Добавить узлы</translation> |
+ </message> |
+ <message> |
+ <source>Delete Nodes</source> |
+ <translation>Удалить узлы</translation> |
+ </message> |
+ <message> |
+ <source>Move Control Points independently</source> |
+ <translation>Переместить контрольные точки независимо</translation> |
+ </message> |
+ <message> |
+ <source>Move Control Points symmetrical</source> |
+ <translation>Переместить контрольные точки симметрично</translation> |
+ </message> |
+ <message> |
+ <source>Reset Control Points</source> |
+ <translation>Перечитать контрольные точки</translation> |
+ </message> |
+ <message> |
+ <source>Reset this Control Point</source> |
+ <translation>Перечитать эту контрольную точку</translation> |
+ </message> |
+ <message> |
+ <source>Opens a Polygon or cuts a Bezier Curve</source> |
+ <translation>Разомкнуть многоугольник или кривую Безье</translation> |
+ </message> |
+ <message> |
+ <source>Closes this Bezier Curve</source> |
+ <translation>Замкнуть эту кривую Безье</translation> |
+ </message> |
+ <message> |
+ <source>Mirrors the Path Horizontally</source> |
+ <translation>Зеркально отразить этот |
+контур по горизонтали</translation> |
+ </message> |
+ <message> |
+ <source>Mirrors the Path Vertically</source> |
+ <translation>Зеркально отразить этот |
+контур по вертикали</translation> |
+ </message> |
+ <message> |
+ <source>Shears the Path horizontal to the right</source> |
+ <translation>Разрезать контур по горизонтали направо</translation> |
+ </message> |
+ <message> |
+ <source>Shears the Path horizontal to the left</source> |
+ <translation>Разрезать контур по горизонтали налево</translation> |
+ </message> |
+ <message> |
+ <source>Shears the Path vertical up</source> |
+ <translation>Разрезать контур по вертикали вверх</translation> |
+ </message> |
+ <message> |
+ <source>Shears the Path vertical down</source> |
+ <translation>Разрезать контур по вертикали вниз</translation> |
+ </message> |
+ <message> |
+ <source>When checked use Coordinates relative to the Page, |
+otherwise Coordinates are relative to the Object.</source> |
+ <translation>Если флажок выставлен, то координаты соотносятся |
+со страницей, а если не выставлен -- с объектом.</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>mm</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PConsole</name> |
+ <message> |
+ <source>Script Console</source> |
+ <translation>Консоль для сценариев</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PDF_Opts</name> |
+ <message> |
+ <source>Create PDF-File</source> |
+ <translation>Создание PDF-файла</translation> |
+ </message> |
+ <message> |
+ <source>Output to File:</source> |
+ <translation>Конечный файл:</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>Export Range</source> |
+ <translation>Диапазон экспорта</translation> |
+ </message> |
+ <message> |
+ <source>All Pages</source> |
+ <translation>Все страницы</translation> |
+ </message> |
+ <message> |
+ <source>From:</source> |
+ <translation>От:</translation> |
+ </message> |
+ <message> |
+ <source>to:</source> |
+ <translation>до:</translation> |
+ </message> |
+ <message> |
+ <source>File Options</source> |
+ <translation>Параметры</translation> |
+ </message> |
+ <message> |
+ <source>Compatibility:</source> |
+ <translation>Совместимость с:</translation> |
+ </message> |
+ <message> |
+ <source>Binding:</source> |
+ <translation>Связывание:</translation> |
+ </message> |
+ <message> |
+ <source>Left Margin</source> |
+ <translation>По левому полю</translation> |
+ </message> |
+ <message> |
+ <source>Right Margin</source> |
+ <translation>По правому полю</translation> |
+ </message> |
+ <message> |
+ <source>Generate Thumbnails</source> |
+ <translation>Создать миниатюры</translation> |
+ </message> |
+ <message> |
+ <source>Save linked Text Frames as PDF-Articles</source> |
+ <translation>Сохранить связанные текст. рамки как PDF-Articles</translation> |
+ </message> |
+ <message> |
+ <source>Include Bookmarks</source> |
+ <translation>Включить закладки</translation> |
+ </message> |
+ <message> |
+ <source>Resolution:</source> |
+ <translation>Разрешение:</translation> |
+ </message> |
+ <message> |
+ <source> dpi</source> |
+ <translation>dpi</translation> |
+ </message> |
+ <message> |
+ <source>Compression</source> |
+ <translation>Сжатие</translation> |
+ </message> |
+ <message> |
+ <source>Downsample Images to:</source> |
+ <translation>Понизить разрешение изображений до:</translation> |
+ </message> |
+ <message> |
+ <source>Compress Text and Vector Graphics</source> |
+ <translation>Сжать текст и векторную графику</translation> |
+ </message> |
+ <message> |
+ <source>General</source> |
+ <translation>Общее</translation> |
+ </message> |
+ <message> |
+ <source>Embed all Fonts</source> |
+ <translation>Внедрить все шрифты</translation> |
+ </message> |
+ <message> |
+ <source>Embedding</source> |
+ <translation>Внедрение</translation> |
+ </message> |
+ <message> |
+ <source>Available Fonts:</source> |
+ <translation>Доступные шрифты:</translation> |
+ </message> |
+ <message> |
+ <source>>></source> |
+ <translation>>></translation> |
+ </message> |
+ <message> |
+ <source><<</source> |
+ <translation><<</translation> |
+ </message> |
+ <message> |
+ <source>Fonts to embed:</source> |
+ <translation>Внедряемые шрифты:</translation> |
+ </message> |
+ <message> |
+ <source>Fonts</source> |
+ <translation>Шрифты</translation> |
+ </message> |
+ <message> |
+ <source>Enable Presentation Effects</source> |
+ <translation>Разрешить спецэффекты</translation> |
+ </message> |
+ <message> |
+ <source>Page</source> |
+ <translation>Страница</translation> |
+ </message> |
+ <message> |
+ <source>Show Page Previews</source> |
+ <translation>Просмотр страниц</translation> |
+ </message> |
+ <message> |
+ <source>Effects</source> |
+ <translation>Эффекты</translation> |
+ </message> |
+ <message> |
+ <source>Display Duration:</source> |
+ <translation>Длительность отображения:</translation> |
+ </message> |
+ <message> |
+ <source>Effect Duration:</source> |
+ <translation>Длительность эффекта:</translation> |
+ </message> |
+ <message> |
+ <source>Effect Type:</source> |
+ <translation>Тип эффекта:</translation> |
+ </message> |
+ <message> |
+ <source>Moving Lines:</source> |
+ <translation>Движущиеся линии</translation> |
+ </message> |
+ <message> |
+ <source>from the:</source> |
+ <translation>откуда:</translation> |
+ </message> |
+ <message> |
+ <source>Direction:</source> |
+ <translation>Направление:</translation> |
+ </message> |
+ <message> |
+ <source> sec</source> |
+ <translation>сек</translation> |
+ </message> |
+ <message> |
+ <source>No Effect</source> |
+ <translation>Без эффекта</translation> |
+ </message> |
+ <message> |
+ <source>Blinds</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Box</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Dissolve</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Glitter</source> |
+ <translation>Мерцание</translation> |
+ </message> |
+ <message> |
+ <source>Split</source> |
+ <translation>Разделение</translation> |
+ </message> |
+ <message> |
+ <source>Wipe</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Horizontal</source> |
+ <translation>Горизонтально</translation> |
+ </message> |
+ <message> |
+ <source>Vertical</source> |
+ <translation>Вертикально</translation> |
+ </message> |
+ <message> |
+ <source>Inside</source> |
+ <translation>Изнутри</translation> |
+ </message> |
+ <message> |
+ <source>Outside</source> |
+ <translation>Снаружи</translation> |
+ </message> |
+ <message> |
+ <source>Left to Right</source> |
+ <translation>Слева направо</translation> |
+ </message> |
+ <message> |
+ <source>Top to Bottom</source> |
+ <translation>Сверху вниз</translation> |
+ </message> |
+ <message> |
+ <source>Bottom to Top</source> |
+ <translation>Снизу вверх</translation> |
+ </message> |
+ <message> |
+ <source>Right to Left</source> |
+ <translation>Справа налево</translation> |
+ </message> |
+ <message> |
+ <source>Top-Left to Bottom-Right</source> |
+ <translation>Из левого верхнего в правый нижний угол</translation> |
+ </message> |
+ <message> |
+ <source>Apply Effect on all Pages</source> |
+ <translation>Применить эффект ко всем страницам</translation> |
+ </message> |
+ <message> |
+ <source>Extras</source> |
+ <translation>Дополнительно</translation> |
+ </message> |
+ <message> |
+ <source>Use Encryption</source> |
+ <translation>Использовать шифрование</translation> |
+ </message> |
+ <message> |
+ <source>Passwords</source> |
+ <translation>Пароли</translation> |
+ </message> |
+ <message> |
+ <source>User:</source> |
+ <translation>Пользователь:</translation> |
+ </message> |
+ <message> |
+ <source>Owner:</source> |
+ <translation>Владелец:</translation> |
+ </message> |
+ <message> |
+ <source>Settings</source> |
+ <translation>Настройки</translation> |
+ </message> |
+ <message> |
+ <source>Allow Printing the Document</source> |
+ <translation>Разрешить печать документа</translation> |
+ </message> |
+ <message> |
+ <source>Allow Changing the Document</source> |
+ <translation>Разрешить изменение документа</translation> |
+ </message> |
+ <message> |
+ <source>Copying Text and Graphics is allowed</source> |
+ <translation>Разрешить копирование текста и графики</translation> |
+ </message> |
+ <message> |
+ <source>Adding Annotations and Fields is allowed</source> |
+ <translation>Разрешить добавление аннотаций и полей</translation> |
+ </message> |
+ <message> |
+ <source>Security</source> |
+ <translation>Безопасность</translation> |
+ </message> |
+ <message> |
+ <source>Output intended for:</source> |
+ <translation>Вывод предназначен для:</translation> |
+ </message> |
+ <message> |
+ <source>Screen</source> |
+ <translation>Экрана</translation> |
+ </message> |
+ <message> |
+ <source>Printer</source> |
+ <translation>Принтера</translation> |
+ </message> |
+ <message> |
+ <source>Solid Colors:</source> |
+ <translation>Сплошные тона:</translation> |
+ </message> |
+ <message> |
+ <source>Use ICC-Profile</source> |
+ <translation>Использовать ICC-профиль</translation> |
+ </message> |
+ <message> |
+ <source>Profile:</source> |
+ <translation>Профиль:</translation> |
+ </message> |
+ <message> |
+ <source>Rendering-Intent:</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Perceptual</source> |
+ <translation>Перцепционный</translation> |
+ </message> |
+ <message> |
+ <source>Relative Colorimetric</source> |
+ <translation>Относительно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Saturation</source> |
+ <translation>Насыщенность</translation> |
+ </message> |
+ <message> |
+ <source>Absolute Colorimetric</source> |
+ <translation>Абсолютно колориметрический</translation> |
+ </message> |
+ <message> |
+ <source>Images:</source> |
+ <translation>Изображения:</translation> |
+ </message> |
+ <message> |
+ <source>Don't use embedded ICC profiles</source> |
+ <translation>Не использовать встроенные ICC-профили</translation> |
+ </message> |
+ <message> |
+ <source>Color</source> |
+ <translation>Цвет</translation> |
+ </message> |
+ <message> |
+ <source>PDF/X-3 Output Intent</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Info String:</source> |
+ <translation>Информация:</translation> |
+ </message> |
+ <message> |
+ <source>Output Profile:</source> |
+ <translation>Выходной профиль:</translation> |
+ </message> |
+ <message> |
+ <source>Trim Box</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>PDF/X-3</source> |
+ <translation>PDF/X-3</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>mm</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Save as</source> |
+ <translation>Сохранить как</translation> |
+ </message> |
+ <message> |
+ <source>PDF-Files (*.pdf);;All Files (*)</source> |
+ <translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PPreview</name> |
+ <message> |
+ <source>Print Preview</source> |
+ <translation>Просмотр печати</translation> |
+ </message> |
+ <message> |
+ <source>Page:</source> |
+ <translation>Стр.:</translation> |
+ </message> |
+ <message> |
+ <source>Anti-alias Text</source> |
+ <translation>Сгладить текст</translation> |
+ </message> |
+ <message> |
+ <source>Anti-alias Graphics</source> |
+ <translation>Сгладить графику</translation> |
+ </message> |
+ <message> |
+ <source>All</source> |
+ <translation>Все</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Page</name> |
+ <message> |
+ <source>Copy Here</source> |
+ <translation>Скопировать сюда</translation> |
+ </message> |
+ <message> |
+ <source>Move Here</source> |
+ <translation>Переместить сюда</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Get Picture...</source> |
+ <translation>Получить изображение...</translation> |
+ </message> |
+ <message> |
+ <source>Image Visible</source> |
+ <translation>Изображение видно</translation> |
+ </message> |
+ <message> |
+ <source>Get Text...</source> |
+ <translation>Получить текст...</translation> |
+ </message> |
+ <message> |
+ <source>Edit Text...</source> |
+ <translation>Изменить текст...</translation> |
+ </message> |
+ <message> |
+ <source>Is PDF-Bookmark</source> |
+ <translation>Является PDF-закладкой</translation> |
+ </message> |
+ <message> |
+ <source>Is PDF-Annotation</source> |
+ <translation>Является PDF-аннотацией</translation> |
+ </message> |
+ <message> |
+ <source>Annotation Properties</source> |
+ <translation>Свойства аннотации</translation> |
+ </message> |
+ <message> |
+ <source>Field Properties</source> |
+ <translation>Свойства поля</translation> |
+ </message> |
+ <message> |
+ <source>Group</source> |
+ <translation>Группировать</translation> |
+ </message> |
+ <message> |
+ <source>Un-group</source> |
+ <translation>Разгруппировать</translation> |
+ </message> |
+ <message> |
+ <source>Lock</source> |
+ <translation>Блокировать</translation> |
+ </message> |
+ <message> |
+ <source>Send to Back</source> |
+ <translation>Послать на самый низкий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Bring to Front</source> |
+ <translation>Послать на самый высокий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Lower</source> |
+ <translation>Сделать уровнем ниже</translation> |
+ </message> |
+ <message> |
+ <source>Raise</source> |
+ <translation>Сделать уровнем выше</translation> |
+ </message> |
+ <message> |
+ <source>Unlock</source> |
+ <translation>Разблокировать</translation> |
+ </message> |
+ <message> |
+ <source>Send to Scrapbook</source> |
+ <translation>Отправить в Запасник</translation> |
+ </message> |
+ <message> |
+ <source>Send to Layer</source> |
+ <translation>Отправить в слой</translation> |
+ </message> |
+ <message> |
+ <source>Picture Frame</source> |
+ <translation>Рамку изображения</translation> |
+ </message> |
+ <message> |
+ <source>Polygon</source> |
+ <translation>Многоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Text Frame</source> |
+ <translation>Текстовую рамку</translation> |
+ </message> |
+ <message> |
+ <source>Bezier Curve</source> |
+ <translation>Кривую Безье</translation> |
+ </message> |
+ <message> |
+ <source>Convert to</source> |
+ <translation>Преобразовать в</translation> |
+ </message> |
+ <message> |
+ <source>Cut</source> |
+ <translation>Вырезать</translation> |
+ </message> |
+ <message> |
+ <source>Copy</source> |
+ <translation>Скопировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation>Ничего</translation> |
+ </message> |
+ <message> |
+ <source>Outlines</source> |
+ <translation>Контур</translation> |
+ </message> |
+ <message> |
+ <source>Picture</source> |
+ <translation>Изображение</translation> |
+ </message> |
+ <message> |
+ <source>File: </source> |
+ <translation>Файл:</translation> |
+ </message> |
+ <message> |
+ <source>Original ppi: </source> |
+ <translation>Оригинальное ppi:</translation> |
+ </message> |
+ <message> |
+ <source>Actual ppi: </source> |
+ <translation>Текущее ppi:</translation> |
+ </message> |
+ <message> |
+ <source>Text Chain</source> |
+ <translation>Текстовая цепочка</translation> |
+ </message> |
+ <message> |
+ <source>Text on a Path</source> |
+ <translation>Текст по контуру</translation> |
+ </message> |
+ <message> |
+ <source>Paragraphs: </source> |
+ <translation>Параграфов:</translation> |
+ </message> |
+ <message> |
+ <source>Words: </source> |
+ <translation>Слов:</translation> |
+ </message> |
+ <message> |
+ <source>Chars: </source> |
+ <translation>Символов:</translation> |
+ </message> |
+ <message> |
+ <source>Info</source> |
+ <translation>Информация</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PicSearch</name> |
+ <message> |
+ <source>Result</source> |
+ <translation>Результат</translation> |
+ </message> |
+ <message> |
+ <source>Search Results for: </source> |
+ <translation>Результаты поиска для:</translation> |
+ </message> |
+ <message> |
+ <source>Preview</source> |
+ <translation>Просмотр</translation> |
+ </message> |
+ <message> |
+ <source>Select</source> |
+ <translation>Выбрать</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PicStatus</name> |
+ <message> |
+ <source>Pictures</source> |
+ <translation>Изображения</translation> |
+ </message> |
+ <message> |
+ <source>Name</source> |
+ <translation>Имя</translation> |
+ </message> |
+ <message> |
+ <source>Path</source> |
+ <translation>Путь</translation> |
+ </message> |
+ <message> |
+ <source>Page</source> |
+ <translation>Стр</translation> |
+ </message> |
+ <message> |
+ <source>Print</source> |
+ <translation>Печать</translation> |
+ </message> |
+ <message> |
+ <source>Status</source> |
+ <translation>Статус</translation> |
+ </message> |
+ <message> |
+ <source>Goto</source> |
+ <translation>Перейти</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Missing</source> |
+ <translation>Отсутствует</translation> |
+ </message> |
+ <message> |
+ <source>Search</source> |
+ <translation>Искать</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>PolygonProps</name> |
+ <message> |
+ <source>Polygon Properties</source> |
+ <translation>Свойства многоугольника</translation> |
+ </message> |
+ <message> |
+ <source>Corners:</source> |
+ <translation>Углы:</translation> |
+ </message> |
+ <message> |
+ <source>Rotation:</source> |
+ <translation>Поворот:</translation> |
+ </message> |
+ <message> |
+ <source>Convex Polygon</source> |
+ <translation>Выпуклость</translation> |
+ </message> |
+ <message> |
+ <source>Factor:</source> |
+ <translation>Фактор:</translation> |
+ </message> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Preferences</name> |
+ <message> |
+ <source>Preferences</source> |
+ <translation>Настройки</translation> |
+ </message> |
+ <message> |
+ <source>General</source> |
+ <translation>Общие</translation> |
+ </message> |
+ <message> |
+ <source>Document</source> |
+ <translation>Документ</translation> |
+ </message> |
+ <message> |
+ <source>Guides</source> |
+ <translation>Направляющие</translation> |
+ </message> |
+ <message> |
+ <source>Typography</source> |
+ <translation>Типографика</translation> |
+ </message> |
+ <message> |
+ <source>Tools</source> |
+ <translation>Инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Scrapbook</source> |
+ <translation>Запасник</translation> |
+ </message> |
+ <message> |
+ <source>Display</source> |
+ <translation>Отображение</translation> |
+ </message> |
+ <message> |
+ <source>GUI</source> |
+ <translation>GUI</translation> |
+ </message> |
+ <message> |
+ <source>Theme</source> |
+ <translation>Тема</translation> |
+ </message> |
+ <message> |
+ <source>Font Size:</source> |
+ <translation>Размер шрифта:</translation> |
+ </message> |
+ <message> |
+ <source> pts</source> |
+ <translation>pts</translation> |
+ </message> |
+ <message> |
+ <source>Units</source> |
+ <translation>Единицы измерения</translation> |
+ </message> |
+ <message> |
+ <source>Points (pt)</source> |
+ <translation>Точки (pt)</translation> |
+ </message> |
+ <message> |
+ <source>Millimeters (mm)</source> |
+ <translation>Миллиметры (мм)</translation> |
+ </message> |
+ <message> |
+ <source>Inches (in)</source> |
+ <translation>Дюймы (in)</translation> |
+ </message> |
+ <message> |
+ <source>Picas (p)</source> |
+ <translation>Пики (p)</translation> |
+ </message> |
+ <message> |
+ <source>Mouse-Settings</source> |
+ <translation>Настройки мыши</translation> |
+ </message> |
+ <message> |
+ <source>Wheel-Jump</source> |
+ <translation>Сколько прокручивает колесо мыши</translation> |
+ </message> |
+ <message> |
+ <source>Grab-Radius</source> |
+ <translation>Радиус захвата</translation> |
+ </message> |
+ <message> |
+ <source>Menus</source> |
+ <translation>Меню</translation> |
+ </message> |
+ <message> |
+ <source>Recent Documents:</source> |
+ <translation>Открывавшихся документов:</translation> |
+ </message> |
+ <message> |
+ <source>Keyboard Shortcuts...</source> |
+ <translation>Горячие клавиши...</translation> |
+ </message> |
+ <message> |
+ <source>Paths</source> |
+ <translation>Пути</translation> |
+ </message> |
+ <message> |
+ <source>Documents:</source> |
+ <translation>Документы:</translation> |
+ </message> |
+ <message> |
+ <source>Change...</source> |
+ <translation>Изменить...</translation> |
+ </message> |
+ <message> |
+ <source>ICC-Profiles:</source> |
+ <translation>ICC-профили:</translation> |
+ </message> |
+ <message> |
+ <source>Scripts:</source> |
+ <translation>Сценарии:</translation> |
+ </message> |
+ <message> |
+ <source>Page Size</source> |
+ <translation>Размер страницы</translation> |
+ </message> |
+ <message> |
+ <source>Orientation:</source> |
+ <translation>Ориентация:</translation> |
+ </message> |
+ <message> |
+ <source>Custom</source> |
+ <translation>Собственный</translation> |
+ </message> |
+ <message> |
+ <source>Portrait</source> |
+ <translation>Портрет</translation> |
+ </message> |
+ <message> |
+ <source>Landscape</source> |
+ <translation>Альбом</translation> |
+ </message> |
+ <message> |
+ <source>Size:</source> |
+ <translation>Формат:</translation> |
+ </message> |
+ <message> |
+ <source>Width:</source> |
+ <translation>Ширина:</translation> |
+ </message> |
+ <message> |
+ <source>Height:</source> |
+ <translation>Высота:</translation> |
+ </message> |
+ <message> |
+ <source>Facing Pages</source> |
+ <translation>Парные страницы</translation> |
+ </message> |
+ <message> |
+ <source>Left Page First</source> |
+ <translation>Начать с левой стр.</translation> |
+ </message> |
+ <message> |
+ <source>Margin Guides</source> |
+ <translation>Направляющие полей</translation> |
+ </message> |
+ <message> |
+ <source>Bottom:</source> |
+ <translation>Снизу:</translation> |
+ </message> |
+ <message> |
+ <source>Top:</source> |
+ <translation>Сверху:</translation> |
+ </message> |
+ <message> |
+ <source>Right:</source> |
+ <translation>Справа:</translation> |
+ </message> |
+ <message> |
+ <source>Left:</source> |
+ <translation>Слева:</translation> |
+ </message> |
+ <message> |
+ <source>Autosave</source> |
+ <translation>Автосохранение</translation> |
+ </message> |
+ <message> |
+ <source>Enabled</source> |
+ <translation>Включено</translation> |
+ </message> |
+ <message> |
+ <source>Interval:</source> |
+ <translation>Интервал:</translation> |
+ </message> |
+ <message> |
+ <source>min</source> |
+ <translation>мин</translation> |
+ </message> |
+ <message> |
+ <source>Grid Layout</source> |
+ <translation>Внешний вид сетки</translation> |
+ </message> |
+ <message> |
+ <source>Minor Grid Spacing:</source> |
+ <translation>Ширина маленьких ячеек:</translation> |
+ </message> |
+ <message> |
+ <source>Major Grid Spacing:</source> |
+ <translation>Ширина больших ячеек:</translation> |
+ </message> |
+ <message> |
+ <source>Guide Snap Distance:</source> |
+ <translation>Расстояние для привязки:</translation> |
+ </message> |
+ <message> |
+ <source>Grid Colors</source> |
+ <translation>Цвета сетки</translation> |
+ </message> |
+ <message> |
+ <source>Minor Grid Color:</source> |
+ <translation>Цвет маленьких ячеек:</translation> |
+ </message> |
+ <message> |
+ <source>Major Grid Color:</source> |
+ <translation>Цвет больших ячеек:</translation> |
+ </message> |
+ <message> |
+ <source>User Guides Color:</source> |
+ <translation>Цвет собственных направляющих:</translation> |
+ </message> |
+ <message> |
+ <source>Placing</source> |
+ <translation>Расположение</translation> |
+ </message> |
+ <message> |
+ <source>In the Background</source> |
+ <translation>На заднем плане</translation> |
+ </message> |
+ <message> |
+ <source>In the Foreground</source> |
+ <translation>На переднем плане</translation> |
+ </message> |
+ <message> |
+ <source>Subscript</source> |
+ <translation>Нижний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Scaling:</source> |
+ <translation>Масштабирование:</translation> |
+ </message> |
+ <message> |
+ <source>Disp.:</source> |
+ <translation>Смещение:</translation> |
+ </message> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>Superscript</source> |
+ <translation>Верхний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Small Caps</source> |
+ <translation>Капитель</translation> |
+ </message> |
+ <message> |
+ <source>Other</source> |
+ <translation>Другое</translation> |
+ </message> |
+ <message> |
+ <source>Automatic Line Spacing:</source> |
+ <translation>Межстрочное расстояние:</translation> |
+ </message> |
+ <message> |
+ <source>Default Size:</source> |
+ <translation>Стандартный кегль:</translation> |
+ </message> |
+ <message> |
+ <source>Default Font:</source> |
+ <translation>Стандартный шрифт:</translation> |
+ </message> |
+ <message> |
+ <source>Text Color:</source> |
+ <translation>Цвет текста:</translation> |
+ </message> |
+ <message> |
+ <source>Woven silk pyjamas exchanged for blue quartz</source> |
+ <translation>А ещё неплохо бы на зависть другим уметь красиво читать и писать</translation> |
+ </message> |
+ <message> |
+ <source>Line Color:</source> |
+ <translation>Цвет линии:</translation> |
+ </message> |
+ <message> |
+ <source>Shading:</source> |
+ <translation>Тень:</translation> |
+ </message> |
+ <message> |
+ <source>Fill Color:</source> |
+ <translation>Цвет заливки:</translation> |
+ </message> |
+ <message> |
+ <source>Linestyle:</source> |
+ <translation>Стиль линии:</translation> |
+ </message> |
+ <message> |
+ <source>Line Width:</source> |
+ <translation>Толщина линии:</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation>Ничего</translation> |
+ </message> |
+ <message> |
+ <source>Line Style:</source> |
+ <translation>Стиль линии:</translation> |
+ </message> |
+ <message> |
+ <source>Minimum:</source> |
+ <translation>Минимум:</translation> |
+ </message> |
+ <message> |
+ <source>Maximum:</source> |
+ <translation>Максимум:</translation> |
+ </message> |
+ <message> |
+ <source>Stepping:</source> |
+ <translation>Шаг:</translation> |
+ </message> |
+ <message> |
+ <source>Free Scaling</source> |
+ <translation>Свободное масштабирование</translation> |
+ </message> |
+ <message> |
+ <source>Horizontal Scaling</source> |
+ <translation>По горизонтали</translation> |
+ </message> |
+ <message> |
+ <source>Vertical Scaling</source> |
+ <translation>По вертикали</translation> |
+ </message> |
+ <message> |
+ <source>Scale Picture to Frame Size</source> |
+ <translation>Масштабировать до размера рамки</translation> |
+ </message> |
+ <message> |
+ <source>Keep Aspect Ratio</source> |
+ <translation>Сохранять соотношение сторон</translation> |
+ </message> |
+ <message> |
+ <source>Corners:</source> |
+ <translation>Углов:</translation> |
+ </message> |
+ <message> |
+ <source>Rotation:</source> |
+ <translation>Поворот:</translation> |
+ </message> |
+ <message> |
+ <source>Convex Polygon</source> |
+ <translation>Выпуклость</translation> |
+ </message> |
+ <message> |
+ <source>Factor:</source> |
+ <translation>Коэфф.:</translation> |
+ </message> |
+ <message> |
+ <source>Other Options</source> |
+ <translation>Другие параметры</translation> |
+ </message> |
+ <message> |
+ <source>Save Contents on Exit</source> |
+ <translation>Сохранять содержимое при выходе</translation> |
+ </message> |
+ <message> |
+ <source>Preview</source> |
+ <translation>Просмотр</translation> |
+ </message> |
+ <message> |
+ <source>Small</source> |
+ <translation>Небольшой</translation> |
+ </message> |
+ <message> |
+ <source>Medium</source> |
+ <translation>Средний</translation> |
+ </message> |
+ <message> |
+ <source>Big</source> |
+ <translation>Большой</translation> |
+ </message> |
+ <message> |
+ <source>Display Frames</source> |
+ <translation>Показывать обрамление</translation> |
+ </message> |
+ <message> |
+ <source>Display Pages Side by Side</source> |
+ <translation>Отображать страницы рядом</translation> |
+ </message> |
+ <message> |
+ <source>Page-Colors</source> |
+ <translation>Цвета страницы</translation> |
+ </message> |
+ <message> |
+ <source>Background:</source> |
+ <translation>Фон:</translation> |
+ </message> |
+ <message> |
+ <source>Margins:</source> |
+ <translation>Поля:</translation> |
+ </message> |
+ <message> |
+ <source>Display Unprintable Area in Margin Color</source> |
+ <translation>Показывать непечатаемую область цветом поля</translation> |
+ </message> |
+ <message> |
+ <source>Use PDF-1.4 Transparency Features</source> |
+ <translation>Использовать возможности прозрачности PDF 1.4</translation> |
+ </message> |
+ <message> |
+ <source>Adjust Display Size</source> |
+ <translation>Подстройка отображения листа</translation> |
+ </message> |
+ <message> |
+ <source>To adjust the display drag the ruler below with the Slider.</source> |
+ <translation>Для подстройки отображения листа перетащите ползунок внизу в нужную позицию.</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Choose a Directory</source> |
+ <translation>Выберите каталог</translation> |
+ </message> |
+ <message> |
+ <source>Inside:</source> |
+ <translation>Внутри:</translation> |
+ </message> |
+ <message> |
+ <source>Outside:</source> |
+ <translation>Снаружи:</translation> |
+ </message> |
+ <message> |
+ <source> pt</source> |
+ <translation>pt</translation> |
+ </message> |
+ <message> |
+ <source> mm</source> |
+ <translation>mm</translation> |
+ </message> |
+ <message> |
+ <source> in</source> |
+ <translation>in</translation> |
+ </message> |
+ <message> |
+ <source> p</source> |
+ <translation>p</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>QObject</name> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want to overwrite the File: |
+%1 ?</source> |
+ <translation>Вы действительно хотите перезаписать файл: |
+%1 ?</translation> |
+ </message> |
+ <message> |
+ <source>Scripter Manual...</source> |
+ <translation>Руководство по сценариям...</translation> |
+ </message> |
+ <message> |
+ <source>Execute Script...</source> |
+ <translation>Выполнить сценарий...</translation> |
+ </message> |
+ <message> |
+ <source>Recent Scripts</source> |
+ <translation>Недавние сценарии</translation> |
+ </message> |
+ <message> |
+ <source>Show Console</source> |
+ <translation>Показать консоль</translation> |
+ </message> |
+ <message> |
+ <source>Script</source> |
+ <translation>Сценарии</translation> |
+ </message> |
+ <message> |
+ <source>Online Reference</source> |
+ <translation>Электронный справочник</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Python Scripts (*.py);; All Files (*)</source> |
+ <translation>Сценарии на Python (*.py);; Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Save as</source> |
+ <translation>Сохранить как</translation> |
+ </message> |
+ <message> |
+ <source>SVG-Images (*.svg *.svgz);;All Files (*)</source> |
+ <translation>SVG-изображения (*.svg *.svgz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>SVG-Images (*.svg);;All Files (*)</source> |
+ <translation>SVG-изображения (*.svg);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>No</source> |
+ <translation>Нет</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Query</name> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ReformDoc</name> |
+ <message> |
+ <source>Document Setup</source> |
+ <translation>Параметры документа</translation> |
+ </message> |
+ <message> |
+ <source>Margin Guides</source> |
+ <translation>Направляющие полей</translation> |
+ </message> |
+ <message> |
+ <source>Top:</source> |
+ <translation>Сверху:</translation> |
+ </message> |
+ <message> |
+ <source>Left:</source> |
+ <translation>Слева:</translation> |
+ </message> |
+ <message> |
+ <source>Bottom:</source> |
+ <translation>Снизу:</translation> |
+ </message> |
+ <message> |
+ <source>Right:</source> |
+ <translation>Справа:</translation> |
+ </message> |
+ <message> |
+ <source>Facing Pages</source> |
+ <translation>Парные страницы</translation> |
+ </message> |
+ <message> |
+ <source>Left Page first</source> |
+ <translation>Левая страница первой</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Inside:</source> |
+ <translation>Внутри:</translation> |
+ </message> |
+ <message> |
+ <source>Outside:</source> |
+ <translation>Снаружи:</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ScriXmlDoc</name> |
+ <message> |
+ <source>Copy of </source> |
+ <translation type="obsolete">Копия</translation> |
+ </message> |
+ <message> |
+ <source>Background</source> |
+ <translation>Фон</translation> |
+ </message> |
+ <message> |
+ <source>Copy #%1 of </source> |
+ <translation>Копия #%1 из </translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ScribusApp</name> |
+ <message> |
+ <source>File</source> |
+ <translation>Файл</translation> |
+ </message> |
+ <message> |
+ <source>Creates a new Document</source> |
+ <translation>Создать новый документ</translation> |
+ </message> |
+ <message> |
+ <source>Opens a Document</source> |
+ <translation>Открыть документ</translation> |
+ </message> |
+ <message> |
+ <source>Saves the Current Document</source> |
+ <translation>Сохранить текущий документ</translation> |
+ </message> |
+ <message> |
+ <source>Closes the Current Document</source> |
+ <translation>Закрыть текущий документ</translation> |
+ </message> |
+ <message> |
+ <source>Prints the Current Document</source> |
+ <translation>Напечатать текущий документ</translation> |
+ </message> |
+ <message> |
+ <source>Saves the Current Document as PDF</source> |
+ <translation>Сохранить текущий документ как PDF</translation> |
+ </message> |
+ <message> |
+ <source>Searching for Fonts</source> |
+ <translation>Идёт поиск шрифтов</translation> |
+ </message> |
+ <message> |
+ <source>There are no Postscript-Fonts on your System</source> |
+ <translation>В вашей системе нет PostScript-шрифтов</translation> |
+ </message> |
+ <message> |
+ <source>Exiting now</source> |
+ <translation>Выход</translation> |
+ </message> |
+ <message> |
+ <source>Fatal Error</source> |
+ <translation>Критическая ошибка</translation> |
+ </message> |
+ <message> |
+ <source>Smart Hyphen</source> |
+ <translation>Разумные переносы</translation> |
+ </message> |
+ <message> |
+ <source>Align Left</source> |
+ <translation>Выровнять по левой стороне</translation> |
+ </message> |
+ <message> |
+ <source>Align Right</source> |
+ <translation>Выровнять по правой стороне</translation> |
+ </message> |
+ <message> |
+ <source>Align Center</source> |
+ <translation>Выровнять по центру</translation> |
+ </message> |
+ <message> |
+ <source>Insert Page Number</source> |
+ <translation type="unfinished"></translation> |
+ </message> |
+ <message> |
+ <source>Attach Text to Path</source> |
+ <translation>Направить текст по контуру</translation> |
+ </message> |
+ <message> |
+ <source>Show Layers</source> |
+ <translation>Показать Слои</translation> |
+ </message> |
+ <message> |
+ <source>Javascripts...</source> |
+ <translation>Javascripts...</translation> |
+ </message> |
+ <message> |
+ <source>Undo</source> |
+ <translation>Откатить</translation> |
+ </message> |
+ <message> |
+ <source>Show Page Palette</source> |
+ <translation>Показать Палитру страниц</translation> |
+ </message> |
+ <message> |
+ <source>Lock/Unlock</source> |
+ <translation>Блокировать/Разблокировать</translation> |
+ </message> |
+ <message> |
+ <source>Non Breaking Space</source> |
+ <translation>Неразрывный пробел</translation> |
+ </message> |
+ <message> |
+ <source>Reading Preferences</source> |
+ <translation>Чтение настроек</translation> |
+ </message> |
+ <message> |
+ <source>Getting ICC-Profiles</source> |
+ <translation>Получение ICC-профилей</translation> |
+ </message> |
+ <message> |
+ <source>Init Hyphenator</source> |
+ <translation>Запуск модуля переносов</translation> |
+ </message> |
+ <message> |
+ <source>Setting up Shortcuts</source> |
+ <translation>Установка горячих клавиш</translation> |
+ </message> |
+ <message> |
+ <source>Color Management...</source> |
+ <translation>Управление цветом...</translation> |
+ </message> |
+ <message> |
+ <source>Reading Scrapbook</source> |
+ <translation>Чтение запасника</translation> |
+ </message> |
+ <message> |
+ <source>Initializing Plugins</source> |
+ <translation>Запуск модулей</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Open...</source> |
+ <translation>Открыть...</translation> |
+ </message> |
+ <message> |
+ <source>Recent Documents</source> |
+ <translation>Недавние документы</translation> |
+ </message> |
+ <message> |
+ <source>Close</source> |
+ <translation>Закрыть</translation> |
+ </message> |
+ <message> |
+ <source>Save</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Save as...</source> |
+ <translation>Сохранить как...</translation> |
+ </message> |
+ <message> |
+ <source>Revert to Saved</source> |
+ <translation>Вернуться к сохранённому</translation> |
+ </message> |
+ <message> |
+ <source>Collect for Output...</source> |
+ <translation>Собрать для вывода...</translation> |
+ </message> |
+ <message> |
+ <source>Get Text/Picture...</source> |
+ <translation>Получить Текст/Изображение...</translation> |
+ </message> |
+ <message> |
+ <source>Insert Page...</source> |
+ <translation>Вставить страницу...</translation> |
+ </message> |
+ <message> |
+ <source>Import...</source> |
+ <translation>Импортировать...</translation> |
+ </message> |
+ <message> |
+ <source>Save Text...</source> |
+ <translation>Сохранить текст...</translation> |
+ </message> |
+ <message> |
+ <source>Save Page as EPS...</source> |
+ <translation>Сохранить страницу в EPS...</translation> |
+ </message> |
+ <message> |
+ <source>Save as PDF...</source> |
+ <translation>Сохранить страницу в PDF...</translation> |
+ </message> |
+ <message> |
+ <source>Export...</source> |
+ <translation>Экспортировать...</translation> |
+ </message> |
+ <message> |
+ <source>Document Info...</source> |
+ <translation>Документ...</translation> |
+ </message> |
+ <message> |
+ <source>Document Setup...</source> |
+ <translation>Параметры документа...</translation> |
+ </message> |
+ <message> |
+ <source>Print...</source> |
+ <translation>Напечатать...</translation> |
+ </message> |
+ <message> |
+ <source>Quit</source> |
+ <translation>Выйти</translation> |
+ </message> |
+ <message> |
+ <source>Cut</source> |
+ <translation>Вырезать</translation> |
+ </message> |
+ <message> |
+ <source>Copy</source> |
+ <translation>Скопировать</translation> |
+ </message> |
+ <message> |
+ <source>Paste</source> |
+ <translation>Вставить</translation> |
+ </message> |
+ <message> |
+ <source>Clear</source> |
+ <translation>Очистить</translation> |
+ </message> |
+ <message> |
+ <source>Select all</source> |
+ <translation>Выделить всё</translation> |
+ </message> |
+ <message> |
+ <source>Colors...</source> |
+ <translation>Цвета...</translation> |
+ </message> |
+ <message> |
+ <source>Styles...</source> |
+ <translation>Стили...</translation> |
+ </message> |
+ <message> |
+ <source>Line Styles...</source> |
+ <translation>Стили линий...</translation> |
+ </message> |
+ <message> |
+ <source>Templates...</source> |
+ <translation>Шаблоны...</translation> |
+ </message> |
+ <message> |
+ <source>General...</source> |
+ <translation>Общее...</translation> |
+ </message> |
+ <message> |
+ <source>Preferences...</source> |
+ <translation>Настройки...</translation> |
+ </message> |
+ <message> |
+ <source>Fonts...</source> |
+ <translation>Шрифты...</translation> |
+ </message> |
+ <message> |
+ <source>Hyphenator...</source> |
+ <translation>Переносы...</translation> |
+ </message> |
+ <message> |
+ <source>Preferences</source> |
+ <translation>Настроить</translation> |
+ </message> |
+ <message> |
+ <source>Select New Font</source> |
+ <translation>Выбрать новый шрифт</translation> |
+ </message> |
+ <message> |
+ <source>Duplicate</source> |
+ <translation>Дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Multiple Duplicate</source> |
+ <translation>Многократно дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Group</source> |
+ <translation>Группировать</translation> |
+ </message> |
+ <message> |
+ <source>Un-group</source> |
+ <translation>Разгруппировать</translation> |
+ </message> |
+ <message> |
+ <source>Lock</source> |
+ <translation>Блокировать</translation> |
+ </message> |
+ <message> |
+ <source>Send to Back</source> |
+ <translation>Послать на самый низкий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Bring to Front</source> |
+ <translation>Послать на самый высокий уровень</translation> |
+ </message> |
+ <message> |
+ <source>Lower</source> |
+ <translation>Сделать уровнем ниже</translation> |
+ </message> |
+ <message> |
+ <source>Raise</source> |
+ <translation>Сделать уровнем выше</translation> |
+ </message> |
+ <message> |
+ <source>Distribute/Align...</source> |
+ <translation>Распространить / Выровнять...</translation> |
+ </message> |
+ <message> |
+ <source>Rectangle</source> |
+ <translation>Прямоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Rounded Rectangle</source> |
+ <translation>Закруглённый прямоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Oval</source> |
+ <translation>Овал</translation> |
+ </message> |
+ <message> |
+ <source>Edit Frame</source> |
+ <translation>Изменить рамку</translation> |
+ </message> |
+ <message> |
+ <source>Shape</source> |
+ <translation>Очертания</translation> |
+ </message> |
+ <message> |
+ <source>Combine Polygons</source> |
+ <translation>Объединить многоугольники</translation> |
+ </message> |
+ <message> |
+ <source>Split Polygons</source> |
+ <translation>Разделить многоугольники</translation> |
+ </message> |
+ <message> |
+ <source>Convert to Outlines</source> |
+ <translation>Преобразовать в контур</translation> |
+ </message> |
+ <message> |
+ <source>Insert...</source> |
+ <translation>Вставить...</translation> |
+ </message> |
+ <message> |
+ <source>Delete...</source> |
+ <translation>Удалить...</translation> |
+ </message> |
+ <message> |
+ <source>Move...</source> |
+ <translation>Переместить...</translation> |
+ </message> |
+ <message> |
+ <source>Apply Template...</source> |
+ <translation>Применить шаблон...</translation> |
+ </message> |
+ <message> |
+ <source>Manage Guides...</source> |
+ <translation>Настроить направляющие...</translation> |
+ </message> |
+ <message> |
+ <source>Fit in Window</source> |
+ <translation>Уместить в окне</translation> |
+ </message> |
+ <message> |
+ <source>50%</source> |
+ <translation>50%</translation> |
+ </message> |
+ <message> |
+ <source>75%</source> |
+ <translation>75%</translation> |
+ </message> |
+ <message> |
+ <source>Actual Size</source> |
+ <translation>Реальный размер</translation> |
+ </message> |
+ <message> |
+ <source>200%</source> |
+ <translation>200%</translation> |
+ </message> |
+ <message> |
+ <source>Thumbnails</source> |
+ <translation>Миниатюры</translation> |
+ </message> |
+ <message> |
+ <source>Hide Margins</source> |
+ <translation>Спрятать поля</translation> |
+ </message> |
+ <message> |
+ <source>Hide Frames</source> |
+ <translation>Спрятать обрамление</translation> |
+ </message> |
+ <message> |
+ <source>Hide Images</source> |
+ <translation>Спрятать изображения</translation> |
+ </message> |
+ <message> |
+ <source>Show Grid</source> |
+ <translation>Показать сетку</translation> |
+ </message> |
+ <message> |
+ <source>Snap to Grid</source> |
+ <translation>Привязать к сетке</translation> |
+ </message> |
+ <message> |
+ <source>Hide Guides</source> |
+ <translation>Спрятать направляющие</translation> |
+ </message> |
+ <message> |
+ <source>Snap to Guides</source> |
+ <translation>Привязать к направляющим</translation> |
+ </message> |
+ <message> |
+ <source>Hide Tools</source> |
+ <translation type="obsolete">Спрятать Инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Hide PDF-Tools</source> |
+ <translation type="obsolete">Спрятать PDF-инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Show Properties</source> |
+ <translation type="obsolete">Показать Свойства</translation> |
+ </message> |
+ <message> |
+ <source>Show Outline</source> |
+ <translation type="obsolete">Показать Схему</translation> |
+ </message> |
+ <message> |
+ <source>Show Scrapbook</source> |
+ <translation type="obsolete">Показать Запасник</translation> |
+ </message> |
+ <message> |
+ <source>Show Bookmarks</source> |
+ <translation type="obsolete">Показать Закладки</translation> |
+ </message> |
+ <message> |
+ <source>Manage Pictures</source> |
+ <translation>Настроить изображения</translation> |
+ </message> |
+ <message> |
+ <source>Hyphenate Text</source> |
+ <translation>Вставить переносы</translation> |
+ </message> |
+ <message> |
+ <source>About Scribus</source> |
+ <translation>О Scribus</translation> |
+ </message> |
+ <message> |
+ <source>About Qt</source> |
+ <translation>О Qt</translation> |
+ </message> |
+ <message> |
+ <source>Online-Help...</source> |
+ <translation>Электронная помощь...</translation> |
+ </message> |
+ <message> |
+ <source>Tool-Tips</source> |
+ <translation>Подсказки</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Правка</translation> |
+ </message> |
+ <message> |
+ <source>Style</source> |
+ <translation>Стиль</translation> |
+ </message> |
+ <message> |
+ <source>Item</source> |
+ <translation>Объект</translation> |
+ </message> |
+ <message> |
+ <source>Page</source> |
+ <translation>Страница</translation> |
+ </message> |
+ <message> |
+ <source>View</source> |
+ <translation>Вид</translation> |
+ </message> |
+ <message> |
+ <source>Tools</source> |
+ <translation>Инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Extras</source> |
+ <translation>Расширения</translation> |
+ </message> |
+ <message> |
+ <source>Windows</source> |
+ <translation>Окна</translation> |
+ </message> |
+ <message> |
+ <source>Help</source> |
+ <translation>Помощь</translation> |
+ </message> |
+ <message> |
+ <source>Left</source> |
+ <translation>Влево</translation> |
+ </message> |
+ <message> |
+ <source>Center</source> |
+ <translation>По центру</translation> |
+ </message> |
+ <message> |
+ <source>Right</source> |
+ <translation>Вправо</translation> |
+ </message> |
+ <message> |
+ <source>Block</source> |
+ <translation>Блочно</translation> |
+ </message> |
+ <message> |
+ <source>Forced</source> |
+ <translation>Принудительно</translation> |
+ </message> |
+ <message> |
+ <source>Other...</source> |
+ <translation>Другое...</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+ <message> |
+ <source>Underline</source> |
+ <translation>Подчёркнутый</translation> |
+ </message> |
+ <message> |
+ <source>Strikethru</source> |
+ <translation>Зачёркнутый</translation> |
+ </message> |
+ <message> |
+ <source>Small Caps</source> |
+ <translation>Капитель</translation> |
+ </message> |
+ <message> |
+ <source>Superscript</source> |
+ <translation>Верхний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Subscript</source> |
+ <translation>Нижний индекс</translation> |
+ </message> |
+ <message> |
+ <source>Outlined</source> |
+ <translation>Обведённый</translation> |
+ </message> |
+ <message> |
+ <source>X-Pos:</source> |
+ <translation>X-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Y-Pos:</source> |
+ <translation>Y-Поз:</translation> |
+ </message> |
+ <message> |
+ <source>Ready</source> |
+ <translation>Готово</translation> |
+ </message> |
+ <message> |
+ <source>Cascade</source> |
+ <translation>Каскадом</translation> |
+ </message> |
+ <message> |
+ <source>Tile</source> |
+ <translation>Мозаикой</translation> |
+ </message> |
+ <message> |
+ <source>None</source> |
+ <translation></translation> |
+ </message> |
+ <message> |
+ <source>Show Frames</source> |
+ <translation>Показывать обрамление</translation> |
+ </message> |
+ <message> |
+ <source>Get Picture...</source> |
+ <translation>Получить изображение...</translation> |
+ </message> |
+ <message> |
+ <source>Color</source> |
+ <translation>Цвет</translation> |
+ </message> |
+ <message> |
+ <source>Invert</source> |
+ <translation>Инвертировать</translation> |
+ </message> |
+ <message> |
+ <source>Get Text...</source> |
+ <translation>Получить текст...</translation> |
+ </message> |
+ <message> |
+ <source>Font</source> |
+ <translation>Шрифт</translation> |
+ </message> |
+ <message> |
+ <source>Size</source> |
+ <translation>Размер</translation> |
+ </message> |
+ <message> |
+ <source>Alignment</source> |
+ <translation>Выравнивание</translation> |
+ </message> |
+ <message> |
+ <source>Shade</source> |
+ <translation>Тень</translation> |
+ </message> |
+ <message> |
+ <source>Unlock</source> |
+ <translation>Разблокировать</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.scd);;All Files (*)</source> |
+ <translation>Документы (*.sla *.scd);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Loading...</source> |
+ <translation>Файл загружается...</translation> |
+ </message> |
+ <message> |
+ <source>Images</source> |
+ <translation>Изображения</translation> |
+ </message> |
+ <message> |
+ <source>);;Vector Files (*.eps *.pdf);;All Files (*)</source> |
+ <translation>);;Векторные файлы (*.eps *.pdf);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Text Files (*.txt);;All Files(*)</source> |
+ <translation>Текстовый файлы (*.txt);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Can't write the File: |
+%1</source> |
+ <translation>Невозможно записать файл: |
+%1</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Save as</source> |
+ <translation>Сохранить как</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Saving...</source> |
+ <translation>Файл сохраняется...</translation> |
+ </message> |
+ <message> |
+ <source>Printing...</source> |
+ <translation>Документ выводится на печать...</translation> |
+ </message> |
+ <message> |
+ <source>Document</source> |
+ <translation>Документ</translation> |
+ </message> |
+ <message> |
+ <source>Printing failed!</source> |
+ <translation>Печать не удалась!</translation> |
+ </message> |
+ <message> |
+ <source>Scribus Manual</source> |
+ <translation>Руководство по Scribus</translation> |
+ </message> |
+ <message> |
+ <source>Show Margins</source> |
+ <translation>Показать поля</translation> |
+ </message> |
+ <message> |
+ <source>Hide Properties</source> |
+ <translation type="obsolete">Спрятать панель свойств</translation> |
+ </message> |
+ <message> |
+ <source>Hide Outline</source> |
+ <translation type="obsolete">Спрятать Схему</translation> |
+ </message> |
+ <message> |
+ <source>Hide Scrapbook</source> |
+ <translation type="obsolete">Спрятать Запасник</translation> |
+ </message> |
+ <message> |
+ <source>Hide Layers</source> |
+ <translation type="obsolete">Спрятать Слои</translation> |
+ </message> |
+ <message> |
+ <source>Hide Page Palette</source> |
+ <translation type="obsolete">Спрятать Палитру страниц</translation> |
+ </message> |
+ <message> |
+ <source>Hide Bookmarks</source> |
+ <translation type="obsolete">Спрятать Закладки</translation> |
+ </message> |
+ <message> |
+ <source>Show Tools</source> |
+ <translation type="obsolete">Показать Инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Show PDF-Tools</source> |
+ <translation type="obsolete">Показать PDF-инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Show Images</source> |
+ <translation>Показывать изображения</translation> |
+ </message> |
+ <message> |
+ <source>Hide Grid</source> |
+ <translation>Спрятать сетку</translation> |
+ </message> |
+ <message> |
+ <source>Show Guides</source> |
+ <translation>Показать направляющие</translation> |
+ </message> |
+ <message> |
+ <source>The following Programs are missing:</source> |
+ <translation>Следующие программы отсутствуют:</translation> |
+ </message> |
+ <message> |
+ <source>Ghostscript : You cannot use EPS-Images</source> |
+ <translation>Ghostscript : Вы не можете использовать EPS-изображения</translation> |
+ </message> |
+ <message> |
+ <source>All</source> |
+ <translation>Все</translation> |
+ </message> |
+ <message> |
+ <source>EPS-Files (*.eps);;All Files (*)</source> |
+ <translation>EPS-изображения (*.eps);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Loading:</source> |
+ <translation>Загружается:</translation> |
+ </message> |
+ <message> |
+ <source>Adjusting Colors</source> |
+ <translation>Идёт подстройка цветов</translation> |
+ </message> |
+ <message> |
+ <source>Undo Delete Object</source> |
+ <translation>Отменить удаление объекта</translation> |
+ </message> |
+ <message> |
+ <source>Undo Object Move</source> |
+ <translation>Отменить перемещение объекта</translation> |
+ </message> |
+ <message> |
+ <source>Undo Object Change</source> |
+ <translation>Отменить изменение объекта</translation> |
+ </message> |
+ <message> |
+ <source>English</source> |
+ <translation>Английский</translation> |
+ </message> |
+ <message> |
+ <source>German</source> |
+ <translation>Немецкий</translation> |
+ </message> |
+ <message> |
+ <source>Spanish</source> |
+ <translation>Испанский</translation> |
+ </message> |
+ <message> |
+ <source>Italian</source> |
+ <translation>Итальянский</translation> |
+ </message> |
+ <message> |
+ <source>French</source> |
+ <translation>Французский</translation> |
+ </message> |
+ <message> |
+ <source>Russian</source> |
+ <translation>Русский</translation> |
+ </message> |
+ <message> |
+ <source>Danish</source> |
+ <translation>Датский</translation> |
+ </message> |
+ <message> |
+ <source>Slovak</source> |
+ <translation>Словацкий</translation> |
+ </message> |
+ <message> |
+ <source>Hungarian</source> |
+ <translation>Венгерский</translation> |
+ </message> |
+ <message> |
+ <source>Czech</source> |
+ <translation>Чешский</translation> |
+ </message> |
+ <message> |
+ <source>Dutch</source> |
+ <translation>Датский</translation> |
+ </message> |
+ <message> |
+ <source>Portuguese</source> |
+ <translation>Португальский</translation> |
+ </message> |
+ <message> |
+ <source>Ukrainian</source> |
+ <translation>Украинский</translation> |
+ </message> |
+ <message> |
+ <source>Polish</source> |
+ <translation>Польский</translation> |
+ </message> |
+ <message> |
+ <source>Greek</source> |
+ <translation>Греческий</translation> |
+ </message> |
+ <message> |
+ <source>Catalan</source> |
+ <translation>Каталонский</translation> |
+ </message> |
+ <message> |
+ <source>Choose a Directory</source> |
+ <translation>Выберите каталог</translation> |
+ </message> |
+ <message> |
+ <source>PDF-Tools</source> |
+ <translation>PDF-инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Properties</source> |
+ <translation>Свойства</translation> |
+ </message> |
+ <message> |
+ <source>Outline</source> |
+ <translation>Схема</translation> |
+ </message> |
+ <message> |
+ <source>Scrapbook</source> |
+ <translation>Запасник</translation> |
+ </message> |
+ <message> |
+ <source>Layers</source> |
+ <translation>Слои</translation> |
+ </message> |
+ <message> |
+ <source>Page Palette</source> |
+ <translation>Палитра страниц</translation> |
+ </message> |
+ <message> |
+ <source>Bookmarks</source> |
+ <translation>Закладки</translation> |
+ </message> |
+ <message> |
+ <source>Scribus Crash</source> |
+ <translation>"Обрушивание" Scribus</translation> |
+ </message> |
+ <message> |
+ <source>Scribus crashes due to Signal #%1</source> |
+ <translation>Scribus обрушился по причине #%1</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ScribusDoc</name> |
+ <message> |
+ <source>Document</source> |
+ <translation>Документ</translation> |
+ </message> |
+ <message> |
+ <source>Background</source> |
+ <translation>Фон</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ScribusView</name> |
+ <message> |
+ <source> %</source> |
+ <translation>%</translation> |
+ </message> |
+ <message> |
+ <source>Page %1</source> |
+ <translation>Страница %1</translation> |
+ </message> |
+ <message> |
+ <source>Layer</source> |
+ <translation>Слой</translation> |
+ </message> |
+ <message> |
+ <source>All</source> |
+ <translation>Все</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ScribusWin</name> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Document:</source> |
+ <translation>Документ:</translation> |
+ </message> |
+ <message> |
+ <source>has been changed since the last save.</source> |
+ <translation>изменился с момента последнего сохранения.</translation> |
+ </message> |
+ <message> |
+ <source>Save Now</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отказаться</translation> |
+ </message> |
+ <message> |
+ <source>Leave Anyway</source> |
+ <translation>Выйти без сохранения</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>SeList</name> |
+ <message> |
+ <source>Show Page Previews</source> |
+ <translation>Просмотр страниц</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>SeView</name> |
+ <message> |
+ <source>Show Template Names</source> |
+ <translation>Показать имена шаблонов</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>SeitenPal</name> |
+ <message> |
+ <source>Arrange Pages</source> |
+ <translation>Палитра страниц</translation> |
+ </message> |
+ <message> |
+ <source>Available Templates:</source> |
+ <translation>Доступные шаблоны:</translation> |
+ </message> |
+ <message> |
+ <source>Document Pages:</source> |
+ <translation>Страницы документа:</translation> |
+ </message> |
+ <message> |
+ <source>Facing Pages</source> |
+ <translation>Парные страницы</translation> |
+ </message> |
+ <message> |
+ <source>Left Page first</source> |
+ <translation>Левая страница первой</translation> |
+ </message> |
+ <message> |
+ <source>Drag Pages or Template Pages onto the Trashbin to delete them.</source> |
+ <translation>Перетащите страницы или шаблоны |
+на значок корзины для их удаления.</translation> |
+ </message> |
+ <message> |
+ <source>This previews all the pages of your Document.</source> |
+ <translation>Здесь показываются все страницы документа.</translation> |
+ </message> |
+ <message> |
+ <source>Here are all your Templates, to create a new Page |
+drag a Template to the Pageview below.</source> |
+ <translation>Здесь находятся все ваши шаблоны. |
+Для создания новой страницы перетащите |
+шаблон в область просмотра страниц внизу.</translation> |
+ </message> |
+ <message> |
+ <source>Normal</source> |
+ <translation>Normal</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>SelectFields</name> |
+ <message> |
+ <source>Select Fields</source> |
+ <translation>Выбор полей</translation> |
+ </message> |
+ <message> |
+ <source>Available Fields</source> |
+ <translation>Доступные поля</translation> |
+ </message> |
+ <message> |
+ <source>>></source> |
+ <translation>>></translation> |
+ </message> |
+ <message> |
+ <source><<</source> |
+ <translation><<</translation> |
+ </message> |
+ <message> |
+ <source>Selected Fields</source> |
+ <translation>Выбранные поля</translation> |
+ </message> |
+ <message> |
+ <source>OK</source> |
+ <translation>ОК</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Spalette</name> |
+ <message> |
+ <source>No Style</source> |
+ <translation>Стилей нет</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>StilFormate</name> |
+ <message> |
+ <source>Edit Styles</source> |
+ <translation>Правка стилей</translation> |
+ </message> |
+ <message> |
+ <source>Append</source> |
+ <translation>Из файла</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Изменить</translation> |
+ </message> |
+ <message> |
+ <source>Duplicate</source> |
+ <translation>Дублировать</translation> |
+ </message> |
+ <message> |
+ <source>Delete</source> |
+ <translation>Удалить</translation> |
+ </message> |
+ <message> |
+ <source>Save</source> |
+ <translation>Сохранить</translation> |
+ </message> |
+ <message> |
+ <source>Cancel</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Copy of %1</source> |
+ <translation>Копия %1</translation> |
+ </message> |
+ <message> |
+ <source>New Style</source> |
+ <translation>Новый стиль</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want do delete this Style?</source> |
+ <translation>Вы действительно хотите удалить этот стиль?</translation> |
+ </message> |
+ <message> |
+ <source>No</source> |
+ <translation>Нет</translation> |
+ </message> |
+ <message> |
+ <source>Yes</source> |
+ <translation>Да</translation> |
+ </message> |
+ <message> |
+ <source>Open</source> |
+ <translation>Открыть</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
+ <translation>Документы (*.sla *.sla.gz *.scd *.scd.gz);;Все файлы (*)</translation> |
+ </message> |
+ <message> |
+ <source>Documents (*.sla *.scd);;All Files (*)</source> |
+ <translation>Документы (*.sla *.scd);;Все файлы (*)</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>StoryEditor</name> |
+ <message> |
+ <source>Story Editor</source> |
+ <translation>Редактор текста</translation> |
+ </message> |
+ <message> |
+ <source>Left</source> |
+ <translation>Влево</translation> |
+ </message> |
+ <message> |
+ <source>Center</source> |
+ <translation>По центру</translation> |
+ </message> |
+ <message> |
+ <source>Right</source> |
+ <translation>Вправо</translation> |
+ </message> |
+ <message> |
+ <source>Block</source> |
+ <translation>Блочно</translation> |
+ </message> |
+ <message> |
+ <source>Forced</source> |
+ <translation>Принудительно</translation> |
+ </message> |
+ <message> |
+ <source>New</source> |
+ <translation>Новый</translation> |
+ </message> |
+ <message> |
+ <source>Save and Exit</source> |
+ <translation>Сохранить и выйти</translation> |
+ </message> |
+ <message> |
+ <source>Exit without Saving</source> |
+ <translation>Выйти без сохранения</translation> |
+ </message> |
+ <message> |
+ <source>Undo</source> |
+ <translation>Отменить</translation> |
+ </message> |
+ <message> |
+ <source>Redo</source> |
+ <translation>Возвратить</translation> |
+ </message> |
+ <message> |
+ <source>Cut</source> |
+ <translation>Вырезать</translation> |
+ </message> |
+ <message> |
+ <source>Copy</source> |
+ <translation>Скопировать</translation> |
+ </message> |
+ <message> |
+ <source>Paste</source> |
+ <translation>Вставить</translation> |
+ </message> |
+ <message> |
+ <source>Clear</source> |
+ <translation>Очистить</translation> |
+ </message> |
+ <message> |
+ <source>Edit Styles...</source> |
+ <translation>Изменить стили...</translation> |
+ </message> |
+ <message> |
+ <source>Update Textframe</source> |
+ <translation>Обновить текст в рамке</translation> |
+ </message> |
+ <message> |
+ <source>File</source> |
+ <translation>Файл</translation> |
+ </message> |
+ <message> |
+ <source>Edit</source> |
+ <translation>Правка</translation> |
+ </message> |
+ <message> |
+ <source>Style</source> |
+ <translation>Стиль</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Warning</source> |
+ <translation>Предупреждение</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want to lose all your Changes?</source> |
+ <translation>Вы действительно хотите потерять все изменения?</translation> |
+ </message> |
+ <message> |
+ <source>Do you really want to clear all your Text?</source> |
+ <translation>Вы действительно хотите удалить весь текст?</translation> |
+ </message> |
+ <message> |
+ <source>Current Paragraph:</source> |
+ <translation>Текущий параграф:</translation> |
+ </message> |
+ <message> |
+ <source>Words: </source> |
+ <translation>Слов:</translation> |
+ </message> |
+ <message> |
+ <source>Chars: </source> |
+ <translation>Символов:</translation> |
+ </message> |
+ <message> |
+ <source>Totals:</source> |
+ <translation>Всего:</translation> |
+ </message> |
+ <message> |
+ <source>Paragraphs: </source> |
+ <translation>Параграфов:</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>Tree</name> |
+ <message> |
+ <source>Outline</source> |
+ <translation>Схема</translation> |
+ </message> |
+ <message> |
+ <source>Element</source> |
+ <translation>Элемент</translation> |
+ </message> |
+ <message> |
+ <source>Type</source> |
+ <translation>Тип</translation> |
+ </message> |
+ <message> |
+ <source>Information</source> |
+ <translation>Информация</translation> |
+ </message> |
+ <message> |
+ <source>X:</source> |
+ <translation>X:</translation> |
+ </message> |
+ <message> |
+ <source>Y:</source> |
+ <translation>Y:</translation> |
+ </message> |
+ <message> |
+ <source>Font:</source> |
+ <translation>Шрифт:</translation> |
+ </message> |
+ <message> |
+ <source>Image</source> |
+ <translation>Изображение</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Line</source> |
+ <translation>Линия</translation> |
+ </message> |
+ <message> |
+ <source>Polygon</source> |
+ <translation>Многоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Polyline</source> |
+ <translation>Ломаная линия</translation> |
+ </message> |
+ <message> |
+ <source>PathText</source> |
+ <translation>Контурный текст</translation> |
+ </message> |
+ <message> |
+ <source>Page</source> |
+ <translation>Страница</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>WerkToolB</name> |
+ <message> |
+ <source>Tools</source> |
+ <translation>Инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Select Items</source> |
+ <translation>Выбрать объекты</translation> |
+ </message> |
+ <message> |
+ <source>Rotate Item</source> |
+ <translation>Повернуть объекты</translation> |
+ </message> |
+ <message> |
+ <source>Edit Contents of Frame</source> |
+ <translation>Изменить содержимое рамки</translation> |
+ </message> |
+ <message> |
+ <source>Zooms in or out</source> |
+ <translation>Масштабировать</translation> |
+ </message> |
+ <message> |
+ <source>Insert Text Frame</source> |
+ <translation>Вставить тестовую рамку</translation> |
+ </message> |
+ <message> |
+ <source>Insert Picture</source> |
+ <translation>Вставить изображение</translation> |
+ </message> |
+ <message> |
+ <source>Insert Rectangles</source> |
+ <translation type="obsolete">Вставить прямоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Insert Ovals</source> |
+ <translation type="obsolete">Вставить овал</translation> |
+ </message> |
+ <message> |
+ <source>Properties...</source> |
+ <translation>Свойства...</translation> |
+ </message> |
+ <message> |
+ <source>Insert Polygons</source> |
+ <translation>Вставить многоугольник</translation> |
+ </message> |
+ <message> |
+ <source>Insert Lines</source> |
+ <translation>Вставить линии</translation> |
+ </message> |
+ <message> |
+ <source>Insert Bezier Curves</source> |
+ <translation>Вставить кривые Безье</translation> |
+ </message> |
+ <message> |
+ <source>Create Text Chains</source> |
+ <translation>Создать текстовые цепочки</translation> |
+ </message> |
+ <message> |
+ <source>Break Text Chains</source> |
+ <translation>Разомкнуть текстовые цепочки</translation> |
+ </message> |
+ <message> |
+ <source>Draws various Shapes</source> |
+ <translation>Рисует различные очертания</translation> |
+ </message> |
+ <message> |
+ <source>Edit the Text with the Story Editor</source> |
+ <translation>Изменить текст в редакторе</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>WerkToolBP</name> |
+ <message> |
+ <source>PDF-Tools</source> |
+ <translation>PDF-инструменты</translation> |
+ </message> |
+ <message> |
+ <source>Button</source> |
+ <translation>Кнопка</translation> |
+ </message> |
+ <message> |
+ <source>Text Field</source> |
+ <translation>Текстовое поле</translation> |
+ </message> |
+ <message> |
+ <source>Check Box</source> |
+ <translation>Флажок</translation> |
+ </message> |
+ <message> |
+ <source>Combo Box</source> |
+ <translation>Выпадающий список</translation> |
+ </message> |
+ <message> |
+ <source>List Box</source> |
+ <translation>Список</translation> |
+ </message> |
+ <message> |
+ <source>Insert PDF-Fields</source> |
+ <translation>Вставить PDF-поля</translation> |
+ </message> |
+ <message> |
+ <source>Text</source> |
+ <translation>Текст</translation> |
+ </message> |
+ <message> |
+ <source>Link</source> |
+ <translation>ССылка</translation> |
+ </message> |
+ <message> |
+ <source>Insert PDF-Annotations</source> |
+ <translation>Вставить PDF-аннотации</translation> |
+ </message> |
+</context> |
+<context> |
+ <name>ZAuswahl</name> |
+ <message> |
+ <source>Select Character:</source> |
+ <translation>Выбор символа:</translation> |
+ </message> |
+ <message> |
+ <source>Insert</source> |
+ <translation>Вставить</translation> |
+ </message> |
+ <message> |
+ <source>Clear</source> |
+ <translation>Очистить</translation> |
+ </message> |
+ <message> |
+ <source>Close</source> |
+ <translation>Закрыть</translation> |
+ </message> |
+</context> |
+</TS> |
/trunk/Scribus/scribus/po/scribus.ru.ts |
---|
Property changes: |
Added: svn:eol-style |
## -0,0 +1 ## |
+native |
\ No newline at end of property |
Added: svn:keywords |
## -0,0 +1 ## |
+Author Date Id Revision |
\ No newline at end of property |
Index: trunk/Scribus/scribus/po/scribus.da_DK.po |
=================================================================== |
--- trunk/Scribus/scribus/po/scribus.da_DK.po (revision 130) |
+++ trunk/Scribus/scribus/po/scribus.da_DK.po (revision 131) |
@@ -4,9 +4,9 @@ |
# not "Foo::Pub". |
msgid "" |
msgstr "" |
-"Project-Id-Version: Scribus 1.1.3\n" |
-"POT-Creation-Date: 2003-10-03 10:04:12 AM EDT\n" |
-"PO-Revision-Date: 2003-11-30 17:20:00 CET\n" |
+"Project-Id-Version: Scribus 1.1.4\n" |
+"POT-Creation-Date: 2003-11-28 22:14:27 CET\n" |
+"PO-Revision-Date: 2003-12-19 14:30:00 CET\n" |
"Last-Translator: Morten Langlo <mlanglo@post6.tele.dk>\n" |
"Content-Type: text/plain; charset=iso-8859-1\n" |
@@ -114,15 +114,15 @@ |
msgid "Align::between:" |
msgstr "Ud fra:" |
-#: annot.cpp:637 |
+#: annot.cpp:630 |
msgid "Annot:: pt" |
msgstr "" |
-#: annot.cpp:958 |
+#: annot.cpp:951 |
msgid "Annot::" |
msgstr "" |
-#: annot.cpp:641 |
+#: annot.cpp:634 |
msgid "Annot::Action" |
msgstr "Handling" |
@@ -142,19 +142,19 @@ |
msgid "Annot::Button" |
msgstr "Knap" |
-#: annot.cpp:1015 |
+#: annot.cpp:1008 |
msgid "Annot::Calculate" |
msgstr "Udregn" |
-#: annot.cpp:1038 |
+#: annot.cpp:1031 |
msgid "Annot::Cancel" |
msgstr "Annullér" |
-#: annot.cpp:605 |
+#: annot.cpp:601 |
msgid "Annot::Change..." |
msgstr "Vælg..." |
-#: annot.cpp:417 |
+#: annot.cpp:415 |
msgid "Annot::Characters" |
msgstr "Skrifttegn" |
@@ -162,15 +162,15 @@ |
msgid "Annot::Check Box" |
msgstr "Afkrydsnings boks" |
-#: annot.cpp:441 |
+#: annot.cpp:439 |
msgid "Annot::Check Style:" |
msgstr "afkrydsningsstil:" |
-#: annot.cpp:444 |
+#: annot.cpp:442 |
msgid "Annot::Check" |
msgstr "Afkrydsning" |
-#: annot.cpp:447 |
+#: annot.cpp:445 |
msgid "Annot::Circle" |
msgstr "Cirkel" |
@@ -198,23 +198,23 @@ |
msgid "Annot::Courier" |
msgstr "" |
-#: annot.cpp:445 |
+#: annot.cpp:443 |
msgid "Annot::Cross" |
msgstr "kryds" |
-#: annot.cpp:841 |
+#: annot.cpp:834 |
msgid "Annot::Custom Scripts" |
msgstr "Bruger scripts" |
-#: annot.cpp:998 |
+#: annot.cpp:991 |
msgid "Annot::Custom calculation script:" |
msgstr "Bruger udregnings script:" |
-#: annot.cpp:933 |
+#: annot.cpp:926 |
msgid "Annot::Custom validate script:" |
msgstr "Bruger validerings script:" |
-#: annot.cpp:670 |
+#: annot.cpp:663 |
msgid "Annot::Custom" |
msgstr "Bruger" |
@@ -222,35 +222,35 @@ |
msgid "Annot::Dashed" |
msgstr "Punkteret" |
-#: annot.cpp:785 |
+#: annot.cpp:778 |
msgid "Annot::Date Format" |
msgstr "Datoformat" |
-#: annot.cpp:668 |
+#: annot.cpp:661 |
msgid "Annot::Date" |
msgstr "Dato" |
-#: annot.cpp:750 |
+#: annot.cpp:743 |
msgid "Annot::Decimals:" |
msgstr "Decimaler:" |
-#: annot.cpp:458 |
+#: annot.cpp:456 |
msgid "Annot::Default is Checked" |
msgstr "Standard er afkrydset" |
-#: annot.cpp:589 |
+#: annot.cpp:585 |
msgid "Annot::Destination" |
msgstr "Bestemmelsessted" |
-#: annot.cpp:446 |
+#: annot.cpp:444 |
msgid "Annot::Diamond" |
msgstr "Diamand" |
-#: annot.cpp:423 |
+#: annot.cpp:421 |
msgid "Annot::Do Not Scroll" |
msgstr "Ingen rulning" |
-#: annot.cpp:427 |
+#: annot.cpp:425 |
msgid "Annot::Do Not Spell Check" |
msgstr "Ingen stavekontrol" |
@@ -258,23 +258,23 @@ |
msgid "Annot::Don't Export Value" |
msgstr "Eksporter ikke værdi" |
-#: annot.cpp:1011 |
+#: annot.cpp:1004 |
msgid "Annot::Edit..." |
msgstr "Redigér..." |
-#: annot.cpp:471 |
+#: annot.cpp:469 |
msgid "Annot::Editable" |
msgstr "Redigérbar" |
-#: annot.cpp:1092 |
-msgid "Annot::Enter a comma separated list of Fields here" |
+#: annot.cpp:1085 |
+msgid "Annot::Enter a comma separated list of fields here" |
msgstr "Indtast en komma-adskilt liste af felter her" |
-#: annot.cpp:521 |
+#: annot.cpp:517 |
msgid "Annot::Event:" |
msgstr "Begivenhed:" |
-#: annot.cpp:1349 |
+#: annot.cpp:1339 |
msgid "Annot::Example:" |
msgstr "Eksempel:" |
@@ -282,11 +282,11 @@ |
msgid "Annot::Field Properties" |
msgstr "Felt egenskaber" |
-#: annot.cpp:662 |
+#: annot.cpp:655 |
msgid "Annot::Field is formatted as:" |
msgstr "Felt er formateret som:" |
-#: annot.cpp:1091 |
+#: annot.cpp:1084 |
msgid "Annot::Flag is ignored for PDF-1.3" |
msgstr "Kan ikke benyttes i PDF-1.3" |
@@ -294,19 +294,19 @@ |
msgid "Annot::Font for use with PDF-1.3:" |
msgstr "Font til brug i PDF-1.3:" |
-#: annot.cpp:894 |
+#: annot.cpp:887 |
msgid "Annot::Format" |
msgstr "" |
-#: annot.cpp:850 |
+#: annot.cpp:843 |
msgid "Annot::Format:" |
msgstr "" |
-#: annot.cpp:761 |
+#: annot.cpp:754 |
msgid "Annot::Formatting" |
msgstr "Formatering" |
-#: annot.cpp:1972 |
+#: annot.cpp:1926 |
msgid "Annot::Go To" |
msgstr "Gå til" |
@@ -342,16 +342,16 @@ |
msgid "Annot::Icons" |
msgstr "Ikoner" |
-#: annot.cpp:1241 |
+#: annot.cpp:1231 |
msgid "" |
"Annot::Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)" |
msgstr "Billeder (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Alle filer (*)" |
-#: annot.cpp:578 |
+#: annot.cpp:574 |
msgid "Annot::Import Data from:" |
msgstr "Importér data fra:" |
-#: annot.cpp:1975 |
+#: annot.cpp:1929 |
msgid "Annot::Import Data" |
msgstr "Importér data" |
@@ -363,11 +363,11 @@ |
msgid "Annot::Invert" |
msgstr "Invertér" |
-#: annot.cpp:2014 |
+#: annot.cpp:1961 |
msgid "Annot::Java Script" |
-msgstr "" |
+msgstr "Javascript" |
-#: annot.cpp:871 |
+#: annot.cpp:864 |
msgid "Annot::Keystroke:" |
msgstr "Tasteanslag:" |
@@ -379,19 +379,19 @@ |
msgid "Annot::List Box" |
msgstr "Liste boks" |
-#: annot.cpp:1953 |
+#: annot.cpp:1906 |
msgid "Annot::Mouse Down" |
msgstr "Mus-taste trykkes ned" |
-#: annot.cpp:1954 |
+#: annot.cpp:1907 |
msgid "Annot::Mouse Enter" |
msgstr "Markøren går ind i felt" |
-#: annot.cpp:1955 |
+#: annot.cpp:1908 |
msgid "Annot::Mouse Exit" |
msgstr "Markøren forlader felt" |
-#: annot.cpp:1952 |
+#: annot.cpp:1905 |
msgid "Annot::Mouse Up" |
msgstr "Mus-taste slippes" |
@@ -411,7 +411,7 @@ |
msgid "Annot::No View" |
msgstr "Ingen visning" |
-#: annot.cpp:2013 |
+#: annot.cpp:1960 |
msgid "Annot::None" |
msgstr "Ingen" |
@@ -419,31 +419,31 @@ |
msgid "Annot::Normal" |
msgstr "Normalt" |
-#: annot.cpp:685 |
+#: annot.cpp:678 |
msgid "Annot::Number Format" |
msgstr "Nummerformat" |
-#: annot.cpp:666 |
+#: annot.cpp:659 |
msgid "Annot::Number" |
msgstr "Nummer" |
-#: annot.cpp:1034 |
+#: annot.cpp:1027 |
msgid "Annot::OK" |
msgstr "" |
-#: annot.cpp:1957 |
+#: annot.cpp:1910 |
msgid "Annot::On Blur" |
msgstr "Felt mister fokus" |
-#: annot.cpp:1956 |
+#: annot.cpp:1909 |
msgid "Annot::On Focus" |
msgstr "Felt har fokus" |
-#: annot.cpp:2172 |
+#: annot.cpp:2107 |
msgid "Annot::Open" |
msgstr "Åbn" |
-#: annot.cpp:478 |
+#: annot.cpp:476 |
msgid "Annot::Options" |
msgstr "Indstillinger" |
@@ -455,11 +455,11 @@ |
msgid "Annot::Outlined" |
msgstr "Indrammet" |
-#: annot.cpp:2172 |
+#: annot.cpp:2107 |
msgid "Annot::PDF-Documents (*.pdf);;All Files (*)" |
msgstr "PDF-Dokumenter (*.pdf);; Alle filer (*)" |
-#: annot.cpp:608 |
+#: annot.cpp:604 |
msgid "Annot::Page:" |
msgstr "Side:" |
@@ -467,23 +467,23 @@ |
msgid "Annot::Password" |
msgstr "Adgangskode" |
-#: annot.cpp:742 |
+#: annot.cpp:735 |
msgid "Annot::Percent Format" |
msgstr "Procent format" |
-#: annot.cpp:667 |
+#: annot.cpp:660 |
msgid "Annot::Percentage" |
msgstr "Procentdel" |
-#: annot.cpp:993 |
+#: annot.cpp:986 |
msgid "Annot::Pick..." |
msgstr "Vælg..." |
-#: annot.cpp:665 |
+#: annot.cpp:658 |
msgid "Annot::Plain" |
msgstr "Almindelig" |
-#: annot.cpp:714 |
+#: annot.cpp:707 |
msgid "Annot::Prepend Currency Symbol" |
msgstr "Sæt valutasymbol foran" |
@@ -511,7 +511,7 @@ |
msgid "Annot::Required" |
msgstr "Behøves" |
-#: annot.cpp:1974 |
+#: annot.cpp:1928 |
msgid "Annot::Reset Form" |
msgstr "Nulstil form" |
@@ -519,11 +519,11 @@ |
msgid "Annot::Roll Over" |
msgstr "Roll Over" |
-#: annot.cpp:536 |
+#: annot.cpp:532 |
msgid "Annot::Script:" |
msgstr "" |
-#: annot.cpp:2005 |
+#: annot.cpp:1952 |
msgid "Annot::Selection Change" |
msgstr "Ændring af valg" |
@@ -531,11 +531,11 @@ |
msgid "Annot::Solid" |
msgstr "Massiv" |
-#: annot.cpp:449 |
+#: annot.cpp:447 |
msgid "Annot::Square" |
msgstr "Firkant" |
-#: annot.cpp:448 |
+#: annot.cpp:446 |
msgid "Annot::Star" |
msgstr "Stjerne" |
@@ -543,15 +543,15 @@ |
msgid "Annot::Style:" |
msgstr "Stil:" |
-#: annot.cpp:567 |
+#: annot.cpp:563 |
msgid "Annot::Submit Data as HTML" |
msgstr "Send Data som HTML" |
-#: annot.cpp:1973 |
+#: annot.cpp:1927 |
msgid "Annot::Submit Form" |
msgstr "Send form" |
-#: annot.cpp:559 |
+#: annot.cpp:555 |
msgid "Annot::Submit to URL:" |
msgstr "Send til URL:" |
@@ -579,11 +579,11 @@ |
msgid "Annot::Thin" |
msgstr "Tynd" |
-#: annot.cpp:818 |
+#: annot.cpp:811 |
msgid "Annot::Time Format" |
msgstr "Tidsformat" |
-#: annot.cpp:669 |
+#: annot.cpp:662 |
msgid "Annot::Time" |
msgstr "Tid" |
@@ -603,7 +603,7 @@ |
msgid "Annot::Times" |
msgstr "" |
-#: annot.cpp:598 |
+#: annot.cpp:594 |
msgid "Annot::To File:" |
msgstr "Til fil:" |
@@ -611,7 +611,7 @@ |
msgid "Annot::Tool-Tip:" |
msgstr "Hjælpe-tekst:" |
-#: annot.cpp:486 |
+#: annot.cpp:484 |
msgid "Annot::Type:" |
msgstr "" |
@@ -619,7 +619,7 @@ |
msgid "Annot::Underline" |
msgstr "Understreg" |
-#: annot.cpp:705 |
+#: annot.cpp:698 |
msgid "Annot::Use Currency Symbol" |
msgstr "Brug valutasymbol" |
@@ -627,23 +627,23 @@ |
msgid "Annot::Use Icons" |
msgstr "Brug ikoner" |
-#: annot.cpp:951 |
+#: annot.cpp:944 |
msgid "Annot::Validate" |
msgstr "Validér" |
-#: annot.cpp:966 |
+#: annot.cpp:959 |
msgid "Annot::Value is not calculated" |
msgstr "Værdi er ikke udregnet" |
-#: annot.cpp:909 |
+#: annot.cpp:902 |
msgid "Annot::Value is not validated" |
msgstr "Værdi er ikke valideret" |
-#: annot.cpp:973 |
+#: annot.cpp:966 |
msgid "Annot::Value is the" |
msgstr "Værdien er" |
-#: annot.cpp:916 |
+#: annot.cpp:909 |
msgid "Annot::Value must be greater than or equal to:" |
msgstr "Værdi skal være lig med eller større end:" |
@@ -663,15 +663,15 @@ |
msgid "Annot::Width:" |
msgstr "Bredde:" |
-#: annot.cpp:625 |
+#: annot.cpp:618 |
msgid "Annot::X-Pos:" |
msgstr "" |
-#: annot.cpp:633 |
+#: annot.cpp:626 |
msgid "Annot::Y-Pos:" |
msgstr "" |
-#: annot.cpp:1093 |
+#: annot.cpp:1086 |
msgid "Annot::You need at least the Icon for Normal to use Icons for Buttons" |
msgstr "Du behøver i det mindst normal-ikonet for at bruge ikoner på knapper" |
@@ -679,35 +679,35 @@ |
msgid "Annot::Zapf Dingbats" |
msgstr "" |
-#: annot.cpp:920 |
+#: annot.cpp:913 |
msgid "Annot::and less or equal to:" |
msgstr "og mindre eller lig med:" |
-#: annot.cpp:979 |
+#: annot.cpp:972 |
msgid "Annot::average" |
msgstr "Gennemsnit" |
-#: annot.cpp:981 |
+#: annot.cpp:974 |
msgid "Annot::maximum" |
msgstr "Maksimum" |
-#: annot.cpp:980 |
+#: annot.cpp:973 |
msgid "Annot::minimum" |
msgstr "" |
-#: annot.cpp:985 |
+#: annot.cpp:978 |
msgid "Annot::of the following fields:" |
msgstr "af de følgende felter:" |
-#: annot.cpp:978 |
+#: annot.cpp:971 |
msgid "Annot::product" |
msgstr "Produkt" |
-#: annot.cpp:977 |
+#: annot.cpp:970 |
msgid "Annot::sum" |
msgstr "" |
-#: annota.cpp:113 |
+#: annota.cpp:112 |
msgid "Annota:: pt" |
msgstr "" |
@@ -715,15 +715,15 @@ |
msgid "Annota::Annotation Properties" |
msgstr "Kommentar egenskaber" |
-#: annota.cpp:134 |
+#: annota.cpp:133 |
msgid "Annota::Cancel" |
msgstr "Annullér" |
-#: annota.cpp:73 |
+#: annota.cpp:76 |
msgid "Annota::Change..." |
msgstr "Vælg..." |
-#: annota.cpp:59 |
+#: annota.cpp:62 |
msgid "Annota::Destination" |
msgstr "Bestemmelsessted" |
@@ -731,23 +731,27 @@ |
msgid "Annota::External Link" |
msgstr "Lænke" |
+#: annota.cpp:49 |
+msgid "Annota::External Web-Link" |
+msgstr "Ekstern web-Lænke" |
+ |
#: annota.cpp:47 |
msgid "Annota::Link" |
msgstr "Lænke" |
-#: annota.cpp:130 |
+#: annota.cpp:129 |
msgid "Annota::OK" |
msgstr "" |
-#: annota.cpp:269 |
+#: annota.cpp:317 |
msgid "Annota::Open" |
msgstr "Åbn" |
-#: annota.cpp:269 |
+#: annota.cpp:317 |
msgid "Annota::PDF-Documents (*.pdf);;All Files (*)" |
msgstr "PDF-Dokumenter (*.pdf);; Alle filer (*)" |
-#: annota.cpp:82 |
+#: annota.cpp:85 |
msgid "Annota::Page:" |
msgstr "Side:" |
@@ -759,11 +763,11 @@ |
msgid "Annota::Type:" |
msgstr "" |
-#: annota.cpp:101 |
+#: annota.cpp:100 |
msgid "Annota::X-Pos:" |
msgstr "" |
-#: annota.cpp:109 |
+#: annota.cpp:108 |
msgid "Annota::Y-Pos:" |
msgstr "" |
@@ -871,7 +875,7 @@ |
msgid "BookMView::Move Bookmark" |
msgstr "Flyt bogmærke" |
-#: bookpalette.cpp:14 |
+#: bookpalette.cpp:12 |
msgid "BookPalette::Bookmarks" |
msgstr "Bogmærker" |
@@ -983,6 +987,9 @@ |
msgid "CMSPrefs::Mark Colors out of Gamut" |
msgstr "Marker farver uden for skalaen" |
+msgid "Use Blackpoint Compensation" |
+msgstr "Brug sortpunkt kompensation" |
+ |
#: cmsprefs.cpp:120 |
msgid "CMSPrefs::Monitor:" |
msgstr "" |
@@ -1031,15 +1038,15 @@ |
msgid "CMYKChoose::" |
msgstr "" |
-#: cmykfw.cpp:469 |
+#: cmykfw.cpp:467 |
msgid "CMYKChoose::B:" |
msgstr "" |
-#: cmykfw.cpp:449 |
+#: cmykfw.cpp:447 |
msgid "CMYKChoose::C:" |
msgstr "" |
-#: cmykfw.cpp:445 |
+#: cmykfw.cpp:443 |
msgid "CMYKChoose::CMYK" |
msgstr "" |
@@ -1059,7 +1066,7 @@ |
msgid "CMYKChoose::Edit Color" |
msgstr "Redigér farve" |
-#: cmykfw.cpp:468 |
+#: cmykfw.cpp:466 |
msgid "CMYKChoose::G:" |
msgstr "" |
@@ -1067,7 +1074,7 @@ |
msgid "CMYKChoose::K:" |
msgstr "" |
-#: cmykfw.cpp:450 |
+#: cmykfw.cpp:448 |
msgid "CMYKChoose::M:" |
msgstr "" |
@@ -1087,7 +1094,7 @@ |
msgid "CMYKChoose::Old" |
msgstr "Gammel" |
-#: cmykfw.cpp:467 |
+#: cmykfw.cpp:465 |
msgid "CMYKChoose::R:" |
msgstr "" |
@@ -1099,11 +1106,15 @@ |
msgid "CMYKChoose::Static Color Bars" |
msgstr "Statiske farvesøjler" |
-#: cmykfw.cpp:477 |
+#: cmykfw.cpp:61 |
+msgid "CMYKChoose::Web Safe RGB" |
+msgstr "Web-sikker RGB" |
+ |
+#: cmykfw.cpp:475 |
msgid "CMYKChoose::Websave RGB" |
msgstr "Web-sikker RGB" |
-#: cmykfw.cpp:451 |
+#: cmykfw.cpp:449 |
msgid "CMYKChoose::Y:" |
msgstr "" |
@@ -1111,10 +1122,6 @@ |
msgid "Cpalette:: %" |
msgstr "" |
-#: cpalette.cpp:96 |
-msgid "Cpalette::" |
-msgstr "" |
- |
#: cpalette.cpp:71 |
msgid "Cpalette::Cross Diagonal Gradient" |
msgstr "Kryds Diagonal Gradient" |
@@ -1127,7 +1134,7 @@ |
msgid "Cpalette::Horizontal Gradient" |
msgstr "Horisontal Gradient" |
-#: cpalette.cpp:183 |
+#: cpalette.cpp:180 |
msgid "Cpalette::None" |
msgstr "Ingen" |
@@ -1151,39 +1158,39 @@ |
msgid "Cpalette::Vertical Gradient" |
msgstr "" |
-#: cupsoptions.cpp:105 |
+#: cupsoptions.cpp:102 |
msgid "CupsOptions::All Pages" |
msgstr "Alle sider" |
-#: cupsoptions.cpp:168 |
+#: cupsoptions.cpp:165 |
msgid "CupsOptions::Cancel" |
msgstr "Annullér" |
-#: cupsoptions.cpp:102 |
+#: cupsoptions.cpp:99 |
msgid "CupsOptions::Even Pages only" |
msgstr "Kun lige sider" |
-#: cupsoptions.cpp:129 |
+#: cupsoptions.cpp:126 |
msgid "CupsOptions::Landscape" |
msgstr "Landskab" |
-#: cupsoptions.cpp:108 |
+#: cupsoptions.cpp:105 |
msgid "CupsOptions::Mirror" |
msgstr "Spejling" |
-#: cupsoptions.cpp:134 |
+#: cupsoptions.cpp:131 |
msgid "CupsOptions::N-Up Printing" |
msgstr "N-UP udskrivning" |
-#: cupsoptions.cpp:118 |
+#: cupsoptions.cpp:115 |
msgid "CupsOptions::No" |
msgstr "Nej" |
-#: cupsoptions.cpp:163 |
+#: cupsoptions.cpp:160 |
msgid "CupsOptions::OK" |
msgstr "" |
-#: cupsoptions.cpp:103 |
+#: cupsoptions.cpp:100 |
msgid "CupsOptions::Odd Pages only" |
msgstr "Kun ulige sider" |
@@ -1191,23 +1198,23 @@ |
msgid "CupsOptions::Option" |
msgstr "Indstilling" |
-#: cupsoptions.cpp:121 |
+#: cupsoptions.cpp:118 |
msgid "CupsOptions::Orientation" |
msgstr "Retning" |
-#: cupsoptions.cpp:94 |
+#: cupsoptions.cpp:91 |
msgid "CupsOptions::Page Set" |
msgstr "Udskriv" |
-#: cupsoptions.cpp:148 |
+#: cupsoptions.cpp:145 |
msgid "CupsOptions::Page per Sheet" |
msgstr "Side pr ark" |
-#: cupsoptions.cpp:146 |
+#: cupsoptions.cpp:143 |
msgid "CupsOptions::Pages per Sheet" |
msgstr "Sider pr ark" |
-#: cupsoptions.cpp:131 |
+#: cupsoptions.cpp:128 |
msgid "CupsOptions::Portrait" |
msgstr "Portræt" |
@@ -1219,19 +1226,19 @@ |
msgid "CupsOptions::Value" |
msgstr "Værdi" |
-#: cupsoptions.cpp:116 |
+#: cupsoptions.cpp:113 |
msgid "CupsOptions::Yes" |
msgstr "Ja" |
-#: customfdialog.cpp:171 |
+#: customfdialog.cpp:170 |
msgid "CustomFDialog::Compress File" |
msgstr "Komprimer fil" |
-#: customfdialog.cpp:191 |
+#: customfdialog.cpp:190 |
msgid "CustomFDialog::Encoding:" |
msgstr "Tegnsæt:" |
-#: customfdialog.cpp:249 |
+#: customfdialog.cpp:245 |
msgid "" |
"CustomFDialog::Moves to your Document Directory.\n" |
"This can be set in the Preferences." |
@@ -1343,7 +1350,7 @@ |
msgid "DocInfos::Title:" |
msgstr "Titel:" |
-#: druck.cpp:344 |
+#: druck.cpp:312 |
msgid "Druck::" |
msgstr "" |
@@ -1399,7 +1406,7 @@ |
msgid "Druck::Options..." |
msgstr "Indstillinger..." |
-#: druck.cpp:576 |
+#: druck.cpp:546 |
msgid "Druck::Postscript-Files (*.ps);;All Files (*)" |
msgstr "Postscript-filer (*.ps);; Alle filer (*)" |
@@ -1443,7 +1450,7 @@ |
msgid "Druck::Range:" |
msgstr "Område:" |
-#: druck.cpp:576 |
+#: druck.cpp:546 |
msgid "Druck::Save as" |
msgstr "Gem som" |
@@ -1455,31 +1462,31 @@ |
msgid "Druck::To page:" |
msgstr "Til side:" |
-#: edit1format.cpp:180 |
+#: edit1format.cpp:181 |
msgid "EditStyle:: pt" |
msgstr "" |
-#: edit1format.cpp:195 |
+#: edit1format.cpp:196 |
msgid "EditStyle::Above:" |
msgstr "Over:" |
-#: edit1format.cpp:101 |
+#: edit1format.cpp:102 |
msgid "EditStyle::Alignment" |
msgstr "Justering" |
-#: edit1format.cpp:200 |
+#: edit1format.cpp:201 |
msgid "EditStyle::Below:" |
msgstr "Under:" |
-#: edit1format.cpp:124 |
+#: edit1format.cpp:125 |
msgid "EditStyle::Block" |
msgstr "Blok" |
-#: edit1format.cpp:216 |
+#: edit1format.cpp:217 |
msgid "EditStyle::Cancel" |
msgstr "Annullér" |
-#: edit1format.cpp:120 |
+#: edit1format.cpp:121 |
msgid "EditStyle::Center" |
msgstr "Centrer" |
@@ -1495,31 +1502,31 @@ |
msgid "EditStyle::Face:" |
msgstr "Redigér font" |
-#: edit1format.cpp:80 |
+#: edit1format.cpp:81 |
msgid "EditStyle::First Line:" |
msgstr "Første linie:" |
-#: edit1format.cpp:128 |
+#: edit1format.cpp:129 |
msgid "EditStyle::Forced" |
msgstr "Tvunget" |
-#: edit1format.cpp:64 |
+#: edit1format.cpp:65 |
msgid "EditStyle::Indentation" |
msgstr "Indrykning" |
-#: edit1format.cpp:75 |
+#: edit1format.cpp:76 |
msgid "EditStyle::Left Indent:" |
msgstr "Venstre indrykning:" |
-#: edit1format.cpp:111 |
+#: edit1format.cpp:112 |
msgid "EditStyle::Left" |
msgstr "Venstre" |
-#: edit1format.cpp:190 |
+#: edit1format.cpp:191 |
msgid "EditStyle::Line Spacing" |
msgstr "Linie afstand" |
-#: edit1format.cpp:257 |
+#: edit1format.cpp:259 |
msgid "EditStyle::Name of the Style is not unique" |
msgstr "Navnet på denne typografi er ikke entydig" |
@@ -1527,23 +1534,23 @@ |
msgid "EditStyle::Name:" |
msgstr "Navn:" |
-#: edit1format.cpp:257 |
+#: edit1format.cpp:259 |
msgid "EditStyle::OK" |
msgstr "" |
-#: edit1format.cpp:116 |
+#: edit1format.cpp:117 |
msgid "EditStyle::Right" |
msgstr "Mod højre" |
-#: edit1format.cpp:59 |
+#: edit1format.cpp:60 |
msgid "EditStyle::Size:" |
msgstr "Størrelse:" |
-#: edit1format.cpp:151 |
+#: edit1format.cpp:152 |
msgid "EditStyle::Vertical Spaces" |
msgstr "Vertikal afstand" |
-#: edit1format.cpp:257 |
+#: edit1format.cpp:259 |
msgid "EditStyle::Warning" |
msgstr "Advarsel" |
@@ -1579,7 +1586,7 @@ |
msgid "Editor::Get Field Names" |
msgstr "Hent feltnavne" |
-#: editor.cpp:59 |
+#: editor.cpp:74 |
msgid "Editor::Javascripts (*.js);;All Files (*)" |
msgstr "JavaScripts (*.js);; Alle filer (*)" |
@@ -1611,27 +1618,27 @@ |
msgid "Editor::Undo" |
msgstr "Fortryd" |
-#: customfdialog.cpp:134 |
+#: customfdialog.cpp:133 |
msgid "FDialogPreview::Author:" |
msgstr "Forfatter:" |
-#: customfdialog.cpp:132 |
+#: customfdialog.cpp:131 |
msgid "FDialogPreview::No Title" |
msgstr "Ingen titel" |
-#: customfdialog.cpp:139 |
+#: customfdialog.cpp:138 |
msgid "FDialogPreview::Scribus-Document" |
msgstr "Scribus-Dokument" |
-#: customfdialog.cpp:110 |
+#: customfdialog.cpp:109 |
msgid "FDialogPreview::Size:" |
msgstr "Størrelse:" |
-#: customfdialog.cpp:129 |
+#: customfdialog.cpp:128 |
msgid "FDialogPreview::Title:" |
msgstr "Titel:" |
-#: customfdialog.cpp:137 |
+#: customfdialog.cpp:136 |
msgid "FDialogPreview::Unknown" |
msgstr "Ukendt" |
@@ -1648,8 +1655,8 @@ |
msgstr "Farver" |
#: colorm.cpp:133 |
-msgid "Farbmanager::Copy of " |
-msgstr "Kopi af " |
+msgid "Farbmanager::Copy of %1" |
+msgstr "Kopi af %1" |
#: colorm.cpp:57 |
msgid "Farbmanager::Delete" |
@@ -1683,47 +1690,43 @@ |
msgid "Farbmanager::Save" |
msgstr "Gem" |
-#: fontprefs.cpp:386 |
-msgid "FontPrefs:: " |
-msgstr "" |
- |
-#: fontprefs.cpp:160 |
+#: fontprefs.cpp:161 |
msgid "FontPrefs::Add..." |
msgstr "Tilføj..." |
-#: fontprefs.cpp:168 |
+#: fontprefs.cpp:169 |
msgid "FontPrefs::Additional Paths" |
msgstr "Stier til fonte" |
-#: fontprefs.cpp:107 |
+#: fontprefs.cpp:108 |
msgid "FontPrefs::Available Fonts" |
msgstr "Tilgængelige Fonte" |
-#: fontprefs.cpp:185 |
+#: fontprefs.cpp:186 |
msgid "FontPrefs::Cancel" |
msgstr "Annullér" |
-#: fontprefs.cpp:157 |
+#: fontprefs.cpp:158 |
msgid "FontPrefs::Change..." |
msgstr "Vælg..." |
-#: fontprefs.cpp:304 |
+#: fontprefs.cpp:300 |
msgid "FontPrefs::Choose a Directory" |
msgstr "Vælg en mappe" |
-#: fontprefs.cpp:142 |
+#: fontprefs.cpp:143 |
msgid "FontPrefs::Delete" |
msgstr "Slet" |
-#: fontprefs.cpp:89 |
+#: fontprefs.cpp:90 |
msgid "FontPrefs::Embed in:" |
msgstr "Indlejr i:" |
-#: fontprefs.cpp:120 |
+#: fontprefs.cpp:121 |
msgid "FontPrefs::Font Name" |
msgstr "Font navn" |
-#: fontprefs.cpp:148 |
+#: fontprefs.cpp:149 |
msgid "FontPrefs::Font Substitutions" |
msgstr "Erstatnings fonte" |
@@ -1731,39 +1734,39 @@ |
msgid "FontPrefs::Global Font Settings" |
msgstr "Globale fontindstillinger" |
-#: fontprefs.cpp:182 |
+#: fontprefs.cpp:183 |
msgid "FontPrefs::OK" |
msgstr "" |
-#: fontprefs.cpp:92 |
-msgid "FontPrefs::Path to Fontfile" |
+#: fontprefs.cpp:93 |
+msgid "FontPrefs::Path to Font File" |
msgstr "Sti til fontfil" |
-#: fontprefs.cpp:397 |
+#: fontprefs.cpp:381 |
msgid "FontPrefs::Postscript" |
msgstr "" |
-#: fontprefs.cpp:163 |
+#: fontprefs.cpp:164 |
msgid "FontPrefs::Remove" |
msgstr "Fjern" |
-#: fontprefs.cpp:121 |
+#: fontprefs.cpp:122 |
msgid "FontPrefs::Replacement" |
msgstr "Erstatning" |
-#: fontprefs.cpp:90 |
+#: fontprefs.cpp:91 |
msgid "FontPrefs::Subset" |
-msgstr "" |
+msgstr "Delmængde" |
-#: fontprefs.cpp:91 |
+#: fontprefs.cpp:92 |
msgid "FontPrefs::Type" |
msgstr "" |
-#: fontprefs.cpp:88 |
+#: fontprefs.cpp:89 |
msgid "FontPrefs::Use Font" |
msgstr "Brug font" |
-#: fontprefs.cpp:405 |
+#: fontprefs.cpp:389 |
msgid "FontPrefs::Yes" |
msgstr "Ja" |
@@ -1823,11 +1826,11 @@ |
msgid "GuideManager::Y-Pos:" |
msgstr "" |
-#: helpbrowser.cpp:33 |
+#: helpbrowser.cpp:34 |
msgid "HelpBrowser::" |
msgstr "" |
-#: helpbrowser.cpp:74 |
+#: helpbrowser.cpp:75 |
msgid "HelpBrowser::Sorry, no manual available!" |
msgstr "Desværre, der er ingen manual tilgængelig!" |
@@ -1856,8 +1859,8 @@ |
msgstr "Kontrollér under indtastning" |
#: hysettings.cpp:23 |
-msgid "HySettings::Enables automatic checking of your Text during Typing." |
-msgstr "Automatisk kontrol af din tekst under indtastning" |
+msgid "HySettings::Enables automatic checking of your text while typing." |
+msgstr "Automatisk kontrol af din tekst under indtastning." |
#: hysettings.cpp:17 |
msgid "HySettings::Fully Automatic" |
@@ -1869,11 +1872,11 @@ |
#: hysettings.cpp:19 |
msgid "" |
-"HySettings::If you uncheck this you will get an Dialog \n" |
-" everytime a possible Hyphenation is found." |
+"HySettings::If you uncheck this you will get a dialog\n" |
+"everytime a possible Hyphenation is found." |
msgstr "" |
-"Hvis du fjerner krydset her, så vil der komme en\n" |
-"dialogboks frem, hver gang en mulig orddeling er fundet." |
+"Hvis du fjerner krydset her, vil der komme en\n" |
+"dialogboks, hver gang en mulig orddeling er fundet." |
#: hysettings.cpp:36 |
msgid "HySettings::Language:" |
@@ -1997,7 +2000,7 @@ |
#: keymanager.cpp:12 |
msgid "KeyManager::Manage Keyboard Shortcuts" |
-msgstr "Håndtering af tastatur genveje" |
+msgstr "Indstilling af tastatur genveje" |
#: keymanager.cpp:60 |
msgid "KeyManager::No Key" |
@@ -2017,11 +2020,11 @@ |
#: keymanager.cpp:191 |
msgid "KeyManager::Shift" |
-msgstr "" |
+msgstr "Skift" |
#: keymanager.cpp:143 |
msgid "KeyManager::Shift+" |
-msgstr "" |
+msgstr "Skift+" |
#: keymanager.cpp:161 |
msgid "KeyManager::This Key-Sequence is already in use" |
@@ -2059,7 +2062,7 @@ |
msgid "LayerPalette::Lower Layer" |
msgstr "Sænk lag" |
-#: layers.cpp:168 |
+#: layers.cpp:169 |
msgid "LayerPalette::New Layer" |
msgstr "Nyt lag" |
@@ -2072,8 +2075,8 @@ |
msgstr "Annullér" |
#: lineformats.cpp:85 |
-msgid "LineFormate::Copy of " |
-msgstr "Kopi af " |
+msgid "LineFormate::Copy of %1" |
+msgstr "Kopi af %1" |
#: lineformats.cpp:43 |
msgid "LineFormate::Delete" |
@@ -2239,187 +2242,199 @@ |
msgid "MovePages::to:" |
msgstr "til:" |
-#: mpalette.cpp:707 |
+#: mpalette.cpp:705 |
msgid "Mpalette:: %" |
msgstr "" |
-#: mpalette.cpp:790 |
+#: mpalette.cpp:788 |
msgid "Mpalette:: pt" |
msgstr "" |
-#: mpalette.cpp:360 |
+#: mpalette.cpp:357 |
msgid "Mpalette:: pts" |
msgstr "" |
-#: mpalette.cpp:587 |
+#: mpalette.cpp:292 |
msgid "Mpalette::" |
msgstr "" |
-#: mpalette.cpp:757 |
+#: mpalette.cpp:755 |
msgid "Mpalette::Absolute Colorimetric" |
msgstr "" |
-#: mpalette.cpp:834 |
+#: mpalette.cpp:833 |
msgid "Mpalette::Align Text Block" |
msgstr "Lige margener" |
-#: mpalette.cpp:835 |
+#: mpalette.cpp:834 |
msgid "Mpalette::Align Text Center" |
msgstr "Centrer" |
-#: mpalette.cpp:832 |
+#: mpalette.cpp:831 |
msgid "Mpalette::Align Text Left" |
msgstr "Justér mod venstre" |
-#: mpalette.cpp:833 |
+#: mpalette.cpp:832 |
msgid "Mpalette::Align Text Right" |
msgstr "Justér mod højre" |
-#: mpalette.cpp:799 |
+#: mpalette.cpp:797 |
msgid "Mpalette::Bevel Join" |
msgstr "Afskårne" |
-#: mpalette.cpp:381 |
+#: mpalette.cpp:378 |
msgid "Mpalette::Bottom:" |
msgstr "Bund:" |
-#: mpalette.cpp:77 |
+#: mpalette.cpp:75 |
msgid "Mpalette::Colors" |
msgstr "Farver" |
-#: mpalette.cpp:628 |
+#: mpalette.cpp:626 |
msgid "Mpalette::Custom Spacing" |
msgstr "Afstande" |
-#: mpalette.cpp:357 |
+#: mpalette.cpp:354 |
msgid "Mpalette::Distance from Curve:" |
msgstr "Afstand fra kurve:" |
-#: mpalette.cpp:371 |
+#: mpalette.cpp:368 |
msgid "Mpalette::Distance of Text" |
msgstr "Tekstafstand" |
-#: mpalette.cpp:794 |
+#: mpalette.cpp:792 |
msgid "Mpalette::Edges:" |
msgstr "Hjørner:" |
-#: mpalette.cpp:309 |
+#: mpalette.cpp:314 |
msgid "Mpalette::Edit Shape..." |
msgstr "Redigér form..." |
-#: mpalette.cpp:803 |
+#: mpalette.cpp:842 |
+msgid "Mpalette::Enables or disables printing of the Object" |
+msgstr "Muliggør eller forhindrer udskrivning af objektet" |
+ |
+#: mpalette.cpp:771 |
+msgid "Mpalette::End Points" |
+msgstr "Endepunkter" |
+ |
+#: mpalette.cpp:801 |
msgid "Mpalette::Endings:" |
msgstr "Ender:" |
-#: mpalette.cpp:773 |
-msgid "Mpalette::Endpoints" |
-msgstr "Endepunkter" |
- |
-#: mpalette.cpp:807 |
+#: mpalette.cpp:805 |
msgid "Mpalette::Flat Cap" |
msgstr "Flade" |
-#: mpalette.cpp:836 |
+#: mpalette.cpp:835 |
msgid "Mpalette::Flip horizontal" |
msgstr "Flip horisontalt" |
-#: mpalette.cpp:837 |
+#: mpalette.cpp:836 |
msgid "Mpalette::Flip vertical" |
msgstr "Flip vertikalt" |
-#: mpalette.cpp:823 |
+#: mpalette.cpp:821 |
msgid "Mpalette::Font Size" |
msgstr "Font størrelse" |
-#: mpalette.cpp:683 |
+#: mpalette.cpp:681 |
msgid "Mpalette::Free Scaling" |
msgstr "Fri skalering" |
-#: mpalette.cpp:98 |
+#: mpalette.cpp:96 |
msgid "Mpalette::Geometry" |
msgstr "Geometri" |
-#: mpalette.cpp:1903 |
+#: mpalette.cpp:1932 |
msgid "Mpalette::Height:" |
msgstr "Højde:" |
-#: mpalette.cpp:698 |
+#: mpalette.cpp:696 |
msgid "Mpalette::Horiz. Scale:" |
msgstr "Horisontalt:" |
-#: mpalette.cpp:67 |
+#: mpalette.cpp:65 |
msgid "Mpalette::Image" |
msgstr "Billede" |
-#: mpalette.cpp:745 |
+#: mpalette.cpp:743 |
msgid "Mpalette::Input Profile:" |
msgstr "Indlæs profil:" |
-#: mpalette.cpp:734 |
+#: mpalette.cpp:732 |
msgid "Mpalette::Keep Aspect Ratio" |
msgstr "Behold bredde/højde forhold" |
-#: mpalette.cpp:644 |
+#: mpalette.cpp:642 |
msgid "Mpalette::Kerning:" |
msgstr "Manuel Kerning" |
-#: mpalette.cpp:772 |
+#: mpalette.cpp:664 |
+msgid "Mpalette::Lang.:" |
+msgstr "Sprog:" |
+ |
+#: mpalette.cpp:770 |
msgid "Mpalette::Left Point" |
msgstr "Venstre punkt" |
-#: mpalette.cpp:384 |
+#: mpalette.cpp:381 |
msgid "Mpalette::Left:" |
msgstr "Venstre:" |
-#: mpalette.cpp:139 |
+#: mpalette.cpp:137 |
msgid "Mpalette::Level" |
msgstr "Niveau" |
-#: mpalette.cpp:72 |
-msgid "Mpalette::Line" |
-msgstr "Linie" |
- |
-#: mpalette.cpp:824 |
+#: mpalette.cpp:822 |
msgid "Mpalette::Line Spacing" |
msgstr "Linieafstand" |
-#: mpalette.cpp:648 |
+#: mpalette.cpp:646 |
msgid "Mpalette::Line Spacing:" |
msgstr "Linieafstand:" |
-#: mpalette.cpp:782 |
+#: mpalette.cpp:780 |
msgid "Mpalette::Line Style:" |
msgstr "Liniestil:" |
-#: mpalette.cpp:787 |
+#: mpalette.cpp:785 |
msgid "Mpalette::Line Width:" |
msgstr "Liniebredde:" |
-#: mpalette.cpp:825 |
+#: mpalette.cpp:70 |
+msgid "Mpalette::Line" |
+msgstr "Linie" |
+ |
+#: mpalette.cpp:841 |
+msgid "Mpalette::Locks or unlocks the Object" |
+msgstr "Låser eller frigør objektet" |
+ |
+#: mpalette.cpp:823 |
msgid "Mpalette::Manual Kerning" |
msgstr "Manuel Kerning" |
-#: mpalette.cpp:798 |
+#: mpalette.cpp:796 |
msgid "Mpalette::Miter Join" |
msgstr "Spidse" |
-#: mpalette.cpp:839 |
+#: mpalette.cpp:838 |
msgid "Mpalette::Move one Level down" |
msgstr "Flyt bagud" |
-#: mpalette.cpp:838 |
+#: mpalette.cpp:837 |
msgid "Mpalette::Move one Level up" |
msgstr "Flyt forud" |
-#: mpalette.cpp:841 |
+#: mpalette.cpp:840 |
msgid "Mpalette::Move to Back" |
msgstr "Placér bagerst" |
-#: mpalette.cpp:840 |
+#: mpalette.cpp:839 |
msgid "Mpalette::Move to Front" |
msgstr "Placér forrest" |
-#: mpalette.cpp:2594 |
+#: mpalette.cpp:2614 |
msgid "" |
"Mpalette::Name \"%1\" isn't unique.\n" |
"Please choose another." |
@@ -2427,75 +2442,79 @@ |
"Navnet \"%1\" er ikke entydigt.\n" |
"Vælg venligst et andet." |
-#: mpalette.cpp:87 |
+#: mpalette.cpp:85 |
msgid "Mpalette::Name" |
msgstr "Navn" |
-#: mpalette.cpp:2239 |
+#: mpalette.cpp:2268 |
msgid "Mpalette::No Style" |
msgstr "Ingen typografier" |
-#: mpalette.cpp:2283 |
+#: mpalette.cpp:2305 |
msgid "Mpalette::None" |
msgstr "Ingen" |
-#: mpalette.cpp:2594 |
+#: mpalette.cpp:2614 |
msgid "Mpalette::OK" |
msgstr "" |
-#: mpalette.cpp:494 |
+#: mpalette.cpp:492 |
msgid "Mpalette::Other..." |
msgstr "Andet..." |
-#: mpalette.cpp:338 |
-msgid "Mpalette::Pathtext Properites" |
+#: mpalette.cpp:830 |
+msgid "Mpalette::Outline Text" |
+msgstr "Omrids" |
+ |
+#: mpalette.cpp:335 |
+msgid "Mpalette::Path Text Properites" |
msgstr "Sti-tekst egenskaber" |
-#: mpalette.cpp:754 |
+#: mpalette.cpp:752 |
msgid "Mpalette::Perceptual" |
msgstr "Opfattelsesmæssigt" |
-#: mpalette.cpp:689 |
+#: mpalette.cpp:687 |
msgid "Mpalette::Position:" |
msgstr "" |
-#: mpalette.cpp:26 |
+#: mpalette.cpp:24 |
msgid "Mpalette::Properties" |
msgstr "Egenskaber" |
-#: mpalette.cpp:738 |
+#: mpalette.cpp:736 |
msgid "Mpalette::Proportional" |
msgstr "Proportionelt" |
-#: mpalette.cpp:755 |
+#: mpalette.cpp:753 |
msgid "Mpalette::Relative Colorimetric" |
msgstr "" |
-#: mpalette.cpp:751 |
+#: mpalette.cpp:749 |
msgid "Mpalette::Rendering Intent:" |
msgstr "Hensigt med gengivelse:" |
-#: mpalette.cpp:826 |
+#: mpalette.cpp:824 |
msgid "Mpalette::Reverse Writing" |
msgstr "Baglæns skrivning" |
-#: mpalette.cpp:387 |
+#: mpalette.cpp:384 |
msgid "Mpalette::Right:" |
msgstr "Højre:" |
-#: mpalette.cpp:209 |
+#: mpalette.cpp:214 |
msgid "Mpalette::Rotation" |
msgstr "" |
-#: mpalette.cpp:809 |
+#: mpalette.cpp:807 |
msgid "Mpalette::Round Cap" |
msgstr "Runde" |
-#: mpalette.cpp:800 |
+#: mpalette.cpp:798 |
msgid "Mpalette::Round Join" |
msgstr "Runde" |
-#: mpalette.cpp:315 |
+#: mpalette.cpp:320 |
msgid "" |
"Mpalette::Round\n" |
"Corners:" |
@@ -2503,119 +2522,118 @@ |
"Runde\n" |
"hjørner:" |
-#: mpalette.cpp:756 |
+#: mpalette.cpp:754 |
msgid "Mpalette::Saturation" |
msgstr "Mætning" |
-#: mpalette.cpp:719 |
+#: mpalette.cpp:717 |
msgid "Mpalette::Scale to Frame Size" |
msgstr "Skalér til rammestørrelse" |
-#: mpalette.cpp:57 |
+#: mpalette.cpp:55 |
msgid "Mpalette::Shape" |
msgstr "Form" |
-#: mpalette.cpp:345 |
+msgid "Mpalette::Shape:" |
+msgstr "Form:" |
+ |
+#: mpalette.cpp:342 |
msgid "Mpalette::Show Curve" |
msgstr "Vis kurve" |
-#: mpalette.cpp:430 |
+#: mpalette.cpp:428 |
msgid "Mpalette::Size:" |
msgstr "Størrelse:" |
-#: mpalette.cpp:828 |
+#: mpalette.cpp:826 |
msgid "Mpalette::Small Caps" |
msgstr "Små kapitaler" |
-#: mpalette.cpp:666 |
-msgid "Mpalette::Sprache:" |
-msgstr "Sprog:" |
- |
-#: mpalette.cpp:808 |
+#: mpalette.cpp:806 |
msgid "Mpalette::Square Cap" |
msgstr "Firkantede" |
-#: mpalette.cpp:348 |
-msgid "Mpalette::Startoffset:" |
+#: mpalette.cpp:345 |
+msgid "Mpalette::Start Offset:" |
msgstr "Startforskydning:" |
-#: mpalette.cpp:831 |
+#: mpalette.cpp:829 |
msgid "Mpalette::Strikeout" |
msgstr "Gennemstreget" |
-#: mpalette.cpp:654 |
+#: mpalette.cpp:652 |
msgid "Mpalette::Styles" |
msgstr "Typografier" |
-#: mpalette.cpp:829 |
+#: mpalette.cpp:827 |
msgid "Mpalette::Subscript" |
msgstr "Sænket skrift" |
-#: mpalette.cpp:830 |
+#: mpalette.cpp:828 |
msgid "Mpalette::Superscript" |
msgstr "Hævet skrift" |
-#: mpalette.cpp:324 |
+#: mpalette.cpp:206 |
msgid "Mpalette::Text flows around Box" |
msgstr "Tekst flyder rundt om boks" |
-#: mpalette.cpp:62 |
+#: mpalette.cpp:60 |
msgid "Mpalette::Text" |
msgstr "Tekst" |
-#: mpalette.cpp:378 |
+#: mpalette.cpp:375 |
msgid "Mpalette::Top:" |
msgstr "" |
-#: mpalette.cpp:827 |
+#: mpalette.cpp:825 |
msgid "Mpalette::Underline" |
msgstr "Understreg" |
-#: mpalette.cpp:328 |
+#: mpalette.cpp:209 |
msgid "Mpalette::Use Bounding Box" |
msgstr "Brug indbindingsboks" |
-#: mpalette.cpp:704 |
+#: mpalette.cpp:702 |
msgid "Mpalette::Vert. Scale:" |
msgstr "vertikalt:" |
-#: mpalette.cpp:2594 |
+#: mpalette.cpp:2614 |
msgid "Mpalette::Warning" |
msgstr "Advarsel" |
-#: mpalette.cpp:1901 |
+#: mpalette.cpp:1930 |
msgid "Mpalette::Width:" |
msgstr "Bredde:" |
-#: mpalette.cpp:52 |
+#: mpalette.cpp:50 |
msgid "Mpalette::X, Y, Z" |
msgstr "" |
-#: mpalette.cpp:1900 |
+#: mpalette.cpp:1929 |
msgid "Mpalette::X-Pos:" |
msgstr "" |
-#: mpalette.cpp:1910 |
+#: mpalette.cpp:1939 |
msgid "Mpalette::X1:" |
msgstr "" |
-#: mpalette.cpp:1911 |
+#: mpalette.cpp:1940 |
msgid "Mpalette::X2:" |
msgstr "" |
-#: mpalette.cpp:1902 |
+#: mpalette.cpp:1931 |
msgid "Mpalette::Y-Pos:" |
msgstr "" |
-#: mpalette.cpp:1912 |
+#: mpalette.cpp:1941 |
msgid "Mpalette::Y1:" |
msgstr "" |
-#: mpalette.cpp:1913 |
+#: mpalette.cpp:1942 |
msgid "Mpalette::Y2:" |
msgstr "" |
-#: mpalette.cpp:267 |
+#: mpalette.cpp:272 |
msgid "Mpalette::by:" |
msgstr "med:" |
@@ -2703,15 +2721,15 @@ |
msgid "MultiLine::Warning" |
msgstr "Advarsel" |
-#: muster.cpp:121 |
-msgid "MusterSeiten::Copy of " |
-msgstr "Kopi af " |
+#: muster.cpp:117 |
+msgid "MusterSeiten::Copy of %1" |
+msgstr "Kopi af %1" |
#: muster.cpp:36 |
msgid "MusterSeiten::Delete" |
msgstr "Slet" |
-#: muster.cpp:89 |
+#: muster.cpp:85 |
msgid "MusterSeiten::Do you really want do delete this Template?" |
msgstr "Ønsker du virkelig at slette denne skabelon?" |
@@ -2727,7 +2745,7 @@ |
msgid "MusterSeiten::Exit" |
msgstr "Afslut" |
-#: muster.cpp:171 |
+#: muster.cpp:167 |
msgid "MusterSeiten::New Template" |
msgstr "Ny skabelon" |
@@ -2735,19 +2753,19 @@ |
msgid "MusterSeiten::New" |
msgstr "Ny" |
-#: muster.cpp:90 |
+#: muster.cpp:86 |
msgid "MusterSeiten::No" |
msgstr "Ingen" |
-#: muster.cpp:241 |
+#: muster.cpp:237 |
msgid "MusterSeiten::Normal" |
msgstr "" |
-#: muster.cpp:88 |
+#: muster.cpp:84 |
msgid "MusterSeiten::Warning" |
msgstr "Advarsel" |
-#: muster.cpp:91 |
+#: muster.cpp:87 |
msgid "MusterSeiten::Yes" |
msgstr "Ja" |
@@ -2759,7 +2777,7 @@ |
msgid "NewDoc::Bottom:" |
msgstr "Bund:" |
-#: newfile.cpp:272 |
+#: newfile.cpp:273 |
msgid "NewDoc::Cancel" |
msgstr "Annullér" |
@@ -2799,7 +2817,7 @@ |
msgid "NewDoc::Inches (in)" |
msgstr "Tommer (in)" |
-#: newfile.cpp:609 |
+#: newfile.cpp:627 |
msgid "NewDoc::Inside:" |
msgstr "Inderside:" |
@@ -2811,7 +2829,7 @@ |
msgid "NewDoc::Left Page first" |
msgstr "Venstre side først" |
-#: newfile.cpp:615 |
+#: newfile.cpp:633 |
msgid "NewDoc::Left:" |
msgstr "Venstre:" |
@@ -2827,7 +2845,7 @@ |
msgid "NewDoc::New Document" |
msgstr "Nyt dokument" |
-#: newfile.cpp:266 |
+#: newfile.cpp:267 |
msgid "NewDoc::OK" |
msgstr "" |
@@ -2839,7 +2857,7 @@ |
msgid "NewDoc::Orientation:" |
msgstr "Retning:" |
-#: newfile.cpp:610 |
+#: newfile.cpp:628 |
msgid "NewDoc::Outside:" |
msgstr "Yderside:" |
@@ -2859,7 +2877,7 @@ |
msgid "NewDoc::Portrait" |
msgstr "Portræt" |
-#: newfile.cpp:616 |
+#: newfile.cpp:634 |
msgid "NewDoc::Right:" |
msgstr "Højre:" |
@@ -2891,587 +2909,614 @@ |
msgid "NewTm::Right Page" |
msgstr "Højre side" |
-#: frameedit.cpp:233 |
+#: frameedit.cpp:241 |
msgid "NodePalette:: in" |
msgstr "" |
-#: frameedit.cpp:229 |
+#: frameedit.cpp:237 |
msgid "NodePalette:: mm" |
msgstr "" |
-#: frameedit.cpp:237 |
+#: frameedit.cpp:245 |
msgid "NodePalette:: p" |
msgstr "" |
-#: frameedit.cpp:225 |
+#: frameedit.cpp:233 |
msgid "NodePalette:: pt" |
msgstr "" |
-#: frameedit.cpp:150 |
+#: frameedit.cpp:149 |
msgid "NodePalette::" |
msgstr "" |
-#: frameedit.cpp:181 |
+#: frameedit.cpp:157 |
+msgid "NodePalette::Absolute Coordinates" |
+msgstr "Absolutte coordinater" |
+ |
+#: frameedit.cpp:185 |
msgid "NodePalette::Add Nodes" |
msgstr "Tilføj noder" |
-#: frameedit.cpp:188 |
+#: frameedit.cpp:192 |
msgid "NodePalette::Closes this Bezier Curve" |
msgstr "Luk denne bezier kurve" |
-#: frameedit.cpp:182 |
+#: frameedit.cpp:186 |
msgid "NodePalette::Delete Nodes" |
msgstr "Slet noder" |
-#: frameedit.cpp:177 |
+#: frameedit.cpp:181 |
msgid "NodePalette::End Editing" |
msgstr "Afslut redigering" |
-#: frameedit.cpp:189 |
+#: frameedit.cpp:193 |
msgid "NodePalette::Mirrors the Path Horizontally" |
msgstr "Spejl horisontalt" |
-#: frameedit.cpp:190 |
+#: frameedit.cpp:194 |
msgid "NodePalette::Mirrors the Path Vertically" |
msgstr "Spejl vertikalt" |
-#: frameedit.cpp:183 |
+#: frameedit.cpp:187 |
msgid "NodePalette::Move Control Points independently" |
msgstr "Flyt kontrolpunkter en af gangen" |
-#: frameedit.cpp:184 |
+#: frameedit.cpp:188 |
msgid "NodePalette::Move Control Points symmetrical" |
msgstr "Flyt kontrolpunkter symmetrisk" |
-#: frameedit.cpp:180 |
+#: frameedit.cpp:184 |
msgid "NodePalette::Move Control Points" |
msgstr "Flyt kontrolpunkter" |
-#: frameedit.cpp:179 |
+#: frameedit.cpp:183 |
msgid "NodePalette::Move Nodes" |
msgstr "Flyt noder" |
-#: frameedit.cpp:12 |
+#: frameedit.cpp:11 |
msgid "NodePalette::Nodes" |
msgstr "Noder" |
-#: frameedit.cpp:187 |
+#: frameedit.cpp:191 |
msgid "NodePalette::Opens a Polygon or cuts a Bezier Curve" |
msgstr "Åbn en polygon eller overskær en bezierkurve" |
-#: frameedit.cpp:185 |
+#: frameedit.cpp:189 |
msgid "NodePalette::Reset Control Points" |
msgstr "Nulstil kontrolpunkter" |
-#: frameedit.cpp:186 |
+#: frameedit.cpp:190 |
msgid "NodePalette::Reset this Control Point" |
msgstr "Nulstil dette kontrolpunkt" |
-#: frameedit.cpp:192 |
+#: frameedit.cpp:196 |
msgid "NodePalette::Shears the Path horizontal to the left" |
msgstr "Forskyd mod venstre" |
-#: frameedit.cpp:191 |
+#: frameedit.cpp:195 |
msgid "NodePalette::Shears the Path horizontal to the right" |
msgstr "Forskyd mod højre" |
-#: frameedit.cpp:194 |
+#: frameedit.cpp:198 |
msgid "NodePalette::Shears the Path vertical down" |
msgstr "Forskyd mod bund" |
-#: frameedit.cpp:193 |
+#: frameedit.cpp:197 |
msgid "NodePalette::Shears the Path vertical up" |
msgstr "Forskyd mod top" |
-#: frameedit.cpp:159 |
+#: frameedit.cpp:199 |
+msgid "" |
+"NodePalette::When checked use Coordinates relative to the Page,\n" |
+"otherwise Coordinates are relative to the Object." |
+msgstr "" |
+"Sæt kryds for at få coordinater i forhold til siden,\n" |
+"ellers er coordinaterne vist i forhold til objektet" |
+ |
+#: frameedit.cpp:163 |
msgid "NodePalette::X-Pos:" |
msgstr "" |
-#: frameedit.cpp:167 |
+#: frameedit.cpp:171 |
msgid "NodePalette::Y-Pos:" |
msgstr "" |
-#: pdfopts.cpp:172 |
+#: pdfopts.cpp:173 |
msgid "PDF_Opts:: dpi" |
msgstr "" |
-#: pdfopts.cpp:653 |
+#: pdfopts.cpp:654 |
msgid "PDF_Opts:: in" |
msgstr "" |
-#: pdfopts.cpp:650 |
+#: pdfopts.cpp:651 |
msgid "PDF_Opts:: mm" |
msgstr "" |
-#: pdfopts.cpp:656 |
+#: pdfopts.cpp:657 |
msgid "PDF_Opts:: p" |
msgstr "" |
-#: pdfopts.cpp:647 |
+#: pdfopts.cpp:648 |
msgid "PDF_Opts:: pt" |
msgstr "" |
-#: pdfopts.cpp:343 |
+#: pdfopts.cpp:344 |
msgid "PDF_Opts:: sec" |
msgstr "" |
-#: pdfopts.cpp:233 |
+#: pdfopts.cpp:234 |
msgid "PDF_Opts::<<" |
msgstr "" |
-#: pdfopts.cpp:229 |
+#: pdfopts.cpp:230 |
msgid "PDF_Opts::>>" |
msgstr "" |
-#: pdfopts.cpp:523 |
+#: pdfopts.cpp:524 |
msgid "PDF_Opts::Absolute Colorimetric" |
msgstr "" |
-#: pdfopts.cpp:433 |
+#: pdfopts.cpp:434 |
msgid "PDF_Opts::Adding Annotations and Fields is allowed" |
msgstr "Tilføjelse af kommentarer og felter er tilladt" |
-#: pdfopts.cpp:63 |
+#: pdfopts.cpp:64 |
msgid "PDF_Opts::All Pages" |
msgstr "Alle sider" |
-#: pdfopts.cpp:425 |
+#: pdfopts.cpp:426 |
msgid "PDF_Opts::Allow Changing the Document" |
msgstr "Tillad ændring af dokument" |
-#: pdfopts.cpp:421 |
+#: pdfopts.cpp:422 |
msgid "PDF_Opts::Allow Printing the Document" |
msgstr "Tillad udskrivning af dokument" |
-#: pdfopts.cpp:377 |
+#: pdfopts.cpp:378 |
msgid "PDF_Opts::Apply Effect on all Pages" |
msgstr "Anvend effekt på alle sider" |
-#: pdfopts.cpp:207 |
+#: pdfopts.cpp:208 |
msgid "PDF_Opts::Available Fonts:" |
msgstr "Tilgængelige fonte:" |
-#: pdfopts.cpp:125 |
+#: pdfopts.cpp:126 |
msgid "PDF_Opts::Binding:" |
msgstr "Indbinding:" |
-#: pdfopts.cpp:350 |
+#: pdfopts.cpp:351 |
msgid "PDF_Opts::Blinds" |
-msgstr "" |
+msgstr "Gardiner" |
-#: pdfopts.cpp:371 |
+#: pdfopts.cpp:372 |
msgid "PDF_Opts::Bottom to Top" |
msgstr "Bund til top" |
-#: pdfopts.cpp:351 |
+#: pdfopts.cpp:352 |
msgid "PDF_Opts::Box" |
msgstr "Boks" |
-#: pdfopts.cpp:721 |
+#: pdfopts.cpp:722 |
msgid "PDF_Opts::Cancel" |
msgstr "Annullér" |
-#: pdfopts.cpp:44 |
+#: pdfopts.cpp:45 |
msgid "PDF_Opts::Change..." |
msgstr "Vælg..." |
-#: pdfopts.cpp:576 |
+#: pdfopts.cpp:577 |
msgid "PDF_Opts::Color" |
msgstr "Farve" |
-#: pdfopts.cpp:99 |
+#: pdfopts.cpp:100 |
msgid "PDF_Opts::Compatibility:" |
msgstr "Filformat:" |
-#: pdfopts.cpp:182 |
+#: pdfopts.cpp:183 |
msgid "PDF_Opts::Compress Text and Vector Graphics" |
msgstr "Komprimér tekst og vektorgrafik" |
-#: pdfopts.cpp:159 |
+#: pdfopts.cpp:160 |
msgid "PDF_Opts::Compression" |
msgstr "Komprimering" |
-#: pdfopts.cpp:429 |
+#: pdfopts.cpp:430 |
msgid "PDF_Opts::Copying Text and Graphics is allowed" |
msgstr "Kopiering af tekst og grafik er tilladt" |
-#: pdfopts.cpp:16 |
+#: pdfopts.cpp:17 |
msgid "PDF_Opts::Create PDF-File" |
msgstr "Lav PDF-fil" |
-#: pdfopts.cpp:334 |
+#: pdfopts.cpp:335 |
msgid "PDF_Opts::Direction:" |
msgstr "Retning:" |
-#: pdfopts.cpp:319 |
+#: pdfopts.cpp:320 |
msgid "PDF_Opts::Display Duration:" |
msgstr "Varighed af visning:" |
-#: pdfopts.cpp:352 |
+#: pdfopts.cpp:353 |
msgid "PDF_Opts::Dissolve" |
msgstr "Opløs" |
-#: pdfopts.cpp:507 |
-msgid "PDF_Opts::Don't use embedded Profiles" |
-msgstr "Brug ikke indlejrede profiler" |
+#: pdfopts.cpp:508 |
+msgid "PDF_Opts::Don't use embedded ICC profiles" |
+msgstr "Brug ikke indlejrede ICC-profiler" |
-#: pdfopts.cpp:168 |
+#: pdfopts.cpp:169 |
msgid "PDF_Opts::Downsample Images to:" |
msgstr "Billed-opløsning ændres til:" |
-#: pdfopts.cpp:322 |
+#: pdfopts.cpp:323 |
msgid "PDF_Opts::Effect Duration:" |
msgstr "Varighed af effekt:" |
-#: pdfopts.cpp:325 |
+#: pdfopts.cpp:326 |
msgid "PDF_Opts::Effect Type:" |
msgstr "Effekttype:" |
-#: pdfopts.cpp:310 |
+#: pdfopts.cpp:311 |
msgid "PDF_Opts::Effects" |
msgstr "Effekter" |
-#: pdfopts.cpp:192 |
+#: pdfopts.cpp:193 |
msgid "PDF_Opts::Embed all Fonts" |
msgstr "Indlejr alle fonte" |
-#: pdfopts.cpp:195 |
+#: pdfopts.cpp:196 |
msgid "PDF_Opts::Embedding" |
msgstr "Indlejrer" |
-#: pdfopts.cpp:264 |
+#: pdfopts.cpp:265 |
msgid "PDF_Opts::Enable Presentation Effects" |
msgstr "anvend præsentationseffekter" |
-#: pdfopts.cpp:56 |
+#: pdfopts.cpp:57 |
msgid "PDF_Opts::Export Range" |
msgstr "Eksport område" |
-#: pdfopts.cpp:380 |
+#: pdfopts.cpp:381 |
msgid "PDF_Opts::Extras" |
msgstr "Ekstra" |
-#: pdfopts.cpp:90 |
+#: pdfopts.cpp:91 |
msgid "PDF_Opts::File Options" |
msgstr "fil indstillinger" |
-#: pdfopts.cpp:241 |
+#: pdfopts.cpp:242 |
msgid "PDF_Opts::Fonts to embed:" |
msgstr "Fonte til indlejring:" |
-#: pdfopts.cpp:257 |
+#: pdfopts.cpp:258 |
msgid "PDF_Opts::Fonts" |
msgstr "Fonte" |
-#: pdfopts.cpp:68 |
+#: pdfopts.cpp:69 |
msgid "PDF_Opts::From:" |
msgstr "Fra:" |
-#: pdfopts.cpp:447 |
+#: pdfopts.cpp:448 |
msgid "PDF_Opts::General" |
msgstr "Generelt" |
-#: pdfopts.cpp:135 |
+#: pdfopts.cpp:136 |
msgid "PDF_Opts::Generate Thumbnails" |
msgstr "Lav små sider" |
-#: pdfopts.cpp:353 |
+#: pdfopts.cpp:354 |
msgid "PDF_Opts::Glitter" |
-msgstr "" |
+msgstr "Glitren" |
-#: pdfopts.cpp:359 |
+#: pdfopts.cpp:360 |
msgid "PDF_Opts::Horizontal" |
msgstr "Horisontalt" |
-#: pdfopts.cpp:496 |
+#: pdfopts.cpp:497 |
msgid "PDF_Opts::Images:" |
msgstr "Billeder:" |
-#: pdfopts.cpp:143 |
+#: pdfopts.cpp:144 |
msgid "PDF_Opts::Include Bookmarks" |
msgstr "Medtag bogmærker" |
-#: pdfopts.cpp:608 |
+#: pdfopts.cpp:609 |
msgid "PDF_Opts::Info String:" |
msgstr "Info streng:" |
-#: pdfopts.cpp:364 |
+#: pdfopts.cpp:365 |
msgid "PDF_Opts::Inside" |
msgstr "Inderside" |
-#: pdfopts.cpp:129 |
+#: pdfopts.cpp:130 |
msgid "PDF_Opts::Left Margin" |
msgstr "Venstre margin" |
-#: pdfopts.cpp:369 |
+#: pdfopts.cpp:370 |
msgid "PDF_Opts::Left to Right" |
msgstr "Venstre til højre" |
-#: pdfopts.cpp:328 |
+#: pdfopts.cpp:329 |
msgid "PDF_Opts::Moving Lines:" |
msgstr "Bevægelige linier:" |
-#: pdfopts.cpp:349 |
+#: pdfopts.cpp:350 |
msgid "PDF_Opts::No Effect" |
msgstr "Ingen effekt" |
-#: pdfopts.cpp:714 |
+#: pdfopts.cpp:715 |
msgid "PDF_Opts::OK" |
msgstr "" |
-#: pdfopts.cpp:611 |
+#: pdfopts.cpp:612 |
msgid "PDF_Opts::Output Profile:" |
msgstr "Udskriv profil:" |
-#: pdfopts.cpp:454 |
+#: pdfopts.cpp:455 |
msgid "PDF_Opts::Output intended for:" |
msgstr "Udskrift beregnet for:" |
-#: pdfopts.cpp:27 |
+#: pdfopts.cpp:28 |
msgid "PDF_Opts::Output to File:" |
msgstr "Udskriv til fil:" |
-#: pdfopts.cpp:365 |
+#: pdfopts.cpp:366 |
msgid "PDF_Opts::Outside" |
msgstr "Yderside" |
-#: pdfopts.cpp:400 |
+#: pdfopts.cpp:401 |
msgid "PDF_Opts::Owner:" |
msgstr "Ejer:" |
-#: pdfopts.cpp:1158 |
+#: pdfopts.cpp:1115 |
msgid "PDF_Opts::PDF-Files (*.pdf);;All Files (*)" |
msgstr "PDF-Filer (*.pdf);; Alle filer (*)" |
-#: pdfopts.cpp:581 |
+#: pdfopts.cpp:582 |
msgid "PDF_Opts::PDF/X-3 Output Intent" |
msgstr "PDF/X-3 udskrift hensigt" |
-#: pdfopts.cpp:642 |
+#: pdfopts.cpp:643 |
msgid "PDF_Opts::PDF/X-3" |
msgstr "" |
-#: pdfopts.cpp:1057 |
+#: pdfopts.cpp:1014 |
msgid "PDF_Opts::Page" |
msgstr "Side" |
-#: pdfopts.cpp:390 |
+#: pdfopts.cpp:391 |
msgid "PDF_Opts::Passwords" |
msgstr "Adgangskode" |
-#: pdfopts.cpp:520 |
+#: pdfopts.cpp:521 |
msgid "PDF_Opts::Perceptual" |
msgstr "Opfattelsesmæssigt" |
-#: pdfopts.cpp:458 |
+#: pdfopts.cpp:459 |
msgid "PDF_Opts::Printer" |
msgstr "Printer" |
-#: pdfopts.cpp:511 |
+#: pdfopts.cpp:512 |
msgid "PDF_Opts::Profile:" |
msgstr "Profil:" |
-#: pdfopts.cpp:521 |
+#: pdfopts.cpp:522 |
msgid "PDF_Opts::Relative Colorimetric" |
msgstr "" |
-#: pdfopts.cpp:514 |
+#: pdfopts.cpp:515 |
msgid "PDF_Opts::Rendering-Intent:" |
msgstr "Hensigt med gengivelse:" |
-#: pdfopts.cpp:147 |
+#: pdfopts.cpp:148 |
msgid "PDF_Opts::Resolution:" |
msgstr "Opløsning:" |
-#: pdfopts.cpp:130 |
+#: pdfopts.cpp:131 |
msgid "PDF_Opts::Right Margin" |
msgstr "Højre margin" |
-#: pdfopts.cpp:372 |
+#: pdfopts.cpp:373 |
msgid "PDF_Opts::Right to Left" |
msgstr "Højre til venstre" |
-#: pdfopts.cpp:522 |
+#: pdfopts.cpp:523 |
msgid "PDF_Opts::Saturation" |
msgstr "Mætning" |
-#: pdfopts.cpp:1158 |
+#: pdfopts.cpp:1115 |
msgid "PDF_Opts::Save as" |
msgstr "Gem som" |
-#: pdfopts.cpp:139 |
+#: pdfopts.cpp:140 |
msgid "PDF_Opts::Save linked Text Frames as PDF-Articles" |
msgstr "Gem kædede tekstrammer som PDF-Artikler" |
-#: pdfopts.cpp:457 |
+#: pdfopts.cpp:458 |
msgid "PDF_Opts::Screen" |
msgstr "Skærm" |
-#: pdfopts.cpp:442 |
+#: pdfopts.cpp:443 |
msgid "PDF_Opts::Security" |
msgstr "Sikkerhed" |
-#: pdfopts.cpp:414 |
+#: pdfopts.cpp:415 |
msgid "PDF_Opts::Settings" |
msgstr "Indstillinger" |
-#: pdfopts.cpp:305 |
+#: pdfopts.cpp:306 |
msgid "PDF_Opts::Show Page Previews" |
msgstr "Vis Sidevisninger" |
-#: pdfopts.cpp:468 |
+#: pdfopts.cpp:469 |
msgid "PDF_Opts::Solid Colors:" |
msgstr "Massive farver:" |
-#: pdfopts.cpp:354 |
+#: pdfopts.cpp:355 |
msgid "PDF_Opts::Split" |
msgstr "Adskil" |
-#: pdfopts.cpp:370 |
+#: pdfopts.cpp:371 |
msgid "PDF_Opts::Top to Bottom" |
msgstr "top til bund" |
-#: pdfopts.cpp:373 |
+#: pdfopts.cpp:374 |
msgid "PDF_Opts::Top-Left to Bottom-Right" |
msgstr "top-venstre til bund-højre" |
-#: pdfopts.cpp:615 |
+#: pdfopts.cpp:616 |
msgid "PDF_Opts::Trim Box" |
msgstr "Beskær boks" |
-#: pdfopts.cpp:385 |
+#: pdfopts.cpp:386 |
msgid "PDF_Opts::Use Encryption" |
msgstr "Brug cryptering" |
-#: pdfopts.cpp:503 |
+#: pdfopts.cpp:504 |
msgid "PDF_Opts::Use ICC-Profile" |
msgstr "Brug ICC-Profil" |
-#: pdfopts.cpp:397 |
+#: pdfopts.cpp:398 |
msgid "PDF_Opts::User:" |
msgstr "Bruger:" |
-#: pdfopts.cpp:360 |
+#: pdfopts.cpp:361 |
msgid "PDF_Opts::Vertical" |
msgstr "Vertikalt" |
-#: pdfopts.cpp:355 |
+#: pdfopts.cpp:356 |
msgid "PDF_Opts::Wipe" |
msgstr "Udvisk" |
-#: pdfopts.cpp:331 |
+#: pdfopts.cpp:332 |
msgid "PDF_Opts::from the:" |
msgstr "Fra:" |
-#: pdfopts.cpp:75 |
+#: pdfopts.cpp:76 |
msgid "PDF_Opts::to:" |
msgstr "til:" |
-#: page.cpp:1877 |
+#: page.cpp:1917 |
msgid "Page::Annotation Properties" |
msgstr "Kommentar egenskaber" |
-#: page.cpp:1921 |
+#: page.cpp:1967 |
msgid "Page::Bezier Curve" |
msgstr "Bezier kurve" |
-#: page.cpp:1887 |
+#: page.cpp:1933 |
msgid "Page::Bring to Front" |
msgstr "Placér forrest" |
-#: page.cpp:289 |
+#: page.cpp:304 |
msgid "Page::Cancel" |
msgstr "Annullér" |
-#: page.cpp:1923 |
+#: page.cpp:1969 |
msgid "Page::Convert to" |
msgstr "Konvertér til" |
-#: page.cpp:287 |
+#: page.cpp:302 |
msgid "Page::Copy Here" |
msgstr "Kopi her" |
-#: page.cpp:1928 |
+#: page.cpp:1974 |
msgid "Page::Copy" |
msgstr "Kopiér" |
-#: page.cpp:1927 |
+#: page.cpp:1973 |
msgid "Page::Cut" |
msgstr "Klip" |
-#: page.cpp:1930 |
+#: page.cpp:1976 |
msgid "Page::Delete" |
msgstr "Slet" |
-#: page.cpp:1879 |
+#: page.cpp:1924 |
+msgid "Page::Edit Text..." |
+msgstr "Redigér tekst..." |
+ |
+#: page.cpp:1919 |
msgid "Page::Field Properties" |
msgstr "Felt egenskaber" |
-#: page.cpp:1861 |
+#: page.cpp:1900 |
msgid "Page::Get Picture..." |
msgstr "Hent billede..." |
-#: page.cpp:1867 |
+#: page.cpp:1906 |
msgid "Page::Get Text..." |
msgstr "Hent tekst..." |
-#: page.cpp:1862 |
+#: page.cpp:1928 |
+msgid "Page::Group" |
+msgstr "Lav til gruppe" |
+ |
+#: page.cpp:1901 |
msgid "Page::Image Visible" |
msgstr "Billede er synlig" |
-#: page.cpp:1872 |
+#: page.cpp:1912 |
msgid "Page::Is PDF-Annotation" |
msgstr "Er PDF-Kommentar" |
-#: page.cpp:1870 |
+#: page.cpp:1910 |
msgid "Page::Is PDF-Bookmark" |
msgstr "Er PDF-Bogmærke" |
-#: page.cpp:1885 |
+#: page.cpp:1931 |
msgid "Page::Lock" |
msgstr "Lås" |
-#: page.cpp:1888 |
+#: page.cpp:1934 |
msgid "Page::Lower" |
msgstr "Flyt bagud" |
-#: page.cpp:288 |
+#: page.cpp:303 |
msgid "Page::Move Here" |
msgstr "Flyt her" |
-#: page.cpp:5221 |
+#: page.cpp:5332 |
msgid "Page::None" |
-msgstr "Ingen |
+msgstr "Ingen" |
-#: page.cpp:1920 |
+#: page.cpp:1966 |
msgid "Page::Picture Frame" |
msgstr "Billedramme" |
-#: page.cpp:1915 |
+#: page.cpp:1961 |
msgid "Page::Polygon" |
msgstr "" |
-#: page.cpp:1889 |
+msgid "Page::Outlines" |
+msgstr "Figurer" |
+ |
+#: page.cpp:1935 |
msgid "Page::Raise" |
msgstr "Flyt forud" |
-#: page.cpp:1886 |
+#: page.cpp:1932 |
msgid "Page::Send to Back" |
msgstr "Placér bagerst" |
-#: page.cpp:1902 |
+#: page.cpp:1948 |
msgid "Page::Send to Layer" |
msgstr "Placér i lag" |
-#: page.cpp:1893 |
+#: page.cpp:1939 |
msgid "Page::Send to Scrapbook" |
msgstr "Placér i scrapbog" |
-#: page.cpp:1919 |
+#: page.cpp:1965 |
msgid "Page::Text Frame" |
msgstr "Tekstramme" |
-#: page.cpp:1892 |
+#: page.cpp:1930 |
+msgid "Page::Un-group" |
+msgstr "Bryd gruppe" |
+ |
+#: page.cpp:1938 |
msgid "Page::Unlock" |
msgstr "Lås op" |
@@ -3495,47 +3540,47 @@ |
msgid "PicSearch::Select" |
msgstr "Vælg" |
-#: picstatus.cpp:119 |
+#: picstatus.cpp:120 |
msgid "PicStatus::Goto" |
msgstr "Gå til" |
-#: picstatus.cpp:254 |
+#: picstatus.cpp:258 |
msgid "PicStatus::Missing" |
msgstr "Mangler" |
-#: picstatus.cpp:36 |
+#: picstatus.cpp:37 |
msgid "PicStatus::Name" |
msgstr "Navn" |
-#: picstatus.cpp:252 |
+#: picstatus.cpp:256 |
msgid "PicStatus::OK" |
msgstr "" |
-#: picstatus.cpp:38 |
+#: picstatus.cpp:39 |
msgid "PicStatus::Page" |
msgstr "Side" |
-#: picstatus.cpp:37 |
+#: picstatus.cpp:38 |
msgid "PicStatus::Path" |
msgstr "Sti" |
-#: picstatus.cpp:21 |
+#: picstatus.cpp:22 |
msgid "PicStatus::Pictures" |
msgstr "Billeder" |
-#: picstatus.cpp:40 |
+#: picstatus.cpp:41 |
msgid "PicStatus::Print" |
msgstr "Udskriv" |
-#: picstatus.cpp:135 |
+#: picstatus.cpp:136 |
msgid "PicStatus::Search" |
msgstr "Søg" |
-#: picstatus.cpp:41 |
+#: picstatus.cpp:42 |
msgid "PicStatus::Status" |
msgstr "Status" |
-#: picstatus.cpp:123 |
+#: picstatus.cpp:124 |
msgid "PicStatus::Yes" |
msgstr "Ja" |
@@ -3571,6 +3616,18 @@ |
msgid "PolygonProps::Rotation:" |
msgstr "" |
+#: util.cpp:1300 |
+msgid "" |
+"QObject::Do you really want to overwrite the File:\n" |
+"%1 ?" |
+msgstr "" |
+"Ønsker du virkelig at overskrive filen:\n" |
+"%1 ?" |
+ |
+#: util.cpp:1299 |
+msgid "QObject::Warning" |
+msgstr "Advarsel" |
+ |
#: query.cpp:39 |
msgid "Query::Cancel" |
msgstr "Annullér" |
@@ -3627,83 +3684,83 @@ |
msgid "ReformDoc::Top:" |
msgstr "Top:" |
-#: scribusXml.cpp:1162 |
+#: scribusXml.cpp:1187 |
msgid "ScriXmlDoc::Background" |
msgstr "Baggrund" |
-#: scribus.cpp:299 |
+#: scribus.cpp:335 |
msgid "ScribusApp::" |
msgstr "" |
-#: scribus.cpp:2458 |
+#: scribus.cpp:2535 |
msgid "ScribusApp::);;Vector Files (*.eps *.pdf);;All Files (*)" |
msgstr ");;Vectorfiler (*.eps *.pdf);;Alle Filer (*)" |
-#: scribus.cpp:568 |
+#: scribus.cpp:606 |
msgid "ScribusApp::200%" |
msgstr "" |
-#: scribus.cpp:562 |
+#: scribus.cpp:600 |
msgid "ScribusApp::50%" |
msgstr "" |
-#: scribus.cpp:564 |
+#: scribus.cpp:602 |
msgid "ScribusApp::75%" |
msgstr "" |
-#: scribus.cpp:3087 |
+#: scribus.cpp:3191 |
msgid "ScribusApp::About Qt" |
msgstr "Om Qt" |
-#: scribus.cpp:619 |
+#: scribus.cpp:657 |
msgid "ScribusApp::About Scribus" |
msgstr "Om Scribus" |
-#: scribus.cpp:566 |
+#: scribus.cpp:604 |
msgid "ScribusApp::Actual Size" |
msgstr "Faktisk størrelse" |
-#: scribus.cpp:6010 |
+#: scribus.cpp:6174 |
msgid "ScribusApp::Adjusting Colors" |
msgstr "Tilpasser farver" |
-#: scribus.cpp:280 |
+#: scribus.cpp:316 |
msgid "ScribusApp::Align Center" |
msgstr "Centrer" |
-#: scribus.cpp:278 |
+#: scribus.cpp:314 |
msgid "ScribusApp::Align Left" |
msgstr "Justér mod venstre" |
-#: scribus.cpp:279 |
+#: scribus.cpp:315 |
msgid "ScribusApp::Align Right" |
msgstr "Justér mod højre" |
-#: scribus.cpp:1886 |
+#: scribus.cpp:1948 |
msgid "ScribusApp::Alignment" |
msgstr "Justér" |
-#: scribus.cpp:5263 |
+#: scribus.cpp:5428 |
msgid "ScribusApp::All" |
msgstr "Alle" |
-#: scribus.cpp:553 |
+#: scribus.cpp:591 |
msgid "ScribusApp::Apply Template..." |
msgstr "Anvend skabelon..." |
-#: scribus.cpp:530 |
+#: scribus.cpp:568 |
msgid "ScribusApp::Attach Text to Path" |
msgstr "Forbind tekst til sti" |
-#: scribus.cpp:649 |
+#: scribus.cpp:687 |
msgid "ScribusApp::Block" |
msgstr "Blok" |
-#: scribus.cpp:516 |
+#: scribus.cpp:554 |
msgid "ScribusApp::Bring to Front" |
msgstr "Placér forrest" |
-#: scribus.cpp:6617 |
+#: scribus.cpp:6800 |
msgid "" |
"ScribusApp::Can't write the File: \n" |
"%1" |
@@ -3711,27 +3768,27 @@ |
"Kan ikke gemme filen: \n" |
"%1" |
-#: scribus.cpp:1529 |
+#: scribus.cpp:1583 |
msgid "ScribusApp::Cascade" |
msgstr "Bagved hinanden" |
-#: scribus.cpp:6362 |
+#: scribus.cpp:6544 |
msgid "ScribusApp::Catalan" |
-msgstr "" |
+msgstr "Catalansk" |
-#: scribus.cpp:647 |
+#: scribus.cpp:685 |
msgid "ScribusApp::Center" |
-msgstr "" |
+msgstr "Centrér" |
-#: scribus.cpp:6488 |
+#: scribus.cpp:6671 |
msgid "ScribusApp::Choose a Directory" |
msgstr "Vælg en mappe" |
-#: scribus.cpp:469 |
+#: scribus.cpp:507 |
msgid "ScribusApp::Clear" |
msgstr "Slet" |
-#: scribus.cpp:419 |
+#: scribus.cpp:455 |
msgid "ScribusApp::Close" |
msgstr "Luk" |
@@ -3739,742 +3796,730 @@ |
msgid "ScribusApp::Closes the Current Document" |
msgstr "Luk det aktive dokument" |
-#: scribus.cpp:427 |
+#: scribus.cpp:465 |
msgid "ScribusApp::Collect for Output..." |
msgstr "Saml projekt i mappe..." |
-#: scribus.cpp:304 |
+#: scribus.cpp:340 |
msgid "ScribusApp::Color Management..." |
msgstr "Farvestyring..." |
-#: scribus.cpp:6699 |
+#: scribus.cpp:6883 |
msgid "ScribusApp::Color" |
msgstr "Farve" |
-#: scribus.cpp:473 |
+#: scribus.cpp:511 |
msgid "ScribusApp::Colors..." |
msgstr "Farver..." |
-#: scribus.cpp:531 |
+#: scribus.cpp:569 |
msgid "ScribusApp::Combine Polygons" |
msgstr "Forbind polygoner" |
-#: scribus.cpp:533 |
+#: scribus.cpp:571 |
msgid "ScribusApp::Convert to Outlines" |
msgstr "Konvertér til figurer" |
-#: scribus.cpp:549 |
+#: scribus.cpp:587 |
msgid "ScribusApp::Copy" |
msgstr "Kopiér" |
-#: scribus.cpp:92 |
+#: scribus.cpp:95 |
msgid "ScribusApp::Creates a new Document" |
msgstr "Nyt dokument" |
-#: scribus.cpp:466 |
+#: scribus.cpp:504 |
msgid "ScribusApp::Cut" |
msgstr "Klip" |
-#: scribus.cpp:6350 |
+#: scribus.cpp:6532 |
msgid "ScribusApp::Czech" |
-msgstr "" |
+msgstr "Tjekkisk" |
-#: scribus.cpp:6344 |
+#: scribus.cpp:6526 |
msgid "ScribusApp::Danish" |
-msgstr "" |
+msgstr "Dansk" |
-#: scribus.cpp:505 |
+#: scribus.cpp:543 |
msgid "ScribusApp::Delete" |
msgstr "Slet" |
-#: scribus.cpp:547 |
+#: scribus.cpp:585 |
msgid "ScribusApp::Delete..." |
msgstr "Slet..." |
-#: scribus.cpp:522 |
+#: scribus.cpp:560 |
msgid "ScribusApp::Distribute/Align..." |
msgstr "Fordel/Opstil på linie..." |
-#: scribus.cpp:2535 |
-msgid "" |
-"ScribusApp::Do you really want to overwrite the File:\n" |
-"%1 ?" |
-msgstr "" |
-"Ønsker du virkelig at overskrive filen:\n" |
-"%1 ?" |
- |
-#: scribus.cpp:448 |
+#: scribus.cpp:486 |
msgid "ScribusApp::Document Info..." |
msgstr "Dokument Info..." |
-#: scribus.cpp:451 |
+#: scribus.cpp:489 |
msgid "ScribusApp::Document Setup..." |
msgstr "Dokument indstillinger..." |
-#: scribus.cpp:5283 |
+#: scribus.cpp:5441 |
msgid "ScribusApp::Document" |
msgstr "Dokument" |
-#: scribus.cpp:2526 |
+#: scribus.cpp:2627 |
msgid "ScribusApp::Documents (*.sla *.scd);;All Files (*)" |
msgstr "Dokumenter (*.sla *.scd);; Alle filer (*)" |
-#: scribus.cpp:2120 |
+#: scribus.cpp:2187 |
msgid "ScribusApp::Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)" |
msgstr "Dokumenter (*.sla *.sla.gz *.scd *scd.gz);; Alle filer (*)" |
-#: scribus.cpp:2524 |
+#: scribus.cpp:2625 |
msgid "ScribusApp::Documents (*.sla *.sla.gz *.scd *scd.gz);;All Files (*)" |
msgstr "Dokumenter (*.sla *.sla.gz *.scd *scd.gz);; Alle filer (*)" |
-#: scribus.cpp:501 |
+#: scribus.cpp:539 |
msgid "ScribusApp::Duplicate" |
msgstr "Duplikér" |
-#: scribus.cpp:6352 |
+#: scribus.cpp:6534 |
msgid "ScribusApp::Dutch" |
-msgstr "" |
+msgstr "Hollandsk" |
-#: scribus.cpp:5293 |
+#: scribus.cpp:5451 |
msgid "ScribusApp::EPS-Files (*.eps);;All Files (*)" |
msgstr "EPS-filer (*.eps);; Alle filer (*)" |
-#: scribus.cpp:528 |
+#: scribus.cpp:566 |
msgid "ScribusApp::Edit Frame" |
msgstr "Redigér ramme" |
-#: scribus.cpp:632 |
+#: scribus.cpp:670 |
msgid "ScribusApp::Edit" |
msgstr "Redigér" |
-#: scribus.cpp:6368 |
+#: scribus.cpp:6550 |
msgid "ScribusApp::English" |
-msgstr "" |
+msgstr "Engelsk" |
-#: scribus.cpp:139 |
+#: scribus.cpp:157 |
msgid "ScribusApp::Exiting now" |
msgstr "Afslutter nu" |
-#: scribus.cpp:443 |
+#: scribus.cpp:481 |
msgid "ScribusApp::Export..." |
msgstr "Eksportér..." |
-#: scribus.cpp:640 |
+#: scribus.cpp:678 |
msgid "ScribusApp::Extras" |
msgstr "Ekstra" |
-#: scribus.cpp:140 |
+#: scribus.cpp:158 |
msgid "ScribusApp::Fatal Error" |
msgstr "Fatal fejl" |
-#: scribus.cpp:631 |
+#: scribus.cpp:669 |
msgid "ScribusApp::File" |
msgstr "Fil" |
-#: scribus.cpp:560 |
+#: scribus.cpp:598 |
msgid "ScribusApp::Fit in Window" |
msgstr "Tilpas til vindue" |
-#: scribus.cpp:1936 |
+#: scribus.cpp:1998 |
msgid "ScribusApp::Font" |
msgstr "Font" |
-#: scribus.cpp:484 |
+#: scribus.cpp:522 |
msgid "ScribusApp::Fonts..." |
msgstr "Fonte..." |
-#: scribus.cpp:650 |
+#: scribus.cpp:688 |
msgid "ScribusApp::Forced" |
msgstr "Tvunget" |
-#: scribus.cpp:6340 |
+#: scribus.cpp:6522 |
msgid "ScribusApp::French" |
-msgstr "" |
+msgstr "Fransk" |
-#: scribus.cpp:481 |
+#: scribus.cpp:519 |
msgid "ScribusApp::General..." |
msgstr "Generelt..." |
-#: scribus.cpp:6334 |
+#: scribus.cpp:6516 |
msgid "ScribusApp::German" |
-msgstr "" |
+msgstr "Tysk" |
-#: scribus.cpp:1851 |
+#: scribus.cpp:1913 |
msgid "ScribusApp::Get Picture..." |
msgstr "Hent billede..." |
-#: scribus.cpp:1924 |
+#: scribus.cpp:1986 |
msgid "ScribusApp::Get Text..." |
msgstr "Hent tekst..." |
-#: scribus.cpp:1963 |
+#: scribus.cpp:2025 |
msgid "ScribusApp::Get Text/Picture..." |
msgstr "Hent Tekst/billede..." |
-#: scribus.cpp:291 |
+#: scribus.cpp:327 |
msgid "ScribusApp::Getting ICC-Profiles" |
msgstr "Henter ICC-Profiler" |
-#: scribus.cpp:5159 |
+#: scribus.cpp:5323 |
msgid "ScribusApp::Ghostscript : You cannot use EPS-Images" |
msgstr "Ghostscript : Du kan ikke bruge EPS-Billeder" |
-#: scribus.cpp:6360 |
+#: scribus.cpp:6542 |
msgid "ScribusApp::Greek" |
-msgstr "" |
+msgstr "Græsk" |
-#: scribus.cpp:508 |
+#: scribus.cpp:546 |
msgid "ScribusApp::Group" |
msgstr "Lav til gruppe" |
-#: scribus.cpp:644 |
+#: scribus.cpp:682 |
msgid "ScribusApp::Help" |
msgstr "Hjælp" |
-#: scribus.cpp:5139 |
-msgid "ScribusApp::Hide Bookmarks" |
-msgstr "Skjul bogmærker" |
+#: scribus.cpp:5303 |
+#msgid "ScribusApp::Hide Bookmarks" |
+#msgstr "Skjul bogmærker" |
-#: scribus.cpp:3355 |
+#: scribus.cpp:3472 |
msgid "ScribusApp::Hide Frames" |
msgstr "Skjul rammer" |
-#: scribus.cpp:3533 |
+#: scribus.cpp:3650 |
msgid "ScribusApp::Hide Grid" |
msgstr "Skjul gitter" |
-#: scribus.cpp:3558 |
+#: scribus.cpp:3675 |
msgid "ScribusApp::Hide Guides" |
msgstr "Skjul hjælpelinier" |
-#: scribus.cpp:3507 |
+#: scribus.cpp:3624 |
msgid "ScribusApp::Hide Images" |
msgstr "Skjul billeder" |
-#: scribus.cpp:5135 |
-msgid "ScribusApp::Hide Layers" |
-msgstr "Skjul lag" |
+#: scribus.cpp:5299 |
+#msgid "ScribusApp::Hide Layers" |
+#msgstr "Skjul lag" |
-#: scribus.cpp:3340 |
+#: scribus.cpp:3457 |
msgid "ScribusApp::Hide Margins" |
msgstr "Skjul marginer" |
-#: scribus.cpp:5131 |
-msgid "ScribusApp::Hide Outline" |
-msgstr "Skjul oversigt" |
+#: scribus.cpp:5295 |
+#msgid "ScribusApp::Hide Outline" |
+#msgstr "Skjul oversigt" |
-#: scribus.cpp:3493 |
-msgid "ScribusApp::Hide PDF-Tools" |
-msgstr "Skjul PDF-værktøjer" |
+#: scribus.cpp:3610 |
+#msgid "ScribusApp::Hide PDF-Tools" |
+#msgstr "Skjul PDF-værktøjer" |
-#: scribus.cpp:5137 |
-msgid "ScribusApp::Hide Page Palette" |
-msgstr "Skjul arrangér sider" |
+#: scribus.cpp:5301 |
+#msgid "ScribusApp::Hide Page Palette" |
+#msgstr "Skjul arrangér sider" |
-#: scribus.cpp:5129 |
-msgid "ScribusApp::Hide Properties" |
-msgstr "Skjul egenskaber" |
+#: scribus.cpp:5293 |
+#msgid "ScribusApp::Hide Properties" |
+#msgstr "Skjul egenskaber" |
-#: scribus.cpp:5133 |
-msgid "ScribusApp::Hide Scrapbook" |
-msgstr "Skjul scrapbog" |
+#: scribus.cpp:5297 |
+#msgid "ScribusApp::Hide Scrapbook" |
+#msgstr "Skjul scrapbog" |
-#: scribus.cpp:3477 |
-msgid "ScribusApp::Hide Tools" |
-msgstr "Skjul værktøjer" |
+#: scribus.cpp:3594 |
+#msgid "ScribusApp::Hide Tools" |
+#msgstr "Skjul værktøjer" |
-#: scribus.cpp:6348 |
+#: scribus.cpp:6530 |
msgid "ScribusApp::Hungarian" |
-msgstr "" |
+msgstr "Ungarsk" |
-#: scribus.cpp:613 |
+#: scribus.cpp:651 |
msgid "ScribusApp::Hyphenate Text" |
msgstr "Orddel tekst" |
-#: scribus.cpp:485 |
+#: scribus.cpp:523 |
msgid "ScribusApp::Hyphenator..." |
msgstr "Orddeling..." |
-#: scribus.cpp:2457 |
+#: scribus.cpp:2534 |
msgid "ScribusApp::Images" |
msgstr "Billeder" |
-#: scribus.cpp:435 |
+#: scribus.cpp:473 |
msgid "ScribusApp::Import..." |
msgstr "Importér..." |
-#: scribus.cpp:293 |
+#: scribus.cpp:329 |
msgid "ScribusApp::Init Hyphenator" |
msgstr "Init Orddeler" |
-#: scribus.cpp:343 |
+#: scribus.cpp:379 |
msgid "ScribusApp::Initializing Plugins" |
msgstr "Initialiserer Plugins" |
-#: scribus.cpp:281 |
+#: scribus.cpp:317 |
msgid "ScribusApp::Insert Page Number" |
msgstr "Indsæt sidenummer" |
-#: scribus.cpp:433 |
+#: scribus.cpp:471 |
msgid "ScribusApp::Insert Page..." |
msgstr "Indsæt side..." |
-#: scribus.cpp:545 |
+#: scribus.cpp:583 |
msgid "ScribusApp::Insert..." |
msgstr "Indsæt..." |
-#: scribus.cpp:6700 |
+#: scribus.cpp:6884 |
msgid "ScribusApp::Invert" |
msgstr "Invertér" |
-#: scribus.cpp:6338 |
+#: scribus.cpp:6520 |
msgid "ScribusApp::Italian" |
-msgstr "" |
+msgstr "Italiensk" |
-#: scribus.cpp:634 |
+#: scribus.cpp:672 |
msgid "ScribusApp::Item" |
msgstr "Objekt" |
-#: scribus.cpp:479 |
+#: scribus.cpp:517 |
msgid "ScribusApp::Javascripts..." |
msgstr "" |
-#: scribus.cpp:646 |
+#: scribus.cpp:684 |
msgid "ScribusApp::Left" |
msgstr "Venstre" |
-#: scribus.cpp:475 |
+#: scribus.cpp:513 |
msgid "ScribusApp::Line Styles..." |
msgstr "Liniestile..." |
-#: scribus.cpp:2238 |
+#: scribus.cpp:2313 |
msgid "ScribusApp::Loading..." |
msgstr "Indlæser..." |
-#: scribus.cpp:5842 |
+#: scribus.cpp:6000 |
msgid "ScribusApp::Loading:" |
msgstr "Indlæser:" |
-#: scribus.cpp:2046 |
+#: scribus.cpp:2108 |
msgid "ScribusApp::Lock" |
msgstr "Lås" |
-#: scribus.cpp:287 |
+#: scribus.cpp:323 |
msgid "ScribusApp::Lock/Unlock" |
msgstr "Lås/Lås op" |
-#: scribus.cpp:518 |
+#: scribus.cpp:556 |
msgid "ScribusApp::Lower" |
msgstr "Flyt bagud" |
-#: scribus.cpp:555 |
+#: scribus.cpp:593 |
msgid "ScribusApp::Manage Guides..." |
msgstr "Håndtér hjælpelinier" |
-#: scribus.cpp:610 |
+#: scribus.cpp:648 |
msgid "ScribusApp::Manage Pictures" |
msgstr "Håndter billeder" |
-#: scribus.cpp:551 |
+#: scribus.cpp:589 |
msgid "ScribusApp::Move..." |
msgstr "Flyt..." |
-#: scribus.cpp:503 |
+#: scribus.cpp:541 |
msgid "ScribusApp::Multiple Duplicate" |
msgstr "Duplikér flere gange" |
-#: scribus.cpp:415 |
+#: scribus.cpp:451 |
msgid "ScribusApp::New" |
msgstr "Ny" |
-#: scribus.cpp:2536 |
-msgid "ScribusApp::No" |
-msgstr "Ingen" |
- |
-#: scribus.cpp:288 |
+#: scribus.cpp:324 |
msgid "ScribusApp::Non Breaking Space" |
msgstr "Ikke brydbar mellemrum" |
-#: scribus.cpp:6080 |
+#: scribus.cpp:6244 |
msgid "ScribusApp::None" |
msgstr "Ingen" |
-#: scribus.cpp:5663 |
+#: scribus.cpp:5816 |
msgid "ScribusApp::Normal" |
msgstr "" |
-#: scribus.cpp:6617 |
+#: scribus.cpp:6800 |
msgid "ScribusApp::OK" |
msgstr "" |
-#: scribus.cpp:624 |
+#: scribus.cpp:662 |
msgid "ScribusApp::Online-Help..." |
-msgstr "Hjælp..." |
+msgstr "Scribus manual..." |
-#: scribus.cpp:2474 |
+#: scribus.cpp:2554 |
msgid "ScribusApp::Open" |
msgstr "Åbn" |
-#: scribus.cpp:416 |
+#: scribus.cpp:452 |
msgid "ScribusApp::Open..." |
msgstr "Åbn..." |
-#: scribus.cpp:94 |
+#: scribus.cpp:96 |
msgid "ScribusApp::Opens a Document" |
msgstr "Åbn et dokument" |
-#: scribus.cpp:4662 |
+#: scribus.cpp:4841 |
msgid "ScribusApp::Other..." |
msgstr "Andet..." |
-#: scribus.cpp:691 |
+#: scribus.cpp:729 |
msgid "ScribusApp::Outlined" |
msgstr "Indrammet" |
-#: scribus.cpp:527 |
+#: scribus.cpp:565 |
msgid "ScribusApp::Oval" |
msgstr "" |
-#: scribus.cpp:635 |
+#: scribus.cpp:673 |
msgid "ScribusApp::Page" |
msgstr "Side" |
-#: scribus.cpp:468 |
+#: scribus.cpp:506 |
msgid "ScribusApp::Paste" |
msgstr "Indsæt" |
-#: scribus.cpp:6358 |
+#: scribus.cpp:6540 |
msgid "ScribusApp::Polish" |
-msgstr "" |
+msgstr "Polsk" |
-#: scribus.cpp:6354 |
+#: scribus.cpp:6536 |
msgid "ScribusApp::Portuguese" |
-msgstr "" |
+msgstr "Portugisisk" |
-#: scribus.cpp:486 |
+#: scribus.cpp:524 |
msgid "ScribusApp::Preferences" |
msgstr "Præferencer" |
-#: scribus.cpp:482 |
+#: scribus.cpp:520 |
msgid "ScribusApp::Preferences..." |
msgstr "Præferencer..." |
-#: scribus.cpp:454 |
+#: scribus.cpp:492 |
msgid "ScribusApp::Print..." |
msgstr "Udskriv..." |
-#: scribus.cpp:2772 |
+#: scribus.cpp:2870 |
msgid "ScribusApp::Printing failed!" |
msgstr "Udskrivning fejlede!" |
-#: scribus.cpp:2690 |
+#: scribus.cpp:2788 |
msgid "ScribusApp::Printing..." |
msgstr "Udskrivning..." |
-#: scribus.cpp:100 |
+#: scribus.cpp:99 |
msgid "ScribusApp::Prints the Current Document" |
msgstr "Udskriv det aktive dokument" |
-#: scribus.cpp:457 |
+#: scribus.cpp:495 |
msgid "ScribusApp::Quit" |
msgstr "Afslut" |
-#: scribus.cpp:520 |
+#: scribus.cpp:558 |
msgid "ScribusApp::Raise" |
msgstr "Flyt forud" |
-#: scribus.cpp:289 |
+#: scribus.cpp:325 |
msgid "ScribusApp::Reading Preferences" |
msgstr "Læser præferencer" |
-#: scribus.cpp:333 |
+#: scribus.cpp:369 |
msgid "ScribusApp::Reading Scrapbook" |
msgstr "Læser scrapbog" |
-#: scribus.cpp:2779 |
+#: scribus.cpp:2877 |
msgid "ScribusApp::Ready" |
msgstr "Klar" |
-#: scribus.cpp:414 |
+#: scribus.cpp:450 |
msgid "ScribusApp::Recent Documents" |
msgstr "Nyeste dokumenter" |
-#: scribus.cpp:525 |
+#: scribus.cpp:563 |
msgid "ScribusApp::Rectangle" |
msgstr "Rektangel" |
-#: scribus.cpp:648 |
+#: scribus.cpp:463 |
+msgid "ScribusApp::Revert to Saved" |
+msgstr "Genindlæs det gemte" |
+ |
+#: scribus.cpp:686 |
msgid "ScribusApp::Right" |
msgstr "Højre" |
-#: scribus.cpp:526 |
+#: scribus.cpp:564 |
msgid "ScribusApp::Rounded Rectangle" |
msgstr "Afrundet rektangel" |
-#: scribus.cpp:6342 |
+#: scribus.cpp:6524 |
msgid "ScribusApp::Russian" |
-msgstr "" |
+msgstr "Russisk" |
-#: scribus.cpp:439 |
+#: scribus.cpp:477 |
msgid "ScribusApp::Save Page as EPS..." |
msgstr "Gem side som EPS..." |
-#: scribus.cpp:437 |
+#: scribus.cpp:475 |
msgid "ScribusApp::Save Text..." |
msgstr "Gem tekst..." |
-#: scribus.cpp:441 |
+#: scribus.cpp:479 |
msgid "ScribusApp::Save as PDF..." |
msgstr "Gem som PDF..." |
-#: scribus.cpp:5293 |
+#: scribus.cpp:5451 |
msgid "ScribusApp::Save as" |
msgstr "Gem som" |
-#: scribus.cpp:425 |
+#: scribus.cpp:461 |
msgid "ScribusApp::Save as..." |
msgstr "Gem som..." |
-#: scribus.cpp:422 |
+#: scribus.cpp:458 |
msgid "ScribusApp::Save" |
msgstr "Gem" |
-#: scribus.cpp:102 |
+#: scribus.cpp:100 |
msgid "ScribusApp::Saves the Current Document as PDF" |
msgstr "Gem det aktive dokument som PDF" |
-#: scribus.cpp:96 |
+#: scribus.cpp:97 |
msgid "ScribusApp::Saves the Current Document" |
msgstr "Gem det aktive dokument" |
-#: scribus.cpp:2551 |
+#: scribus.cpp:2643 |
msgid "ScribusApp::Saving..." |
msgstr "Gemmer..." |
-#: scribus.cpp:3092 |
+#: scribus.cpp:3196 |
msgid "ScribusApp::Scribus Manual" |
-msgstr "" |
+msgstr "Scribus manual" |
-#: scribus.cpp:134 |
+#: scribus.cpp:152 |
msgid "ScribusApp::Searching for Fonts" |
msgstr "Leder efter fonte" |
-#: scribus.cpp:499 |
+#: scribus.cpp:537 |
msgid "ScribusApp::Select New Font" |
msgstr "Vælg ny font" |
-#: scribus.cpp:470 |
+#: scribus.cpp:508 |
msgid "ScribusApp::Select all" |
msgstr "Markér alt" |
-#: scribus.cpp:514 |
+#: scribus.cpp:552 |
msgid "ScribusApp::Send to Back" |
msgstr "Placér bagerst" |
-#: scribus.cpp:300 |
+#: scribus.cpp:336 |
msgid "ScribusApp::Setting up Shortcuts" |
msgstr "Laver genveje" |
-#: scribus.cpp:1974 |
+#: scribus.cpp:2036 |
msgid "ScribusApp::Shade" |
msgstr "Farvemætning" |
-#: scribus.cpp:529 |
+#: scribus.cpp:567 |
msgid "ScribusApp::Shape" |
msgstr "Form" |
-#: scribus.cpp:3456 |
-msgid "ScribusApp::Show Bookmarks" |
-msgstr "Vis bogmærker" |
+#: scribus.cpp:3573 |
+msgid "ScribusApp::Bookmarks" |
+msgstr "Bogmærker" |
-#: scribus.cpp:3350 |
+#: scribus.cpp:3467 |
msgid "ScribusApp::Show Frames" |
msgstr "Vis rammer" |
-#: scribus.cpp:3528 |
+#: scribus.cpp:3645 |
msgid "ScribusApp::Show Grid" |
msgstr "Vis gitter" |
-#: scribus.cpp:3553 |
+#: scribus.cpp:3670 |
msgid "ScribusApp::Show Guides" |
msgstr "Vis hjælpelinier" |
-#: scribus.cpp:3502 |
+#: scribus.cpp:3619 |
msgid "ScribusApp::Show Images" |
msgstr "Vis billeder" |
-#: scribus.cpp:3420 |
-msgid "ScribusApp::Show Layers" |
-msgstr "Vis lag" |
+#: scribus.cpp:3537 |
+msgid "ScribusApp::Layers" |
+msgstr "Lag" |
-#: scribus.cpp:3335 |
+#: scribus.cpp:3452 |
msgid "ScribusApp::Show Margins" |
msgstr "Vis margener" |
-#: scribus.cpp:3384 |
-msgid "ScribusApp::Show Outline" |
-msgstr "Vis oversigt" |
+#: scribus.cpp:3501 |
+msgid "ScribusApp::Outline" |
+msgstr "Oversigt" |
-#: scribus.cpp:5127 |
-msgid "ScribusApp::Show PDF-Tools" |
-msgstr "Vis PDF-værktøjer" |
+#: scribus.cpp:5291 |
+msgid "ScribusApp::PDF-Tools" |
+msgstr "PDF-værktøjer" |
-#: scribus.cpp:3440 |
-msgid "ScribusApp::Show Page Palette" |
-msgstr "Vis arrangér sider" |
+#: scribus.cpp:3557 |
+msgid "ScribusApp::Page Palette" |
+msgstr "Arrangér sider" |
-#: scribus.cpp:3367 |
-msgid "ScribusApp::Show Properties" |
-msgstr "Vis egenskaber" |
+#: scribus.cpp:3484 |
+msgid "ScribusApp::Properties" |
+msgstr "Egenskaber" |
-#: scribus.cpp:3404 |
-msgid "ScribusApp::Show Scrapbook" |
-msgstr "Vis scrapbog" |
+#: scribus.cpp:3521 |
+msgid "ScribusApp::Scrapbook" |
+msgstr "Scrapbog" |
-#: scribus.cpp:5125 |
-msgid "ScribusApp::Show Tools" |
-msgstr "Vis værktøjer" |
+#: scribus.cpp:5289 |
+# msgid "ScribusApp::Show Tools" |
+# msgstr "Vis værktøjer" |
-#: scribus.cpp:1937 |
+#: scribus.cpp:1999 |
msgid "ScribusApp::Size" |
msgstr "Størrelse" |
-#: scribus.cpp:6346 |
+#: scribus.cpp:6528 |
msgid "ScribusApp::Slovak" |
-msgstr "" |
+msgstr "Slovakisk" |
-#: scribus.cpp:688 |
+#: scribus.cpp:726 |
msgid "ScribusApp::Small Caps" |
msgstr "Små kapitaler" |
-#: scribus.cpp:277 |
+#: scribus.cpp:313 |
msgid "ScribusApp::Smart Hyphen" |
msgstr "Smart orddeling" |
-#: scribus.cpp:581 |
+#: scribus.cpp:619 |
msgid "ScribusApp::Snap to Grid" |
msgstr "Klæb til gitter" |
-#: scribus.cpp:583 |
+#: scribus.cpp:621 |
msgid "ScribusApp::Snap to Guides" |
msgstr "Klæb til hjælpelinier" |
-#: scribus.cpp:6336 |
+#: scribus.cpp:6518 |
msgid "ScribusApp::Spanish" |
-msgstr "" |
+msgstr "Spansk" |
-#: scribus.cpp:532 |
+#: scribus.cpp:570 |
msgid "ScribusApp::Split Polygons" |
msgstr "Adskil polygon" |
-#: scribus.cpp:687 |
+#: scribus.cpp:725 |
msgid "ScribusApp::Strikethru" |
msgstr "Gennemstreg" |
-#: scribus.cpp:1938 |
+#: scribus.cpp:2000 |
msgid "ScribusApp::Style" |
msgstr "Stil" |
-#: scribus.cpp:476 |
+#: scribus.cpp:514 |
msgid "ScribusApp::Styles..." |
msgstr "Typografier..." |
-#: scribus.cpp:690 |
+#: scribus.cpp:728 |
msgid "ScribusApp::Subscript" |
msgstr "Sænket skrift" |
-#: scribus.cpp:689 |
+#: scribus.cpp:727 |
msgid "ScribusApp::Superscript" |
msgstr "Hævet skrift" |
-#: scribus.cpp:478 |
+#: scribus.cpp:516 |
msgid "ScribusApp::Templates..." |
msgstr "Skabeloner..." |
-#: scribus.cpp:3106 |
-msgid "ScribusApp::Text Files (*.txt);;All Files (*)" |
+#: scribus.cpp:3210 |
+msgid "ScribusApp::Text Files (*.txt);;All Files(*)" |
msgstr "Tekstfiler (*.txt);;Alle filer (*)" |
-#: scribus.cpp:5157 |
+#: scribus.cpp:5321 |
msgid "ScribusApp::The following Programs are missing:" |
msgstr "Følgende programmer mangler:" |
-#: scribus.cpp:138 |
+#: scribus.cpp:156 |
msgid "ScribusApp::There are no Postscript-Fonts on your System" |
msgstr "Der er ingen Postscript-Fonte installeret" |
-#: scribus.cpp:570 |
+#: scribus.cpp:608 |
msgid "ScribusApp::Thumbnails" |
msgstr "Små sider" |
-#: scribus.cpp:1530 |
+#: scribus.cpp:1584 |
msgid "ScribusApp::Tile" |
msgstr "Ved siden af hinanden" |
-#: scribus.cpp:626 |
+#: scribus.cpp:664 |
msgid "ScribusApp::Tool-Tips" |
msgstr "Hjælpe-tekst" |
-#: scribus.cpp:639 |
+#: scribus.cpp:677 |
msgid "ScribusApp::Tools" |
msgstr "Værktøjer" |
-#: scribus.cpp:6356 |
+#: scribus.cpp:6538 |
msgid "ScribusApp::Ukrainian" |
-msgstr "" |
+msgstr "Ukrainsk" |
-#: scribus.cpp:510 |
+#: scribus.cpp:548 |
msgid "ScribusApp::Un-group" |
msgstr "Bryd gruppe" |
-#: scribus.cpp:684 |
+#: scribus.cpp:722 |
msgid "ScribusApp::Underline" |
msgstr "Understreg" |
-#: scribus.cpp:6303 |
+#: scribus.cpp:6487 |
msgid "ScribusApp::Undo Delete Object" |
msgstr "Fortryd sletning af objekt" |
-#: scribus.cpp:6311 |
+#: scribus.cpp:6495 |
msgid "ScribusApp::Undo Object Change" |
msgstr "Fortryd ændring af objekt" |
-#: scribus.cpp:6307 |
+#: scribus.cpp:6491 |
msgid "ScribusApp::Undo Object Move" |
msgstr "Fortryd flytning af objekt" |
-#: scribus.cpp:459 |
+#: scribus.cpp:497 |
msgid "ScribusApp::Undo" |
msgstr "Fortryd" |
-#: scribus.cpp:2042 |
+#: scribus.cpp:2104 |
msgid "ScribusApp::Unlock" |
msgstr "Lås op" |
-#: scribus.cpp:638 |
+#: scribus.cpp:676 |
msgid "ScribusApp::View" |
msgstr "Vis" |
-#: scribus.cpp:6617 |
+#: scribus.cpp:6800 |
msgid "ScribusApp::Warning" |
msgstr "Advarsel" |
-#: scribus.cpp:642 |
+#: scribus.cpp:680 |
msgid "ScribusApp::Windows" |
msgstr "Vinduer" |
-#: scribus.cpp:705 |
+#: scribus.cpp:743 |
msgid "ScribusApp::X-Pos:" |
msgstr "" |
-#: scribus.cpp:711 |
+#: scribus.cpp:749 |
msgid "ScribusApp::Y-Pos:" |
msgstr "" |
-#: scribus.cpp:2537 |
-msgid "ScribusApp::Yes" |
-msgstr "Ja" |
- |
#: scribusdoc.cpp:77 |
msgid "ScribusDoc::Background" |
msgstr "Baggrund" |
@@ -4487,7 +4532,7 @@ |
msgid "ScribusView:: %" |
msgstr "" |
-#: scribusview.cpp:1294 |
+#: scribusview.cpp:1097 |
msgid "ScribusView::All" |
msgstr "Alle" |
@@ -4495,31 +4540,31 @@ |
msgid "ScribusView::Layer" |
msgstr "Lag" |
-#: scribusview.cpp:530 |
-msgid "ScribusView::Page" |
-msgstr "Side" |
+#: scribusview.cpp:300 |
+msgid "ScribusView::Page %1" |
+msgstr "Side %1" |
-#: scribuswin.cpp:33 |
+#: scribuswin.cpp:55 |
msgid "ScribusWin::Cancel" |
msgstr "Annullér" |
-#: scribuswin.cpp:31 |
+#: scribuswin.cpp:53 |
msgid "ScribusWin::Document:" |
msgstr "Dokument:" |
-#: scribuswin.cpp:34 |
+#: scribuswin.cpp:56 |
msgid "ScribusWin::Leave Anyway" |
msgstr "Afslut alligevel" |
-#: scribuswin.cpp:32 |
+#: scribuswin.cpp:54 |
msgid "ScribusWin::Save Now" |
msgstr "Gem nu" |
-#: scribuswin.cpp:30 |
+#: scribuswin.cpp:52 |
msgid "ScribusWin::Warning" |
msgstr "Advarsel" |
-#: scribuswin.cpp:31 |
+#: scribuswin.cpp:53 |
msgid "ScribusWin::has been changed since the last save." |
msgstr "er ændret siden sidste gang det blev gemt." |
@@ -4531,44 +4576,44 @@ |
msgid "SeView::Show Template Names" |
msgstr "Vis skabelonnavne" |
-#: seiten.cpp:509 |
+#: seiten.cpp:504 |
msgid "SeitenPal::Arrange Pages" |
msgstr "Arrangér sider" |
-#: seiten.cpp:519 |
+#: seiten.cpp:514 |
msgid "SeitenPal::Available Templates:" |
msgstr "Tilgængelige skabeloner:" |
-#: seiten.cpp:528 |
+#: seiten.cpp:523 |
msgid "SeitenPal::Document Pages:" |
msgstr "Dokument sider:" |
-#: seiten.cpp:577 |
+#: seiten.cpp:572 |
msgid "" |
"SeitenPal::Drag Pages or Template Pages onto the Trashbin to delete them." |
msgstr "Træk sider eller skabeloner til skraldespanden for at slette dem." |
-#: seiten.cpp:553 |
+#: seiten.cpp:548 |
msgid "SeitenPal::Facing Pages" |
msgstr "Modstående sider" |
-#: seiten.cpp:579 |
+#: seiten.cpp:574 |
msgid "" |
-"SeitenPal::Here are all your Templates, to create a new Page \n" |
-" drag a Template to the Pageview below." |
+"SeitenPal::Here are all your Templates, to create a new Page\n" |
+"drag a Template to the Pageview below." |
msgstr "" |
"Her er alle dine skabeloner. Træk en skabelon\n" |
"til vinduet nedenunder, for at lave en ny side." |
-#: seiten.cpp:556 |
+#: seiten.cpp:551 |
msgid "SeitenPal::Left Page first" |
msgstr "Venstre side først" |
-#: seiten.cpp:730 |
+#: seiten.cpp:728 |
msgid "SeitenPal::Normal" |
msgstr "" |
-#: seiten.cpp:578 |
+#: seiten.cpp:573 |
msgid "SeitenPal::This previews all the pages of your Document." |
msgstr "Her kan du se alle siderne i dit dokument." |
@@ -4600,7 +4645,7 @@ |
msgid "SelectFields::Selected Fields" |
msgstr "Markerede felter" |
-#: spalette.cpp:29 |
+#: spalette.cpp:30 |
msgid "Spalette::No Style" |
msgstr "Ingen typografier" |
@@ -4609,8 +4654,8 @@ |
msgstr "Annullér" |
#: editformats.cpp:81 |
-msgid "StilFormate::Copy of " |
-msgstr "Kopi af " |
+msgid "StilFormate::Copy of %1" |
+msgstr "Kopi af %1" |
#: editformats.cpp:43 |
msgid "StilFormate::Delete" |
@@ -4656,19 +4701,148 @@ |
msgid "StilFormate::Yes" |
msgstr "Ja" |
+# text from story |
+#: story.cpp:451 |
+msgid "StoryEditor::Block" |
+msgstr "Blok" |
+ |
+#: story.cpp:449 |
+msgid "StoryEditor::Center" |
+msgstr "Centrér" |
+ |
+#: story.cpp:235 |
+msgid "StoryEditor::Clear" |
+msgstr "Slet" |
+ |
+#: story.cpp:233 |
+msgid "StoryEditor::Copy" |
+msgstr "Kopiér" |
+ |
+#: story.cpp:232 |
+msgid "StoryEditor::Cut" |
+msgstr "Klip" |
+ |
+#: story.cpp:325 |
+msgid "StoryEditor::Do you really want to clear all your Text?" |
+msgstr "Ønsker du virkelig at slette al din tekst?" |
+ |
+#: story.cpp:314 |
+msgid "StoryEditor::Do you really want to lose all your Changes?" |
+msgstr "Ønsker du virkelig at miste alle ændringer?" |
+ |
+#: story.cpp:237 |
+msgid "StoryEditor::Edit Styles..." |
+msgstr "Redigér typografier..." |
+ |
+#: story.cpp:241 |
+msgid "StoryEditor::Edit" |
+msgstr "Redigér" |
+ |
+#: story.cpp:227 |
+msgid "StoryEditor::Exit without Saving" |
+msgstr "Afslut uden at gemme" |
+ |
+#: story.cpp:240 |
+msgid "StoryEditor::File" |
+msgstr "Fil" |
+ |
+#: story.cpp:452 |
+msgid "StoryEditor::Forced" |
+msgstr "Tvunget" |
+ |
+#: story.cpp:448 |
+msgid "StoryEditor::Left" |
+msgstr "Venstre" |
+ |
+#: story.cpp:224 |
+msgid "StoryEditor::New" |
+msgstr "Ny" |
+ |
+#: story.cpp:234 |
+msgid "StoryEditor::Paste" |
+msgstr "Indsæt" |
+ |
+#: story.cpp:230 |
+msgid "StoryEditor::Redo" |
+msgstr "Lav igen" |
+ |
+#: story.cpp:450 |
+msgid "StoryEditor::Right" |
+msgstr "Højre" |
+ |
+#: story.cpp:226 |
+msgid "StoryEditor::Save and Exit" |
+msgstr "Gem og afslut" |
+ |
+#: story.cpp:204 |
+msgid "StoryEditor::Story Editor" |
+msgstr "Redigering af tekst" |
+ |
+#: story.cpp:245 |
+msgid "StoryEditor::Style" |
+msgstr "Typografi" |
+ |
+#: story.cpp:246 |
+msgid "StoryEditor::Text" |
+msgstr "Tekst" |
+ |
+#: story.cpp:229 |
+msgid "StoryEditor::Undo" |
+msgstr "Fortryd" |
+ |
+#: story.cpp:238 |
+msgid "StoryEditor::Update Textframe" |
+msgstr "Opdatér tekstramme" |
+ |
+#: story.cpp:324 |
+msgid "StoryEditor::Warning" |
+msgstr "Advarsel" |
+ |
+msgid "Current Paragraph:" |
+msgstr "Nuværende afsnit:" |
+ |
+msgid "Words: " |
+msgstr "Ord: " |
+ |
+msgid "Chars: " |
+msgstr "Tegn: " |
+ |
+msgid "Totals:" |
+msgstr "Ialt:" |
+ |
+msgid "Paragraphs: " |
+msgstr "Afsnit: " |
+ |
+msgid "&Undo" |
+msgstr "&Fortryd" |
+ |
+msgid "&Redo" |
+msgstr "&Lav igen" |
+ |
+msgid "Cu&t" |
+msgstr "Kli&p" |
+ |
+msgid "&Copy" |
+msgstr "&Kopiér" |
+ |
+msgid "&Paste" |
+msgstr "&Indsæt" |
+ |
+msgid "Clear" |
+msgstr "Slet" |
+ |
+msgid "Select All" |
+msgstr "Markér alt" |
+ |
#: tree.cpp:28 |
msgid "Tree::Element" |
msgstr "Objekt" |
-#: tree.cpp:91 |
-msgid "Tree::Ellipse" |
-msgstr "" |
- |
-#: tree.cpp:87 |
+#: tree.cpp:75 |
msgid "Tree::Font:" |
msgstr "Font:" |
-#: tree.cpp:95 |
+#: tree.cpp:79 |
msgid "Tree::Image" |
msgstr "Billede" |
@@ -4676,11 +4850,7 @@ |
msgid "Tree::Information" |
msgstr "" |
-#: tree.cpp:84 |
-msgid "Tree::Item" |
-msgstr "Emne" |
- |
-#: tree.cpp:107 |
+#: tree.cpp:87 |
msgid "Tree::Line" |
msgstr "Linie" |
@@ -4688,15 +4858,23 @@ |
msgid "Tree::Outline" |
msgstr "Oversigt" |
-#: tree.cpp:77 |
+#: tree.cpp:235 |
msgid "Tree::Page" |
msgstr "Side" |
#: tree.cpp:99 |
-msgid "Tree::Rectangle" |
-msgstr "Rektangel" |
+msgid "Tree::PathText" |
+msgstr "Sti-tekst" |
-#: tree.cpp:103 |
+#: tree.cpp:91 |
+msgid "Tree::Polygon" |
+msgstr "" |
+ |
+#: tree.cpp:95 |
+msgid "Tree::Polyline" |
+msgstr "Poly-linie" |
+ |
+#: tree.cpp:83 |
msgid "Tree::Text" |
msgstr "Tekst" |
@@ -4704,11 +4882,11 @@ |
msgid "Tree::Type" |
msgstr "" |
-#: tree.cpp:85 |
+#: tree.cpp:73 |
msgid "Tree::X:" |
msgstr "" |
-#: tree.cpp:86 |
+#: tree.cpp:74 |
msgid "Tree::Y:" |
msgstr "" |
@@ -4722,8 +4900,11 @@ |
#: werktoolb.cpp:24 |
msgid "WerkToolB::Edit Contents of Frame" |
-msgstr "Rediger indhold af ramme" |
+msgstr "Redigér indhold af ramme" |
+msgid "WerkToolB::Edit the Text with the Story Editor" |
+msgstr "Rediger tekst i tekstbehandler" |
+ |
#: werktoolb.cpp:45 |
msgid "WerkToolB::Insert Bezier Curves" |
msgstr "Indsæt bezier kurver" |
@@ -4733,8 +4914,8 @@ |
msgstr "Indsæt linier" |
#: werktoolb.cpp:35 |
-msgid "WerkToolB::Insert Ovals" |
-msgstr "Indsæt ovaler" |
+msgid "WerkToolB::Draws various Shapes" |
+msgstr "Indsæt forskellige figurer" |
#: werktoolb.cpp:31 |
msgid "WerkToolB::Insert Picture" |
@@ -4812,705 +4993,766 @@ |
msgid "WerkToolBP::Text" |
msgstr "Tekst" |
-# Diverse |
+#: libabout/about.cpp:35 |
+msgid "About::%1. %2 %3 " |
+msgstr "" |
-msgid "Select new Font:" |
-msgstr "Vælg ny font:" |
+#: libabout/about.cpp:19 |
+msgid "About::About Scribus%1%2" |
+msgstr "Om Scribus%1%2" |
-msgid "Insert Special" |
-msgstr "Indsæt specialtegn" |
+#: libabout/about.cpp:56 |
+msgid "About::About" |
+msgstr "Om" |
-msgid "Select Character:" |
-msgstr "Vælg tegn:" |
+#: libabout/about.cpp:77 |
+msgid "About::Authors" |
+msgstr "Forfattere" |
-msgid "Insert" |
-msgstr "Indsæt" |
+#: libabout/about.cpp:54 |
+msgid "About::Build-ID:" |
+msgstr "" |
-msgid "Clear" |
-msgstr "Slet" |
+#: libabout/about.cpp:105 |
+msgid "About::Bulgarian:" |
+msgstr "Bulgarsk:" |
-msgid "Close" |
+#: libabout/about.cpp:149 |
+msgid "About::Close" |
msgstr "Luk" |
-msgid "Save Page as SVG..." |
-msgstr "Gem side som SVG..." |
+#: libabout/about.cpp:65 |
+msgid "About::Contributions from:" |
+msgstr "Bidrag fra:" |
-msgid "SVG-Images (*.svg);;All Files (*)" |
-msgstr "SVG-billeder (*.svg);; Alle filer (*)" |
+#: libabout/about.cpp:120 |
+msgid "About::Czech:" |
+msgstr "Tjekkisk:" |
-msgid "Print Preview" |
-msgstr "Vis udskrift" |
+#: libabout/about.cpp:126 |
+msgid "About::Danish:" |
+msgstr "Dansk:" |
-msgid "Script Console" |
-msgstr "Script konsol" |
+#: libabout/about.cpp:71 |
+msgid "About::Documentation:" |
+msgstr "Dokumentation:" |
-msgid "Shade:" |
-msgstr "Farvemætning:" |
+#: libabout/about.cpp:133 |
+msgid "About::English:" |
+msgstr "Engelsk:" |
-msgid "Shade" |
-msgstr "Farvemætning" |
+#: libabout/about.cpp:86 |
+msgid "About::French:" |
+msgstr "Fransk:" |
-msgid "OK" |
-msgstr "" |
+#: libabout/about.cpp:108 |
+msgid "About::Galician:" |
+msgstr "Galicisk:" |
-msgid "Cancel" |
-msgstr "Annullér" |
+#: libabout/about.cpp:83 |
+msgid "About::German:" |
+msgstr "Tysk:" |
-msgid "Background" |
-msgstr "Baggrund" |
+#: libabout/about.cpp:97 |
+msgid "About::Hungarian:" |
+msgstr "Ungarsk:" |
-# Text in qt open-and save menues |
+#: libabout/about.cpp:94 |
+msgid "About::Italian:" |
+msgstr "Italiensk:" |
-msgid "Choose a Directory" |
-msgstr "Vælg en mappe" |
+#: libabout/about.cpp:114 |
+msgid "About::Lithuanian:" |
+msgstr "Litaurisk:" |
-msgid "Paths" |
-msgstr "Stier" |
+#: libabout/about.cpp:129 |
+msgid "About::Norwegian:" |
+msgstr "Norsk:" |
-msgid "Documents:" |
-msgstr "Dokumenter:" |
+#: libabout/about.cpp:117 |
+msgid "About::Polish:" |
+msgstr "Polsk:" |
-msgid "One directory up" |
-msgstr "En mappe tilbage" |
+#: libabout/about.cpp:62 |
+msgid "About::Programming:" |
+msgstr "Programmering:" |
-msgid "Create New Folder" |
-msgstr "Lav ny mappe" |
+#: libabout/about.cpp:54 |
+msgid "" |
+"About::Scribus Version %1\n" |
+"%2 %3" |
+msgstr "" |
-msgid "List View" |
-msgstr "Vis liste" |
+#: libabout/about.cpp:123 |
+msgid "About::Slovak:" |
+msgstr "Slovakisk:" |
-msgid "Detail View" |
-msgstr "Vis detaljer" |
+#: libabout/about.cpp:91 |
+msgid "About::Spanish and Catalan:" |
+msgstr "Catalansk:" |
-msgid "Preview File Contents" |
-msgstr "Vis indhold af fil" |
+#: libabout/about.cpp:141 |
+msgid "About::Translations" |
+msgstr "Oversættelser" |
-msgid "Back" |
-msgstr "Tilbage" |
+#: libabout/about.cpp:111 |
+msgid "About::Turkish:" |
+msgstr "Tyrkisk:" |
-msgid "Look &in:" |
-msgstr "Se &i:" |
+#: libabout/about.cpp:102 |
+msgid "About::Ukrainian:" |
+msgstr "Ukrainsk:" |
-msgid "File &type:" |
-msgstr "Fil &type:" |
+#: libabout/about.cpp:135 |
+msgid "About::Welsh:" |
+msgstr "Walisisk:" |
-msgid "File &name:" |
-msgstr "Fil &navn:" |
+msgid "About::Russian:" |
+msgstr "Russisk:" |
-msgid "&Open" |
-msgstr "&Åbn" |
- |
-msgid "&Save" |
-msgstr "&Gem" |
- |
-# Text from libprefs, the new scriptplugin and story |
-# Missing in Pot-file |
- |
-#: libprefs/prefs.cpp:1248 |
+#: libprefs/prefs.cpp:1263 |
msgid "Preferences:: %" |
msgstr "" |
-#: libprefs/prefs.cpp:1962 |
+#: libprefs/prefs.cpp:1986 |
msgid "Preferences:: in" |
msgstr "" |
-#: libprefs/prefs.cpp:1950 |
+#: libprefs/prefs.cpp:1974 |
msgid "Preferences:: mm" |
msgstr "" |
-#: libprefs/prefs.cpp:1974 |
+#: libprefs/prefs.cpp:1998 |
msgid "Preferences:: p" |
msgstr "" |
-#: libprefs/prefs.cpp:1938 |
+#: libprefs/prefs.cpp:1962 |
msgid "Preferences:: pt" |
msgstr "" |
-#: libprefs/prefs.cpp:1039 |
+#: libprefs/prefs.cpp:1054 |
msgid "Preferences:: pts" |
msgstr "" |
-#: libprefs/prefs.cpp:1407 |
+#: libprefs/prefs.cpp:1422 |
msgid "Preferences::" |
msgstr "" |
-#: libprefs/prefs.cpp:1435 |
+#: libprefs/prefs.cpp:1450 |
msgid "Preferences::Adjust Display Size" |
msgstr "Indstil vis side" |
-#: libprefs/prefs.cpp:668 |
+#: libprefs/prefs.cpp:682 |
msgid "Preferences::Automatic Line Spacing:" |
msgstr "Automatisk linieafstand:" |
-#: libprefs/prefs.cpp:375 |
+#: libprefs/prefs.cpp:389 |
msgid "Preferences::Autosave" |
msgstr "Gem automatisk" |
-#: libprefs/prefs.cpp:1384 |
+#: libprefs/prefs.cpp:1399 |
msgid "Preferences::Background:" |
msgstr "Baggrund:" |
-#: libprefs/prefs.cpp:1322 |
+#: libprefs/prefs.cpp:1337 |
msgid "Preferences::Big" |
msgstr "Stor" |
-#: libprefs/prefs.cpp:358 |
+#: libprefs/prefs.cpp:372 |
msgid "Preferences::Bottom:" |
msgstr "Bund:" |
-#: libprefs/prefs.cpp:1486 |
+#: libprefs/prefs.cpp:1501 |
msgid "Preferences::Cancel" |
msgstr "Annullér" |
-#: libprefs/prefs.cpp:199 |
+#: libprefs/prefs.cpp:212 |
msgid "Preferences::Change..." |
msgstr "Vælg..." |
-#: libprefs/prefs.cpp:1558 |
+#: libprefs/prefs.cpp:1581 |
msgid "Preferences::Choose a Directory" |
msgstr "Vælg en mappe" |
-#: libprefs/prefs.cpp:1236 |
+#: libprefs/prefs.cpp:1251 |
msgid "Preferences::Convex Polygon" |
msgstr "" |
-#: libprefs/prefs.cpp:1205 |
+#: libprefs/prefs.cpp:1220 |
msgid "Preferences::Corners:" |
msgstr "Hjørner:" |
-#: libprefs/prefs.cpp:250 |
+#: libprefs/prefs.cpp:264 |
msgid "Preferences::Custom" |
msgstr "Bruger" |
-#: libprefs/prefs.cpp:762 |
+#: libprefs/prefs.cpp:776 |
msgid "Preferences::Default Font:" |
msgstr "Standard font:" |
-#: libprefs/prefs.cpp:758 |
+#: libprefs/prefs.cpp:772 |
msgid "Preferences::Default Size:" |
msgstr "Standard størrelse:" |
-#: libprefs/prefs.cpp:613 |
+#: libprefs/prefs.cpp:627 |
msgid "Preferences::Disp.:" |
msgstr "Forskydning:" |
-#: libprefs/prefs.cpp:1362 |
+#: libprefs/prefs.cpp:1377 |
msgid "Preferences::Display Frames" |
msgstr "Vis rammer" |
-#: libprefs/prefs.cpp:1366 |
+#: libprefs/prefs.cpp:1381 |
msgid "Preferences::Display Pages Side by Side" |
msgstr "Vis sider ved siden af hinanden" |
-#: libprefs/prefs.cpp:1426 |
+#: libprefs/prefs.cpp:1441 |
msgid "Preferences::Display Unprintable Area in Margin Color" |
msgstr "Vis område, der ikke kan udskrives i margin farve" |
-#: libprefs/prefs.cpp:51 |
+#: libprefs/prefs.cpp:52 |
msgid "Preferences::Display" |
msgstr "Vis" |
-#: libprefs/prefs.cpp:46 |
+#: libprefs/prefs.cpp:47 |
msgid "Preferences::Document" |
msgstr "Dokument" |
-#: libprefs/prefs.cpp:180 |
+#: libprefs/prefs.cpp:181 |
msgid "Preferences::Documents:" |
msgstr "Dokumenter:" |
-#: libprefs/prefs.cpp:382 |
+#: libprefs/prefs.cpp:396 |
msgid "Preferences::Enabled" |
msgstr "Aktiv" |
-#: libprefs/prefs.cpp:301 |
+#: libprefs/prefs.cpp:315 |
msgid "Preferences::Facing Pages" |
msgstr "Modstående sider" |
-#: libprefs/prefs.cpp:1245 |
+#: libprefs/prefs.cpp:1260 |
msgid "Preferences::Factor:" |
msgstr "Faktor:" |
-#: libprefs/prefs.cpp:1125 |
+#: libprefs/prefs.cpp:1140 |
msgid "Preferences::Fill Color:" |
msgstr "Fyldfarve:" |
-#: libprefs/prefs.cpp:85 |
+#: libprefs/prefs.cpp:86 |
msgid "Preferences::Font Size:" |
msgstr "Fontstørrelse:" |
-#: libprefs/prefs.cpp:1113 |
+#: libprefs/prefs.cpp:1128 |
msgid "Preferences::Free Scaling" |
msgstr "Fri skalering" |
-#: libprefs/prefs.cpp:63 |
+#: libprefs/prefs.cpp:64 |
msgid "Preferences::GUI" |
msgstr "" |
-#: libprefs/prefs.cpp:45 |
+#: libprefs/prefs.cpp:46 |
msgid "Preferences::General" |
msgstr "Generelt" |
-#: libprefs/prefs.cpp:136 |
+#: libprefs/prefs.cpp:137 |
msgid "Preferences::Grab-Radius" |
msgstr "Gribe-radius" |
-#: libprefs/prefs.cpp:458 |
+#: libprefs/prefs.cpp:472 |
msgid "Preferences::Grid Colors" |
msgstr "Farve på gitter og hjælpelinier" |
-#: libprefs/prefs.cpp:405 |
+#: libprefs/prefs.cpp:419 |
msgid "Preferences::Grid Layout" |
msgstr "Gitter indstillinger" |
-#: libprefs/prefs.cpp:436 |
+#: libprefs/prefs.cpp:450 |
msgid "Preferences::Guide Snap Distance:" |
msgstr "'Klæb til' afstand" |
-#: libprefs/prefs.cpp:47 |
+#: libprefs/prefs.cpp:48 |
msgid "Preferences::Guides" |
msgstr "Hjælpelinier" |
-#: libprefs/prefs.cpp:283 |
+#: libprefs/prefs.cpp:297 |
msgid "Preferences::Height:" |
msgstr "Højde:" |
-#: libprefs/prefs.cpp:1117 |
+#: libprefs/prefs.cpp:1132 |
msgid "Preferences::Horizontal Scaling" |
msgstr "Horisontal skalering" |
-#: libprefs/prefs.cpp:191 |
+#: libprefs/prefs.cpp:192 |
msgid "Preferences::ICC-Profiles:" |
msgstr "ICC-profiler:" |
-#: libprefs/prefs.cpp:545 |
+#: libprefs/prefs.cpp:559 |
msgid "Preferences::In the Background" |
msgstr "I baggrunden" |
-#: libprefs/prefs.cpp:549 |
+#: libprefs/prefs.cpp:563 |
msgid "Preferences::In the Foreground" |
msgstr "I forgrunden" |
-#: libprefs/prefs.cpp:106 |
+#: libprefs/prefs.cpp:107 |
msgid "Preferences::Inches (in)" |
msgstr "Tommer (in)" |
-#: libprefs/prefs.cpp:1580 |
+#: libprefs/prefs.cpp:1603 |
msgid "Preferences::Inside:" |
msgstr "Inderside;" |
-#: libprefs/prefs.cpp:386 |
+#: libprefs/prefs.cpp:400 |
msgid "Preferences::Interval:" |
msgstr "" |
-#: libprefs/prefs.cpp:1151 |
+#: libprefs/prefs.cpp:1166 |
msgid "Preferences::Keep Aspect Ratio" |
msgstr "Behold bredde/højde forhold" |
-#: libprefs/prefs.cpp:166 |
+#: libprefs/prefs.cpp:167 |
msgid "Preferences::Keyboard Shortcuts..." |
msgstr "Tastaturgenveje..." |
-#: libprefs/prefs.cpp:257 |
+#: libprefs/prefs.cpp:271 |
msgid "Preferences::Landscape" |
msgstr "Landskab" |
-#: libprefs/prefs.cpp:306 |
+#: libprefs/prefs.cpp:320 |
msgid "Preferences::Left Page First" |
msgstr "Venstre side først" |
-#: libprefs/prefs.cpp:1586 |
+#: libprefs/prefs.cpp:1609 |
msgid "Preferences::Left:" |
msgstr "Venstre:" |
-#: libprefs/prefs.cpp:978 |
+#: libprefs/prefs.cpp:993 |
msgid "Preferences::Line Color:" |
msgstr "Liniefarve:" |
-#: libprefs/prefs.cpp:986 |
+#: libprefs/prefs.cpp:1001 |
msgid "Preferences::Line Style:" |
msgstr "Liniestil:" |
-#: libprefs/prefs.cpp:990 |
+#: libprefs/prefs.cpp:1005 |
msgid "Preferences::Line Width:" |
msgstr "Liniebredde:" |
-#: libprefs/prefs.cpp:878 |
+#: libprefs/prefs.cpp:893 |
msgid "Preferences::Linestyle:" |
msgstr "Liniestil:" |
-#: libprefs/prefs.cpp:475 |
+#: libprefs/prefs.cpp:489 |
msgid "Preferences::Major Grid Color:" |
msgstr "Hoved-gitterlinier:" |
-#: libprefs/prefs.cpp:422 |
+#: libprefs/prefs.cpp:436 |
msgid "Preferences::Major Grid Spacing:" |
msgstr "Afstand mellem hovedlinier:" |
-#: libprefs/prefs.cpp:315 |
+#: libprefs/prefs.cpp:329 |
msgid "Preferences::Margin Guides" |
msgstr "Margin hjælpelinier" |
-#: libprefs/prefs.cpp:1404 |
+#: libprefs/prefs.cpp:1419 |
msgid "Preferences::Margins:" |
msgstr "Marginer:" |
-#: libprefs/prefs.cpp:1067 |
+#: libprefs/prefs.cpp:1082 |
msgid "Preferences::Maximum:" |
msgstr "Maksimum" |
-#: libprefs/prefs.cpp:1321 |
+#: libprefs/prefs.cpp:1336 |
msgid "Preferences::Medium" |
msgstr "" |
-#: libprefs/prefs.cpp:148 |
+#: libprefs/prefs.cpp:149 |
msgid "Preferences::Menus" |
msgstr "Menuer" |
-#: libprefs/prefs.cpp:105 |
+#: libprefs/prefs.cpp:106 |
msgid "Preferences::Millimeters (mm)" |
msgstr "Millimeter (mm)" |
-#: libprefs/prefs.cpp:1063 |
+#: libprefs/prefs.cpp:1078 |
msgid "Preferences::Minimum:" |
msgstr "" |
-#: libprefs/prefs.cpp:471 |
+#: libprefs/prefs.cpp:485 |
msgid "Preferences::Minor Grid Color:" |
msgstr "Gitterlinier:" |
-#: libprefs/prefs.cpp:418 |
+#: libprefs/prefs.cpp:432 |
msgid "Preferences::Minor Grid Spacing:" |
msgstr "Afstand mellem linier:" |
-#: libprefs/prefs.cpp:113 |
+#: libprefs/prefs.cpp:114 |
msgid "Preferences::Mouse-Settings" |
msgstr "Mus-indstillinger" |
-#: libprefs/prefs.cpp:1161 |
+#: libprefs/prefs.cpp:1176 |
msgid "Preferences::None" |
msgstr "Ingen" |
-#: libprefs/prefs.cpp:1480 |
+#: libprefs/prefs.cpp:1495 |
msgid "Preferences::OK" |
msgstr "" |
-#: libprefs/prefs.cpp:217 |
+#: libprefs/prefs.cpp:231 |
msgid "Preferences::Orientation:" |
msgstr "Retning:" |
-#: libprefs/prefs.cpp:1289 |
+#: libprefs/prefs.cpp:1304 |
msgid "Preferences::Other Options" |
msgstr "Andre indstillinger" |
-#: libprefs/prefs.cpp:655 |
+#: libprefs/prefs.cpp:669 |
msgid "Preferences::Other" |
msgstr "Andet" |
-#: libprefs/prefs.cpp:1581 |
+#: libprefs/prefs.cpp:1604 |
msgid "Preferences::Outside:" |
msgstr "Yderside:" |
-#: libprefs/prefs.cpp:209 |
+#: libprefs/prefs.cpp:223 |
msgid "Preferences::Page Size" |
msgstr "Sidestørrelse" |
-#: libprefs/prefs.cpp:1374 |
+#: libprefs/prefs.cpp:1389 |
msgid "Preferences::Page-Colors" |
msgstr "Sidefarver" |
-#: libprefs/prefs.cpp:171 |
+#: libprefs/prefs.cpp:172 |
msgid "Preferences::Paths" |
msgstr "Stier" |
-#: libprefs/prefs.cpp:107 |
+#: libprefs/prefs.cpp:108 |
msgid "Preferences::Picas (p)" |
msgstr "" |
-#: libprefs/prefs.cpp:532 |
+#: libprefs/prefs.cpp:546 |
msgid "Preferences::Placing" |
msgstr "Placering" |
-#: libprefs/prefs.cpp:104 |
+#: libprefs/prefs.cpp:105 |
msgid "Preferences::Points (pt)" |
msgstr "Punkter (pt)" |
-#: libprefs/prefs.cpp:256 |
+#: libprefs/prefs.cpp:270 |
msgid "Preferences::Portrait" |
msgstr "Portræt" |
-#: libprefs/prefs.cpp:35 |
+#: libprefs/prefs.cpp:36 |
msgid "Preferences::Preferences" |
msgstr "Præferencer" |
-#: libprefs/prefs.cpp:1306 |
+#: libprefs/prefs.cpp:1321 |
msgid "Preferences::Preview" |
msgstr "Vis" |
-#: libprefs/prefs.cpp:158 |
+#: libprefs/prefs.cpp:159 |
msgid "Preferences::Recent Documents:" |
msgstr "Nyeste dokumenter:" |
-#: libprefs/prefs.cpp:1587 |
+#: libprefs/prefs.cpp:1610 |
msgid "Preferences::Right:" |
msgstr "Højre:" |
-#: libprefs/prefs.cpp:1217 |
+#: libprefs/prefs.cpp:1232 |
msgid "Preferences::Rotation:" |
msgstr "" |
-#: libprefs/prefs.cpp:1299 |
+#: libprefs/prefs.cpp:1314 |
msgid "Preferences::Save Contents on Exit" |
msgstr "Gem indhold ved afslutning" |
-#: libprefs/prefs.cpp:1148 |
+#: libprefs/prefs.cpp:1163 |
msgid "Preferences::Scale Picture to Frame Size" |
msgstr "Skalér billede til rammestørrelse" |
-#: libprefs/prefs.cpp:643 |
+#: libprefs/prefs.cpp:657 |
msgid "Preferences::Scaling:" |
msgstr "Skalering:" |
-#: libprefs/prefs.cpp:50 |
+#: libprefs/prefs.cpp:51 |
msgid "Preferences::Scrapbook" |
msgstr "Scrapbog" |
-#: libprefs/prefs.cpp:1129 |
+#: libprefs/prefs.cpp:204 |
+msgid "Preferences::Scripts:" |
+msgstr "" |
+ |
+#: libprefs/prefs.cpp:1144 |
msgid "Preferences::Shading:" |
msgstr "Farvemætning:" |
-#: libprefs/prefs.cpp:1316 |
+#: libprefs/prefs.cpp:1331 |
msgid "Preferences::Size:" |
msgstr "Størrelse:" |
-#: libprefs/prefs.cpp:630 |
+#: libprefs/prefs.cpp:644 |
msgid "Preferences::Small Caps" |
msgstr "Små kapitaler" |
-#: libprefs/prefs.cpp:1320 |
+#: libprefs/prefs.cpp:1335 |
msgid "Preferences::Small" |
msgstr "Lille" |
-#: libprefs/prefs.cpp:1071 |
+#: libprefs/prefs.cpp:1086 |
msgid "Preferences::Stepping:" |
msgstr "Trin:" |
-#: libprefs/prefs.cpp:561 |
+#: libprefs/prefs.cpp:575 |
msgid "Preferences::Subscript" |
msgstr "Sænket skrift" |
-#: libprefs/prefs.cpp:596 |
+#: libprefs/prefs.cpp:610 |
msgid "Preferences::Superscript" |
msgstr "Hævet skrift" |
-#: libprefs/prefs.cpp:821 |
+#: libprefs/prefs.cpp:835 |
msgid "Preferences::Text Color:" |
msgstr "Tekst farve:" |
-#: libprefs/prefs.cpp:72 |
+#: libprefs/prefs.cpp:73 |
msgid "Preferences::Theme" |
msgstr "Tema" |
-#: libprefs/prefs.cpp:1442 |
-msgid "Preferences::To adjust the display drag the ruler below with the Slider." |
+#: libprefs/prefs.cpp:1457 |
+msgid "" |
+"Preferences::To adjust the display drag the ruler below with the Slider." |
msgstr "Indstil hvor meget 100% visning fylder på skærmen" |
-#: libprefs/prefs.cpp:49 |
+#: libprefs/prefs.cpp:50 |
msgid "Preferences::Tools" |
msgstr "Værktøjer" |
-#: libprefs/prefs.cpp:361 |
+#: libprefs/prefs.cpp:375 |
msgid "Preferences::Top:" |
msgstr "" |
-#: libprefs/prefs.cpp:48 |
+#: libprefs/prefs.cpp:49 |
msgid "Preferences::Typography" |
msgstr "Typografi" |
-#: libprefs/prefs.cpp:95 |
+#: libprefs/prefs.cpp:96 |
msgid "Preferences::Units" |
msgstr "Enheder" |
-#: libprefs/prefs.cpp:1430 |
+#: libprefs/prefs.cpp:1445 |
msgid "Preferences::Use PDF-1.4 Transparency Features" |
msgstr "Brug PDF-1.4 transparent egenskaber" |
-#: libprefs/prefs.cpp:511 |
+#: libprefs/prefs.cpp:525 |
msgid "Preferences::User Guides Color:" |
msgstr "Hjælpelinier:" |
-#: libprefs/prefs.cpp:1121 |
+#: libprefs/prefs.cpp:1136 |
msgid "Preferences::Vertical Scaling" |
msgstr "Vertical skalering" |
-#: libprefs/prefs.cpp:126 |
+#: libprefs/prefs.cpp:127 |
msgid "Preferences::Wheel-Jump" |
msgstr "Hjul-hop" |
-#: libprefs/prefs.cpp:272 |
+#: libprefs/prefs.cpp:286 |
msgid "Preferences::Width:" |
msgstr "Bredde:" |
-#: libprefs/prefs.cpp:840 |
+#: libprefs/prefs.cpp:1838 |
msgid "Preferences::Woven silk pyjamas exchanged for blue quartz" |
msgstr "Vævet silkepyjamas byttet med blå kvarts" |
-#: libprefs/prefs.cpp:391 |
+#: libprefs/prefs.cpp:405 |
msgid "Preferences::min" |
msgstr "" |
-# Tekst fra scriptplugin.cpp |
+#: plugins/libchar/charselect.cpp:231 |
+msgid "ZAuswahl::Clear" |
+msgstr "Slet" |
-#: scriptplugin.cpp:225 |
+#: plugins/libchar/charselect.cpp:237 |
+msgid "ZAuswahl::Close" |
+msgstr "Luk" |
+ |
+#: plugins/libchar/charselect.cpp:225 |
+msgid "ZAuswahl::Insert" |
+msgstr "Indsæt" |
+ |
+#: plugins/libchar/charselect.cpp:125 |
+msgid "ZAuswahl::Select Character:" |
+msgstr "Vælg tegn:" |
+ |
+#: plugins/printpreview/preview.cpp:187 |
+msgid "PPreview::All" |
+msgstr "Alle" |
+ |
+#: plugins/printpreview/preview.cpp:83 |
+msgid "PPreview::Anti-alias Graphics" |
+msgstr "Anti-alias Grafik" |
+ |
+#: plugins/printpreview/preview.cpp:79 |
+msgid "PPreview::Anti-alias Text" |
+msgstr "Anti-alias tekst" |
+ |
+#: plugins/printpreview/preview.cpp:54 |
+msgid "PPreview::Page:" |
+msgstr "Side:" |
+ |
+#: plugins/printpreview/preview.cpp:34 |
+msgid "PPreview::Print Preview" |
+msgstr "Vis udskrift" |
+ |
+#: plugins/scriptplugin/scriptplugin.cpp:206 |
msgid "MenuTest::Hide Console" |
msgstr "Skjul konsol" |
-#: scriptplugin.cpp:220 |
+#: plugins/scriptplugin/scriptplugin.cpp:201 |
msgid "MenuTest::Show Console" |
msgstr "Vis konsol" |
-#: scriptplugin.cpp:92 |
-msgid "QObject::About Scripter" |
-msgstr "Om Scripter" |
+#: plugins/scriptplugin/pconsole.cpp:10 |
+msgid "PConsole::Script Console" |
+msgstr "Script konsol" |
-#: scriptplugin.cpp:29 |
-msgid "QObject::About Scripter..." |
-msgstr "Om Scripter..." |
- |
-#: scriptplugin.cpp:64 |
+#: plugins/scriptplugin/scriptplugin.cpp:65 |
msgid "QObject::Execute Script..." |
msgstr "Udfør script..." |
-#: scriptplugin.cpp:108 |
+#: plugins/scriptplugin/scriptplugin.cpp:85 |
msgid "QObject::Online Reference" |
-msgstr "Reference" |
+msgstr "Scripter manual" |
-#: scriptplugin.cpp:68 |
-msgid "QObject::Online-Help" |
-msgstr "Hjælp" |
- |
-#: scriptplugin.cpp:115 |
+#: plugins/scriptplugin/scriptplugin.cpp:95 |
msgid "QObject::Open" |
msgstr "Åbn" |
-#: scriptplugin.cpp:65 |
+#: plugins/scriptplugin/scriptplugin.cpp:66 |
msgid "QObject::Recent Scripts" |
msgstr "Nyeste scripts" |
-#: scriptplugin.cpp:69 |
+#: plugins/scriptplugin/scriptplugin.cpp:68 |
msgid "QObject::Script" |
msgstr "Script" |
-#: scriptplugin.cpp:83 |
-msgid "QObject::Scripter" |
-msgstr "Scripter" |
+#: plugins/scriptplugin/scriptplugin.cpp:30 |
+msgid "QObject::Scripter Manual..." |
+msgstr "Scripter manual..." |
-#: scriptplugin.cpp:66 |
+#: plugins/scriptplugin/scriptplugin.cpp:67 |
msgid "QObject::Show Console" |
msgstr "Vis konsol" |
-# text from story |
+#: plugins/svgexplugin/svgexplugin.cpp:44 |
+msgid "QObject::No" |
+msgstr "Nej" |
-#: story.cpp:405 |
-msgid "StoryEditor::Block" |
-msgstr "Blok" |
+#: plugins/svgexplugin/svgexplugin.cpp:34 |
+msgid "QObject::Save as" |
+msgstr "Gem som" |
-#: story.cpp:403 |
-msgid "StoryEditor::Center" |
-msgstr "" |
+#: plugins/svgexplugin/svgexplugin.cpp:43 |
+msgid "QObject::Yes" |
+msgstr "Ja" |
-#: story.cpp:222 |
-msgid "StoryEditor::Clear" |
-msgstr "Slet" |
+# Diverse |
+msgid "Insert Special" |
+msgstr "Indsæt specialtegn" |
-#: story.cpp:220 |
-msgid "StoryEditor::Copy" |
-msgstr "Kopiér" |
+msgid "Print Preview" |
+msgstr "Vis udskrift" |
-#: story.cpp:219 |
-msgid "StoryEditor::Cut" |
-msgstr "Klip" |
+msgid "Append" |
+msgstr "Tilføj" |
-#: story.cpp:300 |
-msgid "StoryEditor::Do you really want to clear all your Text?" |
-msgstr "Ønsker du virkelig at slette hele din tekst" |
+msgid "Page" |
+msgstr "Side" |
-#: story.cpp:289 |
-msgid "StoryEditor::Do you really want to loose all your Changes?" |
-msgstr "Ønsker du virkelig at miste alle ændringer" |
+msgid "Background" |
+msgstr "Baggrund" |
-#: story.cpp:224 |
-msgid "StoryEditor::Edit Styles..." |
-msgstr "Redigér typografier..." |
+# Text in qt open-and save menues |
+msgid "Choose a Directory" |
+msgstr "Vælg en mappe" |
-#: story.cpp:228 |
-msgid "StoryEditor::Edit" |
-msgstr "Redigér" |
+msgid "Paths" |
+msgstr "Stier" |
-#: story.cpp:214 |
-msgid "StoryEditor::Exit without Saving" |
-msgstr "Afslut uden at gemme" |
+msgid "Documents:" |
+msgstr "Dokumenter:" |
-#: story.cpp:227 |
-msgid "StoryEditor::File" |
-msgstr "Fil" |
+msgid "One directory up" |
+msgstr "En mappe tilbage" |
-#: story.cpp:406 |
-msgid "StoryEditor::Forced" |
-msgstr "Tvunget" |
+msgid "Create New Folder" |
+msgstr "Lav ny mappe" |
-#: story.cpp:402 |
-msgid "StoryEditor::Left" |
-msgstr "Venstre" |
+msgid "List View" |
+msgstr "Vis liste" |
-#: story.cpp:211 |
-msgid "StoryEditor::New" |
-msgstr "Ny" |
+msgid "Detail View" |
+msgstr "Vis detaljer" |
-#: story.cpp:221 |
-msgid "StoryEditor::Paste" |
-msgstr "Indsæt" |
+msgid "Preview File Contents" |
+msgstr "Vis indhold af fil" |
-#: story.cpp:217 |
-msgid "StoryEditor::Redo" |
-msgstr "Lav igen" |
+msgid "Back" |
+msgstr "Tilbage" |
-#: story.cpp:404 |
-msgid "StoryEditor::Right" |
-msgstr "Højre" |
+msgid "Look &in:" |
+msgstr "Se &i:" |
-#: story.cpp:213 |
-msgid "StoryEditor::Save and Exit" |
-msgstr "Gem og afslut" |
+msgid "File &type:" |
+msgstr "Fil &type:" |
-#: story.cpp:191 |
-msgid "StoryEditor::Story Editor" |
-msgstr "Redigering af tekst" |
+msgid "File &name:" |
+msgstr "Fil &navn:" |
-#: story.cpp:232 |
-msgid "StoryEditor::Style" |
-msgstr "Typografi" |
+msgid "&Open" |
+msgstr "&Åbn" |
-#: story.cpp:233 |
-msgid "StoryEditor::Text" |
-msgstr "Tekst" |
+msgid "Cancel" |
+msgstr "Annullér" |
-#: story.cpp:216 |
-msgid "StoryEditor::Undo" |
-msgstr "Fortryd" |
+msgid "&Save" |
+msgstr "&Gem" |
-#: story.cpp:225 |
-msgid "StoryEditor::Update Textframe" |
-msgstr "Opdatér tekstramme" |
+msgid "&No" |
+msgstr "&Nej" |
-#: story.cpp:299 |
-msgid "StoryEditor::Warning" |
-msgstr "Advarsel" |
+msgid "&Yes" |
+msgstr "&Ja" |
-msgid "Edit Text..." |
-msgstr "Redigér tekst" |
+# Gad vide om de mangler !! |
+#~ msgid "ScribusApp::No" |
+#~ msgstr "Ingen" |
-msgid "Yes" |
-msgstr "Ja" |
+#~ msgid "ScribusApp::Yes" |
+#~ msgstr "Ja" |
-msgid "No" |
-msgstr "Nej" |
+#~ msgid "Tree::Item" |
+#~ msgstr "Emne" |
+ |
+#~ msgid "Select new Font:" |
+#~ msgstr "Vælg ny font:" |
+ |
+#~ msgid "Insert" |
+#~ msgstr "Indsæt" |
+ |
+#~ msgid "Clear" |
+#~ msgstr "Slet" |
+ |
+#~ msgid "Close" |
+#~ msgstr "Luk" |
+ |
+#~ msgid "Save Page as SVG..." |
+#~ msgstr "Gem side som SVG..." |
+ |
+#~ msgid "SVG-Images (*.svg);;All Files (*)" |
+#~ msgstr "SVG-billeder (*.svg);; Alle filer (*)" |
+ |
+#~ msgid "Shade:" |
+#~ msgstr "Farvemætning:" |
+ |
+#~ msgid "Shade" |
+#~ msgstr "Farvemætning" |
/trunk/Scribus/scribus/layers.cpp |
---|
8,8 → 8,10 |
****************************************************************************/ |
#include "layers.h" |
#include "layers.moc" |
#include "scribus.h" |
extern QPixmap loadIcon(QString nam); |
extern ScribusApp* ScApp; |
LayerPalette::LayerPalette(QWidget* parent) |
: QDialog( parent, "Layers", false, 0 ) |
181,6 → 183,7 |
*Activ = ll.LNr; |
MarkActiveLayer(*Activ); |
emit LayerActivated(*Activ); |
ScApp->slotDocCh(); |
} |
void LayerPalette::removeLayer() |
211,6 → 214,7 |
*Activ = 0; |
MarkActiveLayer(*Activ); |
emit LayerActivated(*Activ); |
ScApp->slotDocCh(); |
} |
void LayerPalette::upLayer() |
239,6 → 243,7 |
rebuildList(); |
emit LayerChanged(); |
MarkActiveLayer(*Activ); |
ScApp->slotDocCh(); |
} |
void LayerPalette::downLayer() |
267,12 → 272,16 |
rebuildList(); |
emit LayerChanged(); |
MarkActiveLayer(*Activ); |
ScApp->slotDocCh(); |
} |
void LayerPalette::changeName(int row, int col) |
{ |
if (col == 0) |
{ |
(*layers->at(layers->count()-row-1)).Name = Table->text(row, col); |
ScApp->slotDocCh(); |
} |
} |
void LayerPalette::visibleLayer() |
286,6 → 295,7 |
{ |
(*it).Sichtbar = FlagsSicht.at(l)->isChecked(); |
emit LayerChanged(); |
ScApp->slotDocCh(); |
} |
} |
} |
300,6 → 310,7 |
if ((*it).Level == num) |
{ |
(*it).Drucken = FlagsPrint.at(l)->isChecked(); |
ScApp->slotDocCh(); |
} |
} |
} |
/trunk/Scribus/scribus/qm/scribus.da.qm |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
/trunk/Scribus/scribus-1.1.4.pot |
---|
0,0 → 1,5684 |
# This is a Qt message file in .po format. Each msgid starts with |
# a scope. This scope should *NOT* be translated - eg. translating |
# from French to English, "Foo::Bar" would be translated to "Pub", |
# not "Foo::Pub". |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 1.1.4\n" |
"POT-Creation-Date: 2003-12-19 22:17:43 CET\n" |
"PO-Revision-Date: YYYY-MM-DD\n" |
"Last-Translator: FULLNAME <EMAIL@ADDRESS>\n" |
"Content-Type: text/plain; charset=iso-8859-1\n" |
#: scribus/druck.cpp:30 |
msgid "AdvOptions::Advanced Options" |
msgstr "" |
#: scribus/druck.cpp:47 |
msgid "AdvOptions::Apply ICC-Profiles" |
msgstr "" |
#: scribus/druck.cpp:64 |
msgid "AdvOptions::Cancel" |
msgstr "" |
#: scribus/druck.cpp:36 |
msgid "AdvOptions::Mirror Page(s) horizontal" |
msgstr "" |
#: scribus/druck.cpp:40 |
msgid "AdvOptions::Mirror Page(s) vertical" |
msgstr "" |
#: scribus/druck.cpp:59 |
msgid "AdvOptions::OK" |
msgstr "" |
#: scribus/align.cpp:113 |
msgid "Align:: in" |
msgstr "" |
#: scribus/align.cpp:109 |
msgid "Align:: mm" |
msgstr "" |
#: scribus/align.cpp:117 |
msgid "Align:: p" |
msgstr "" |
#: scribus/align.cpp:105 |
msgid "Align:: pts" |
msgstr "" |
#: scribus/align.cpp:92 |
msgid "Align::Align" |
msgstr "" |
#: scribus/align.cpp:147 |
msgid "Align::Apply" |
msgstr "" |
#: scribus/align.cpp:84 |
msgid "Align::Bottom Sides" |
msgstr "" |
#: scribus/align.cpp:152 |
msgid "Align::Cancel" |
msgstr "" |
#: scribus/align.cpp:95 |
msgid "Align::Displacement" |
msgstr "" |
#: scribus/align.cpp:128 |
msgid "Align::Distribute evenly" |
msgstr "" |
#: scribus/align.cpp:10 |
msgid "Align::Distribute/Align" |
msgstr "" |
#: scribus/align.cpp:88 |
msgid "Align::Don't change" |
msgstr "" |
#: scribus/align.cpp:19 |
msgid "Align::Horizontal" |
msgstr "" |
#: scribus/align.cpp:34 |
msgid "Align::Left Sides" |
msgstr "" |
#: scribus/align.cpp:83 |
msgid "Align::Middles" |
msgstr "" |
#: scribus/align.cpp:141 |
msgid "Align::OK" |
msgstr "" |
#: scribus/align.cpp:36 |
msgid "Align::Right Sides" |
msgstr "" |
#: scribus/align.cpp:82 |
msgid "Align::Top Sides" |
msgstr "" |
#: scribus/align.cpp:67 |
msgid "Align::Vertical" |
msgstr "" |
#: scribus/align.cpp:77 |
msgid "Align::between:" |
msgstr "" |
#: scribus/annot.cpp:630 |
msgid "Annot:: pt" |
msgstr "" |
#: scribus/annot.cpp:951 |
msgid "Annot::" |
msgstr "" |
#: scribus/annot.cpp:634 |
msgid "Annot::Action" |
msgstr "" |
#: scribus/annot.cpp:220 |
msgid "Annot::Appearance" |
msgstr "" |
#: scribus/annot.cpp:175 |
msgid "Annot::Beveled" |
msgstr "" |
#: scribus/annot.cpp:130 |
msgid "Annot::Border" |
msgstr "" |
#: scribus/annot.cpp:53 |
msgid "Annot::Button" |
msgstr "" |
#: scribus/annot.cpp:1008 |
msgid "Annot::Calculate" |
msgstr "" |
#: scribus/annot.cpp:1031 |
msgid "Annot::Cancel" |
msgstr "" |
#: scribus/annot.cpp:601 |
msgid "Annot::Change..." |
msgstr "" |
#: scribus/annot.cpp:415 |
msgid "Annot::Characters" |
msgstr "" |
#: scribus/annot.cpp:55 |
msgid "Annot::Check Box" |
msgstr "" |
#: scribus/annot.cpp:439 |
msgid "Annot::Check Style:" |
msgstr "" |
#: scribus/annot.cpp:442 |
msgid "Annot::Check" |
msgstr "" |
#: scribus/annot.cpp:445 |
msgid "Annot::Circle" |
msgstr "" |
#: scribus/annot.cpp:137 |
msgid "Annot::Color:" |
msgstr "" |
#: scribus/annot.cpp:56 |
msgid "Annot::Combo Box" |
msgstr "" |
#: scribus/annot.cpp:112 |
msgid "Annot::Courier Bold Italic" |
msgstr "" |
#: scribus/annot.cpp:110 |
msgid "Annot::Courier Bold" |
msgstr "" |
#: scribus/annot.cpp:111 |
msgid "Annot::Courier Italic" |
msgstr "" |
#: scribus/annot.cpp:109 |
msgid "Annot::Courier" |
msgstr "" |
#: scribus/annot.cpp:443 |
msgid "Annot::Cross" |
msgstr "" |
#: scribus/annot.cpp:834 |
msgid "Annot::Custom Scripts" |
msgstr "" |
#: scribus/annot.cpp:991 |
msgid "Annot::Custom calculation script:" |
msgstr "" |
#: scribus/annot.cpp:926 |
msgid "Annot::Custom validate script:" |
msgstr "" |
#: scribus/annot.cpp:663 |
msgid "Annot::Custom" |
msgstr "" |
#: scribus/annot.cpp:173 |
msgid "Annot::Dashed" |
msgstr "" |
#: scribus/annot.cpp:778 |
msgid "Annot::Date Format" |
msgstr "" |
#: scribus/annot.cpp:661 |
msgid "Annot::Date" |
msgstr "" |
#: scribus/annot.cpp:743 |
msgid "Annot::Decimals:" |
msgstr "" |
#: scribus/annot.cpp:456 |
msgid "Annot::Default is Checked" |
msgstr "" |
#: scribus/annot.cpp:585 |
msgid "Annot::Destination" |
msgstr "" |
#: scribus/annot.cpp:444 |
msgid "Annot::Diamond" |
msgstr "" |
#: scribus/annot.cpp:421 |
msgid "Annot::Do Not Scroll" |
msgstr "" |
#: scribus/annot.cpp:425 |
msgid "Annot::Do Not Spell Check" |
msgstr "" |
#: scribus/annot.cpp:202 |
msgid "Annot::Don't Export Value" |
msgstr "" |
#: scribus/annot.cpp:1004 |
msgid "Annot::Edit..." |
msgstr "" |
#: scribus/annot.cpp:469 |
msgid "Annot::Editable" |
msgstr "" |
#: scribus/annot.cpp:1085 |
msgid "Annot::Enter a comma separated list of fields here" |
msgstr "" |
#: scribus/annot.cpp:517 |
msgid "Annot::Event:" |
msgstr "" |
#: scribus/annot.cpp:1339 |
msgid "Annot::Example:" |
msgstr "" |
#: scribus/annot.cpp:19 |
msgid "Annot::Field Properties" |
msgstr "" |
#: scribus/annot.cpp:655 |
msgid "Annot::Field is formatted as:" |
msgstr "" |
#: scribus/annot.cpp:1084 |
msgid "Annot::Flag is ignored for PDF-1.3" |
msgstr "" |
#: scribus/annot.cpp:106 |
msgid "Annot::Font for use with PDF-1.3:" |
msgstr "" |
#: scribus/annot.cpp:887 |
msgid "Annot::Format" |
msgstr "" |
#: scribus/annot.cpp:843 |
msgid "Annot::Format:" |
msgstr "" |
#: scribus/annot.cpp:754 |
msgid "Annot::Formatting" |
msgstr "" |
#: scribus/annot.cpp:1926 |
msgid "Annot::Go To" |
msgstr "" |
#: scribus/annot.cpp:116 |
msgid "Annot::Helvetica Bold Italic" |
msgstr "" |
#: scribus/annot.cpp:114 |
msgid "Annot::Helvetica Bold" |
msgstr "" |
#: scribus/annot.cpp:115 |
msgid "Annot::Helvetica Italic" |
msgstr "" |
#: scribus/annot.cpp:113 |
msgid "Annot::Helvetica" |
msgstr "" |
#: scribus/annot.cpp:212 |
msgid "Annot::Hidden" |
msgstr "" |
#: scribus/annot.cpp:364 |
msgid "Annot::Highlight" |
msgstr "" |
#: scribus/annot.cpp:317 |
msgid "Annot::Icon Placement..." |
msgstr "" |
#: scribus/annot.cpp:254 |
msgid "Annot::Icons" |
msgstr "" |
#: scribus/annot.cpp:1231 |
msgid "Annot::Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)" |
msgstr "" |
#: scribus/annot.cpp:574 |
msgid "Annot::Import Data from:" |
msgstr "" |
#: scribus/annot.cpp:1929 |
msgid "Annot::Import Data" |
msgstr "" |
#: scribus/annot.cpp:176 |
msgid "Annot::Inset" |
msgstr "" |
#: scribus/annot.cpp:372 |
msgid "Annot::Invert" |
msgstr "" |
#: scribus/annot.cpp:1961 |
msgid "Annot::Java Script" |
msgstr "" |
#: scribus/annot.cpp:864 |
msgid "Annot::Keystroke:" |
msgstr "" |
#: scribus/annot.cpp:398 |
msgid "Annot::Limit of" |
msgstr "" |
#: scribus/annot.cpp:57 |
msgid "Annot::List Box" |
msgstr "" |
#: scribus/annot.cpp:1906 |
msgid "Annot::Mouse Down" |
msgstr "" |
#: scribus/annot.cpp:1907 |
msgid "Annot::Mouse Enter" |
msgstr "" |
#: scribus/annot.cpp:1908 |
msgid "Annot::Mouse Exit" |
msgstr "" |
#: scribus/annot.cpp:1905 |
msgid "Annot::Mouse Up" |
msgstr "" |
#: scribus/annot.cpp:389 |
msgid "Annot::Multi-Line" |
msgstr "" |
#: scribus/annot.cpp:77 |
msgid "Annot::Name:" |
msgstr "" |
#: scribus/annot.cpp:213 |
msgid "Annot::No Print" |
msgstr "" |
#: scribus/annot.cpp:214 |
msgid "Annot::No View" |
msgstr "" |
#: scribus/annot.cpp:1960 |
msgid "Annot::None" |
msgstr "" |
#: scribus/annot.cpp:268 |
msgid "Annot::Normal" |
msgstr "" |
#: scribus/annot.cpp:678 |
msgid "Annot::Number Format" |
msgstr "" |
#: scribus/annot.cpp:659 |
msgid "Annot::Number" |
msgstr "" |
#: scribus/annot.cpp:1027 |
msgid "Annot::OK" |
msgstr "" |
#: scribus/annot.cpp:1910 |
msgid "Annot::On Blur" |
msgstr "" |
#: scribus/annot.cpp:1909 |
msgid "Annot::On Focus" |
msgstr "" |
#: scribus/annot.cpp:2107 |
msgid "Annot::Open" |
msgstr "" |
#: scribus/annot.cpp:476 |
msgid "Annot::Options" |
msgstr "" |
#: scribus/annot.cpp:183 |
msgid "Annot::Other" |
msgstr "" |
#: scribus/annot.cpp:373 |
msgid "Annot::Outlined" |
msgstr "" |
#: scribus/annot.cpp:2107 |
msgid "Annot::PDF-Documents (*.pdf);;All Files (*)" |
msgstr "" |
#: scribus/annot.cpp:604 |
msgid "Annot::Page:" |
msgstr "" |
#: scribus/annot.cpp:393 |
msgid "Annot::Password" |
msgstr "" |
#: scribus/annot.cpp:735 |
msgid "Annot::Percent Format" |
msgstr "" |
#: scribus/annot.cpp:660 |
msgid "Annot::Percentage" |
msgstr "" |
#: scribus/annot.cpp:986 |
msgid "Annot::Pick..." |
msgstr "" |
#: scribus/annot.cpp:658 |
msgid "Annot::Plain" |
msgstr "" |
#: scribus/annot.cpp:707 |
msgid "Annot::Prepend Currency Symbol" |
msgstr "" |
#: scribus/annot.cpp:284 |
msgid "Annot::Pressed" |
msgstr "" |
#: scribus/annot.cpp:68 |
msgid "Annot::Properties" |
msgstr "" |
#: scribus/annot.cpp:374 |
msgid "Annot::Push" |
msgstr "" |
#: scribus/annot.cpp:190 |
msgid "Annot::Read Only" |
msgstr "" |
#: scribus/annot.cpp:310 |
msgid "Annot::Remove" |
msgstr "" |
#: scribus/annot.cpp:196 |
msgid "Annot::Required" |
msgstr "" |
#: scribus/annot.cpp:1928 |
msgid "Annot::Reset Form" |
msgstr "" |
#: scribus/annot.cpp:300 |
msgid "Annot::Roll Over" |
msgstr "" |
#: scribus/annot.cpp:532 |
msgid "Annot::Script:" |
msgstr "" |
#: scribus/annot.cpp:1952 |
msgid "Annot::Selection Change" |
msgstr "" |
#: scribus/annot.cpp:172 |
msgid "Annot::Solid" |
msgstr "" |
#: scribus/annot.cpp:447 |
msgid "Annot::Square" |
msgstr "" |
#: scribus/annot.cpp:446 |
msgid "Annot::Star" |
msgstr "" |
#: scribus/annot.cpp:169 |
msgid "Annot::Style:" |
msgstr "" |
#: scribus/annot.cpp:563 |
msgid "Annot::Submit Data as HTML" |
msgstr "" |
#: scribus/annot.cpp:1927 |
msgid "Annot::Submit Form" |
msgstr "" |
#: scribus/annot.cpp:555 |
msgid "Annot::Submit to URL:" |
msgstr "" |
#: scribus/annot.cpp:122 |
msgid "Annot::Symbol" |
msgstr "" |
#: scribus/annot.cpp:54 |
msgid "Annot::Text Field" |
msgstr "" |
#: scribus/annot.cpp:240 |
msgid "Annot::Text for Button Down" |
msgstr "" |
#: scribus/annot.cpp:243 |
msgid "Annot::Text for Roll Over" |
msgstr "" |
#: scribus/annot.cpp:233 |
msgid "Annot::Text" |
msgstr "" |
#: scribus/annot.cpp:162 |
msgid "Annot::Thin" |
msgstr "" |
#: scribus/annot.cpp:811 |
msgid "Annot::Time Format" |
msgstr "" |
#: scribus/annot.cpp:662 |
msgid "Annot::Time" |
msgstr "" |
#: scribus/annot.cpp:120 |
msgid "Annot::Times Bold Italic" |
msgstr "" |
#: scribus/annot.cpp:118 |
msgid "Annot::Times Bold" |
msgstr "" |
#: scribus/annot.cpp:119 |
msgid "Annot::Times Italic" |
msgstr "" |
#: scribus/annot.cpp:117 |
msgid "Annot::Times" |
msgstr "" |
#: scribus/annot.cpp:594 |
msgid "Annot::To File:" |
msgstr "" |
#: scribus/annot.cpp:89 |
msgid "Annot::Tool-Tip:" |
msgstr "" |
#: scribus/annot.cpp:484 |
msgid "Annot::Type:" |
msgstr "" |
#: scribus/annot.cpp:174 |
msgid "Annot::Underline" |
msgstr "" |
#: scribus/annot.cpp:698 |
msgid "Annot::Use Currency Symbol" |
msgstr "" |
#: scribus/annot.cpp:261 |
msgid "Annot::Use Icons" |
msgstr "" |
#: scribus/annot.cpp:944 |
msgid "Annot::Validate" |
msgstr "" |
#: scribus/annot.cpp:959 |
msgid "Annot::Value is not calculated" |
msgstr "" |
#: scribus/annot.cpp:902 |
msgid "Annot::Value is not validated" |
msgstr "" |
#: scribus/annot.cpp:966 |
msgid "Annot::Value is the" |
msgstr "" |
#: scribus/annot.cpp:909 |
msgid "Annot::Value must be greater than or equal to:" |
msgstr "" |
#: scribus/annot.cpp:208 |
msgid "Annot::Visibility:" |
msgstr "" |
#: scribus/annot.cpp:211 |
msgid "Annot::Visible" |
msgstr "" |
#: scribus/annot.cpp:164 |
msgid "Annot::Wide" |
msgstr "" |
#: scribus/annot.cpp:158 |
msgid "Annot::Width:" |
msgstr "" |
#: scribus/annot.cpp:618 |
msgid "Annot::X-Pos:" |
msgstr "" |
#: scribus/annot.cpp:626 |
msgid "Annot::Y-Pos:" |
msgstr "" |
#: scribus/annot.cpp:1086 |
msgid "Annot::You need at least the Icon for Normal to use Icons for Buttons" |
msgstr "" |
#: scribus/annot.cpp:121 |
msgid "Annot::Zapf Dingbats" |
msgstr "" |
#: scribus/annot.cpp:913 |
msgid "Annot::and less or equal to:" |
msgstr "" |
#: scribus/annot.cpp:972 |
msgid "Annot::average" |
msgstr "" |
#: scribus/annot.cpp:974 |
msgid "Annot::maximum" |
msgstr "" |
#: scribus/annot.cpp:973 |
msgid "Annot::minimum" |
msgstr "" |
#: scribus/annot.cpp:978 |
msgid "Annot::of the following fields:" |
msgstr "" |
#: scribus/annot.cpp:971 |
msgid "Annot::product" |
msgstr "" |
#: scribus/annot.cpp:970 |
msgid "Annot::sum" |
msgstr "" |
#: scribus/annota.cpp:112 |
msgid "Annota:: pt" |
msgstr "" |
#: scribus/annota.cpp:12 |
msgid "Annota::Annotation Properties" |
msgstr "" |
#: scribus/annota.cpp:133 |
msgid "Annota::Cancel" |
msgstr "" |
#: scribus/annota.cpp:76 |
msgid "Annota::Change..." |
msgstr "" |
#: scribus/annota.cpp:62 |
msgid "Annota::Destination" |
msgstr "" |
#: scribus/annota.cpp:48 |
msgid "Annota::External Link" |
msgstr "" |
#: scribus/annota.cpp:49 |
msgid "Annota::External Web-Link" |
msgstr "" |
#: scribus/annota.cpp:47 |
msgid "Annota::Link" |
msgstr "" |
#: scribus/annota.cpp:129 |
msgid "Annota::OK" |
msgstr "" |
#: scribus/annota.cpp:317 |
msgid "Annota::Open" |
msgstr "" |
#: scribus/annota.cpp:317 |
msgid "Annota::PDF-Documents (*.pdf);;All Files (*)" |
msgstr "" |
#: scribus/annota.cpp:85 |
msgid "Annota::Page:" |
msgstr "" |
#: scribus/annota.cpp:46 |
msgid "Annota::Text" |
msgstr "" |
#: scribus/annota.cpp:42 |
msgid "Annota::Type:" |
msgstr "" |
#: scribus/annota.cpp:100 |
msgid "Annota::X-Pos:" |
msgstr "" |
#: scribus/annota.cpp:108 |
msgid "Annota::Y-Pos:" |
msgstr "" |
#: scribus/applytemplate.cpp:8 |
msgid "ApplyT::Apply Template" |
msgstr "" |
#: scribus/applytemplate.cpp:53 |
msgid "ApplyT::Apply from Page:" |
msgstr "" |
#: scribus/applytemplate.cpp:48 |
msgid "ApplyT::Apply to Actual Page" |
msgstr "" |
#: scribus/applytemplate.cpp:85 |
msgid "ApplyT::Cancel" |
msgstr "" |
#: scribus/applytemplate.cpp:28 |
msgid "ApplyT::Normal" |
msgstr "" |
#: scribus/applytemplate.cpp:79 |
msgid "ApplyT::OK" |
msgstr "" |
#: scribus/applytemplate.cpp:13 |
msgid "ApplyT::Template:" |
msgstr "" |
#: scribus/applytemplate.cpp:61 |
msgid "ApplyT::to:" |
msgstr "" |
#: scribus/scrap.cpp:134 |
msgid "Biblio::Big" |
msgstr "" |
#: scribus/scrap.cpp:130 |
msgid "Biblio::Close" |
msgstr "" |
#: scribus/scrap.cpp:263 |
msgid "Biblio::Delete" |
msgstr "" |
#: scribus/scrap.cpp:148 |
msgid "Biblio::File" |
msgstr "" |
#: scribus/scrap.cpp:129 |
msgid "Biblio::Load..." |
msgstr "" |
#: scribus/scrap.cpp:133 |
msgid "Biblio::Medium" |
msgstr "" |
#: scribus/scrap.cpp:126 |
msgid "Biblio::New" |
msgstr "" |
#: scribus/scrap.cpp:326 |
msgid "Biblio::Object" |
msgstr "" |
#: scribus/scrap.cpp:149 |
msgid "Biblio::Preview" |
msgstr "" |
#: scribus/scrap.cpp:128 |
msgid "Biblio::Save as..." |
msgstr "" |
#: scribus/scrap.cpp:127 |
msgid "Biblio::Save" |
msgstr "" |
#: scribus/scrap.cpp:277 |
msgid "Biblio::Scrapbook" |
msgstr "" |
#: scribus/scrap.cpp:208 |
msgid "Biblio::Scrapbooks (*.scs);;All Files (*)" |
msgstr "" |
#: scribus/scrap.cpp:132 |
msgid "Biblio::Small" |
msgstr "" |
#: scribus/bookmwin.cpp:95 |
msgid "BookMView::Bookmarks" |
msgstr "" |
#: scribus/bookmwin.cpp:184 |
msgid "BookMView::Cancel" |
msgstr "" |
#: scribus/bookmwin.cpp:183 |
msgid "BookMView::Insert Bookmark" |
msgstr "" |
#: scribus/bookmwin.cpp:182 |
msgid "BookMView::Move Bookmark" |
msgstr "" |
#: scribus/bookpalette.cpp:12 |
msgid "BookPalette::Bookmarks" |
msgstr "" |
#: scribus/buttonicon.cpp:54 |
msgid "ButtonIcon::" |
msgstr "" |
#: scribus/buttonicon.cpp:30 |
msgid "ButtonIcon::Always" |
msgstr "" |
#: scribus/buttonicon.cpp:88 |
msgid "ButtonIcon::Cancel" |
msgstr "" |
#: scribus/buttonicon.cpp:20 |
msgid "ButtonIcon::Caption above Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:19 |
msgid "ButtonIcon::Caption below Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:22 |
msgid "ButtonIcon::Caption left to Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:17 |
msgid "ButtonIcon::Caption only" |
msgstr "" |
#: scribus/buttonicon.cpp:23 |
msgid "ButtonIcon::Caption overlays Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:21 |
msgid "ButtonIcon::Caption right to Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:9 |
msgid "ButtonIcon::Icon Placement" |
msgstr "" |
#: scribus/buttonicon.cpp:18 |
msgid "ButtonIcon::Icon only" |
msgstr "" |
#: scribus/buttonicon.cpp:60 |
msgid "ButtonIcon::Icon" |
msgstr "" |
#: scribus/buttonicon.cpp:14 |
msgid "ButtonIcon::Layout:" |
msgstr "" |
#: scribus/buttonicon.cpp:33 |
msgid "ButtonIcon::Never" |
msgstr "" |
#: scribus/buttonicon.cpp:41 |
msgid "ButtonIcon::Non Proportional" |
msgstr "" |
#: scribus/buttonicon.cpp:84 |
msgid "ButtonIcon::OK" |
msgstr "" |
#: scribus/buttonicon.cpp:40 |
msgid "ButtonIcon::Proportional" |
msgstr "" |
#: scribus/buttonicon.cpp:91 |
msgid "ButtonIcon::Reset" |
msgstr "" |
#: scribus/buttonicon.cpp:37 |
msgid "ButtonIcon::Scale How:" |
msgstr "" |
#: scribus/buttonicon.cpp:27 |
msgid "ButtonIcon::Scale:" |
msgstr "" |
#: scribus/buttonicon.cpp:32 |
msgid "ButtonIcon::When Icon is too big" |
msgstr "" |
#: scribus/buttonicon.cpp:31 |
msgid "ButtonIcon::When Icon is too small" |
msgstr "" |
#: scribus/cmsprefs.cpp:142 |
msgid "CMSPrefs::Absolute Colorimetric" |
msgstr "" |
#: scribus/cmsprefs.cpp:19 |
msgid "CMSPrefs::Activate Color Management" |
msgstr "" |
#: scribus/cmsprefs.cpp:185 |
msgid "CMSPrefs::Cancel" |
msgstr "" |
#: scribus/cmsprefs.cpp:10 |
msgid "CMSPrefs::Color Management Settings" |
msgstr "" |
#: scribus/cmsprefs.cpp:157 |
msgid "CMSPrefs::Mark Colors out of Gamut" |
msgstr "" |
#: scribus/cmsprefs.cpp:120 |
msgid "CMSPrefs::Monitor:" |
msgstr "" |
#: scribus/cmsprefs.cpp:178 |
msgid "CMSPrefs::OK" |
msgstr "" |
#: scribus/cmsprefs.cpp:139 |
msgid "CMSPrefs::Perceptual" |
msgstr "" |
#: scribus/cmsprefs.cpp:36 |
msgid "CMSPrefs::Pictures:" |
msgstr "" |
#: scribus/cmsprefs.cpp:124 |
msgid "CMSPrefs::Printer:" |
msgstr "" |
#: scribus/cmsprefs.cpp:140 |
msgid "CMSPrefs::Relative Colorimetric" |
msgstr "" |
#: scribus/cmsprefs.cpp:110 |
msgid "CMSPrefs::Rendering Intents" |
msgstr "" |
#: scribus/cmsprefs.cpp:141 |
msgid "CMSPrefs::Saturation" |
msgstr "" |
#: scribus/cmsprefs.cpp:152 |
msgid "CMSPrefs::Simulate Printer on the Screen" |
msgstr "" |
#: scribus/cmsprefs.cpp:40 |
msgid "CMSPrefs::Solid Colors:" |
msgstr "" |
#: scribus/cmsprefs.cpp:26 |
msgid "CMSPrefs::System Profiles" |
msgstr "" |
#: scribus/cmsprefs.cpp:162 |
msgid "CMSPrefs::Use Blackpoint Compensation" |
msgstr "" |
#: scribus/cmykfw.cpp:104 |
msgid "CMYKChoose::" |
msgstr "" |
#: scribus/cmykfw.cpp:467 |
msgid "CMYKChoose::B:" |
msgstr "" |
#: scribus/cmykfw.cpp:447 |
msgid "CMYKChoose::C:" |
msgstr "" |
#: scribus/cmykfw.cpp:443 |
msgid "CMYKChoose::CMYK" |
msgstr "" |
#: scribus/cmykfw.cpp:121 |
msgid "CMYKChoose::Cancel" |
msgstr "" |
#: scribus/cmykfw.cpp:54 |
msgid "CMYKChoose::Color Model" |
msgstr "" |
#: scribus/cmykfw.cpp:313 |
msgid "CMYKChoose::Dynamic Color Bars" |
msgstr "" |
#: scribus/cmykfw.cpp:31 |
msgid "CMYKChoose::Edit Color" |
msgstr "" |
#: scribus/cmykfw.cpp:466 |
msgid "CMYKChoose::G:" |
msgstr "" |
#: scribus/cmykfw.cpp:253 |
msgid "CMYKChoose::K:" |
msgstr "" |
#: scribus/cmykfw.cpp:448 |
msgid "CMYKChoose::M:" |
msgstr "" |
#: scribus/cmykfw.cpp:42 |
msgid "CMYKChoose::Name:" |
msgstr "" |
#: scribus/cmykfw.cpp:76 |
msgid "CMYKChoose::New" |
msgstr "" |
#: scribus/cmykfw.cpp:117 |
msgid "CMYKChoose::OK" |
msgstr "" |
#: scribus/cmykfw.cpp:95 |
msgid "CMYKChoose::Old" |
msgstr "" |
#: scribus/cmykfw.cpp:465 |
msgid "CMYKChoose::R:" |
msgstr "" |
#: scribus/cmykfw.cpp:60 |
msgid "CMYKChoose::RGB" |
msgstr "" |
#: scribus/cmykfw.cpp:314 |
msgid "CMYKChoose::Static Color Bars" |
msgstr "" |
#: scribus/cmykfw.cpp:61 |
msgid "CMYKChoose::Web Safe RGB" |
msgstr "" |
#: scribus/cmykfw.cpp:475 |
msgid "CMYKChoose::Websave RGB" |
msgstr "" |
#: scribus/cmykfw.cpp:449 |
msgid "CMYKChoose::Y:" |
msgstr "" |
#: scribus/cpalette.cpp:109 |
msgid "Cpalette:: %" |
msgstr "" |
#: scribus/cpalette.cpp:71 |
msgid "Cpalette::Cross Diagonal Gradient" |
msgstr "" |
#: scribus/cpalette.cpp:70 |
msgid "Cpalette::Diagonal Gradient" |
msgstr "" |
#: scribus/cpalette.cpp:68 |
msgid "Cpalette::Horizontal Gradient" |
msgstr "" |
#: scribus/cpalette.cpp:180 |
msgid "Cpalette::None" |
msgstr "" |
#: scribus/cpalette.cpp:67 |
msgid "Cpalette::Normal" |
msgstr "" |
#: scribus/cpalette.cpp:103 |
msgid "Cpalette::Opacity:" |
msgstr "" |
#: scribus/cpalette.cpp:40 |
msgid "Cpalette::Other..." |
msgstr "" |
#: scribus/cpalette.cpp:72 |
msgid "Cpalette::Radial Gradient" |
msgstr "" |
#: scribus/cpalette.cpp:69 |
msgid "Cpalette::Vertical Gradient" |
msgstr "" |
#: scribus/cupsoptions.cpp:108 |
msgid "CupsOptions::All Pages" |
msgstr "" |
#: scribus/cupsoptions.cpp:171 |
msgid "CupsOptions::Cancel" |
msgstr "" |
#: scribus/cupsoptions.cpp:105 |
msgid "CupsOptions::Even Pages only" |
msgstr "" |
#: scribus/cupsoptions.cpp:132 |
msgid "CupsOptions::Landscape" |
msgstr "" |
#: scribus/cupsoptions.cpp:111 |
msgid "CupsOptions::Mirror" |
msgstr "" |
#: scribus/cupsoptions.cpp:137 |
msgid "CupsOptions::N-Up Printing" |
msgstr "" |
#: scribus/cupsoptions.cpp:121 |
msgid "CupsOptions::No" |
msgstr "" |
#: scribus/cupsoptions.cpp:166 |
msgid "CupsOptions::OK" |
msgstr "" |
#: scribus/cupsoptions.cpp:106 |
msgid "CupsOptions::Odd Pages only" |
msgstr "" |
#: scribus/cupsoptions.cpp:37 |
msgid "CupsOptions::Option" |
msgstr "" |
#: scribus/cupsoptions.cpp:124 |
msgid "CupsOptions::Orientation" |
msgstr "" |
#: scribus/cupsoptions.cpp:97 |
msgid "CupsOptions::Page Set" |
msgstr "" |
#: scribus/cupsoptions.cpp:151 |
msgid "CupsOptions::Page per Sheet" |
msgstr "" |
#: scribus/cupsoptions.cpp:149 |
msgid "CupsOptions::Pages per Sheet" |
msgstr "" |
#: scribus/cupsoptions.cpp:134 |
msgid "CupsOptions::Portrait" |
msgstr "" |
#: scribus/cupsoptions.cpp:23 |
msgid "CupsOptions::Printer Options" |
msgstr "" |
#: scribus/cupsoptions.cpp:38 |
msgid "CupsOptions::Value" |
msgstr "" |
#: scribus/cupsoptions.cpp:119 |
msgid "CupsOptions::Yes" |
msgstr "" |
#: scribus/customfdialog.cpp:170 |
msgid "CustomFDialog::Compress File" |
msgstr "" |
#: scribus/customfdialog.cpp:190 |
msgid "CustomFDialog::Encoding:" |
msgstr "" |
#: scribus/customfdialog.cpp:245 |
msgid "CustomFDialog::Moves to your Document Directory.\nThis can be set in the Preferences." |
msgstr "" |
#: scribus/dcolor.cpp:28 |
msgid "DelColor::?" |
msgstr "" |
#: scribus/dcolor.cpp:58 |
msgid "DelColor::Cancel" |
msgstr "" |
#: scribus/dcolor.cpp:13 |
msgid "DelColor::Delete Color" |
msgstr "" |
#: scribus/dcolor.cpp:22 |
msgid "DelColor::OK to delete Color:" |
msgstr "" |
#: scribus/dcolor.cpp:53 |
msgid "DelColor::OK" |
msgstr "" |
#: scribus/dcolor.cpp:31 |
msgid "DelColor::Replace it with:" |
msgstr "" |
#: scribus/delpages.cpp:45 |
msgid "DelPages::Cancel" |
msgstr "" |
#: scribus/delpages.cpp:10 |
msgid "DelPages::Delete Pages" |
msgstr "" |
#: scribus/delpages.cpp:19 |
msgid "DelPages::Delete from:" |
msgstr "" |
#: scribus/delpages.cpp:39 |
msgid "DelPages::OK" |
msgstr "" |
#: scribus/delpages.cpp:27 |
msgid "DelPages::to:" |
msgstr "" |
#: scribus/missing.cpp:111 |
msgid "DmF::Cancel" |
msgstr "" |
#: scribus/missing.cpp:69 |
msgid "DmF::Missing Font" |
msgstr "" |
#: scribus/missing.cpp:115 |
msgid "DmF::OK" |
msgstr "" |
#: scribus/missing.cpp:71 |
msgid "DmF::Select Font" |
msgstr "" |
#: scribus/missing.cpp:83 |
msgid "DmF::Select New Font:" |
msgstr "" |
#: scribus/missing.cpp:81 |
msgid "DmF::The Font %1 is not installed." |
msgstr "" |
#: scribus/missing.cpp:94 |
msgid "DmF::Use" |
msgstr "" |
#: scribus/missing.cpp:103 |
msgid "DmF::instead" |
msgstr "" |
#: scribus/docinfo.cpp:22 |
msgid "DocInfos::Author:" |
msgstr "" |
#: scribus/docinfo.cpp:65 |
msgid "DocInfos::Cancel" |
msgstr "" |
#: scribus/docinfo.cpp:38 |
msgid "DocInfos::Description:" |
msgstr "" |
#: scribus/docinfo.cpp:12 |
msgid "DocInfos::Document Info" |
msgstr "" |
#: scribus/docinfo.cpp:47 |
msgid "DocInfos::Keywords:" |
msgstr "" |
#: scribus/docinfo.cpp:59 |
msgid "DocInfos::OK" |
msgstr "" |
#: scribus/docinfo.cpp:30 |
msgid "DocInfos::Title:" |
msgstr "" |
#: scribus/druck.cpp:318 |
msgid "Druck::" |
msgstr "" |
#: scribus/druck.cpp:371 |
msgid "Druck::Advanced Options..." |
msgstr "" |
#: scribus/druck.cpp:338 |
msgid "Druck::All" |
msgstr "" |
#: scribus/druck.cpp:187 |
msgid "Druck::Alternative Printer Command" |
msgstr "" |
#: scribus/druck.cpp:388 |
msgid "Druck::Cancel" |
msgstr "" |
#: scribus/druck.cpp:180 |
msgid "Druck::Change..." |
msgstr "" |
#: scribus/druck.cpp:194 |
msgid "Druck::Command:" |
msgstr "" |
#: scribus/druck.cpp:525 |
msgid "Druck::File" |
msgstr "" |
#: scribus/druck.cpp:171 |
msgid "Druck::File:" |
msgstr "" |
#: scribus/druck.cpp:251 |
msgid "Druck::From page:" |
msgstr "" |
#: scribus/druck.cpp:290 |
msgid "Druck::Number of copies:" |
msgstr "" |
#: scribus/druck.cpp:384 |
msgid "Druck::OK" |
msgstr "" |
#: scribus/druck.cpp:306 |
msgid "Druck::Options" |
msgstr "" |
#: scribus/druck.cpp:160 |
msgid "Druck::Options..." |
msgstr "" |
#: scribus/druck.cpp:552 |
msgid "Druck::Postscript-Files (*.ps);;All Files (*)" |
msgstr "" |
#: scribus/druck.cpp:328 |
msgid "Druck::Print Normal" |
msgstr "" |
#: scribus/druck.cpp:333 |
msgid "Druck::Print Separations" |
msgstr "" |
#: scribus/druck.cpp:261 |
msgid "Druck::Print all" |
msgstr "" |
#: scribus/druck.cpp:87 |
msgid "Druck::Print destination" |
msgstr "" |
#: scribus/druck.cpp:284 |
msgid "Druck::Print first page first" |
msgstr "" |
#: scribus/druck.cpp:360 |
msgid "Druck::Print in color if available" |
msgstr "" |
#: scribus/druck.cpp:365 |
msgid "Druck::Print in grayscale" |
msgstr "" |
#: scribus/druck.cpp:279 |
msgid "Druck::Print last page first" |
msgstr "" |
#: scribus/druck.cpp:256 |
msgid "Druck::Print range" |
msgstr "" |
#: scribus/druck.cpp:206 |
msgid "Druck::Range:" |
msgstr "" |
#: scribus/druck.cpp:552 |
msgid "Druck::Save as" |
msgstr "" |
#: scribus/druck.cpp:80 |
msgid "Druck::Setup Printer" |
msgstr "" |
#: scribus/druck.cpp:228 |
msgid "Druck::To page:" |
msgstr "" |
#: scribus/edit1format.cpp:181 |
msgid "EditStyle:: pt" |
msgstr "" |
#: scribus/edit1format.cpp:196 |
msgid "EditStyle::Above:" |
msgstr "" |
#: scribus/edit1format.cpp:102 |
msgid "EditStyle::Alignment" |
msgstr "" |
#: scribus/edit1format.cpp:201 |
msgid "EditStyle::Below:" |
msgstr "" |
#: scribus/edit1format.cpp:125 |
msgid "EditStyle::Block" |
msgstr "" |
#: scribus/edit1format.cpp:217 |
msgid "EditStyle::Cancel" |
msgstr "" |
#: scribus/edit1format.cpp:121 |
msgid "EditStyle::Center" |
msgstr "" |
#: scribus/edit1format.cpp:28 |
msgid "EditStyle::Character" |
msgstr "" |
#: scribus/edit1format.cpp:9 |
msgid "EditStyle::Edit Style" |
msgstr "" |
#: scribus/edit1format.cpp:36 |
msgid "EditStyle::Face:" |
msgstr "" |
#: scribus/edit1format.cpp:81 |
msgid "EditStyle::First Line:" |
msgstr "" |
#: scribus/edit1format.cpp:129 |
msgid "EditStyle::Forced" |
msgstr "" |
#: scribus/edit1format.cpp:65 |
msgid "EditStyle::Indentation" |
msgstr "" |
#: scribus/edit1format.cpp:76 |
msgid "EditStyle::Left Indent:" |
msgstr "" |
#: scribus/edit1format.cpp:112 |
msgid "EditStyle::Left" |
msgstr "" |
#: scribus/edit1format.cpp:191 |
msgid "EditStyle::Line Spacing" |
msgstr "" |
#: scribus/edit1format.cpp:259 |
msgid "EditStyle::Name of the Style is not unique" |
msgstr "" |
#: scribus/edit1format.cpp:17 |
msgid "EditStyle::Name:" |
msgstr "" |
#: scribus/edit1format.cpp:259 |
msgid "EditStyle::OK" |
msgstr "" |
#: scribus/edit1format.cpp:117 |
msgid "EditStyle::Right" |
msgstr "" |
#: scribus/edit1format.cpp:60 |
msgid "EditStyle::Size:" |
msgstr "" |
#: scribus/edit1format.cpp:152 |
msgid "EditStyle::Vertical Spaces" |
msgstr "" |
#: scribus/edit1format.cpp:259 |
msgid "EditStyle::Warning" |
msgstr "" |
#: scribus/editor.cpp:33 |
msgid "Editor::Clear" |
msgstr "" |
#: scribus/editor.cpp:31 |
msgid "Editor::Copy" |
msgstr "" |
#: scribus/editor.cpp:30 |
msgid "Editor::Cut" |
msgstr "" |
#: scribus/editor.cpp:38 |
msgid "Editor::Edit" |
msgstr "" |
#: scribus/editor.cpp:13 |
msgid "Editor::Editor" |
msgstr "" |
#: scribus/editor.cpp:25 |
msgid "Editor::Exit without Saving" |
msgstr "" |
#: scribus/editor.cpp:37 |
msgid "Editor::File" |
msgstr "" |
#: scribus/editor.cpp:35 |
msgid "Editor::Get Field Names" |
msgstr "" |
#: scribus/editor.cpp:74 |
msgid "Editor::Javascripts (*.js);;All Files (*)" |
msgstr "" |
#: scribus/editor.cpp:22 |
msgid "Editor::Load..." |
msgstr "" |
#: scribus/editor.cpp:20 |
msgid "Editor::New" |
msgstr "" |
#: scribus/editor.cpp:32 |
msgid "Editor::Paste" |
msgstr "" |
#: scribus/editor.cpp:28 |
msgid "Editor::Redo" |
msgstr "" |
#: scribus/editor.cpp:24 |
msgid "Editor::Save and Exit" |
msgstr "" |
#: scribus/editor.cpp:21 |
msgid "Editor::Save as..." |
msgstr "" |
#: scribus/editor.cpp:27 |
msgid "Editor::Undo" |
msgstr "" |
#: scribus/customfdialog.cpp:133 |
msgid "FDialogPreview::Author:" |
msgstr "" |
#: scribus/customfdialog.cpp:131 |
msgid "FDialogPreview::No Title" |
msgstr "" |
#: scribus/customfdialog.cpp:138 |
msgid "FDialogPreview::Scribus-Document" |
msgstr "" |
#: scribus/customfdialog.cpp:109 |
msgid "FDialogPreview::Size:" |
msgstr "" |
#: scribus/customfdialog.cpp:128 |
msgid "FDialogPreview::Title:" |
msgstr "" |
#: scribus/customfdialog.cpp:136 |
msgid "FDialogPreview::Unknown" |
msgstr "" |
#: scribus/colorm.cpp:47 |
msgid "Farbmanager::Append" |
msgstr "" |
#: scribus/colorm.cpp:69 |
msgid "Farbmanager::Cancel" |
msgstr "" |
#: scribus/colorm.cpp:33 |
msgid "Farbmanager::Colors" |
msgstr "" |
#: scribus/colorm.cpp:139 |
msgid "Farbmanager::Copy of %1" |
msgstr "" |
#: scribus/colorm.cpp:63 |
msgid "Farbmanager::Delete" |
msgstr "" |
#: scribus/colorm.cpp:95 |
msgid "Farbmanager::Documents (*.sla *.scd);;All Files (*)" |
msgstr "" |
#: scribus/colorm.cpp:93 |
msgid "Farbmanager::Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)" |
msgstr "" |
#: scribus/colorm.cpp:59 |
msgid "Farbmanager::Duplicate" |
msgstr "" |
#: scribus/colorm.cpp:54 |
msgid "Farbmanager::Edit" |
msgstr "" |
#: scribus/colorm.cpp:50 |
msgid "Farbmanager::New" |
msgstr "" |
#: scribus/colorm.cpp:95 |
msgid "Farbmanager::Open" |
msgstr "" |
#: scribus/colorm.cpp:66 |
msgid "Farbmanager::Save" |
msgstr "" |
#: scribus/fontprefs.cpp:166 |
msgid "FontPrefs::Add..." |
msgstr "" |
#: scribus/fontprefs.cpp:174 |
msgid "FontPrefs::Additional Paths" |
msgstr "" |
#: scribus/fontprefs.cpp:113 |
msgid "FontPrefs::Available Fonts" |
msgstr "" |
#: scribus/fontprefs.cpp:191 |
msgid "FontPrefs::Cancel" |
msgstr "" |
#: scribus/fontprefs.cpp:163 |
msgid "FontPrefs::Change..." |
msgstr "" |
#: scribus/fontprefs.cpp:305 |
msgid "FontPrefs::Choose a Directory" |
msgstr "" |
#: scribus/fontprefs.cpp:148 |
msgid "FontPrefs::Delete" |
msgstr "" |
#: scribus/fontprefs.cpp:95 |
msgid "FontPrefs::Embed in:" |
msgstr "" |
#: scribus/fontprefs.cpp:126 |
msgid "FontPrefs::Font Name" |
msgstr "" |
#: scribus/fontprefs.cpp:154 |
msgid "FontPrefs::Font Substitutions" |
msgstr "" |
#: scribus/fontprefs.cpp:19 |
msgid "FontPrefs::Global Font Settings" |
msgstr "" |
#: scribus/fontprefs.cpp:188 |
msgid "FontPrefs::OK" |
msgstr "" |
#: scribus/fontprefs.cpp:98 |
msgid "FontPrefs::Path to Font File" |
msgstr "" |
#: scribus/fontprefs.cpp:386 |
msgid "FontPrefs::Postscript" |
msgstr "" |
#: scribus/fontprefs.cpp:169 |
msgid "FontPrefs::Remove" |
msgstr "" |
#: scribus/fontprefs.cpp:127 |
msgid "FontPrefs::Replacement" |
msgstr "" |
#: scribus/fontprefs.cpp:96 |
msgid "FontPrefs::Subset" |
msgstr "" |
#: scribus/fontprefs.cpp:97 |
msgid "FontPrefs::Type" |
msgstr "" |
#: scribus/fontprefs.cpp:94 |
msgid "FontPrefs::Use Font" |
msgstr "" |
#: scribus/fontprefs.cpp:394 |
msgid "FontPrefs::Yes" |
msgstr "" |
#: scribus/guidemanager.cpp:157 |
msgid "GuideManager:: in" |
msgstr "" |
#: scribus/guidemanager.cpp:154 |
msgid "GuideManager:: mm" |
msgstr "" |
#: scribus/guidemanager.cpp:160 |
msgid "GuideManager:: p" |
msgstr "" |
#: scribus/guidemanager.cpp:151 |
msgid "GuideManager:: pt" |
msgstr "" |
#: scribus/guidemanager.cpp:75 |
msgid "GuideManager::Add" |
msgstr "" |
#: scribus/guidemanager.cpp:99 |
msgid "GuideManager::Cancel" |
msgstr "" |
#: scribus/guidemanager.cpp:79 |
msgid "GuideManager::Delete" |
msgstr "" |
#: scribus/guidemanager.cpp:22 |
msgid "GuideManager::Horizontal Guides" |
msgstr "" |
#: scribus/guidemanager.cpp:86 |
msgid "GuideManager::Lock Guides" |
msgstr "" |
#: scribus/guidemanager.cpp:10 |
msgid "GuideManager::Manage Guides" |
msgstr "" |
#: scribus/guidemanager.cpp:93 |
msgid "GuideManager::OK" |
msgstr "" |
#: scribus/guidemanager.cpp:54 |
msgid "GuideManager::Vertical Guides" |
msgstr "" |
#: scribus/guidemanager.cpp:65 |
msgid "GuideManager::X-Pos:" |
msgstr "" |
#: scribus/guidemanager.cpp:33 |
msgid "GuideManager::Y-Pos:" |
msgstr "" |
#: scribus/helpbrowser.cpp:40 |
msgid "HelpBrowser::" |
msgstr "" |
#: scribus/helpbrowser.cpp:81 |
msgid "HelpBrowser::Sorry, no manual available!" |
msgstr "" |
#: scribus/hyask.cpp:53 |
msgid "HyAsk::Accept" |
msgstr "" |
#: scribus/hyask.cpp:64 |
msgid "HyAsk::Cancel" |
msgstr "" |
#: scribus/hyask.cpp:38 |
msgid "HyAsk::Possible Hyphenation" |
msgstr "" |
#: scribus/hyask.cpp:59 |
msgid "HyAsk::Skip" |
msgstr "" |
#: scribus/hysettings.cpp:64 |
msgid "HySettings::Cancel" |
msgstr "" |
#: scribus/hysettings.cpp:21 |
msgid "HySettings::Check during Typing" |
msgstr "" |
#: scribus/hysettings.cpp:23 |
msgid "HySettings::Enables automatic checking of your text while typing." |
msgstr "" |
#: scribus/hysettings.cpp:17 |
msgid "HySettings::Fully Automatic" |
msgstr "" |
#: scribus/hysettings.cpp:11 |
msgid "HySettings::Hyphenator Settings" |
msgstr "" |
#: scribus/hysettings.cpp:19 |
msgid "HySettings::If you uncheck this you will get a dialog\neverytime a possible Hyphenation is found." |
msgstr "" |
#: scribus/hysettings.cpp:36 |
msgid "HySettings::Language:" |
msgstr "" |
#: scribus/hysettings.cpp:57 |
msgid "HySettings::OK" |
msgstr "" |
#: scribus/hysettings.cpp:41 |
msgid "HySettings::Smallest Word:" |
msgstr "" |
#: scribus/hysettings.cpp:47 |
msgid "HySettings::This is the length of the smallest word to be hyphenated." |
msgstr "" |
#: scribus/inspage.cpp:97 |
msgid "InsPage::Cancel" |
msgstr "" |
#: scribus/inspage.cpp:9 |
msgid "InsPage::Insert Page" |
msgstr "" |
#: scribus/inspage.cpp:39 |
msgid "InsPage::Inserting" |
msgstr "" |
#: scribus/inspage.cpp:80 |
msgid "InsPage::Normal" |
msgstr "" |
#: scribus/inspage.cpp:91 |
msgid "InsPage::OK" |
msgstr "" |
#: scribus/inspage.cpp:46 |
msgid "InsPage::Template (Left Page):" |
msgstr "" |
#: scribus/inspage.cpp:70 |
msgid "InsPage::Template (Right Page):" |
msgstr "" |
#: scribus/inspage.cpp:48 |
msgid "InsPage::Template:" |
msgstr "" |
#: scribus/inspage.cpp:29 |
msgid "InsPage::after Page" |
msgstr "" |
#: scribus/inspage.cpp:30 |
msgid "InsPage::at End" |
msgstr "" |
#: scribus/inspage.cpp:28 |
msgid "InsPage::before Page" |
msgstr "" |
#: scribus/inspage.cpp:25 |
msgid "InsPage::page(s)" |
msgstr "" |
#: scribus/javadocs.cpp:32 |
msgid "JavaDocs::Add..." |
msgstr "" |
#: scribus/javadocs.cpp:42 |
msgid "JavaDocs::Close" |
msgstr "" |
#: scribus/javadocs.cpp:36 |
msgid "JavaDocs::Delete" |
msgstr "" |
#: scribus/javadocs.cpp:28 |
msgid "JavaDocs::Edit..." |
msgstr "" |
#: scribus/javadocs.cpp:10 |
msgid "JavaDocs::Global JavaScripts" |
msgstr "" |
#: scribus/javadocs.cpp:63 |
msgid "JavaDocs::New Script" |
msgstr "" |
#: scribus/keymanager.cpp:72 |
msgid "KeyManager::ALT+SHIFT+T" |
msgstr "" |
#: scribus/keymanager.cpp:39 |
msgid "KeyManager::Action" |
msgstr "" |
#: scribus/keymanager.cpp:191 |
msgid "KeyManager::Alt" |
msgstr "" |
#: scribus/keymanager.cpp:147 |
msgid "KeyManager::Alt+" |
msgstr "" |
#: scribus/keymanager.cpp:97 |
msgid "KeyManager::Cancel" |
msgstr "" |
#: scribus/keymanager.cpp:191 |
msgid "KeyManager::Ctrl" |
msgstr "" |
#: scribus/keymanager.cpp:151 |
msgid "KeyManager::Ctrl+" |
msgstr "" |
#: scribus/keymanager.cpp:40 |
msgid "KeyManager::Current Key" |
msgstr "" |
#: scribus/keymanager.cpp:12 |
msgid "KeyManager::Manage Keyboard Shortcuts" |
msgstr "" |
#: scribus/keymanager.cpp:60 |
msgid "KeyManager::No Key" |
msgstr "" |
#: scribus/keymanager.cpp:162 |
msgid "KeyManager::OK" |
msgstr "" |
#: scribus/keymanager.cpp:50 |
msgid "KeyManager::Select a Key for this Action" |
msgstr "" |
#: scribus/keymanager.cpp:79 |
msgid "KeyManager::Set Key" |
msgstr "" |
#: scribus/keymanager.cpp:191 |
msgid "KeyManager::Shift" |
msgstr "" |
#: scribus/keymanager.cpp:143 |
msgid "KeyManager::Shift+" |
msgstr "" |
#: scribus/keymanager.cpp:161 |
msgid "KeyManager::This Key-Sequence is already in use" |
msgstr "" |
#: scribus/keymanager.cpp:65 |
msgid "KeyManager::User Defined Key" |
msgstr "" |
#: scribus/keymanager.cpp:160 |
msgid "KeyManager::Warning" |
msgstr "" |
#: scribus/layers.cpp:71 |
msgid "LayerPalette::" |
msgstr "" |
#: scribus/layers.cpp:41 |
msgid "LayerPalette::Add a new Layer" |
msgstr "" |
#: scribus/layers.cpp:73 |
msgid "LayerPalette::Closes this Dialog" |
msgstr "" |
#: scribus/layers.cpp:49 |
msgid "LayerPalette::Delete Layer" |
msgstr "" |
#: scribus/layers.cpp:13 |
msgid "LayerPalette::Layers" |
msgstr "" |
#: scribus/layers.cpp:65 |
msgid "LayerPalette::Lower Layer" |
msgstr "" |
#: scribus/layers.cpp:171 |
msgid "LayerPalette::New Layer" |
msgstr "" |
#: scribus/layers.cpp:57 |
msgid "LayerPalette::Raise Layer" |
msgstr "" |
#: scribus/lineformats.cpp:30 |
msgid "LineFormate::Append" |
msgstr "" |
#: scribus/lineformats.cpp:58 |
msgid "LineFormate::Cancel" |
msgstr "" |
#: scribus/lineformats.cpp:92 |
msgid "LineFormate::Copy of %1" |
msgstr "" |
#: scribus/lineformats.cpp:49 |
msgid "LineFormate::Delete" |
msgstr "" |
#: scribus/lineformats.cpp:134 |
msgid "LineFormate::Do you really want do delete this Style?" |
msgstr "" |
#: scribus/lineformats.cpp:151 |
msgid "LineFormate::Documents (*.sla *.scd);;All Files (*)" |
msgstr "" |
#: scribus/lineformats.cpp:149 |
msgid "LineFormate::Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)" |
msgstr "" |
#: scribus/lineformats.cpp:44 |
msgid "LineFormate::Duplicate" |
msgstr "" |
#: scribus/lineformats.cpp:13 |
msgid "LineFormate::Edit Line Styles" |
msgstr "" |
#: scribus/lineformats.cpp:38 |
msgid "LineFormate::Edit" |
msgstr "" |
#: scribus/lineformats.cpp:112 |
msgid "LineFormate::New Style" |
msgstr "" |
#: scribus/lineformats.cpp:34 |
msgid "LineFormate::New" |
msgstr "" |
#: scribus/lineformats.cpp:135 |
msgid "LineFormate::No" |
msgstr "" |
#: scribus/lineformats.cpp:151 |
msgid "LineFormate::Open" |
msgstr "" |
#: scribus/lineformats.cpp:54 |
msgid "LineFormate::Save" |
msgstr "" |
#: scribus/lineformats.cpp:133 |
msgid "LineFormate::Warning" |
msgstr "" |
#: scribus/lineformats.cpp:136 |
msgid "LineFormate::Yes" |
msgstr "" |
#: scribus/mdup.cpp:53 |
msgid "Mdup:: in" |
msgstr "" |
#: scribus/mdup.cpp:49 |
msgid "Mdup:: mm" |
msgstr "" |
#: scribus/mdup.cpp:57 |
msgid "Mdup:: p" |
msgstr "" |
#: scribus/mdup.cpp:45 |
msgid "Mdup:: pt" |
msgstr "" |
#: scribus/mdup.cpp:80 |
msgid "Mdup::Cancel" |
msgstr "" |
#: scribus/mdup.cpp:64 |
msgid "Mdup::Horizontal Shift:" |
msgstr "" |
#: scribus/mdup.cpp:16 |
msgid "Mdup::Multiple Duplicate" |
msgstr "" |
#: scribus/mdup.cpp:61 |
msgid "Mdup::Number of Copies:" |
msgstr "" |
#: scribus/mdup.cpp:74 |
msgid "Mdup::OK" |
msgstr "" |
#: scribus/mdup.cpp:67 |
msgid "Mdup::Vertical Shift:" |
msgstr "" |
#: scribus/mergedoc.cpp:76 |
msgid "MergeDoc::Cancel" |
msgstr "" |
#: scribus/mergedoc.cpp:34 |
msgid "MergeDoc::Change..." |
msgstr "" |
#: scribus/mergedoc.cpp:156 |
msgid "MergeDoc::Document contains: %1 Page(s)" |
msgstr "" |
#: scribus/mergedoc.cpp:39 |
msgid "MergeDoc::Document contains: 0 Page(s)" |
msgstr "" |
#: scribus/mergedoc.cpp:26 |
msgid "MergeDoc::Document to load:" |
msgstr "" |
#: scribus/mergedoc.cpp:103 |
msgid "MergeDoc::Documents (*.sla *.scd);;All Files (*)" |
msgstr "" |
#: scribus/mergedoc.cpp:101 |
msgid "MergeDoc::Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)" |
msgstr "" |
#: scribus/mergedoc.cpp:44 |
msgid "MergeDoc::Import Page Nr:" |
msgstr "" |
#: scribus/mergedoc.cpp:20 |
msgid "MergeDoc::Import a Page" |
msgstr "" |
#: scribus/mergedoc.cpp:69 |
msgid "MergeDoc::Import" |
msgstr "" |
#: scribus/mergedoc.cpp:103 |
msgid "MergeDoc::Open" |
msgstr "" |
#: scribus/movepage.cpp:68 |
msgid "MovePages::Cancel" |
msgstr "" |
#: scribus/movepage.cpp:26 |
msgid "MovePages::Copy Page" |
msgstr "" |
#: scribus/movepage.cpp:56 |
msgid "MovePages::Move Page(s):" |
msgstr "" |
#: scribus/movepage.cpp:12 |
msgid "MovePages::Move Pages" |
msgstr "" |
#: scribus/movepage.cpp:62 |
msgid "MovePages::OK" |
msgstr "" |
#: scribus/movepage.cpp:46 |
msgid "MovePages::after Page" |
msgstr "" |
#: scribus/movepage.cpp:47 |
msgid "MovePages::at End" |
msgstr "" |
#: scribus/movepage.cpp:45 |
msgid "MovePages::before Page" |
msgstr "" |
#: scribus/movepage.cpp:36 |
msgid "MovePages::to:" |
msgstr "" |
#: scribus/mpalette.cpp:701 |
msgid "Mpalette:: %" |
msgstr "" |
#: scribus/mpalette.cpp:795 |
msgid "Mpalette:: pt" |
msgstr "" |
#: scribus/mpalette.cpp:355 |
msgid "Mpalette:: pts" |
msgstr "" |
#: scribus/mpalette.cpp:295 |
msgid "Mpalette::" |
msgstr "" |
#: scribus/mpalette.cpp:761 |
msgid "Mpalette::Absolute Colorimetric" |
msgstr "" |
#: scribus/mpalette.cpp:840 |
msgid "Mpalette::Align Text Block" |
msgstr "" |
#: scribus/mpalette.cpp:841 |
msgid "Mpalette::Align Text Center" |
msgstr "" |
#: scribus/mpalette.cpp:838 |
msgid "Mpalette::Align Text Left" |
msgstr "" |
#: scribus/mpalette.cpp:839 |
msgid "Mpalette::Align Text Right" |
msgstr "" |
#: scribus/mpalette.cpp:804 |
msgid "Mpalette::Bevel Join" |
msgstr "" |
#: scribus/mpalette.cpp:376 |
msgid "Mpalette::Bottom:" |
msgstr "" |
#: scribus/mpalette.cpp:77 |
msgid "Mpalette::Colors" |
msgstr "" |
#: scribus/mpalette.cpp:624 |
msgid "Mpalette::Custom Spacing" |
msgstr "" |
#: scribus/mpalette.cpp:352 |
msgid "Mpalette::Distance from Curve:" |
msgstr "" |
#: scribus/mpalette.cpp:366 |
msgid "Mpalette::Distance of Text" |
msgstr "" |
#: scribus/mpalette.cpp:799 |
msgid "Mpalette::Edges:" |
msgstr "" |
#: scribus/mpalette.cpp:312 |
msgid "Mpalette::Edit Shape..." |
msgstr "" |
#: scribus/mpalette.cpp:849 |
msgid "Mpalette::Enables or disables printing of the Object" |
msgstr "" |
#: scribus/mpalette.cpp:778 |
msgid "Mpalette::End Points" |
msgstr "" |
#: scribus/mpalette.cpp:808 |
msgid "Mpalette::Endings:" |
msgstr "" |
#: scribus/mpalette.cpp:812 |
msgid "Mpalette::Flat Cap" |
msgstr "" |
#: scribus/mpalette.cpp:842 |
msgid "Mpalette::Flip horizontal" |
msgstr "" |
#: scribus/mpalette.cpp:843 |
msgid "Mpalette::Flip vertical" |
msgstr "" |
#: scribus/mpalette.cpp:828 |
msgid "Mpalette::Font Size" |
msgstr "" |
#: scribus/mpalette.cpp:677 |
msgid "Mpalette::Free Scaling" |
msgstr "" |
#: scribus/mpalette.cpp:98 |
msgid "Mpalette::Geometry" |
msgstr "" |
#: scribus/mpalette.cpp:1952 |
msgid "Mpalette::Height:" |
msgstr "" |
#: scribus/mpalette.cpp:692 |
msgid "Mpalette::Horiz. Scale:" |
msgstr "" |
#: scribus/mpalette.cpp:67 |
msgid "Mpalette::Image" |
msgstr "" |
#: scribus/mpalette.cpp:749 |
msgid "Mpalette::Input Profile:" |
msgstr "" |
#: scribus/mpalette.cpp:728 |
msgid "Mpalette::Keep Aspect Ratio" |
msgstr "" |
#: scribus/mpalette.cpp:640 |
msgid "Mpalette::Kerning:" |
msgstr "" |
#: scribus/mpalette.cpp:662 |
msgid "Mpalette::Lang.:" |
msgstr "" |
#: scribus/mpalette.cpp:777 |
msgid "Mpalette::Left Point" |
msgstr "" |
#: scribus/mpalette.cpp:379 |
msgid "Mpalette::Left:" |
msgstr "" |
#: scribus/mpalette.cpp:139 |
msgid "Mpalette::Level" |
msgstr "" |
#: scribus/mpalette.cpp:829 |
msgid "Mpalette::Line Spacing" |
msgstr "" |
#: scribus/mpalette.cpp:644 |
msgid "Mpalette::Line Spacing:" |
msgstr "" |
#: scribus/mpalette.cpp:787 |
msgid "Mpalette::Line Style:" |
msgstr "" |
#: scribus/mpalette.cpp:792 |
msgid "Mpalette::Line Width:" |
msgstr "" |
#: scribus/mpalette.cpp:72 |
msgid "Mpalette::Line" |
msgstr "" |
#: scribus/mpalette.cpp:848 |
msgid "Mpalette::Locks or unlocks the Object" |
msgstr "" |
#: scribus/mpalette.cpp:830 |
msgid "Mpalette::Manual Kerning" |
msgstr "" |
#: scribus/mpalette.cpp:803 |
msgid "Mpalette::Miter Join" |
msgstr "" |
#: scribus/mpalette.cpp:845 |
msgid "Mpalette::Move one Level down" |
msgstr "" |
#: scribus/mpalette.cpp:844 |
msgid "Mpalette::Move one Level up" |
msgstr "" |
#: scribus/mpalette.cpp:847 |
msgid "Mpalette::Move to Back" |
msgstr "" |
#: scribus/mpalette.cpp:846 |
msgid "Mpalette::Move to Front" |
msgstr "" |
#: scribus/mpalette.cpp:2631 |
msgid "Mpalette::Name \"%1\" isn't unique.\nPlease choose another." |
msgstr "" |
#: scribus/mpalette.cpp:87 |
msgid "Mpalette::Name" |
msgstr "" |
#: scribus/mpalette.cpp:2291 |
msgid "Mpalette::No Style" |
msgstr "" |
#: scribus/mpalette.cpp:2328 |
msgid "Mpalette::None" |
msgstr "" |
#: scribus/mpalette.cpp:2631 |
msgid "Mpalette::OK" |
msgstr "" |
#: scribus/mpalette.cpp:490 |
msgid "Mpalette::Other..." |
msgstr "" |
#: scribus/mpalette.cpp:837 |
msgid "Mpalette::Outline Text" |
msgstr "" |
#: scribus/mpalette.cpp:333 |
msgid "Mpalette::Path Text Properites" |
msgstr "" |
#: scribus/mpalette.cpp:758 |
msgid "Mpalette::Perceptual" |
msgstr "" |
#: scribus/mpalette.cpp:683 |
msgid "Mpalette::Position:" |
msgstr "" |
#: scribus/mpalette.cpp:25 |
msgid "Mpalette::Properties" |
msgstr "" |
#: scribus/mpalette.cpp:732 |
msgid "Mpalette::Proportional" |
msgstr "" |
#: scribus/mpalette.cpp:759 |
msgid "Mpalette::Relative Colorimetric" |
msgstr "" |
#: scribus/mpalette.cpp:755 |
msgid "Mpalette::Rendering Intent:" |
msgstr "" |
#: scribus/mpalette.cpp:831 |
msgid "Mpalette::Reverse Writing" |
msgstr "" |
#: scribus/mpalette.cpp:382 |
msgid "Mpalette::Right:" |
msgstr "" |
#: scribus/mpalette.cpp:216 |
msgid "Mpalette::Rotation" |
msgstr "" |
#: scribus/mpalette.cpp:814 |
msgid "Mpalette::Round Cap" |
msgstr "" |
#: scribus/mpalette.cpp:805 |
msgid "Mpalette::Round Join" |
msgstr "" |
#: scribus/mpalette.cpp:318 |
msgid "Mpalette::Round\nCorners:" |
msgstr "" |
#: scribus/mpalette.cpp:760 |
msgid "Mpalette::Saturation" |
msgstr "" |
#: scribus/mpalette.cpp:713 |
msgid "Mpalette::Scale to Frame Size" |
msgstr "" |
#: scribus/mpalette.cpp:57 |
msgid "Mpalette::Shape" |
msgstr "" |
#: scribus/mpalette.cpp:303 |
msgid "Mpalette::Shape:" |
msgstr "" |
#: scribus/mpalette.cpp:340 |
msgid "Mpalette::Show Curve" |
msgstr "" |
#: scribus/mpalette.cpp:426 |
msgid "Mpalette::Size:" |
msgstr "" |
#: scribus/mpalette.cpp:833 |
msgid "Mpalette::Small Caps" |
msgstr "" |
#: scribus/mpalette.cpp:813 |
msgid "Mpalette::Square Cap" |
msgstr "" |
#: scribus/mpalette.cpp:343 |
msgid "Mpalette::Start Offset:" |
msgstr "" |
#: scribus/mpalette.cpp:836 |
msgid "Mpalette::Strikeout" |
msgstr "" |
#: scribus/mpalette.cpp:650 |
msgid "Mpalette::Styles" |
msgstr "" |
#: scribus/mpalette.cpp:834 |
msgid "Mpalette::Subscript" |
msgstr "" |
#: scribus/mpalette.cpp:835 |
msgid "Mpalette::Superscript" |
msgstr "" |
#: scribus/mpalette.cpp:208 |
msgid "Mpalette::Text flows around Box" |
msgstr "" |
#: scribus/mpalette.cpp:62 |
msgid "Mpalette::Text" |
msgstr "" |
#: scribus/mpalette.cpp:373 |
msgid "Mpalette::Top:" |
msgstr "" |
#: scribus/mpalette.cpp:832 |
msgid "Mpalette::Underline" |
msgstr "" |
#: scribus/mpalette.cpp:211 |
msgid "Mpalette::Use Bounding Box" |
msgstr "" |
#: scribus/mpalette.cpp:698 |
msgid "Mpalette::Vert. Scale:" |
msgstr "" |
#: scribus/mpalette.cpp:2631 |
msgid "Mpalette::Warning" |
msgstr "" |
#: scribus/mpalette.cpp:1950 |
msgid "Mpalette::Width:" |
msgstr "" |
#: scribus/mpalette.cpp:52 |
msgid "Mpalette::X, Y, Z" |
msgstr "" |
#: scribus/mpalette.cpp:1949 |
msgid "Mpalette::X-Pos:" |
msgstr "" |
#: scribus/mpalette.cpp:1959 |
msgid "Mpalette::X1:" |
msgstr "" |
#: scribus/mpalette.cpp:1960 |
msgid "Mpalette::X2:" |
msgstr "" |
#: scribus/mpalette.cpp:1951 |
msgid "Mpalette::Y-Pos:" |
msgstr "" |
#: scribus/mpalette.cpp:1961 |
msgid "Mpalette::Y1:" |
msgstr "" |
#: scribus/mpalette.cpp:1962 |
msgid "Mpalette::Y2:" |
msgstr "" |
#: scribus/mpalette.cpp:274 |
msgid "Mpalette::by:" |
msgstr "" |
#: scribus/multiline.cpp:108 |
msgid "MultiLine:: %" |
msgstr "" |
#: scribus/multiline.cpp:279 |
msgid "MultiLine:: pt " |
msgstr "" |
#: scribus/multiline.cpp:89 |
msgid "MultiLine:: pt" |
msgstr "" |
#: scribus/multiline.cpp:77 |
msgid "MultiLine::Bevel Join" |
msgstr "" |
#: scribus/multiline.cpp:124 |
msgid "MultiLine::Cancel" |
msgstr "" |
#: scribus/multiline.cpp:295 |
msgid "MultiLine::Dash Dot Dot Line" |
msgstr "" |
#: scribus/multiline.cpp:292 |
msgid "MultiLine::Dash Dot Line" |
msgstr "" |
#: scribus/multiline.cpp:286 |
msgid "MultiLine::Dashed Line" |
msgstr "" |
#: scribus/multiline.cpp:289 |
msgid "MultiLine::Dotted Line" |
msgstr "" |
#: scribus/multiline.cpp:13 |
msgid "MultiLine::Edit Style" |
msgstr "" |
#: scribus/multiline.cpp:69 |
msgid "MultiLine::Flat Cap" |
msgstr "" |
#: scribus/multiline.cpp:84 |
msgid "MultiLine::Line Width:" |
msgstr "" |
#: scribus/multiline.cpp:76 |
msgid "MultiLine::Miter Join" |
msgstr "" |
#: scribus/multiline.cpp:311 |
msgid "MultiLine::Name \"%1\" isn't unique.\nPlease choose another." |
msgstr "" |
#: scribus/multiline.cpp:311 |
msgid "MultiLine::OK" |
msgstr "" |
#: scribus/multiline.cpp:71 |
msgid "MultiLine::Round Cap" |
msgstr "" |
#: scribus/multiline.cpp:78 |
msgid "MultiLine::Round Join" |
msgstr "" |
#: scribus/multiline.cpp:298 |
msgid "MultiLine::Solid Line" |
msgstr "" |
#: scribus/multiline.cpp:70 |
msgid "MultiLine::Square Cap" |
msgstr "" |
#: scribus/multiline.cpp:311 |
msgid "MultiLine::Warning" |
msgstr "" |
#: scribus/muster.cpp:31 |
msgid "MusterSeiten::Append" |
msgstr "" |
#: scribus/muster.cpp:238 |
msgid "MusterSeiten::Copy #%1 of " |
msgstr "" |
#: scribus/muster.cpp:125 |
msgid "MusterSeiten::Copy of %1" |
msgstr "" |
#: scribus/muster.cpp:43 |
msgid "MusterSeiten::Delete" |
msgstr "" |
#: scribus/muster.cpp:93 |
msgid "MusterSeiten::Do you really want do delete this Template?" |
msgstr "" |
#: scribus/muster.cpp:39 |
msgid "MusterSeiten::Duplicate" |
msgstr "" |
#: scribus/muster.cpp:14 |
msgid "MusterSeiten::Edit Templates" |
msgstr "" |
#: scribus/muster.cpp:50 |
msgid "MusterSeiten::Exit" |
msgstr "" |
#: scribus/muster.cpp:176 |
msgid "MusterSeiten::New Template" |
msgstr "" |
#: scribus/muster.cpp:35 |
msgid "MusterSeiten::New" |
msgstr "" |
#: scribus/muster.cpp:94 |
msgid "MusterSeiten::No" |
msgstr "" |
#: scribus/muster.cpp:286 |
msgid "MusterSeiten::Normal" |
msgstr "" |
#: scribus/muster.cpp:92 |
msgid "MusterSeiten::Warning" |
msgstr "" |
#: scribus/muster.cpp:95 |
msgid "MusterSeiten::Yes" |
msgstr "" |
#: scribus/newfile.cpp:226 |
msgid "NewDoc::Autom. Text Frames" |
msgstr "" |
#: scribus/newfile.cpp:151 |
msgid "NewDoc::Bottom:" |
msgstr "" |
#: scribus/newfile.cpp:273 |
msgid "NewDoc::Cancel" |
msgstr "" |
#: scribus/newfile.cpp:230 |
msgid "NewDoc::Column Guides" |
msgstr "" |
#: scribus/newfile.cpp:245 |
msgid "NewDoc::Columns:" |
msgstr "" |
#: scribus/newfile.cpp:76 |
msgid "NewDoc::Custom" |
msgstr "" |
#: scribus/newfile.cpp:213 |
msgid "NewDoc::Default Unit:" |
msgstr "" |
#: scribus/newfile.cpp:114 |
msgid "NewDoc::Facing Pages" |
msgstr "" |
#: scribus/newfile.cpp:206 |
msgid "NewDoc::First Page Number:" |
msgstr "" |
#: scribus/newfile.cpp:242 |
msgid "NewDoc::Gutter Width:" |
msgstr "" |
#: scribus/newfile.cpp:102 |
msgid "NewDoc::Height:" |
msgstr "" |
#: scribus/newfile.cpp:218 |
msgid "NewDoc::Inches (in)" |
msgstr "" |
#: scribus/newfile.cpp:627 |
msgid "NewDoc::Inside:" |
msgstr "" |
#: scribus/newfile.cpp:84 |
msgid "NewDoc::Landscape" |
msgstr "" |
#: scribus/newfile.cpp:118 |
msgid "NewDoc::Left Page first" |
msgstr "" |
#: scribus/newfile.cpp:633 |
msgid "NewDoc::Left:" |
msgstr "" |
#: scribus/newfile.cpp:130 |
msgid "NewDoc::Margin Guides" |
msgstr "" |
#: scribus/newfile.cpp:217 |
msgid "NewDoc::Millimeters (mm)" |
msgstr "" |
#: scribus/newfile.cpp:29 |
msgid "NewDoc::New Document" |
msgstr "" |
#: scribus/newfile.cpp:267 |
msgid "NewDoc::OK" |
msgstr "" |
#: scribus/newfile.cpp:199 |
msgid "NewDoc::Options" |
msgstr "" |
#: scribus/newfile.cpp:80 |
msgid "NewDoc::Orientation:" |
msgstr "" |
#: scribus/newfile.cpp:628 |
msgid "NewDoc::Outside:" |
msgstr "" |
#: scribus/newfile.cpp:35 |
msgid "NewDoc::Page Size" |
msgstr "" |
#: scribus/newfile.cpp:219 |
msgid "NewDoc::Picas (p)" |
msgstr "" |
#: scribus/newfile.cpp:216 |
msgid "NewDoc::Points (pts)" |
msgstr "" |
#: scribus/newfile.cpp:83 |
msgid "NewDoc::Portrait" |
msgstr "" |
#: scribus/newfile.cpp:634 |
msgid "NewDoc::Right:" |
msgstr "" |
#: scribus/newfile.cpp:43 |
msgid "NewDoc::Size:" |
msgstr "" |
#: scribus/newfile.cpp:148 |
msgid "NewDoc::Top:" |
msgstr "" |
#: scribus/newfile.cpp:92 |
msgid "NewDoc::Width:" |
msgstr "" |
#: scribus/newtemp.cpp:49 |
msgid "NewTm::Cancel" |
msgstr "" |
#: scribus/newtemp.cpp:33 |
msgid "NewTm::Left Page" |
msgstr "" |
#: scribus/newtemp.cpp:43 |
msgid "NewTm::OK" |
msgstr "" |
#: scribus/newtemp.cpp:34 |
msgid "NewTm::Right Page" |
msgstr "" |
#: scribus/frameedit.cpp:241 |
msgid "NodePalette:: in" |
msgstr "" |
#: scribus/frameedit.cpp:237 |
msgid "NodePalette:: mm" |
msgstr "" |
#: scribus/frameedit.cpp:245 |
msgid "NodePalette:: p" |
msgstr "" |
#: scribus/frameedit.cpp:233 |
msgid "NodePalette:: pt" |
msgstr "" |
#: scribus/frameedit.cpp:149 |
msgid "NodePalette::" |
msgstr "" |
#: scribus/frameedit.cpp:157 |
msgid "NodePalette::Absolute Coordinates" |
msgstr "" |
#: scribus/frameedit.cpp:185 |
msgid "NodePalette::Add Nodes" |
msgstr "" |
#: scribus/frameedit.cpp:192 |
msgid "NodePalette::Closes this Bezier Curve" |
msgstr "" |
#: scribus/frameedit.cpp:186 |
msgid "NodePalette::Delete Nodes" |
msgstr "" |
#: scribus/frameedit.cpp:181 |
msgid "NodePalette::End Editing" |
msgstr "" |
#: scribus/frameedit.cpp:193 |
msgid "NodePalette::Mirrors the Path Horizontally" |
msgstr "" |
#: scribus/frameedit.cpp:194 |
msgid "NodePalette::Mirrors the Path Vertically" |
msgstr "" |
#: scribus/frameedit.cpp:187 |
msgid "NodePalette::Move Control Points independently" |
msgstr "" |
#: scribus/frameedit.cpp:188 |
msgid "NodePalette::Move Control Points symmetrical" |
msgstr "" |
#: scribus/frameedit.cpp:184 |
msgid "NodePalette::Move Control Points" |
msgstr "" |
#: scribus/frameedit.cpp:183 |
msgid "NodePalette::Move Nodes" |
msgstr "" |
#: scribus/frameedit.cpp:11 |
msgid "NodePalette::Nodes" |
msgstr "" |
#: scribus/frameedit.cpp:191 |
msgid "NodePalette::Opens a Polygon or cuts a Bezier Curve" |
msgstr "" |
#: scribus/frameedit.cpp:189 |
msgid "NodePalette::Reset Control Points" |
msgstr "" |
#: scribus/frameedit.cpp:190 |
msgid "NodePalette::Reset this Control Point" |
msgstr "" |
#: scribus/frameedit.cpp:196 |
msgid "NodePalette::Shears the Path horizontal to the left" |
msgstr "" |
#: scribus/frameedit.cpp:195 |
msgid "NodePalette::Shears the Path horizontal to the right" |
msgstr "" |
#: scribus/frameedit.cpp:198 |
msgid "NodePalette::Shears the Path vertical down" |
msgstr "" |
#: scribus/frameedit.cpp:197 |
msgid "NodePalette::Shears the Path vertical up" |
msgstr "" |
#: scribus/frameedit.cpp:199 |
msgid "NodePalette::When checked use Coordinates relative to the Page,\notherwise Coordinates are relative to the Object." |
msgstr "" |
#: scribus/frameedit.cpp:163 |
msgid "NodePalette::X-Pos:" |
msgstr "" |
#: scribus/frameedit.cpp:171 |
msgid "NodePalette::Y-Pos:" |
msgstr "" |
#: scribus/pdfopts.cpp:179 |
msgid "PDF_Opts:: dpi" |
msgstr "" |
#: scribus/pdfopts.cpp:660 |
msgid "PDF_Opts:: in" |
msgstr "" |
#: scribus/pdfopts.cpp:657 |
msgid "PDF_Opts:: mm" |
msgstr "" |
#: scribus/pdfopts.cpp:663 |
msgid "PDF_Opts:: p" |
msgstr "" |
#: scribus/pdfopts.cpp:654 |
msgid "PDF_Opts:: pt" |
msgstr "" |
#: scribus/pdfopts.cpp:350 |
msgid "PDF_Opts:: sec" |
msgstr "" |
#: scribus/pdfopts.cpp:240 |
msgid "PDF_Opts::<<" |
msgstr "" |
#: scribus/pdfopts.cpp:236 |
msgid "PDF_Opts::>>" |
msgstr "" |
#: scribus/pdfopts.cpp:530 |
msgid "PDF_Opts::Absolute Colorimetric" |
msgstr "" |
#: scribus/pdfopts.cpp:440 |
msgid "PDF_Opts::Adding Annotations and Fields is allowed" |
msgstr "" |
#: scribus/pdfopts.cpp:70 |
msgid "PDF_Opts::All Pages" |
msgstr "" |
#: scribus/pdfopts.cpp:432 |
msgid "PDF_Opts::Allow Changing the Document" |
msgstr "" |
#: scribus/pdfopts.cpp:428 |
msgid "PDF_Opts::Allow Printing the Document" |
msgstr "" |
#: scribus/pdfopts.cpp:384 |
msgid "PDF_Opts::Apply Effect on all Pages" |
msgstr "" |
#: scribus/pdfopts.cpp:214 |
msgid "PDF_Opts::Available Fonts:" |
msgstr "" |
#: scribus/pdfopts.cpp:132 |
msgid "PDF_Opts::Binding:" |
msgstr "" |
#: scribus/pdfopts.cpp:357 |
msgid "PDF_Opts::Blinds" |
msgstr "" |
#: scribus/pdfopts.cpp:378 |
msgid "PDF_Opts::Bottom to Top" |
msgstr "" |
#: scribus/pdfopts.cpp:358 |
msgid "PDF_Opts::Box" |
msgstr "" |
#: scribus/pdfopts.cpp:728 |
msgid "PDF_Opts::Cancel" |
msgstr "" |
#: scribus/pdfopts.cpp:51 |
msgid "PDF_Opts::Change..." |
msgstr "" |
#: scribus/pdfopts.cpp:583 |
msgid "PDF_Opts::Color" |
msgstr "" |
#: scribus/pdfopts.cpp:106 |
msgid "PDF_Opts::Compatibility:" |
msgstr "" |
#: scribus/pdfopts.cpp:189 |
msgid "PDF_Opts::Compress Text and Vector Graphics" |
msgstr "" |
#: scribus/pdfopts.cpp:166 |
msgid "PDF_Opts::Compression" |
msgstr "" |
#: scribus/pdfopts.cpp:436 |
msgid "PDF_Opts::Copying Text and Graphics is allowed" |
msgstr "" |
#: scribus/pdfopts.cpp:23 |
msgid "PDF_Opts::Create PDF-File" |
msgstr "" |
#: scribus/pdfopts.cpp:341 |
msgid "PDF_Opts::Direction:" |
msgstr "" |
#: scribus/pdfopts.cpp:326 |
msgid "PDF_Opts::Display Duration:" |
msgstr "" |
#: scribus/pdfopts.cpp:359 |
msgid "PDF_Opts::Dissolve" |
msgstr "" |
#: scribus/pdfopts.cpp:514 |
msgid "PDF_Opts::Don't use embedded ICC profiles" |
msgstr "" |
#: scribus/pdfopts.cpp:175 |
msgid "PDF_Opts::Downsample Images to:" |
msgstr "" |
#: scribus/pdfopts.cpp:329 |
msgid "PDF_Opts::Effect Duration:" |
msgstr "" |
#: scribus/pdfopts.cpp:332 |
msgid "PDF_Opts::Effect Type:" |
msgstr "" |
#: scribus/pdfopts.cpp:317 |
msgid "PDF_Opts::Effects" |
msgstr "" |
#: scribus/pdfopts.cpp:199 |
msgid "PDF_Opts::Embed all Fonts" |
msgstr "" |
#: scribus/pdfopts.cpp:202 |
msgid "PDF_Opts::Embedding" |
msgstr "" |
#: scribus/pdfopts.cpp:271 |
msgid "PDF_Opts::Enable Presentation Effects" |
msgstr "" |
#: scribus/pdfopts.cpp:63 |
msgid "PDF_Opts::Export Range" |
msgstr "" |
#: scribus/pdfopts.cpp:387 |
msgid "PDF_Opts::Extras" |
msgstr "" |
#: scribus/pdfopts.cpp:97 |
msgid "PDF_Opts::File Options" |
msgstr "" |
#: scribus/pdfopts.cpp:248 |
msgid "PDF_Opts::Fonts to embed:" |
msgstr "" |
#: scribus/pdfopts.cpp:264 |
msgid "PDF_Opts::Fonts" |
msgstr "" |
#: scribus/pdfopts.cpp:75 |
msgid "PDF_Opts::From:" |
msgstr "" |
#: scribus/pdfopts.cpp:454 |
msgid "PDF_Opts::General" |
msgstr "" |
#: scribus/pdfopts.cpp:142 |
msgid "PDF_Opts::Generate Thumbnails" |
msgstr "" |
#: scribus/pdfopts.cpp:360 |
msgid "PDF_Opts::Glitter" |
msgstr "" |
#: scribus/pdfopts.cpp:366 |
msgid "PDF_Opts::Horizontal" |
msgstr "" |
#: scribus/pdfopts.cpp:503 |
msgid "PDF_Opts::Images:" |
msgstr "" |
#: scribus/pdfopts.cpp:150 |
msgid "PDF_Opts::Include Bookmarks" |
msgstr "" |
#: scribus/pdfopts.cpp:615 |
msgid "PDF_Opts::Info String:" |
msgstr "" |
#: scribus/pdfopts.cpp:371 |
msgid "PDF_Opts::Inside" |
msgstr "" |
#: scribus/pdfopts.cpp:136 |
msgid "PDF_Opts::Left Margin" |
msgstr "" |
#: scribus/pdfopts.cpp:376 |
msgid "PDF_Opts::Left to Right" |
msgstr "" |
#: scribus/pdfopts.cpp:335 |
msgid "PDF_Opts::Moving Lines:" |
msgstr "" |
#: scribus/pdfopts.cpp:356 |
msgid "PDF_Opts::No Effect" |
msgstr "" |
#: scribus/pdfopts.cpp:721 |
msgid "PDF_Opts::OK" |
msgstr "" |
#: scribus/pdfopts.cpp:618 |
msgid "PDF_Opts::Output Profile:" |
msgstr "" |
#: scribus/pdfopts.cpp:461 |
msgid "PDF_Opts::Output intended for:" |
msgstr "" |
#: scribus/pdfopts.cpp:34 |
msgid "PDF_Opts::Output to File:" |
msgstr "" |
#: scribus/pdfopts.cpp:372 |
msgid "PDF_Opts::Outside" |
msgstr "" |
#: scribus/pdfopts.cpp:407 |
msgid "PDF_Opts::Owner:" |
msgstr "" |
#: scribus/pdfopts.cpp:1121 |
msgid "PDF_Opts::PDF-Files (*.pdf);;All Files (*)" |
msgstr "" |
#: scribus/pdfopts.cpp:588 |
msgid "PDF_Opts::PDF/X-3 Output Intent" |
msgstr "" |
#: scribus/pdfopts.cpp:649 |
msgid "PDF_Opts::PDF/X-3" |
msgstr "" |
#: scribus/pdfopts.cpp:1020 |
msgid "PDF_Opts::Page" |
msgstr "" |
#: scribus/pdfopts.cpp:397 |
msgid "PDF_Opts::Passwords" |
msgstr "" |
#: scribus/pdfopts.cpp:527 |
msgid "PDF_Opts::Perceptual" |
msgstr "" |
#: scribus/pdfopts.cpp:465 |
msgid "PDF_Opts::Printer" |
msgstr "" |
#: scribus/pdfopts.cpp:518 |
msgid "PDF_Opts::Profile:" |
msgstr "" |
#: scribus/pdfopts.cpp:528 |
msgid "PDF_Opts::Relative Colorimetric" |
msgstr "" |
#: scribus/pdfopts.cpp:521 |
msgid "PDF_Opts::Rendering-Intent:" |
msgstr "" |
#: scribus/pdfopts.cpp:154 |
msgid "PDF_Opts::Resolution:" |
msgstr "" |
#: scribus/pdfopts.cpp:137 |
msgid "PDF_Opts::Right Margin" |
msgstr "" |
#: scribus/pdfopts.cpp:379 |
msgid "PDF_Opts::Right to Left" |
msgstr "" |
#: scribus/pdfopts.cpp:529 |
msgid "PDF_Opts::Saturation" |
msgstr "" |
#: scribus/pdfopts.cpp:1121 |
msgid "PDF_Opts::Save as" |
msgstr "" |
#: scribus/pdfopts.cpp:146 |
msgid "PDF_Opts::Save linked Text Frames as PDF-Articles" |
msgstr "" |
#: scribus/pdfopts.cpp:464 |
msgid "PDF_Opts::Screen" |
msgstr "" |
#: scribus/pdfopts.cpp:449 |
msgid "PDF_Opts::Security" |
msgstr "" |
#: scribus/pdfopts.cpp:421 |
msgid "PDF_Opts::Settings" |
msgstr "" |
#: scribus/pdfopts.cpp:312 |
msgid "PDF_Opts::Show Page Previews" |
msgstr "" |
#: scribus/pdfopts.cpp:475 |
msgid "PDF_Opts::Solid Colors:" |
msgstr "" |
#: scribus/pdfopts.cpp:361 |
msgid "PDF_Opts::Split" |
msgstr "" |
#: scribus/pdfopts.cpp:377 |
msgid "PDF_Opts::Top to Bottom" |
msgstr "" |
#: scribus/pdfopts.cpp:380 |
msgid "PDF_Opts::Top-Left to Bottom-Right" |
msgstr "" |
#: scribus/pdfopts.cpp:622 |
msgid "PDF_Opts::Trim Box" |
msgstr "" |
#: scribus/pdfopts.cpp:392 |
msgid "PDF_Opts::Use Encryption" |
msgstr "" |
#: scribus/pdfopts.cpp:510 |
msgid "PDF_Opts::Use ICC-Profile" |
msgstr "" |
#: scribus/pdfopts.cpp:404 |
msgid "PDF_Opts::User:" |
msgstr "" |
#: scribus/pdfopts.cpp:367 |
msgid "PDF_Opts::Vertical" |
msgstr "" |
#: scribus/pdfopts.cpp:362 |
msgid "PDF_Opts::Wipe" |
msgstr "" |
#: scribus/pdfopts.cpp:338 |
msgid "PDF_Opts::from the:" |
msgstr "" |
#: scribus/pdfopts.cpp:82 |
msgid "PDF_Opts::to:" |
msgstr "" |
#: scribus/page.cpp:1988 |
msgid "Page::Actual ppi: " |
msgstr "" |
#: scribus/page.cpp:2058 |
msgid "Page::Annotation Properties" |
msgstr "" |
#: scribus/page.cpp:2109 |
msgid "Page::Bezier Curve" |
msgstr "" |
#: scribus/page.cpp:2074 |
msgid "Page::Bring to Front" |
msgstr "" |
#: scribus/page.cpp:314 |
msgid "Page::Cancel" |
msgstr "" |
#: scribus/page.cpp:2026 |
msgid "Page::Chars: " |
msgstr "" |
#: scribus/page.cpp:2111 |
msgid "Page::Convert to" |
msgstr "" |
#: scribus/page.cpp:312 |
msgid "Page::Copy Here" |
msgstr "" |
#: scribus/page.cpp:2116 |
msgid "Page::Copy" |
msgstr "" |
#: scribus/page.cpp:2115 |
msgid "Page::Cut" |
msgstr "" |
#: scribus/page.cpp:2118 |
msgid "Page::Delete" |
msgstr "" |
#: scribus/page.cpp:2065 |
msgid "Page::Edit Text..." |
msgstr "" |
#: scribus/page.cpp:2060 |
msgid "Page::Field Properties" |
msgstr "" |
#: scribus/page.cpp:1980 |
msgid "Page::File: " |
msgstr "" |
#: scribus/page.cpp:2041 |
msgid "Page::Get Picture..." |
msgstr "" |
#: scribus/page.cpp:2047 |
msgid "Page::Get Text..." |
msgstr "" |
#: scribus/page.cpp:2069 |
msgid "Page::Group" |
msgstr "" |
#: scribus/page.cpp:2042 |
msgid "Page::Image Visible" |
msgstr "" |
#: scribus/page.cpp:2037 |
msgid "Page::Info" |
msgstr "" |
#: scribus/page.cpp:2053 |
msgid "Page::Is PDF-Annotation" |
msgstr "" |
#: scribus/page.cpp:2051 |
msgid "Page::Is PDF-Bookmark" |
msgstr "" |
#: scribus/page.cpp:2072 |
msgid "Page::Lock" |
msgstr "" |
#: scribus/page.cpp:2075 |
msgid "Page::Lower" |
msgstr "" |