source: trunk/grails-app/i18n/messages.properties @ 213

Last change on this file since 213 was 213, checked in by gav, 14 years ago

Finishing touches to recurring tasks.

File size: 8.3 KB
RevLine 
[73]1person.pass.minSize.notmet=Password is less than the minimum size of [{3}]
2person.pass.blank=Password cannot be blank
[99]3person.pass.doesNotMatch=Passwords must match
[73]4
[166]5person.personGroups=Person Groups
6person.personGroups.help=Groups provide no application authorisations and are merely for grouping people for information purposes. Use Ctrl or Shift to select multiple groups.
7person.loginName=Login Name
8person.loginName.help=This is the id or name that the person will use to login to the application.
9person.firstName=First Name
10person.firstName.help=The person's real first name.
11person.lastName=Last Name
12person.lastName.help=The person's real last name.
13person.password=Password
14person.password.help=The password that the person will use to login to the appllication (should be changed by them later).
15person.isActive=Active
16person.isActive.help=Disable this to prevent a person logging in to the application.
17
18person.authorities=Authorities
19person.authorities.help=To allow login at least the 'ROLE_AppUser' authority must be given. The 'ROLE_AppAdmin' authority is NOT required for daily use and provides full (read as DANGEROUS) access.
20
[98]21entry.duration=Duration
22entry.duration.help=The time (hh:mm) booked against this entry for date done.
23
[147]24assignedPerson.estimatedDuration=Estimated Duration
25assignedPerson.estimatedDuration.help=The estimated amount of time (hh:mm) that you would like to assign this person to the task.
26
[203]27task.notFound=Could not complete operation, task not found.
[191]28task.operationNotPermittedOnCompleteTask=This operation is not permitted on a complete task.
[196]29task.operationNotPermittedOnTaskInTrash=This operation is not permitted on a task that is in the trash.
[203]30task.failedToSave=Could not complete operation, task failed to save.
31task.modifications.failedToSave=Could not complete operation, as task modification record failed to save.
32tast.taskRecurringSchedule.alreadyExists=This task already has a recurring schedule.
[180]33
[207]34taskRecurringSchedule.notFound=Could not complete operation, recurring schedule not found.
35
[106]36task.assignedPersons=Assigned Persons
37task.assignedPersons.help=The persons assigned to work on this task during planning along with estimated time.
38task.description=Task Description
39task.description.help=Short basic description of the task.
40task.comment=Task Comment
41task.comment.help=Long text for additional info, only shown in detail views.
42task.targetStartDate=Target Start Date
43task.targetStartDate.help=The date we would like the task to start, set during scheduling.
44task.targetCompletionDate=Target Completion Date
45task.targetCompletionDate.help=The date we would like the task to be completed by, set during scheduling.
46task.leadPerson=Lead Person
47task.leadPerson.help=The primay contact person.
[166]48
[213]49taskRecurringSchedule.nextTargetStartDate.mayNotBePast=Please select a start date that is not in the past.
50taskRecurringSchedule.nextTargetStartDate=Next Target Start Date
51taskRecurringSchedule.nextTargetStartDate.help=The target start date for the next auto generated sub task.
52taskRecurringSchedule.recurEvery=Recur Every
53taskRecurringSchedule.recurEvery.help=How often this task should recur. Determines the period between sub task target start dates.
54taskRecurringSchedule.taskDuration=Task Duration
55taskRecurringSchedule.taskDuration.help=How long to allow for the task. Determines the target completion date of the sub tasks.
56taskRecurringSchedule.generateAhead=Generate Ahead
57taskRecurringSchedule.generateAhead.help=How far ahead of the next target start date to generate sub tasks. \
58This allows work packs to be built and work load to be seen and planned. \
59Only generate ahead as far as short term planning is done, since all generated sub task values will be set and therefore \
60time consuming to change.
61taskRecurringSchedule.enabled=Enabled
62taskRecurringSchedule.enabled.help=On to enable automatic sub task generation. Off to stop automatic sub task generation.
[106]63
[166]64task.primaryAsset=Primary Asset
65task.primaryAsset.help=This is the asset that costs will be assigned to.
66task.associatedAssets=Associated Assets
67task.associatedAssets.help=These assets are to be associated with this task, but costs will not be assigned.
68
[177]69inventoryMovement.quantity.insufficientItemsInStock=Could not complete operation, insufficient items in stock.
70inventoryMovement.inventoryItem.notFound=Inventory Item not found.
71
[55]72default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}]
73default.invalid.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL
74default.invalid.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number
75default.invalid.email.message=Property [{0}] of class [{1}] with value [{2}] is not a valid e-mail address
76default.invalid.range.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid range from [{3}] to [{4}]
77default.invalid.size.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid size range from [{3}] to [{4}]
78default.invalid.max.message=Property [{0}] of class [{1}] with value [{2}] exceeds maximum value [{3}]
79default.invalid.min.message=Property [{0}] of class [{1}] with value [{2}] is less than minimum value [{3}]
80default.invalid.max.size.message=Property [{0}] of class [{1}] with value [{2}] exceeds the maximum size of [{3}]
81default.invalid.min.size.message=Property [{0}] of class [{1}] with value [{2}] is less than the minimum size of [{3}]
82default.invalid.validator.message=Property [{0}] of class [{1}] with value [{2}] does not pass custom validation
83default.not.inlist.message=Property [{0}] of class [{1}] with value [{2}] is not contained within the list [{3}]
84default.blank.message=Property [{0}] of class [{1}] cannot be blank
85default.not.equal.message=Property [{0}] of class [{1}] with value [{2}] cannot equal [{3}]
86default.null.message=Property [{0}] of class [{1}] cannot be null
87default.not.unique.message=Property [{0}] of class [{1}] with value [{2}] must be unique
88
89default.paginate.prev=Previous
90default.paginate.next=Next
[213]91default.optimistic.locking.failure=Another user has updated this item while you were editing, please check the updated values.
[55]92
[155]93# Rich UI plugin - Calendar
94default.time=Time
95default.week=Week
96default.monday=Mon
97default.tuesday=Tues
98default.wednesday=Wed
99default.thursday=Thu
100default.friday=Fri
101default.saturday=Sat
102default.sunday=Sun
103
[55]104# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author)
105typeMismatch.java.net.URL=Property {0} must be a valid URL
106typeMismatch.java.net.URI=Property {0} must be a valid URI
107typeMismatch.java.util.Date=Property {0} must be a valid Date
108typeMismatch.java.lang.Double=Property {0} must be a valid number
109typeMismatch.java.lang.Integer=Property {0} must be a valid number
110typeMismatch.java.lang.Long=Property {0} must be a valid number
111typeMismatch.java.lang.Short=Property {0} must be a valid number
112typeMismatch.java.math.BigDecimal=Property {0} must be a valid number
[73]113typeMismatch.java.math.BigInteger=Property {0} must be a valid number
114
[139]115# Navigation plugin, see conf/Config.groovy for menu's.
116# Subitems are not currently resolving with this plugin.
117navigation.nav.home=Home
118navigation.nav.home.start=Start
119navigation.nav.home.appAdmin=Admin
120navigation.nav.home.manager=Manager
121navigation.nav.home.changeSessionTimeout=Timeout
122navigation.nav.home.changePassword=Password
[73]123
[139]124navigation.nav.tasks=Tasks
125navigation.nav.tasks.create=Create
126navigation.nav.tasks.search=Search
127navigation.nav.tasks.show=Show
128
129navigation.nav.inventory=Inventory
130navigation.nav.assets=Assets
[168]131
132# FilterPane plugin, properties.
133fp.property.text.associatedAssets.name=Associated Asset
134fp.property.text.primaryAsset.name=Primary Asset
[181]135fp.property.text.trash=Trash
136fp.property.text.scheduled=Scheduled
137fp.property.text.approved=Approved
[175]138fp.property.text.isObsolete=Obsolete
[168]139fp.property.text.taskGroup.name=Group
140fp.property.text.taskPriority.name=Priority
141fp.property.text.taskStatus.name=Status
142fp.property.text.description=Description
143fp.property.text.comment=Comment
144fp.property.text.leadPerson.lastName=Lead Person (Last Name)
145fp.property.text.leadPerson.firstName=Lead Person (First Name)
146fp.property.text.taskType.name=Type
[175]147fp.property.text.inventoryLocation.name=Location
148fp.property.text.spareFor.name=Spare For
149fp.property.text.supplier.name=Supplier
150fp.property.text.manufacturer.name=Manufacturer
[168]151
Note: See TracBrowser for help on using the repository browser.