~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/libs/dialogs/deletedialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        }
120
120
        else
121
121
        {
122
 
            ddDeleteText->setText(i18n("<qt>These items will be moved to the Trash Bin.</qt>"));
 
122
            ddDeleteText->setText(i18n("<qt>These items will be moved to Trash.</qt>"));
123
123
            ddWarningIcon->setPixmap(KGlobal::iconLoader()->loadIcon("trashcan_full",
124
124
                KIcon::Desktop, KIcon::SizeLarge));
125
125
        }
139
139
        }
140
140
        else
141
141
        {
142
 
            ddDeleteText->setText(i18n("<qt>These albums will be moved to the Trash Bin.</qt>"));
 
142
            ddDeleteText->setText(i18n("<qt>These albums will be moved to Trash.</qt>"));
143
143
            ddWarningIcon->setPixmap(KGlobal::iconLoader()->loadIcon("trashcan_full",
144
144
                                     KIcon::Desktop, KIcon::SizeLarge));
145
145
        }
162
162
        }
163
163
        else
164
164
        {
165
 
            ddDeleteText->setText(i18n("<qt>These albums will be moved to the Trash Bin.<br>"
 
165
            ddDeleteText->setText(i18n("<qt>These albums will be moved to Trash.<br>"
166
166
                                       "Note that <b>all subalbums</b> "
167
167
                                       "are included in this list and will "
168
 
                                       "be moved to the Trash Bin as well.</qt>"));
 
168
                                       "be moved to Trash as well.</qt>"));
169
169
            ddWarningIcon->setPixmap(KGlobal::iconLoader()->loadIcon("trashcan_full",
170
170
                                     KIcon::Desktop, KIcon::SizeLarge));
171
171
        }
189
189
                         ),
190
190
              m_saveShouldDeleteUserPreference(true),
191
191
              m_saveDoNotShowAgain(false),
192
 
              m_trashGuiItem(i18n("&Send to Trash"), "trashcan_full")
 
192
              m_trashGuiItem(i18n("&Move to Trash"), "trashcan_full")
193
193
{
194
194
    m_widget = new DeleteWidget(this, "delete_dialog_widget");
195
195
    setMainWidget(m_widget);