Skip to content

Commit 905f7a1

Browse files
Merge pull request #919 from Codeinwp/bugfix/918
Userguide broken documentation link #918
2 parents 42e3371 + ee1b239 commit 905f7a1

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

classes/Visualizer/Gutenberg/build/block.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Visualizer/Gutenberg/src/Components/Sidebar/HorizontalAxisSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class HorizontalAxisSettings extends Component {
130130

131131
<p>
132132
{ __( 'For date axis labels, this is a subset of the date formatting ' ) }
133-
<ExternalLink href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax">
133+
<ExternalLink href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax">
134134
{ __( 'ICU date and time format.' ) }
135135
</ExternalLink>
136136
</p>

classes/Visualizer/Gutenberg/src/Components/Sidebar/PieSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class PieSettings extends Component {
5656

5757
<p>
5858
{ __( 'For date axis labels, this is a subset of the date formatting ' ) }
59-
<ExternalLink href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax">
59+
<ExternalLink href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax">
6060
{ __( 'ICU date and time format.' ) }
6161
</ExternalLink>
6262
</p>

classes/Visualizer/Gutenberg/src/Components/Sidebar/SeriesSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class SeriesSettings extends Component {
175175

176176
<p>
177177
{ __( 'This is a subset of the date formatting ' ) }
178-
<ExternalLink href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax">
178+
<ExternalLink href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax">
179179
{ __( 'ICU date and time format.' ) }
180180
</ExternalLink>
181181
</p>

classes/Visualizer/Gutenberg/src/Components/Sidebar/VerticalAxisSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class VerticalAxisSettings extends Component {
131131

132132
<p>
133133
{ __( 'For date axis labels, this is a subset of the date formatting ' ) }
134-
<ExternalLink href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax">
134+
<ExternalLink href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax">
135135
{ __( 'ICU date and time format.' ) }
136136
</ExternalLink>
137137
</p>

classes/Visualizer/Render/Sidebar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ protected function _renderFormatField( $index = 0 ) {
468468
esc_html__( 'Date Format', 'visualizer' ),
469469
'series[' . $index . '][format]',
470470
isset( $this->series[ $index ]['format'] ) ? $this->series[ $index ]['format'] : '',
471-
sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU date and time format%2$s.', 'visualizer' ), '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">', '</a>' ),
471+
sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU date and time format%2$s.', 'visualizer' ), '<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">', '</a>' ),
472472
'eeee, dd LLLL yyyy'
473473
);
474474
break;

classes/Visualizer/Render/Sidebar/Graph.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ protected function _renderHorizontalAxisFormatField() {
481481
),
482482
sprintf(
483483
esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
484-
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
484+
'<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
485485
'</a>'
486486
)
487487
)
@@ -510,7 +510,7 @@ protected function _renderVerticalAxisFormatField() {
510510
),
511511
sprintf(
512512
esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
513-
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
513+
'<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
514514
'</a>'
515515
)
516516
)

classes/Visualizer/Render/Sidebar/Type/ChartJS/Linear.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ protected function _renderHorizontalAxisGeneralSettings() {
205205
),
206206
sprintf(
207207
esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
208-
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
208+
'<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
209209
'</a>'
210210
)
211211
)
@@ -307,7 +307,7 @@ protected function _renderVerticalAxisGeneralSettings() {
307307
),
308308
sprintf(
309309
esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
310-
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
310+
'<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
311311
'</a>'
312312
)
313313
)

classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Pie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function _renderPieSettings() {
7272
),
7373
sprintf(
7474
esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
75-
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
75+
'<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
7676
'</a>'
7777
)
7878
)

0 commit comments

Comments
 (0)