~ubuntu-branches/ubuntu/oneiric/deja-dup/oneiric-proposed

« back to all changes in this revision

Viewing changes to widgets/ConfigDelete.vala

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2011-10-18 12:01:21 UTC
  • mfrom: (1.1.38)
  • Revision ID: package-import@ubuntu.com-20111018120121-dho39fbsggam16a4
Tags: 20.1-0ubuntu0.1
* New upstream bug fix release
  - Correctly backup or exclude folders with [, ], ?, and * in their
    names (LP: #859884, but previously fixed in Ubuntu)
  - Fix translation of some strings when used in control center panel
    mode (LP: #869891)
  - Fix a nautilus crash if the gsettings schema isn't installed
    correctly (LP: #869933)
  - Allow LUKS encrypted volumes to appear in backup location list
    (LP: #871418)
* debian/patches/escape_globs.patch:
  - Dropped, applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
    if (!valid) {
94
94
      var store = (Gtk.ListStore)combo.model;
95
95
      store.insert_with_values(out iter, 0, 0,
96
 
                               ngettext("At least %d day", "At least %d days", confval).printf(confval),
 
96
                               dngettext(Config.GETTEXT_PACKAGE,
 
97
                                         "At least %d day",
 
98
                                         "At least %d days",
 
99
                                         confval).printf(confval),
97
100
                               1, confval);
98
101
      combo.set_active_iter(iter);
99
102
    }