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
Copy file name to clipboardExpand all lines: docusaurus/docs/intro.md
+31-2Lines changed: 31 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,8 @@ registerTranslation('pl', {
56
56
selectRange:'Select period',
57
57
notAccordingToDateFormat: (inputFormat) =>
58
58
`Date format must be ${inputFormat}`,
59
-
mustBeHigherThan: (date) =>`Must be later then${date}`,
60
-
mustBeLowerThan: (date) =>`Must be earlier then${date}`,
59
+
mustBeHigherThan: (date) =>`Must be later than${date}`,
60
+
mustBeLowerThan: (date) =>`Must be earlier than${date}`,
61
61
mustBeBetween: (startDate, endDate) =>
62
62
`Must be between ${startDate} - ${endDate}`,
63
63
dateIsDisabled:'Day is not allowed',
@@ -69,6 +69,35 @@ registerTranslation('pl', {
69
69
})
70
70
```
71
71
72
+
### Dynamic
73
+
74
+
React-Native-Paper-Dates also provides the ability to register dynamically resolved translations. This allows you to use a different translation provider to resolve the translations. For example:
0 commit comments