PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.10.8
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.10.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 3.10.4 All 148 releases
← All changes | classes/Visualizer/Render/Sidebar/Graph.php +8 -14 4.0.73.10.8 View file →
@@ -128,15 +128,11 @@
128 128 self::_renderTextAreaItem(
129 129 esc_html__( 'Chart Description', 'visualizer' ),
130 130 'description',
131 131 $this->description,
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 - )
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>' )
138 133 );
134 +
139 135 }
140 136
141 137 /**
142 138 * Renders general settings block for horizontal axis settings.
@@ -191,9 +187,9 @@
191 187 'hAxis[direction]',
192 188 isset( $this->hAxis['direction'] ) ? $this->hAxis['direction'] : '',
193 189 array(
194 190 '' => '',
195 - '1' => esc_html__( 'Default Direction', 'visualizer' ),
191 + '1' => esc_html__( 'Identical Direction', 'visualizer' ),
196 192 '-1' => esc_html__( 'Reverse Direction', 'visualizer' ),
197 193 ),
198 194 esc_html__( 'The direction in which the values along the horizontal axis grow.', 'visualizer' )
199 195 );
@@ -306,9 +302,9 @@
306 302 'vAxis[direction]',
307 303 isset( $this->vAxis['direction'] ) ? $this->vAxis['direction'] : '',
308 304 array(
309 305 '' => '',
310 - '1' => esc_html__( 'Default Direction', 'visualizer' ),
306 + '1' => esc_html__( 'Identical Direction', 'visualizer' ),
311 307 '-1' => esc_html__( 'Reverse Direction', 'visualizer' ),
312 308 ),
313 309 esc_html__( 'The direction in which the values along the vertical axis grow.', 'visualizer' )
314 310 );
@@ -459,8 +455,9 @@
459 455 null
460 456 );
461 457
462 458 $this->_renderRoleField( $index );
459 +
463 460 }
464 461
465 462 /**
466 463 * Renders format field for horizontal axis.
@@ -477,15 +474,13 @@
477 474 sprintf(
478 475 '%s<br><br>%s<br><br>%s',
479 476 esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', 'visualizer' ),
480 477 sprintf(
481 - // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
482 - 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. Note: Using the #&#37;&#37; percentage format will multiply your values by 100.', 'visualizer' ),
478 + 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' ),
483 479 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
484 480 '</a>'
485 481 ),
486 482 sprintf(
487 - // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
488 483 esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
489 484 '<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
490 485 '</a>'
491 486 )
@@ -508,15 +503,13 @@
508 503 sprintf(
509 504 '%s<br><br>%s<br><br>%s',
510 505 esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', 'visualizer' ),
511 506 sprintf(
512 - // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
513 - 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. Note: Using the #&#37;&#37; percentage format will multiply your values by 100.', 'visualizer' ),
507 + 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' ),
514 508 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
515 509 '</a>'
516 510 ),
517 511 sprintf(
518 - // translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
519 512 esc_html__( 'For date axis labels, this is a subset of the date formatting %1$sICU date and time format%2$s.', 'visualizer' ),
520 513 '<a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax" target="_blank">',
521 514 '</a>'
522 515 )
@@ -522,5 +515,6 @@
522 515 )
523 516 )
524 517 );
525 518 }
519 +
526 520 }