Rename "Destination" to "Link Destination" as suggested by Frank Reininghaus

CCMAIL: frank78ac@googlemail.com

svn path=/trunk/KDE/kdebase/apps/; revision=1128906
This commit is contained in:
Peter Penz 2010-05-20 16:11:19 +00:00
parent 5e47c22e21
commit b221d7ca19
2 changed files with 2 additions and 2 deletions

View 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 }
};

View 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: