~timo-jyrinki/ubuntu-calendar-app/use_pickerpanelworkaround_lp1351024

« back to all changes in this revision

Viewing changes to RecurrenceLabelDefines.qml

  • Committer: Tarmac
  • Author(s): David Planella, Kunal Parmar
  • Date: 2014-08-03 02:28:18 UTC
  • mfrom: (371.2.7 i18n-improvements)
  • Revision ID: tarmac-20140803022818-oy3k1ffweew7wa3t
Several improvements and fixes to make strings translatable.

Approved by Ubuntu Phone Apps Jenkins Bot, Mihir Soni.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0;
 
2
import Ubuntu.Components 0.1;
 
3
QtObject {
 
4
    property var recurrenceLabel:[i18n.tr("Once"),
 
5
        i18n.tr("Daily"),
 
6
        i18n.tr("Every Weekday (Monday to Friday)"),
 
7
        i18n.tr("Every Monday, Wednesday and Friday"),
 
8
        i18n.tr("Every Tuesday and Thursday"),
 
9
        i18n.tr("Weekly"),
 
10
        i18n.tr("Monthly"),
 
11
        i18n.tr("Yearly")];
 
12
}