[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    KDE/kdeedu/kturtle/src
From:       Thomas Häber <thomas () haeber ! de>
Date:       2006-10-01 2:34:28
Message-ID: 1159670068.066866.30737.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 590834 by haeber:

GUI:
fixed spelling (EBN)

 M  +1 -1      editor.cpp  
 M  +6 -6      interpreter/executer.cpp  
 M  +3 -3      interpreter/interpreter.cpp  
 M  +3 -3      mainwindow.cpp  


--- trunk/KDE/kdeedu/kturtle/src/editor.cpp #590833:590834
@@ -207,7 +207,7 @@
 	if (url.isEmpty()) return false;
 	if (KIO::NetAccess::exists(url, true, this) &&
 		KMessageBox::warningContinueCancel(this,
-			i18n("Are you shure you want to overwrite %1", url.fileName()),
+			i18n("Are you sure you want to overwrite %1", url.fileName()),
 			i18n("Overwrite Existing File"),KGuiItem(i18n("&Overwrite")),
 			i18n("&Overwrite")
 			) != KMessageBox::Continue
--- trunk/KDE/kdeedu/kturtle/src/interpreter/executer.cpp #590833:590834
@@ -17,7 +17,7 @@
 */
 
 
-// This file is originally written by Walter Scheppers, but allmost
+// This file is originally written by Walter Scheppers, but almost
 // every aspect of it is slightly changed by Cies Breijs.
 
 
@@ -66,7 +66,7 @@
 	qDebug() << "Executer::execute() -- main execute loop called";
 
 	if (executeCurrent) {
-		// executeCurrent is used to make shure the currentNode will be executed
+		// executeCurrent is used to make sure the currentNode will be executed
 		// this way the tree will not be walked before the execution...
 		qDebug() << ">> jumping to tree node, and executing: " << \
currentNode->token()->look();  executeCurrent = false;
@@ -344,7 +344,7 @@
 		qDebug() << "exists globally";
 		node->setValue(globalVariableTable[node->token()->look()]);
 	} else {
-		addError(i18n("The variable '%1' was used without first beeing assigned to a \
value", node->token()->look()), *node->token(), 0); +		addError(i18n("The variable \
'%1' was used without first being assigned to a value", node->token()->look()), \
*node->token(), 0);  }
 }
 void Executer::executeFunctionCall(TreeNode* node) {
@@ -431,7 +431,7 @@
 }
 void Executer::executeWhile(TreeNode* node) {
 	qDebug() << "Executer::executeWhile()";
-	// first time this gets called the expression is allready executed
+	// first time this gets called the expression is already executed
 	// after one iteration the expression is not automatically re-executed.
 	// so we do the following on every call to executeWhile:
 	//     exec scope, exec expression, exec scope, exec expresion, ...
@@ -456,9 +456,9 @@
 }
 void Executer::executeForTo(TreeNode* node) {
 	qDebug() << "Executer::executeForTo()";
-	// first time this gets called the expressions are allready executed
+	// first time this gets called the expressions are already executed
 	// after one iteration the expression is not re-executed.
-	// so we do: exec scope, exec expressions, exec scope, exec expresions, ...
+	// so we do: exec scope, exec expressions, exec scope, exec expressions, ...
 
 	bool firstIteration = false;
 	if (functionStack.isEmpty() || functionStack.top().function != node) {
--- trunk/KDE/kdeedu/kturtle/src/interpreter/interpreter.cpp #590833:590834
@@ -54,7 +54,7 @@
 {
 	switch (_state) {
 		case Uninitialized:
-			qCritical("Interpreter::interpret(): called without beeing initialized");
+			qCritical("Interpreter::interpret(): called without being initialized");
 			return;
 
 
@@ -74,7 +74,7 @@
 				qDebug() << "Error encountered while parsing:";
 				QStringList lines = errorList->asString().split('\n');
 				foreach (QString line, lines) qDebug() << line;
-				qDebug() << "Aborting because parsing was unsuccesful...";
+				qDebug() << "Aborting because parsing was unsuccessful...";
 				return;
 			}
 
@@ -91,7 +91,7 @@
 // 					qDebug() << "Parsing returned " << errorList->count() << " error(s):";
 // 					QStringList lines = errorList->asString().split('\n');
 // 					foreach (QString line, lines) qDebug(line.toLatin1());
-// 					qDebug() << "Aborting because parsing was unsuccesful...";
+// 					qDebug() << "Aborting because parsing was unsuccessful...";
 // 					exit(0);
 // 				}
 
--- trunk/KDE/kdeedu/kturtle/src/mainwindow.cpp #590833:590834
@@ -215,10 +215,10 @@
 	a->setStatusTip(i18n("Search through the code in the editor"));
 
 	a = KStdAction::findNext(editor, SLOT(findNext()), ac);
-	a->setStatusTip(i18n("Find the next occurence"));
+	a->setStatusTip(i18n("Find the next occurrence"));
 
 	a = KStdAction::findPrev(editor, SLOT(findPrev()), ac);
-	a->setStatusTip(i18n("Find the previous occurence"));
+	a->setStatusTip(i18n("Find the previous occurrence"));
 
 	a = KStdAction::replace(editor, SLOT(replace()), ac);
 	a->setStatusTip(i18n("Search and replace"));
@@ -648,7 +648,7 @@
 		interpreter->initialize(*codeStream);
 	}
 
-	// start parsing (allways in full speed)
+	// start parsing (always in full speed)
 	iterationTimer->setSingleShot(false);
 	iterationTimer->start(0);
 }


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic