| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Piwigo - a PHP based photo gallery | |
|---|
| 4 | // +-----------------------------------------------------------------------+ |
|---|
| 5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
|---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
|---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
|---|
| 8 | // +-----------------------------------------------------------------------+ |
|---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 11 | // | the Free Software Foundation | |
|---|
| 12 | // | | |
|---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 16 | // | General Public License for more details. | |
|---|
| 17 | // | | |
|---|
| 18 | // | You should have received a copy of the GNU General Public License | |
|---|
| 19 | // | along with this program; if not, write to the Free Software | |
|---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 21 | // | USA. | |
|---|
| 22 | // +-----------------------------------------------------------------------+ |
|---|
| 23 | $lang['exif_field_Contrast'] = 'Contraste'; |
|---|
| 24 | $lang['exif_field_DateTimeOriginal'] = 'Data e hora do original'; |
|---|
| 25 | $lang['exif_field_DigitalZoomRatio'] = 'Zoom digital'; |
|---|
| 26 | $lang['exif_field_ExifVersion'] = 'EXIF'; |
|---|
| 27 | $lang['exif_field_ExposureBiasValue'] = 'Compensação na exposição'; |
|---|
| 28 | $lang['exif_field_ExposureMode'] = 'Modo de exposição'; |
|---|
| 29 | $lang['exif_field_ExposureProgram'] = 'Programa de exposição'; |
|---|
| 30 | $lang['exif_field_ExposureTime'] = 'Tempo de exposição'; |
|---|
| 31 | $lang['exif_field_FNumber'] = 'Abertura número'; |
|---|
| 32 | $lang['exif_field_Flash'] = 'Flash'; |
|---|
| 33 | $lang['exif_field_FocalLengthIn35mmFilm'] = 'Comprimento focal em filmes de 35mm'; |
|---|
| 34 | $lang['exif_field_FocalLength'] = 'Focagem'; |
|---|
| 35 | $lang['exif_field_ISOSpeedRatings'] = 'ISO'; |
|---|
| 36 | $lang['exif_field_LightSource'] = 'Fonte de Luz'; |
|---|
| 37 | $lang['exif_field_Make'] = 'Fabricante'; |
|---|
| 38 | $lang['exif_field_MeteringMode'] = 'Modo de Medição de Exposição'; |
|---|
| 39 | $lang['exif_field_Model'] = 'Modelo'; |
|---|
| 40 | $lang['exif_field_Saturation'] = 'Saturação'; |
|---|
| 41 | $lang['exif_field_Software'] = 'Software EXIF'; |
|---|
| 42 | $lang['exif_field_UndefinedTag:0xA434'] = 'Lentes'; |
|---|
| 43 | $lang['exif_field_WhiteBalance'] = 'Balanceamento do branco'; |
|---|
| 44 | $lang['exif_value_contrast_normal'] = 'normal'; |
|---|
| 45 | $lang['exif_value_exposure_mode_auto'] = 'auto'; |
|---|
| 46 | $lang['exif_value_exposure_mode_manual'] = 'manual'; |
|---|
| 47 | $lang['exif_value_exposure_program_action'] = 'acção'; |
|---|
| 48 | $lang['exif_value_exposure_program_aperture'] = 'abertura prioritária'; |
|---|
| 49 | $lang['exif_value_exposure_program_creative'] = 'criativo'; |
|---|
| 50 | $lang['exif_value_exposure_program_landscape'] = 'paisagem'; |
|---|
| 51 | $lang['exif_value_exposure_program_manual'] = 'manual'; |
|---|
| 52 | $lang['exif_value_exposure_program_normal'] = 'normal'; |
|---|
| 53 | $lang['exif_value_exposure_program_not_defined'] = 'não definido'; |
|---|
| 54 | $lang['exif_value_exposure_program_portrait'] = 'Retrato'; |
|---|
| 55 | $lang['exif_value_exposure_program_shutter'] = 'prioridade de disparo'; |
|---|
| 56 | $lang['exif_value_flash_mode'] = 'modo'; |
|---|
| 57 | $lang['exif_value_light_source_D50'] = 'D50'; |
|---|
| 58 | $lang['exif_value_light_source_D55'] = 'D55'; |
|---|
| 59 | $lang['exif_value_light_source_D65'] = 'D65'; |
|---|
| 60 | $lang['exif_value_light_source_D75'] = 'D75'; |
|---|
| 61 | $lang['exif_value_light_source_daylight_fluorescent_d'] = 'Luz diurna florescente (D 5700 � 7100K)'; |
|---|
| 62 | $lang['exif_value_light_source_daylight'] = 'Luz diurna'; |
|---|
| 63 | ?> |
|---|