1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 08:17:12 +02:00

Fix issue processwire/processwire-issues#276 (typo in translation text)

This commit is contained in:
Ryan Cramer
2017-06-23 07:34:17 -04:00
parent 651e0e8763
commit 8107d5e90d

View File

@@ -844,7 +844,7 @@ class InputfieldImage extends InputfieldFile implements InputfieldItemList, Inpu
$field->label = $this->_('Max megapixels for uploaded images');
$field->description = $this->_('This can be used as an alternative to max width/height. Specify a floating point value.');
$field->description .= ' ' . $this->_('Applicable to client-side resize only.');
$field->notes = $this->_('A good value for websites is 1.7 which is roughly 1600x1000 pixels, where 1600 and 1200 can be either width or height.');
$field->notes = $this->_('A good value for websites is 1.7 which is roughly 1600x1000 pixels, where 1600 and 1000 can be either width or height.');
$field->notes .= ' ' . $this->_('Other examples:') . ' 0.2=516x387, 2.0=1633x1225, 3.0=2000x1500, 12.0=4000x3000';
$field->icon = 'camera';
$field->attr('value', (float) $this->maxSize > 0 ? (float) $this->maxSize : '');