PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.11.14
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.11.14
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | classes/Visualizer/Render/Sidebar/Graph.php +10 -1 3.10.03.11.14 View file →
@@ -128,9 +128,14 @@
128 128 self::_renderTextAreaItem(
129 129 esc_html__( 'Chart Description', 'visualizer' ),
130 130 'description',
131 131 $this->description,
132 - sprintf( esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ), '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">', '</a>' )
132 + sprintf(
133 + // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
134 + esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ),
135 + '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">',
136 + '</a>'
137 + )
133 138 );
134 139
135 140 }
136 141
@@ -474,13 +479,15 @@
474 479 sprintf(
475 480 '%s<br><br>%s<br><br>%s',
476 481 esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', 'visualizer' ),
477 482 sprintf(
483 + // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
478 484 esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%2$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #&#37;&#37; percentage format then your values will be multiplied by 100.', 'visualizer' ),
479 485 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
480 486 '</a>'
481 487 ),
482 488 sprintf(
489 + // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
483 490 esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
484 491 '<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
485 492 '</a>'
486 493 )
@@ -503,13 +510,15 @@
503 510 sprintf(
504 511 '%s<br><br>%s<br><br>%s',
505 512 esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', 'visualizer' ),
506 513 sprintf(
514 + // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
507 515 esc_html__( 'For number axis labels, this is a subset of the decimal formatting %1$sICU pattern set%2$s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #&#37;&#37; percentage format then your values will be multiplied by 100.', 'visualizer' ),
508 516 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
509 517 '</a>'
510 518 ),
511 519 sprintf(
520 + // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
512 521 esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
513 522 '<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
514 523 '</a>'
515 524 )