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
// translators: The $s is the name of the acf field type that is returning a date string according to the RFC3339 spec.
22
+
return'(' . sprintf( __( 'ACF Fields of the %s type return a date string according to the RFC3339 spec: https://datatracker.ietf.org/doc/html/rfc3339.', 'wpgraphql-acf' ), $field_type ) . ')';
// translators: The $s is the name of the acf field type that is returning a date string according to the RFC3339 spec.
23
+
return'(' . sprintf( __( 'ACF Fields of the "%s" type return a date string according to the RFC3339 spec: https://datatracker.ietf.org/doc/html/rfc3339.', 'wpgraphql-acf' ), $field_type ) . ')';
Copy file name to clipboardExpand all lines: src/ThirdParty/AcfExtended/AcfExtended.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -339,12 +339,12 @@ public function register_initial_types(): void {
339
339
'startDate' => [
340
340
// @todo: DATETIME Scalar
341
341
'type' => 'String',
342
-
'description' => __( 'The start date of a date range returned as an RFC 3339 time string', 'wpgraphql-acf' ),
342
+
'description' => __( 'The start date of a date range returned as an RFC 3339 time string (https://datatracker.ietf.org/doc/html/rfc3339)', 'wpgraphql-acf' ),
343
343
],
344
344
'endDate' => [
345
345
// @todo: DATETIME Scalar
346
346
'type' => 'String',
347
-
'description' => __( 'The start date of a date range RFC 3339 time string', 'wpgraphql-acf' ),
347
+
'description' => __( 'The start date of a date range RFC 3339 time string (https://datatracker.ietf.org/doc/html/rfc3339)', 'wpgraphql-acf' ),
0 commit comments