~mihirsoni/ubuntu-calendar-app/dateSelectNewEventTest

« back to all changes in this revision

Viewing changes to RemindersModel.qml

  • Committer: David Planella
  • Date: 2014-10-17 05:42:34 UTC
  • mto: This revision was merged to the branch mainline in revision 504.
  • Revision ID: david.planella@ubuntu.com-20141017054234-272pdm84obtghdpp
Fixed a few translatable strings for consistence and added translator comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
    function initialise() {
26
26
        reminderModel.append({ "label": i18n.tr("No Reminder"), "value": -1 })
 
27
        // TRANSLATORS: this refers to when a reminder should be shown as a notification
 
28
        // in the indicators. "On Event" means that it will be shown right at the time
 
29
        // the event starts, not any time before
27
30
        reminderModel.append({ "label": i18n.tr("On Event"), "value": 0 })
28
31
        reminderModel.append({ "label": i18n.tr("5 minutes"), "value": 300 })
29
32
        reminderModel.append({ "label": i18n.tr("15 minutes"), "value": 900 })