]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Rename "Destination" to "Link Destination" as suggested by Frank Reininghaus
authorPeter Penz <peter.penz19@gmail.com>
Thu, 20 May 2010 16:11:19 +0000 (16:11 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Thu, 20 May 2010 16:11:19 +0000 (16:11 +0000)
CCMAIL: frank78ac@googlemail.com

svn path=/trunk/KDE/kdebase/apps/; revision=1128906

src/additionalinfoaccessor.cpp
src/dolphinmodel.cpp

index 3d417e8e1b9d64bf26927fb0c23ba90ec006ae5c..826ee4fc327932d408267deb2057d2edbbeead9e 100644 (file)
@@ -102,7 +102,7 @@ AdditionalInfoAccessor::AdditionalInfoAccessor() :
         { "owner",       I18N_NOOP2("@label", "Owner"),       DolphinView::SortByOwner,         8 },
         { "group",       I18N_NOOP2("@label", "Group"),       DolphinView::SortByGroup,        16 },
         { "type",        I18N_NOOP2("@label", "Type"),        DolphinView::SortByType,         32 },
-        { "destination", I18N_NOOP2("@label", "Destination"), DolphinView::SortByDestination,  64 },
+        { "destination", I18N_NOOP2("@label", "Link Destination"), DolphinView::SortByDestination,  64 },
         { "path",        I18N_NOOP2("@label", "Path"),        DolphinView::SortByPath,        128 }
     };
 
index 7e098648569e291b46528e46d1b3253ac57c8f2b..351967f76e11add55371a9793a6dbc135a26484e 100644 (file)
@@ -119,7 +119,7 @@ QVariant DolphinModel::headerData(int section, Qt::Orientation orientation, int
     if ((orientation == Qt::Horizontal) && (role == Qt::DisplayRole)) {
         switch (section) {
         case DolphinModel::LinkDest:
-            return i18nc("@title::column", "Destination");
+            return i18nc("@title::column", "Link Destination");
         case DolphinModel::LocalPathOrUrl:
             return i18nc("@title::column", "Path");
         default: