| @@ -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 #%% 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 #%% 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 #%% 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 #%% 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 | } |