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

« back to all changes in this revision

Viewing changes to RecurrenceLabelDefines.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:
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"),