/trunk/Scribus/configure.in |
---|
13,7 → 13,7 |
AC_ARG_PROGRAM |
dnl Automake doc recommends to do this only here. (Janos) |
AM_INIT_AUTOMAKE(scribus,1.2RC1cvs) |
AM_INIT_AUTOMAKE(scribus,1.2RC1) |
dnl KDE_SET_PREFIX |
/trunk/Scribus/scribus/gtfont.cpp |
---|
36,7 → 36,8 |
"Heavy", |
"Light", |
"Medium", |
"Regular" |
"Regular", |
"Roman" |
}; |
const QString gtFont::fontSlants[FontSlantMAX] = |
/trunk/Scribus/scribus/gtfont.h |
---|
52,6 → 52,7 |
LIGHT, |
MEDIUM, |
REGULAR, |
ROMAN, |
FontWeightMAX |
}; |
/trunk/Scribus/scribus/scribus.cpp |
---|
3564,6 → 3564,14 |
{ |
if (doc->ActPage->SelItem.count() != 0) |
{ |
gtGetText* gt = new gtGetText(); |
gt->run(true); |
delete gt; |
if (doc->Trenner->AutoCheck) |
doc->Trenner->slotHyphenate(doc->ActPage->SelItem.at(0)); |
doc->ActPage->update(); |
slotDocCh(); |
/* |
PageItem *b = doc->ActPage->SelItem.at(0); |
LoadEnc = ""; |
QString fileName = CFileDialog( tr("Open"), tr("Text Files (*.txt);;All Files(*)"), "", false, true, false, true); |
3580,7 → 3588,7 |
doc->Trenner->slotHyphenate(b); |
doc->ActPage->update(); |
slotDocCh(); |
} |
} */ |
} |
} |
/trunk/Scribus/scribus/plugins/gettext/csvim/csvdia.h |
---|
13,6 → 13,7 |
class CsvDialog : public QDialog |
{ |
Q_OBJECT |
public: |
CsvDialog(); |
~CsvDialog(); |
20,6 → 21,7 |
QString getVDelim(); |
bool hasHeader(); |
bool useVDelim(); |
private: |
QComboBox* fdelimCombo; |
QComboBox* vdelimCombo; |
/trunk/Scribus/scribus/plugins/gettext/csvim/csvim.cpp |
---|
108,10 → 108,10 |
} |
else |
i = 0; |
for (i; i < lines.size(); ++i) |
for (uint i2 = i; i2 < lines.size(); ++i2) |
{ |
colIndex = 0; |
parseLine(lines[i], false); |
parseLine(lines[i2], false); |
data += "\n"; |
++rowNumber; |
if (colCount < colIndex) |
190,7 → 190,7 |
double frameWidth = writer->getFrameWidth(); |
double addition = frameWidth / (colCount + 1); |
double curValue = addition / 2; |
for (uint i = 0; i < colCount; ++i) |
for (int i = 0; i < colCount; ++i) |
{ |
pstyleData->setTabValue(curValue); |
if (pstyleHeader) |
/trunk/Scribus/scribus/plugins/gettext/csvim/csvdia.cpp |
---|
1,5 → 1,5 |
#include "csvdia.h" |
#include "cvsida.moc" |
#include "csvdia.moc" |
extern QPixmap loadIcon(QString nam); |
/trunk/Scribus/scribus/plugins/newfromtemplateplugin/nftdialog.cpp |
---|
221,6 → 221,7 |
infoText += currentTemplate->usage + "<br>"; |
infoText += "<b>"+tr("Created with")+"</b><br>"; |
infoText += "Scribus " + currentTemplate->scribusVersion + "<br>"; |
infoText += "<b>"+tr("Date")+"</b><br>"; |
infoText += currentTemplate->date + "<br>"; |
infoText += "<b>"+tr("Author")+"</b><br>"; |
infoText += currentTemplate->author + "<br>"; |
318,8 → 319,8 |
text += "<b>"; |
text += tr("Downloading Templates"); |
text += "</b><br>"; |
text += tr("Document templates can be found in " |
"http://www.scribus.net/ Downloads section."); |
text += tr("Document templates can be found at " |
"http://www.scribus.net/ in the Downloads section."); |
text += "<br><br>"; |
text += "<b>"; |
text += tr("Installing Templates"); |
333,17 → 334,17 |
text += "<b>"; |
text += tr("Preparing a template"); |
text += "</b><br>"; |
text += tr("Make sure images you use can be used anywhere. Fonts must be checked for this as well. If fonts cannot be shared do not collect them when saving as a template."); |
text += tr("Template creator should also make sure that the Installing Templates applies to her/his templates as well. Which means a user should download a template package and be able to extract them to the template directory and start using them."); |
text += tr("Make sure images and fonts you use can be used freely. If fonts cannot be shared do not collect them when saving as a template."); |
text += tr("The template creator should also make sure that the Installing Templates section above applies to their templates as well. This means a user should be able to download a template package and be able to extract them to the template directory and start using them."); |
text += "<br><br><b>"; |
text += tr("Removing a template"); |
text += "</b><br>"; |
text += tr("Removing a template from the NFT dialog will only remove the entry from the template.xml. It will not delete the document files. Popup menu with remove is only shown if you have write access to the template.xml file."); |
text += tr("Removing a template from the New From Template dialog will only remove the entry from the template.xml, it will not delete the document files. A popup menu with remove is only shown if you have write access to the template.xml file."); |
text += "<br><br>"; |
text += "<b>"; |
text += tr("Translating template.xml"); |
text += "</b><br>"; |
text += tr("Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that's present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. Copy must locate in the same directory than the original template.xml for NFT being able to load it."); |
text += tr("Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it."); |
aboutLabel->setText(text); |
} |
/trunk/Scribus/scribus/page.cpp |
---|
9178,7 → 9178,6 |
void Page::AlignObj(bool xa, bool ya, bool Vth, bool Vtv, double xdisp, double ydisp, int xart, int yart) |
{ |
double xd; |
double xp = 99999.9; |
double minx = 99999.9; |
double miny = 99999.9; |
/trunk/Scribus/scribus/po/scribus.tr_TR.po |
---|
6,7 → 6,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.8\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2002-09-18 09:47+0300\n" |
"Last-Translator: erkan <Selamsana@uni.de>\n" |
"Language-Team: Türkçe <tr@li.org>\n" |
4420,10 → 4420,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Metin dosyaları (*.txt);;Bütün dosyalar (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4455,6 → 4451,10 |
msgstr "Scribus Kılavuzu" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Metin dosyaları (*.txt);;Bütün dosyalar (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Gölge:" |
/trunk/Scribus/scribus/po/scribus.id.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 1.0\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2003-07-30 09:04+0700\n" |
"Last-Translator: Triyan W. Nugroho <iyan_kid@yahoo.com>\n" |
"Language-Team: Bahasa Indonesia <id@li.org>\n" |
4201,10 → 4201,6 |
msgid "All Files (*)" |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "File Teks (*.txt);;Semua File (*)" |
msgid "" |
"Can't write the File: \n" |
"%1" |
4233,6 → 4229,10 |
msgstr "Manual Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "File Teks (*.txt);;Semua File (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Tingkat Kegelapan:" |
/trunk/Scribus/scribus/po/scribus.es_ES.po |
---|
177,7 → 177,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus.es_ES\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2002-09-22 21:20+0200\n" |
"Last-Translator: \n" |
"Language-Team: <ca@li.org>\n" |
4403,10 → 4403,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Ficheros de texto (*.txt);;Todos los ficheros (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4437,6 → 4433,10 |
msgstr "Manual del Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Ficheros de texto (*.txt);;Todos los ficheros (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Intensidad:" |
/trunk/Scribus/scribus/po/scribus.ru.ts |
---|
12587,6 → 12587,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Дата</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.de.ts |
---|
13191,6 → 13191,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation>Kopieren Sie eine bestehende template.xml nach template.lang_COUNTRY.xml, wobei Sie denselben Ländercode benutzen sollten wie die qm-Datei für Ihre Sprache auch hat. Außerdem muss die Kopie im selben Verzeichnis wie das Original liegen.</translation> |
</message> |
<message> |
<source>Date</source> |
<translation>Datum</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.bg_BG.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.3\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2001-12-14 01:18+0200\n" |
"Last-Translator: Vasko Tomanov <vasko@web.bg>\n" |
"Content-Type: text/plain; charset=cp1251\n" |
4119,10 → 4119,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Òåêñòîâ ôàéë (*.txt);;Âñè÷êè ôàéëîâå (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4153,6 → 4149,10 |
msgstr "Äîêóìåíòàöèÿ" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Òåêñòîâ ôàéë (*.txt);;Âñè÷êè ôàéëîâå (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Ñÿíêà:" |
/trunk/Scribus/scribus/po/scribus.nb_NO.ts |
---|
16825,6 → 16825,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Dato</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.fi.ts |
---|
9973,6 → 9973,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Päivämäärä</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.galician.po |
---|
5,7 → 5,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.3\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 1999-02-23 15:38+0200\n" |
"Last-Translator: Manuel Anxo Rei <manxopar@mixmail.com>\n" |
"Content-Type: text/plain; charset=iso-8859-1\n" |
4165,10 → 4165,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Ficheiros de Texto (*.txt);;Todos (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4199,6 → 4195,10 |
msgstr "manual do Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Ficheiros de Texto (*.txt);;Todos (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Intensidade:" |
/trunk/Scribus/scribus/po/scribus.eu.po |
---|
7,7 → 7,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2003-12-15 23:36+0100\n" |
"Last-Translator: Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>\n" |
"Language-Team: basque <itzulpena@euskalgnu.org>\n" |
4234,10 → 4234,6 |
msgid "All Files (*)" |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Testu-fitxategiak (*.txt);;Fitxategi guztiak (*)" |
msgid "" |
"Can't write the File: \n" |
"%1" |
4265,6 → 4261,10 |
msgstr "Scribus-en eskuliburua" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Testu-fitxategiak (*.txt);;Fitxategi guztiak (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Itzala:" |
/trunk/Scribus/scribus/po/scribus.cs_CZ.ts |
---|
17066,6 → 17066,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Datum</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.nl.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 1.0\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2003-07-20 10:00+0200\n" |
"Last-Translator: Jasja Glasbeek <jasja@benik.nl>\n" |
"Content-Type: text/plain; charset=iso-8859-1\n" |
4221,10 → 4221,6 |
msgid "All Files (*)" |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "TekstBestanden (*.txt);;Alle Bestanden (*)" |
msgid "" |
"Can't write the File: \n" |
"%1" |
4253,6 → 4249,10 |
msgstr "Scribus Handboek" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "TekstBestanden (*.txt);;Alle Bestanden (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Schaduw:" |
/trunk/Scribus/scribus/po/scribus.da_DK.ts |
---|
9990,6 → 9990,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Dato</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.sk_SK.po |
---|
8,7 → 8,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus.sk_SK\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2003-07-12 11:59+0100\n" |
"Last-Translator: Zdenko Podobný <zdpo@mailbox.sk>\n" |
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" |
4231,10 → 4231,6 |
msgid "All Files (*)" |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Textové súbory (*.txt);;V¹etky súbory (*)" |
msgid "" |
"Can't write the File: \n" |
"%1" |
4263,6 → 4259,10 |
msgstr "Scribus manuál" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Textové súbory (*.txt);;V¹etky súbory (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Tieò:" |
/trunk/Scribus/scribus/po/scribus.br.ts |
---|
13157,6 → 13157,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Data</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.hu.po |
---|
1,6 → 1,6 |
msgid "" |
msgstr "" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2003-07-16\n" |
"Last-Translator: NAGY Bence <gimb@freemail.hu>\n" |
"Content-Type: text/plain; charset=iso-8859-2\n" |
4210,10 → 4210,6 |
msgid "All Files (*)" |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Szövegfájlok (*.txt);;Minden fájl (*)" |
msgid "" |
"Can't write the File: \n" |
"%1" |
4242,6 → 4238,10 |
msgstr "Scribus kézikönyv" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Szövegfájlok (*.txt);;Minden fájl (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Árnyalat:" |
/trunk/Scribus/scribus/po/scribus.it.po |
---|
10,7 → 10,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2004-06-17 18:49+0200\n" |
"Last-Translator: Pier Luigi Cinquantini <plcinquantini@katamail.com>\n" |
"Language-Team: Italiano <it@li.org>\n" |
4362,10 → 4362,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "File di testo (*.txt);;Tutti i file (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4395,6 → 4391,10 |
msgid "Scribus Manual" |
msgstr "Manuale di Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "File di testo (*.txt);;Tutti i file (*)" |
msgid "&Shade:" |
msgstr "" |
/trunk/Scribus/scribus/po/scribus.lt_LT.po |
---|
4,7 → 4,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: Scribus 0.7\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2002-04-20 22:57GMT\n" |
"Last-Translator: Aivaras Kirejevas <kiras@mail.lt>\n" |
"Language-Team: Lithuanian\n" |
4231,10 → 4231,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Tekstinis failas (*.txt);;Visi failai (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4266,6 → 4262,10 |
msgstr "Scribus vadovas" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Tekstinis failas (*.txt);;Visi failai (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Ðeðëlis:" |
/trunk/Scribus/scribus/po/scribus.pl_PL.ts |
---|
13525,6 → 13525,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Data</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.fr.ts |
---|
17087,6 → 17087,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Date</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.no_NO.ts |
---|
16825,6 → 16825,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Dato</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.en_GB.ts |
---|
1551,31 → 1551,31 |
<name>CsvDialog</name> |
<message> |
<source>CSV Importer Options</source> |
<translation type="unfinished"></translation> |
<translation>CSV Importer Options</translation> |
</message> |
<message> |
<source>Field delimiter:</source> |
<translation type="unfinished"></translation> |
<translation>Field delimiter:</translation> |
</message> |
<message> |
<source>(TAB)</source> |
<translation type="unfinished"></translation> |
<translation>(TAB)</translation> |
</message> |
<message> |
<source>Value delimiter:</source> |
<translation type="unfinished"></translation> |
<translation>Value delimiter:</translation> |
</message> |
<message> |
<source>First row is a header</source> |
<translation type="unfinished"></translation> |
<translation>First row is a header</translation> |
</message> |
<message> |
<source>OK</source> |
<translation type="unfinished">OK</translation> |
<translation>OK</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation type="unfinished">Cancel</translation> |
<translation>Cancel</translation> |
</message> |
</context> |
<context> |
2656,12 → 2656,8 |
</message> |
<message> |
<source>Fonts Preview</source> |
<translation type="unfinished">Fonts Preview</translation> |
<translation>Fonts Preview</translation> |
</message> |
<message> |
<source>Font Preview</source> |
<translation type="obsolete">Font Preview</translation> |
</message> |
</context> |
<context> |
<name>GradientEditor</name> |
7016,59 → 7012,59 |
<name>QFontDialog</name> |
<message> |
<source>&Font</source> |
<translation type="unfinished">&Font</translation> |
<translation>&Font</translation> |
</message> |
<message> |
<source>Font st&yle</source> |
<translation type="unfinished"></translation> |
<translation>Font st&yle</translation> |
</message> |
<message> |
<source>&Size</source> |
<translation type="unfinished">&Size</translation> |
<translation>&Size</translation> |
</message> |
<message> |
<source>Effects</source> |
<translation type="unfinished">Effects</translation> |
<translation>Effects</translation> |
</message> |
<message> |
<source>Stri&keout</source> |
<translation type="unfinished"></translation> |
<translation>Stri&keout</translation> |
</message> |
<message> |
<source>&Underline</source> |
<translation type="unfinished"></translation> |
<translation>&Underline</translation> |
</message> |
<message> |
<source>&Color</source> |
<translation type="unfinished">&Colour</translation> |
<translation>&Colour</translation> |
</message> |
<message> |
<source>Sample</source> |
<translation type="unfinished"></translation> |
<translation>Sample</translation> |
</message> |
<message> |
<source>Scr&ipt</source> |
<translation type="unfinished"></translation> |
<translation>Scr&ipt</translation> |
</message> |
<message> |
<source>OK</source> |
<translation type="unfinished">OK</translation> |
<translation>OK</translation> |
</message> |
<message> |
<source>Apply</source> |
<translation type="unfinished"></translation> |
<translation>Apply</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation type="unfinished">Cancel</translation> |
<translation>Cancel</translation> |
</message> |
<message> |
<source>Close</source> |
<translation type="unfinished">Close</translation> |
<translation>Close</translation> |
</message> |
<message> |
<source>Select Font</source> |
<translation type="unfinished"></translation> |
<translation>Select Font</translation> |
</message> |
</context> |
<context> |
7434,15 → 7430,15 |
</message> |
<message> |
<source>Comma Separated Value Files</source> |
<translation type="unfinished"></translation> |
<translation>Comma Separated Value Files</translation> |
</message> |
<message> |
<source>CSV_data</source> |
<translation type="unfinished"></translation> |
<translation>CSV_data</translation> |
</message> |
<message> |
<source>CSV_header</source> |
<translation type="unfinished"></translation> |
<translation>CSV_header</translation> |
</message> |
</context> |
<context> |
8639,10 → 8635,6 |
<translation>Distribute/&Align...</translation> |
</message> |
<message> |
<source>&Edit Frame</source> |
<translation type="obsolete">&Edit Frame</translation> |
</message> |
<message> |
<source>&Shape</source> |
<translation>&Shape</translation> |
</message> |
8948,7 → 8940,7 |
</message> |
<message> |
<source>&Edit Shape</source> |
<translation type="unfinished"></translation> |
<translation>&Edit Shape</translation> |
</message> |
</context> |
<context> |
9943,44 → 9935,28 |
</message> |
<message> |
<source>Document templates can be found at http://www.scribus.net/ in the Downloads section.</source> |
<translation type="unfinished">Document templates can be found at http://www.scribus.net/ in the Downloads section.</translation> |
<translation>Document templates can be found at http://www.scribus.net/ in the Downloads section.</translation> |
</message> |
<message> |
<source>Make sure images and fonts you use can be used freely. If fonts cannot be shared do not collect them when saving as a template.</source> |
<translation type="unfinished">Make sure images and fonts you use can be used freely. If fonts cannot be shared do not collect them when saving as a template.</translation> |
<translation>Make sure images and fonts you use can be used freely. If fonts cannot be shared do not collect them when saving as a template.</translation> |
</message> |
<message> |
<source>The template creator should also make sure that the Installing Templates section above applies to their templates as well. This means a user should be able to download a template package and be able to extract them to the template directory and start using them.</source> |
<translation type="unfinished">The template creator should also make sure that the Installing Templates section above applies to their templates as well. This means a user should be able to download a template package and be able to extract them to the template directory and start using them.</translation> |
<translation>The template creator should also make sure that the Installing Templates section above applies to their templates as well. This means a user should be able to download a template package and be able to extract them to the template directory and start using them.</translation> |
</message> |
<message> |
<source>Removing a template from the New From Template dialog will only remove the entry from the template.xml, it will not delete the document files. A popup menu with remove is only shown if you have write access to the template.xml file.</source> |
<translation type="unfinished">Removing a template from the New From Template dialog will only remove the entry from the template.xml, it will not delete the document files. A popup menu with remove is only shown if you have write access to the template.xml file.</translation> |
<translation>Removing a template from the New From Template dialog will only remove the entry from the template.xml, it will not delete the document files. A popup menu with remove is only shown if you have write access to the template.xml file.</translation> |
</message> |
<message> |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished">Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</translation> |
<translation>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</translation> |
</message> |
<message> |
<source>Document templates can be found in http://www.scribus.net/ Downloads section.</source> |
<translation type="obsolete">Document templates can be found in http://www.scribus.net/ Downloads section.</translation> |
<source>Date</source> |
<translation>Date</translation> |
</message> |
<message> |
<source>Make sure images you use can be used anywhere. Fonts must be checked for this as well. If fonts cannot be shared do not collect them when saving as a template.</source> |
<translation type="obsolete">Make sure images you use can be used anywhere. Fonts must be checked for this as well. If fonts cannot be shared do not collect them when saving as a template.</translation> |
</message> |
<message> |
<source>Template creator should also make sure that the Installing Templates applies to her/his templates as well. Which means a user should download a template package and be able to extract them to the template directory and start using them.</source> |
<translation type="obsolete">Template creator should also make sure that the Installing Templates applies to her/his templates as well. Which means a user should download a template package and be able to extract them to the template directory and start using them.</translation> |
</message> |
<message> |
<source>Removing a template from the NFT dialog will only remove the entry from the template.xml. It will not delete the document files. Popup menu with remove is only shown if you have write access to the template.xml file.</source> |
<translation type="obsolete">Removing a template from the NFT dialog will only remove the entry from the template.xml. It will not delete the document files. Popup menu with remove is only shown if you have write access to the template.xml file.</translation> |
</message> |
<message> |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that's present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. Copy must locate in the same directory than the original template.xml for NFT being able to load it.</source> |
<translation type="obsolete">Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that's present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. Copy must locate in the same directory than the original template.xml for NFT being able to load it.</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.es_LA.po |
---|
5,7 → 5,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus.es_LA\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"Last-Translator: Gonzalo Huerta C.\n" |
"Language-Team: <gonzalo@huerta.cl>\n" |
"Content-Type: text/plain; charset=ISO-8859-1\n" |
4231,10 → 4231,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Archivos de texto (*.txt);;Todos los archivos (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4265,6 → 4261,10 |
msgstr "Manual de Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Archivos de texto (*.txt);;Todos los archivos (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Intensidad:" |
/trunk/Scribus/scribus/po/scribus.cy.ts |
---|
16620,6 → 16620,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation>Copïo template.xml (ffeil patrymlun) sydd yn bodoli eisoes i ffeil o'r enw template.iaith_GWLAD.xml (defnyddiwch y côd iaith sydd yn y ffeil qm ar gyfer eich iaith), er enghraifft template.fi.xml ar gyfer template.xml yn yr iaith Fffinneg. Rhaid i'r gopi fod yn yr un cyfeiriadur a'r template.xml gwreiddiol, i Scribus gael ei lwytho.</translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Dyddiad</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.ca.po |
---|
7,7 → 7,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: scribus.ca\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: 2002-09-22 21:15+0200\n" |
"Last-Translator: \n" |
"Language-Team: <ca@li.org>\n" |
4231,10 → 4231,6 |
msgstr "" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Fitxers de text (*.txt);;Tots els fitxers (*)" |
#, fuzzy |
msgid "" |
"Can't write the File: \n" |
"%1" |
4265,6 → 4261,10 |
msgstr "Manual de l'Scribus" |
#, fuzzy |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "Fitxers de text (*.txt);;Tots els fitxers (*)" |
#, fuzzy |
msgid "&Shade:" |
msgstr "Intensitat:" |
/trunk/Scribus/scribus/po/scribus.sl.ts |
---|
12827,6 → 12827,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Datum</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/po/scribus.uk.ts |
---|
12667,6 → 12667,10 |
<source>Copy an existing template.xml to a file called template.lang_COUNTRY.xml (use the same lang code that is present in the qm file for your language), for example template.fi.xml for Finnish language template.xml. The copy must be located in the same directory as the original template.xml so Scribus can load it.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="unfinished">Дата</translation> |
</message> |
</context> |
<context> |
<name>satdialog</name> |
/trunk/Scribus/scribus/qm/scribus.en_GB.qm |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
/trunk/Scribus/scribus/qm/Makefile.am |
---|
1,7 → 1,7 |
####### kdevelop will overwrite this part!!! (begin)########## |
EXTRA_DIST = scribus.eu.qm scribus.sl.qm scribus.fi.qm scribus.cy.qm scribus.id.qm scribus.nl.qm scribus.ru.qm scribus.cs.qm scribus.bg.qm scribus.ca.qm scribus.da.qm scribus.de.qm scribus.en_GB.qm scribus.es.qm scribus.fr.qm scribus.gl.qm scribus.hu.qm scribus.it.qm scribus.lt_LT.qm scribus.pl.qm scribus.sk.qm scribus.tr.qm scribus.uk.qm scribus.no_NO.qm scribus.nb_NO scribus.br.qm |
EXTRA_DIST = scribus.eu.qm scribus.sl.qm scribus.fi.qm scribus.cy.qm scribus.id.qm scribus.nl.qm scribus.ru.qm scribus.cs.qm scribus.bg.qm scribus.ca.qm scribus.da.qm scribus.de.qm scribus.en_GB.qm scribus.es.qm scribus.fr.qm scribus.gl.qm scribus.hu.qm scribus.it.qm scribus.lt_LT.qm scribus.pl.qm scribus.sk.qm scribus.tr.qm scribus.uk.qm scribus.no_NO.qm scribus.nb_NO.qm scribus.br.qm |
install-data-local: |
$(mkinstalldirs) $(prefix)/lib/scribus/ |
/trunk/Scribus/scribus/qm/scribus.de.qm |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
/trunk/Scribus/Scribus.pot |
---|
7,7 → 7,7 |
msgid "" |
msgstr "" |
"Project-Id-Version: PACKAGE VERSION\n" |
"POT-Creation-Date: 2004-08-15 12:03+0200\n" |
"POT-Creation-Date: 2004-08-16 00:03+0200\n" |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
"Language-Team: LANGUAGE <LL@li.org>\n" |
3710,9 → 3710,6 |
msgid "All Files (*)" |
msgstr "" |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "" |
msgid "" |
"Can't write the File: \n" |
"%1" |
3736,6 → 3733,9 |
msgid "Scribus Manual" |
msgstr "" |
msgid "Text Files (*.txt);;All Files(*)" |
msgstr "" |
msgid "&Shade:" |
msgstr "" |