~pkunal-parmar/ubuntu-calendar-app/Minor-Performance

« back to all changes in this revision

Viewing changes to EventRepetition.qml

  • Committer: Tarmac
  • Author(s): David Planella
  • Date: 2014-10-17 06:58:36 UTC
  • mfrom: (502.1.4 ubuntu-calendar-app)
  • Revision ID: tarmac-20141017065836-qeqmb32rnsq0mdk4
Improvements to translatable strings and .pot build.

Approved by Mihir Soni, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    property var isEdit
35
35
 
36
36
    visible: false
37
 
    title: i18n.tr("Repeats")
 
37
    // TRANSLATORS: this refers to how often a recurrent event repeats
 
38
    // and it is shown as the header of the page to choose repetition
 
39
    // and as the header of the list item that shows the repetition
 
40
    // summary in the page that displays the event details
 
41
    title: i18n.tr("Repeat")
38
42
 
39
43
    EventUtils{
40
44
        id:eventUtils
205
209
        }
206
210
 
207
211
        ListItem.Header{
208
 
            text:i18n.tr("Recurrences")
 
212
            // TRANSLATORS: this refers to how often a recurrent event repeats
 
213
            // and it is shown as the header of the option selector to choose
 
214
            // its repetition
 
215
            text:i18n.tr("Repeats")
209
216
            visible: recurrenceOption.selectedIndex != 0
210
217
                     && limitOptions.selectedIndex == 1
211
218
        }