You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
localized:"There is a mismatch between a provided NSPropertyDescrption's entity and a NSEntityDescription. When a property description is provided, it must match any related entity descriptions: \(description ??Self.noErrorDescription)",
71
79
bundle:.module,
72
-
comment:"Error for when the developer does not provide a valid pair of NSAttributeDescription "
73
-
+"and NSPropertyDescription (or any of their child types)."
80
+
comment:"Error for when the developer does not provide a valid pair of NSAttributeDescription and NSPropertyDescription (or any of their child types)."
74
81
)
75
-
case.fetchedObjectFailedToCastToExpectedType:
76
-
NSLocalizedString(
77
-
"The object corresponding to the provided NSManagedObjectID is an incorrect Entity or "
78
-
+"NSManagedObject subtype. It failed to cast to the requested type.",
localized:"The object corresponding to the provided NSManagedObjectID is an incorrect Entity or NSManagedObject subtype. It failed to cast to the requested type: \(description ??Self.noErrorDescription)",
79
85
bundle:.module,
80
86
comment:"Error for when an object is found for a given ObjectID but it is not the expected type."
81
87
)
82
-
case.fetchedObjectIsFlaggedAsDeleted:
83
-
NSLocalizedString(
84
-
"The object corresponding to the provided NSManagedObjectID is deleted and cannot be fetched.",
localized:"No object ID URL found on the model for an operation against an existing managed object: \(description)",
108
113
bundle:.module,
109
-
comment:"Error for performing an operation against an existing NSManagedObject but the "
110
-
+"ManagedIdUrlReferencable instance has no managedIdUrl for looking up the NSManagedOjbectID."
114
+
comment:"Error for performing an operation against an existing NSManagedObject but the ManagedIdUrlReferencable instance has no managedIdUrl for looking up the NSManagedOjbectID."
111
115
)
112
-
case.noObjectIdOnItem:
113
-
NSLocalizedString(
114
-
"No object ID found on the model for an operation against an existing managed object.",
Copy file name to clipboardExpand all lines: Sources/CoreDataRepository/Resources/Localizable.xcstrings
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,19 @@
1
1
{
2
2
"sourceLanguage" : "en",
3
3
"strings" : {
4
-
"No match found when attempting to read an instance from CoreData." : {
4
+
"no description" : {
5
+
"comment" : "Placeholder for when an error description is nil."
6
+
},
7
+
"No match found when attempting to read an instance from CoreData: %@" : {
5
8
"comment" : "Error for reading an instance from CoreData but no instance was found."
6
9
},
7
10
"No NSManagedObjectID found that correlates to the provided URL." : {
8
11
"comment" : "Error for when an ObjectID can't be found for the provided URL."
9
12
},
10
-
"No object ID found on the model for an operation against an existing managed object." : {
13
+
"No object ID found on the model for an operation against an existing managed object: %@" : {
11
14
"comment" : "Error for performing an operation against an existing NSManagedObject but the ManagedIdReferencable instance has no managedId."
12
15
},
13
-
"No object ID URL found on the model for an operation against an existing managed object." : {
16
+
"No object ID URL found on the model for an operation against an existing managed object: %@" : {
14
17
"comment" : "Error for performing an operation against an existing NSManagedObject but the ManagedIdUrlReferencable instance has no managedIdUrl for looking up the NSManagedOjbectID."
15
18
},
16
19
"The managed object entity description does not have a name." : {
@@ -19,13 +22,13 @@
19
22
"The managed object entity has no attribute description. An attribute description is required for aggregate operations." : {
20
23
"comment" : "Error for when the NSEntityDescription has no NSAttributeDescription but one is required."
21
24
},
22
-
"The object corresponding to the provided NSManagedObjectID is an incorrect Entity or NSManagedObject subtype. It failed to cast to the requested type." : {
25
+
"The object corresponding to the provided NSManagedObjectID is an incorrect Entity or NSManagedObject subtype. It failed to cast to the requested type: %@" : {
23
26
"comment" : "Error for when an object is found for a given ObjectID but it is not the expected type."
24
27
},
25
-
"The object corresponding to the provided NSManagedObjectID is deleted and cannot be fetched." : {
28
+
"The object corresponding to the provided NSManagedObjectID is deleted and cannot be fetched: %@" : {
26
29
"comment" : "Error for when an object is fetched but is flagged as deleted and is no longer usable."
27
30
},
28
-
"There is a mismatch between a provided NSPropertyDescrption's entity and a NSEntityDescription. When a property description is provided, it must match any related entity descriptions." : {
31
+
"There is a mismatch between a provided NSPropertyDescrption's entity and a NSEntityDescription. When a property description is provided, it must match any related entity descriptions: %@" : {
29
32
"comment" : "Error for when the developer does not provide a valid pair of NSAttributeDescription and NSPropertyDescription (or any of their child types)."
0 commit comments