]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Typo fixes
authorMalcolm Hunter <malcolm.hunter@gmx.co.uk>
Tue, 1 Apr 2008 23:32:40 +0000 (23:32 +0000)
committerMalcolm Hunter <malcolm.hunter@gmx.co.uk>
Tue, 1 Apr 2008 23:32:40 +0000 (23:32 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=792746

src/dolphin_directoryviewpropertysettings.kcfg
src/dolphin_generalsettings.kcfg
src/dolphincontextmenu.cpp
src/startupsettingspage.cpp

index 2bc870a8643cc36b85072d6dab06287b3defe284..ead1325de52ce6c30f1bd46c5aa74fe3a6766c31 100644 (file)
 
         <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>
index b34407c666a800820bf265591eeb2f4d81e3d56b..7778db702914a180cb3450a47a29e81a748e4e67 100644 (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">
index dd88fb74bcabf1d290bd271a4db800f61787cee1..6ee2c1672da8807b7944220bffe346fcc619ee72 100644 (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(),
index a7ef58905118b06796e5c5288162a9c4610ab8c4..ed30f2a7f70652f08cbdc4306afb6f00250292b1 100644 (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());