]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/renamedialog.cpp
Create a SidebarTreeView which will include support for drag & drop in later releases...
[dolphin.git] / src / renamedialog.cpp
index 882db8b66fe01872081d498f0ef3a225fa31093e..8aabb2f839b61b05211ee64b79e22f027fb2c3ad 100644 (file)
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
  ***************************************************************************/
 
 #include "renamedialog.h"
@@ -35,7 +35,7 @@ RenameDialog::RenameDialog(const KUrl::List& items) :
     setButtons(Ok|Cancel);
     setDefaultButton(Ok);
 
-    setButtonGuiItem(Ok, KGuiItem(i18n("Rename"), "apply"));
+    setButtonGuiItem(Ok, KGuiItem(i18n("Rename"), "dialog-apply"));
 
     QWidget *page = new QWidget(this);
     setMainWidget(page);
@@ -44,7 +44,7 @@ RenameDialog::RenameDialog(const KUrl::List& items) :
     topLayout->setMargin(KDialog::marginHint());
 
     const int itemCount = items.count();
-    QLabel* editLabel = new QLabel(i18n("Rename the %1 selected items to:").arg(itemCount),
+    QLabel* editLabel = new QLabel(i18n("Rename the %1 selected items to:",itemCount),
                                    page);
 
     m_lineEdit = new KLineEdit(page);