[SCM] ktp-text-ui packaging branch, master, updated. debian/15.12.1-1-1918-gdf4b0ec

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:24:22 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=f53b271

The following commit has been merged in the master branch:
commit f53b27104724687861ebb35213356799ac24b62d
Author: Dan Vrátil <dvratil at redhat.com>
Date:   Fri Nov 22 12:21:04 2013 +0100

    Improve Previous/Next Conversation links in LogViewer
    
    Use Older/Newer Conversation instead, as it's more clear that way
    
    BUG: 327429
---
 logviewer/message-view.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/logviewer/message-view.cpp b/logviewer/message-view.cpp
index 0b137e1..643b94d 100644
--- a/logviewer/message-view.cpp
+++ b/logviewer/message-view.cpp
@@ -148,7 +148,7 @@ void MessageView::processStoredEvents()
     AdiumThemeStatusInfo prevConversation;
     if (m_prev.isValid()) {
         prevConversation = AdiumThemeStatusInfo(AdiumThemeMessageInfo::HistoryStatus);
-        prevConversation.setMessage(QString(QLatin1String("<a href=\"#x-prevConversation\"><<< %1</a>")).arg(i18n("Previous conversation")));
+        prevConversation.setMessage(QString(QLatin1String("<a href=\"#x-prevConversation\"><<< %1</a>")).arg(i18n("Older conversation")));
         prevConversation.setService(m_account->serviceName());
         prevConversation.setTime(QDateTime(m_prev));
     }
@@ -156,7 +156,7 @@ void MessageView::processStoredEvents()
     AdiumThemeStatusInfo nextConversation;
     if (m_next.isValid()) {
         nextConversation = AdiumThemeStatusInfo(AdiumThemeMessageInfo::HistoryStatus);
-        nextConversation.setMessage(QString(QLatin1String("<a href=\"#x-nextConversation\">%1 >>></a>")).arg(i18n("Next conversation")));
+        nextConversation.setMessage(QString(QLatin1String("<a href=\"#x-nextConversation\">%1 >>></a>")).arg(i18n("Newer conversation")));
         nextConversation.setService(m_account->serviceName());
         nextConversation.setTime(QDateTime(m_next));
     }

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list