]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/commentwidget.cpp
Move the pasteIntoFolder() method from the contextmenu into DolphinView. This allows...
[dolphin.git] / src / commentwidget.cpp
index eebf12ad6cea905ddeaee79d53ad644e7bdd3982..4d784e5e55bf1434a6a38a8c159ca2909e0c5292 100644 (file)
@@ -52,10 +52,10 @@ private:
 void CommentWidget::Private::update()
 {
     if ( comment.isEmpty() ) {
-        label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Click to add comment..." ) + "</a>" );
+        label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Add comment..." ) + "</a>" );
     }
     else {
-        label->setText( "<p>" + comment + "<p align=right><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Change comment..." ) + "</a>" );
+        label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Change comment..." ) + "</a>" );
     }
 }