← Back to team overview

deja-dup-team team mailing list archive

[Merge] lp:~nobuto/deja-dup/lp685428 into lp:deja-dup

 

Nobuto MURATA has proposed merging lp:~nobuto/deja-dup/lp685428 into lp:deja-dup.

Requested reviews:
  Déjà Dup Maintainers (deja-dup-team)
Related bugs:
  #685428 please offer an automatic backup period between daily and weekly
  https://bugs.launchpad.net/bugs/685428


In backup settings, users can select automatic backup periods from "Daily, Weekly, Biweekly, Monthly".
This branch adds Tridaily (every three days) period to that.

Biweekly and Monthly are twice of former options, but currently Weekly is 7 times of former one (Daily).
I think it's reasonable to offer a period between Daily and Weekly.
By adding Tridaily, every period becomes around twice of former one.
-- 
https://code.launchpad.net/~nobuto/deja-dup/lp685428/+merge/42774
Your team Déjà Dup Maintainers is requested to review the proposed merge of lp:~nobuto/deja-dup/lp685428 into lp:deja-dup.
=== modified file 'widgets/ConfigPeriod.vala'
--- widgets/ConfigPeriod.vala	2010-10-03 05:24:54 +0000
+++ widgets/ConfigPeriod.vala	2010-12-05 10:17:15 +0000
@@ -34,6 +34,8 @@
     int i = 0;
     
     store.insert_with_values(out iter, i++, 0, _("Daily"), 1, 1);
+    // Translators: Tridaily is every three days
+    store.insert_with_values(out iter, i++, 0, _("Tridaily"), 1, 3);
     store.insert_with_values(out iter, i++, 0, _("Weekly"), 1, 7);
     // Translators: Biweekly is every two weeks
     store.insert_with_values(out iter, i++, 0, _("Biweekly"), 1, 14);