Typo fixes

svn path=/trunk/KDE/kdebase/apps/; revision=792746
This commit is contained in:
Malcolm Hunter 2008-04-01 23:32:40 +00:00
parent afb9e2d132
commit 762418b05a
4 changed files with 7 additions and 7 deletions

View file

@ -25,26 +25,26 @@
<entry name="ShowPreview" type="Bool" >
<label context="@label">Show preview</label>
<whatsthis context="@info:whatsthis">When this option is enabled, a preview of the file content is shown as icon.</whatsthis>
<whatsthis context="@info:whatsthis">When this option is enabled, a preview of the file content is shown as an icon.</whatsthis>
<default>false</default>
</entry>
<entry name="CategorizedSorting" type="Bool" >
<label context="@label">Categorized Sorting</label>
<whatsthis context="@info:whatsthis">When this option is enabled, the sorted items get summarized by their category.</whatsthis>
<whatsthis context="@info:whatsthis">When this option is enabled, the sorted items are summarized by their category.</whatsthis>
<default>false</default>
</entry>
<entry name="Sorting" type="Int" >
<label context="@label">Sort files by</label>
<whatsthis context="@info:whatsthis">This option defines which attribute (name, size, date, etc) sorting is performed on.</whatsthis>
<whatsthis context="@info:whatsthis">This option defines which attribute (name, size, date, etc.) sorting is performed on.</whatsthis>
<default code="true">DolphinView::SortByName</default>
<min>0</min>
<max code="true">DolphinView::MaxSortEnum</max>
</entry>
<entry name="SortOrder" type="Int" >
<label context="@label">Order to sort files in</label>
<label context="@label">Order in which to sort files</label>
<default code="true">Qt::AscendingOrder</default>
<min code="true">Qt::AscendingOrder</min>
<max code="true">Qt::DescendingOrder</max>

View file

@ -25,7 +25,7 @@
<default>false</default>
</entry>
<entry name="GlobalViewProps" type="Bool">
<label context="@label">Should the view properties used for all directories</label>
<label context="@label">Should the view properties be used for all directories</label>
<default>false</default>
</entry>
<entry name="BrowseThroughArchives" type="Bool">

View file

@ -116,7 +116,7 @@ void DolphinContextMenu::openTrashContextMenu()
QAction *action = popup->exec(QCursor::pos());
if (action == emptyTrashAction) {
const QString text(i18nc("@info", "Do you really want to empty the Trash? All items will get deleted."));
const QString text(i18nc("@info", "Do you really want to empty the Trash? All items will be deleted."));
const bool del = KMessageBox::warningContinueCancel(m_mainWindow,
text,
QString(),

View file

@ -116,7 +116,7 @@ void StartupSettingsPage::applySettings()
if (url.isValid() && fileItem.isDir()) {
settings->setHomeUrl(url.prettyUrl());
} else {
KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid and will not get applied."));
KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid and will not be applied."));
}
settings->setSplitView(m_splitView->isChecked());