r22055 by jghali - #14851: fix various typos
scribus-commit
scribus-commit at lists.scribus.net
Mon Jun 5 20:10:08 UTC 2017
Author: jghali
Date: Mon Jun 5 20:10:08 2017
New Revision: 22055
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22055
Log:
#14851: fix various typos
Modified:
trunk/Scribus/scribus/desaxe/digester.h
trunk/Scribus/scribus/docinfo.cpp
trunk/Scribus/scribus/plugins/import/pdf/slaoutput.h
trunk/Scribus/scribus/plugins/scriptplugin/cmdcolor.h
trunk/Scribus/scribus/plugins/scriptplugin/objpdffile.cpp
trunk/Scribus/scribus/plugins/scriptplugin/pconsole.cpp
trunk/Scribus/scribus/plugins/scriptplugin/svgimport.h
trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
trunk/Scribus/scribus/ui/latexeditor.cpp
Modified: trunk/Scribus/scribus/desaxe/digester.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/desaxe/digester.h
==============================================================================
--- trunk/Scribus/scribus/desaxe/digester.h (original)
+++ trunk/Scribus/scribus/desaxe/digester.h Mon Jun 5 20:10:08 2017
@@ -59,7 +59,7 @@
ObjType* dummy = NULL;
if( cell.type != typeid(dummy).name() )
{
- std::cerr << "requested type '" << typeid(dummy).name() << "' doesnt match cell type '" << cell.type << "'\n";
+ std::cerr << "requested type '" << typeid(dummy).name() << "' doesn't match cell type '" << cell.type << "'\n";
if (stack)
{
int i=0;
Modified: trunk/Scribus/scribus/docinfo.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/docinfo.cpp
==============================================================================
--- trunk/Scribus/scribus/docinfo.cpp (original)
+++ trunk/Scribus/scribus/docinfo.cpp Mon Jun 5 20:10:08 2017
@@ -175,7 +175,7 @@
formatEdit->setToolTip( "<qt>" + tr( "The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here." ) + "</qt>" );
identifierEdit->setToolTip( "<qt>" + tr( "An unambiguous reference to the document within a given context such as ISBN or URI" ) + "</qt>" );
sourceEdit->setToolTip( "<qt>" + tr( "A reference to a document from which the present document is derived, eg. ISBN or URI" ) + "</qt>" );
- languageEdit->setToolTip( "<qt>" + tr( "The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH" ) + "</qt>" );
+ languageEdit->setToolTip( "<qt>" + tr( "The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hyphen and an ISO-3166 country code, eg. en-GB, fr-CH" ) + "</qt>" );
relationEdit->setToolTip( "<qt>" + tr( "A reference to a related document, possibly using a formal identifier such as a ISBN or URI" ) + "</qt>" );
coverageEdit->setToolTip( "<qt>" + tr( "The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges" ) + "</qt>" );
rightsEdit->setToolTip( "<qt>" + tr( "Information about rights held in and over the document, eg. copyright, patent or trademark" ) + "</qt>" );
Modified: trunk/Scribus/scribus/plugins/import/pdf/slaoutput.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/import/pdf/slaoutput.h
==============================================================================
--- trunk/Scribus/scribus/plugins/import/pdf/slaoutput.h (original)
+++ trunk/Scribus/scribus/plugins/import/pdf/slaoutput.h Mon Jun 5 20:10:08 2017
@@ -167,7 +167,7 @@
// virtual GBool needClipToCropBox() { return gTrue; }
virtual void startPage(int pageNum, GfxState *, XRef *);
virtual void endPage();
- // grapics state
+ // graphics state
virtual void saveState(GfxState *state);
virtual void restoreState(GfxState *state);
Modified: trunk/Scribus/scribus/plugins/scriptplugin/cmdcolor.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/scriptplugin/cmdcolor.h
==============================================================================
--- trunk/Scribus/scribus/plugins/scriptplugin/cmdcolor.h (original)
+++ trunk/Scribus/scribus/plugins/scriptplugin/cmdcolor.h Mon Jun 5 20:10:08 2017
@@ -138,7 +138,7 @@
PyDoc_STRVAR(scribus_delcolor__doc__,
QT_TR_NOOP("deleteColor(\"name\", \"replace\")\n\
\n\
-Deletes the color \"name\". Every occurence of that color is replaced by the\n\
+Deletes the color \"name\". Every occurrence of that color is replaced by the\n\
color \"replace\". If not specified, \"replace\" defaults to the color\n\
\"None\" - transparent.\n\
\n\
Modified: trunk/Scribus/scribus/plugins/scriptplugin/objpdffile.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/scriptplugin/objpdffile.cpp
==============================================================================
--- trunk/Scribus/scribus/plugins/scriptplugin/objpdffile.cpp (original)
+++ trunk/Scribus/scribus/plugins/scriptplugin/objpdffile.cpp Mon Jun 5 20:10:08 2017
@@ -1229,7 +1229,7 @@
"i - Frequency (10 to 1000)\n\t"
"i - Angle (-180 to 180)\n\t"
"i - Spot Function\n\t\t0 - Simple Dot\n\t\t1 - Line\n\t\t2 - Round\n\t\t3 - Ellipse\n"
-"Be carefull when supplying these values as they\nare not checked for validity.");
+"Be careful when supplying these values as they\nare not checked for validity.");
static PyGetSetDef PDFfile_getseters [] = {
{const_cast<char*>("file"), (getter)PDFfile_getfile, (setter)PDFfile_setfile, const_cast<char*>("Name of file to save into"), NULL},
Modified: trunk/Scribus/scribus/plugins/scriptplugin/pconsole.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/scriptplugin/pconsole.cpp
==============================================================================
--- trunk/Scribus/scribus/plugins/scriptplugin/pconsole.cpp (original)
+++ trunk/Scribus/scribus/plugins/scriptplugin/pconsole.cpp Mon Jun 5 20:10:08 2017
@@ -61,7 +61,7 @@
welcomeText += tr(
"This is a standard Python console with some \n"
"known limitations. Please consult the Scribus \n"
- "Scripter documentation for futher information. ");
+ "Scripter documentation for further information. ");
welcomeText += "\"\"\"\n";
commandEdit->setText(welcomeText);
commandEdit->selectAll();
Modified: trunk/Scribus/scribus/plugins/scriptplugin/svgimport.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/scriptplugin/svgimport.h
==============================================================================
--- trunk/Scribus/scribus/plugins/scriptplugin/svgimport.h (original)
+++ trunk/Scribus/scribus/plugins/scriptplugin/svgimport.h Mon Jun 5 20:10:08 2017
@@ -17,7 +17,7 @@
Places the Vectorgrapics \"filename\" onto the current page,\n\
x and y specify the coordinate of the topleft corner of the graphic placed on the page\n\
\n\
-If loading was successful, the selection contains the imported grapic\n\
+If loading was successful, the selection contains the imported graphic\n\
"));
/*! Places a Vector file. */
PyObject *scribus_placevec(PyObject * /*self*/, PyObject* args);
Modified: trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
==============================================================================
--- trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp (original)
+++ trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp Mon Jun 5 20:10:08 2017
@@ -142,7 +142,7 @@
void HunspellDialog::replaceWord(int i)
{
- //TODO: rehypenate after the replacement
+ //TODO: rehyphenate after the replacement
QString newText(suggestionsListWidget->currentItem()->text());
int lengthDiff=m_iText->replaceWord(m_wfList->at(i).start+m_wfList->at(i).changeOffset, newText);
if (lengthDiff!=0)
Modified: trunk/Scribus/scribus/ui/latexeditor.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22055&path=/trunk/Scribus/scribus/ui/latexeditor.cpp
==============================================================================
--- trunk/Scribus/scribus/ui/latexeditor.cpp (original)
+++ trunk/Scribus/scribus/ui/latexeditor.cpp Mon Jun 5 20:10:08 2017
@@ -449,7 +449,7 @@
else
{
qWarning() << "XML-ERROR: " << xml.lineNumber() << ":"
- << xml.columnNumber() << ":" << "Unknow tab type"
+ << xml.columnNumber() << ":" << "Unknown tab type"
<< xml.attributes().value("type").toString();
}
}
More information about the scribus-commit
mailing list