| @@ -525,9 +525,9 @@ | ||
| 525 | 525 | self::_renderTextItem( |
| 526 | 526 | esc_html__( 'Number Format', 'visualizer' ), |
| 527 | 527 | 'series[' . $index . '][format]', |
| 528 | 528 | isset( $this->series[ $index ]['format'] ) ? $this->series[ $index ]['format'] : '', |
| 529 | - sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU pattern set%1$s. Use something like #,### to get 1,234 as output, or $# to add dollar sign before digits. Pay attention that if you use % percentage format then your values will be multiplied by 100.', 'visualizer' ), '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">', '</a>' ), | |
| 529 | + sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU pattern set%2$s. Use something like #,### to get 1,234 as output, or $# to add dollar sign before digits. Pay attention that if you use % percentage format then your values will be multiplied by 100.', 'visualizer' ), '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">', '</a>' ), | |
| 530 | 530 | '#,###.##' |
| 531 | 531 | ); |
| 532 | 532 | break; |
| 533 | 533 | case 'date': |
| @@ -536,9 +536,9 @@ | ||
| 536 | 536 | self::_renderTextItem( |
| 537 | 537 | esc_html__( 'Date Format', 'visualizer' ), |
| 538 | 538 | 'series[' . $index . '][format]', |
| 539 | 539 | isset( $this->series[ $index ]['format'] ) ? $this->series[ $index ]['format'] : '', |
| 540 | - sprintf( esc_html__( 'Enter custom format pattern to apply to this series value, similar to the %1$sICU date and time format%1$s.', 'visualizer' ), '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">', '</a>' ), | |
| 540 | + 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>' ), | |
| 541 | 541 | 'eeee, dd LLLL yyyy' |
| 542 | 542 | ); |
| 543 | 543 | break; |
| 544 | 544 | } |