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 +7 -4 4.0.83.11.14 View file →
@@ -135,8 +135,9 @@
135 135 '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">',
136 136 '</a>'
137 137 )
138 138 );
139 +
139 140 }
140 141
141 142 /**
142 143 * Renders general settings block for horizontal axis settings.
@@ -191,9 +192,9 @@
191 192 'hAxis[direction]',
192 193 isset( $this->hAxis['direction'] ) ? $this->hAxis['direction'] : '',
193 194 array(
194 195 '' => '',
195 - '1' => esc_html__( 'Default Direction', 'visualizer' ),
196 + '1' => esc_html__( 'Identical Direction', 'visualizer' ),
196 197 '-1' => esc_html__( 'Reverse Direction', 'visualizer' ),
197 198 ),
198 199 esc_html__( 'The direction in which the values along the horizontal axis grow.', 'visualizer' )
199 200 );
@@ -306,9 +307,9 @@
306 307 'vAxis[direction]',
307 308 isset( $this->vAxis['direction'] ) ? $this->vAxis['direction'] : '',
308 309 array(
309 310 '' => '',
310 - '1' => esc_html__( 'Default Direction', 'visualizer' ),
311 + '1' => esc_html__( 'Identical Direction', 'visualizer' ),
311 312 '-1' => esc_html__( 'Reverse Direction', 'visualizer' ),
312 313 ),
313 314 esc_html__( 'The direction in which the values along the vertical axis grow.', 'visualizer' )
314 315 );
@@ -459,8 +460,9 @@
459 460 null
460 461 );
461 462
462 463 $this->_renderRoleField( $index );
464 +
463 465 }
464 466
465 467 /**
466 468 * Renders format field for horizontal axis.
@@ -478,9 +480,9 @@
478 480 '%s<br><br>%s<br><br>%s',
479 481 esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', 'visualizer' ),
480 482 sprintf(
481 483 // 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' ),
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' ),
483 485 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
484 486 '</a>'
485 487 ),
486 488 sprintf(
@@ -509,9 +511,9 @@
509 511 '%s<br><br>%s<br><br>%s',
510 512 esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', 'visualizer' ),
511 513 sprintf(
512 514 // 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' ),
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' ),
514 516 '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
515 517 '</a>'
516 518 ),
517 519 sprintf(
@@ -522,5 +524,6 @@
522 524 )
523 525 )
524 526 );
525 527 }
528 +
526 529 }