~pkunal-parmar/ubuntu-calendar-app/ICalImport

« back to all changes in this revision

Viewing changes to RecurrenceLabelDefines.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:
23
23
    property var recurrenceLabel:[i18n.tr("Once"),
24
24
        i18n.tr("Daily"),
25
25
        i18n.tr("On Weekdays"),
26
 
        i18n.tr("On %1 , %2 , %3").arg(Qt.locale().dayName(Qt.Monday,Locale.NarrowFormat)).arg(Qt.locale().dayName(Qt.Wednesday,Locale.NarrowFormat)).arg(Qt.locale().dayName(Qt.Friday,Locale.NarrowFormat)),
 
26
        // TRANSLATORS: The arguments refer to days of the week. E.g. "On Monday, Tuesday, Thursday"
 
27
        i18n.tr("On %1, %2 ,%3").arg(Qt.locale().dayName(Qt.Monday,Locale.NarrowFormat)).arg(Qt.locale().dayName(Qt.Wednesday,Locale.NarrowFormat)).arg(Qt.locale().dayName(Qt.Friday,Locale.NarrowFormat)),
 
28
        // TRANSLATORS: The arguments refer to days of the week. E.g. "On Monday and Thursday"
27
29
        i18n.tr("On %1 and %2").arg(Qt.locale().dayName(Qt.Tuesday,Locale.NarrowFormat)).arg(Qt.locale().dayName(Qt.Thursday,Locale.NarrowFormat)),
28
30
        i18n.tr("Weekly"),
29
31
        i18n.tr("Monthly"),