/src/com/google/appengine/datanucleus/Localisation.properties

http://datanucleus-appengine.googlecode.com/ · Properties File · 79 lines · 45 code · 10 blank · 24 comment · 0 complexity · ee7bdafd7788edf780a63e44174ae0b4 MD5 · raw file

  1. ################################################################################
  2. # Copyright (c) 2011 Andy Jefferson and others. All rights reserved.
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # Contributions :
  16. #
  17. ################################################################################
  18. AppEngine.Insert.Start=Object "{0}" being inserted into AppEngine with all reachable objects
  19. AppEngine.Insert.ObjectWithIdAlreadyExists=Object "{0}" being inserted has id "{1}" yet an object with this id already exists in the datastore!
  20. AppEngine.Insert.ObjectPersisted=Object "{0}" (id="{1}) persisted to AppEngine
  21. AppEngine.Insert.ObjectPersistedWithVersion=Object "{0}" (id="{1}) persisted to AppEngine with version "{2}"
  22. AppEngine.Insert.ObjectPersistedWithIdentity=Object "{0}" persisted to AppEngine has had identity set to "{1}"
  23. AppEngine.Update.Start=Object "{0}" (id="{1}") being updated in AppEngine (for fields "{2}") with all reachable objects
  24. AppEngine.Delete.Start=Object "{0}" (id="{1}") being deleted from AppEngine with all dependent objects
  25. AppEngine.Delete.ObjectDeleted=Object "{0}" (id="{1}") has been deleted
  26. AppEngine.Fetch.Start=Object "{0}" (id="{1}") being retrieved from AppEngine
  27. AppEngine.ExecutionTime=Execution Time = {0} ms
  28. AppEngine.BadInheritance.JDO=Found inheritance strategy "{0}" on {1}. This strategy is not supported in this context. Please see the documentation for information on using inheritance with {2}: http://code.google.com/appengine/docs/java/datastore/dataclasses.html#Inheritance
  29. AppEngine.BadInheritance.JPA=Found inheritance strategy "{0}" on {1}. This strategy is not supported in this context. Please see the documentation for information on using inheritance with {2}: http://code.google.com/appengine/docs/java/datastore/usingjpa.html#Inheritance
  30. AppEngine.IllegalNullAssignment=Datastore entity with kind "{0}" and key "{1}" has a null property named "{2}". This property is mapped to {3}, which cannot accept null values.
  31. AppEngine.OwnedChildCannotChangeParent=Attempt to assign child with key "{0}" to parent with key "{1}". Parent keys are immutable
  32. AppEngine.OptimisticError.EntityHasBeenDeleted=Optimistic concurrency exception {0} class "{1}" with pk "{2}". The underlying entity had already been deleted.
  33. AppEngine.OptimisticError.EntityHasBeenUpdated=Optimistic concurrency exception {0} class "{1}" with pk "{2}". The underlying entity had already been updated.
  34. #
  35. # MetaData
  36. #
  37. AppEngine.MetaData.NoPkFields=Error in meta-data for class {0} : No primary-key field defined.
  38. AppEngine.MetaData.InvalidPKTypeForField=Error in meta-data for field {0} : Unsupported primary key type: {1}
  39. AppEngine.MetaData.SequenceInvalidForPKType=Error in meta-data for field {0} : IdentityStrategy SEQUENCE is not supported on primary keys of type {1}
  40. AppEngine.MetaData.SequenceInvalidForEncodedStringPK=Error in meta-data for field {0} : IdentityStrategy SEQUENCE is not supported on encoded String primary keys
  41. AppEngine.MetaData.CompositePKNotSupported=Error in meta-data for class {0} : More than one primary key field is not supported
  42. AppEngine.MetaData.ChildWithPKTypeInvalid=Error in meta-data for field {0} : Cannot have a primary key of type {1} and be a child object (owning field is "{2}").
  43. AppEngine.MetaData.ClassWithMultipleFieldsOfType=Error in meta-data for class {0} : This has multiple relationship fields of type "{1}" ({2} and {3}). This is not yet supported.
  44. AppEngine.MetaData.ManyToManyRelationNotSupported=Error in meta-data for field {0} : Many-to-many is not currently supported in App Engine. As a workaround, consider maintaining a List<Key> on both sides of the relationship. See http://code.google.com/appengine/docs/java/datastore/relationships.html#Unowned_Relationships for more information.
  45. AppEngine.MetaData.FieldWithExtensionNotPK=Error in meta-data for field {0} : A field with the "{1}" extension must not be the primary key
  46. AppEngine.MetaData.FieldWithExtensionForEncodedString=Error in meta-data for field {0} : A field with the "{1}" extension can only be used in conjunction with an encoded String primary key
  47. AppEngine.MetaData.MoreThanOneFieldWithExtension=Error in meta-data for class {0} : Cannot have more than one field with the "{1}" extension.
  48. AppEngine.MetaData.ExtensionForStringPK=Error in meta-data for field {0} : A field with the "{1}" extension can only be applied to a String primary key.
  49. AppEngine.MetaData.ExtensionForStringField=Error in meta-data for field {0} : Extension "{1}" can only be applied to a String field.
  50. AppEngine.MetaData.ExtensionForLongField=Error in meta-data for field {0} : Extension "{1}" can only be applied to a Long field.
  51. AppEngine.MetaData.ParentPKType=Error in meta-data for field {0} : Parent pk must be of type String or Key.
  52. AppEngine.MetaData.PKAndParentPKInvalid=Error in meta-data for field {0} : Cannot have a "{1}" primary key and a parent pk field.
  53. AppEngine.MetaData.OrderPartOfPK=Error in meta-data for field {0} : Order property "{1} is a sub-component of the primary key. The datastore does not support sorting by primary key components, only the entire primary key.
  54. AppEngine.MetaData.JoinsNotSupported=Error in meta-data for {0} : The datastore does not support joins and therefore cannot honor requests to place related objects in the default fetch group.
  55. AppEngine.MetaData.SequenceInitialSizeNotSupported=Error in meta-data for class {0} : The datastore does not support the configuration of initial sequence values. The first value for this sequence will be 1.
  56. AppEngine.MetaData.UniqueConstraintsNotSupported=Error in meta-data for {0} : The datastore does not support uniqueness constraints.
  57. AppEngine.MetaData.CollectionWithSerializedElementInvalid=Error in meta-data for field {0} : You have defined a collection with an element that is serialized; this is not supported. Mark the whole field as serialized
  58. AppEngine.MetaData.ArrayWithSerializedElementInvalid=Error in meta-data for field {0} : You have defined an array with an element that is serialized; this is not supported. Mark the whole field as serialized
  59. # For tests
  60. AppEngine.MetaData.TestMsg1=main msg
  61. #
  62. # Transaction
  63. #
  64. AppEngine.Transaction.Started=Started datastore transaction: {0}
  65. AppEngine.Transaction.Committed=Committed datastore transaction: {0}
  66. AppEngine.Transaction.RolledBack=Rolled back datastore transaction: {0}
  67. AppEngine.Transaction.AlreadyStarted=Transaction has already been started and nested transactions are not supported
  68. AppEngine.Transaction.CommitInvalid=Transaction has not been started, cannot commit
  69. AppEngine.Transaction.RollbackInvalid=Transaction has not been started, cannot roll back