Skip to content

Commit

Permalink
Fixes #307: "EXIF Data" label in settings is not clear enough (#308)
Browse files Browse the repository at this point in the history
* Improved EXIF option label in settings page
* Added info about colorimetric problems
  • Loading branch information
Screenfeed authored and remyperona committed Oct 24, 2018
1 parent 28a2a0b commit f1ea724
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions views/page-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@

<p class="imagify-setting-line">
<?php
$info = __( 'Keep all EXIF data from your images. EXIF are informations stored in your pictures like shutter speed, exposure compensation, ISO, etc...', 'imagify' );
$info .= '<a href="' . esc_url( imagify_get_external_url( 'exif' ) ) . '" target="_blank">' . __( 'Learn more', 'imagify' ) . '</a><br/><br/>';
$info .= __( 'If you are a photographer, you may be interested in this option if you are displaying on your pages some info like the model of your camera.', 'imagify' );
$info = __( 'EXIF data is information stored in your pictures like shutter speed, exposure compensation, ISO, etc...', 'imagify' );
$info .= ' <a href="' . esc_url( imagify_get_external_url( 'exif' ) ) . '" target="_blank">' . __( 'Learn more', 'imagify' ) . '</a><br/><br/>';
$info .= __( 'If you are a photographer, you may be interested in this option if you are displaying info like the model of your camera on your pages. Also, keeping EXIF data can fix some colorimetric problems.', 'imagify' );

$settings->field_checkbox( array(
'option_name' => 'exif',
'label' => __( 'EXIF Data', 'imagify' ),
'label' => __( 'Keep all EXIF data from your images', 'imagify' ),
'info' => $info,
) );
?>
Expand Down

0 comments on commit f1ea724

Please sign in to comment.