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

List:       kde-commits
Subject:    [labplot] src/backend/core: Removed periods in couple of i18n-strings in AbstractAspect.
From:       Alexander Semke <null () kde ! org>
Date:       2017-05-01 6:56:08
Message-ID: E1d55Fg-0002p9-0b () code ! kde ! org
[Download RAW message or body]

Git commit c9625b31f6eb54d1e4055103a4d5e8da8609597d by Alexander Semke.
Committed on 01/05/2017 at 06:55.
Pushed by asemke into branch 'master'.

Removed periods in couple of i18n-strings in AbstractAspect.

M  +4    -4    src/backend/core/AbstractAspect.cpp

https://commits.kde.org/labplot/c9625b31f6eb54d1e4055103a4d5e8da8609597d

diff --git a/src/backend/core/AbstractAspect.cpp b/src/backend/core/AbstractAspect.cpp
index 2725a2a2..cd195112 100644
--- a/src/backend/core/AbstractAspect.cpp
+++ b/src/backend/core/AbstractAspect.cpp
@@ -371,7 +371,7 @@ void AbstractAspect::addChild(AbstractAspect* child) {
 	Q_CHECK_PTR(child);
 
 	QString new_name = uniqueNameFor(child->name());
-	beginMacro(i18n("%1: add %2.", name(), new_name));
+	beginMacro(i18n("%1: add %2", name(), new_name));
 	if (new_name != child->name()) {
 		info(i18n("Renaming \"%1\" to \"%2\" in order to avoid name collision.", child->name(), new_name));
 		child->setName(new_name);
@@ -395,7 +395,7 @@ void AbstractAspect::insertChildBefore(AbstractAspect* child, AbstractAspect* be
 	Q_CHECK_PTR(child);
 
 	QString new_name = uniqueNameFor(child->name());
-	beginMacro(i18n("%1: insert %2 before %3.", name(), new_name, before ? before->name() : "end"));
+	beginMacro(i18n("%1: insert %2 before %3", name(), new_name, before ? before->name() : "end"));
 	if (new_name != child->name()) {
 		info(i18n("Renaming \"%1\" to \"%2\" in order to avoid name collision.", child->name(), new_name));
 		child->setName(new_name);
@@ -430,7 +430,7 @@ void AbstractAspect::insertChildBeforeFast(AbstractAspect* child, AbstractAspect
  */
 void AbstractAspect::removeChild(AbstractAspect* child) {
 	Q_ASSERT(child->parentAspect() == this);
-	beginMacro(i18n("%1: remove %2.", name(), child->name()));
+	beginMacro(i18n("%1: remove %2", name(), child->name()));
 	exec(new AspectChildRemoveCmd(d, child));
 	endMacro();
 }
@@ -439,7 +439,7 @@ void AbstractAspect::removeChild(AbstractAspect* child) {
  * \brief Remove all child Aspects.
  */
 void AbstractAspect::removeAllChildren() {
-	beginMacro(i18n("%1: remove all children.", name()));
+	beginMacro(i18n("%1: remove all children", name()));
 
 	QList<AbstractAspect*> children_list = children();
 	QList<AbstractAspect*>::const_iterator i = children_list.constBegin();
[prev in list] [next in list] [prev in thread] [next in thread] 

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