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'] = 'Αντίθεση'; |
---|
24 | $lang['exif_field_DateTimeOriginal'] = 'Ημερομηνία Ώρα του Πρωτότυπου'; |
---|
25 | $lang['exif_field_DigitalZoomRatio'] = 'Ψηφιακό Ζουμ'; |
---|
26 | $lang['exif_field_ExifVersion'] = 'EXIF'; |
---|
27 | $lang['exif_field_ExposureBiasValue'] = 'Αντιστάθμιση Έκθεσης'; |
---|
28 | $lang['exif_field_ExposureMode'] = 'Λειτουργία Έκθεσης'; |
---|
29 | $lang['exif_field_ExposureProgram'] = 'Πρόγραμμα Έκθεσης'; |
---|
30 | $lang['exif_field_ExposureTime'] = 'Χρόνος Έκθεσης'; |
---|
31 | $lang['exif_field_FNumber'] = 'Αριθμός Διαφράγματος'; |
---|
32 | $lang['exif_field_Flash'] = 'Φλας'; |
---|
33 | $lang['exif_field_FocalLengthIn35mmFilm'] = 'Εστιακό Μήκος για 35mm φιλμ'; |
---|
34 | $lang['exif_field_FocalLength'] = 'Εστιακό Μήκος'; |
---|
35 | $lang['exif_field_ISOSpeedRatings'] = 'ISO'; |
---|
36 | $lang['exif_field_LightSource'] = 'Πηγή φωτός'; |
---|
37 | $lang['exif_field_Make'] = 'Δημιουργός'; |
---|
38 | $lang['exif_field_MeteringMode'] = 'Λειτουργία μέτρησης έκθεσης'; |
---|
39 | $lang['exif_field_Model'] = 'Μοντέλο'; |
---|
40 | $lang['exif_field_Saturation'] = 'Κορεσμός'; |
---|
41 | $lang['exif_field_Sharpness'] = 'Σαφήνεια'; |
---|
42 | $lang['exif_field_Software'] = 'EXIF λογισμικό'; |
---|
43 | $lang['exif_field_SubjectDistance'] = 'Απόσταση Θέματος'; |
---|
44 | $lang['exif_field_WhiteBalance'] = 'Εξισορρόπηση Λευκού'; |
---|
45 | $lang['exif_value_contrast_hard'] = 'σκληρό'; |
---|
46 | $lang['exif_value_contrast_normal'] = 'κανονικό'; |
---|
47 | $lang['exif_value_contrast_soft'] = 'μαλακό'; |
---|
48 | $lang['exif_value_exposure_mode_auto_bracket'] = 'αυτόματος βρόγχος'; |
---|
49 | $lang['exif_value_exposure_mode_auto'] = 'αυτόματο'; |
---|
50 | $lang['exif_value_exposure_mode_manual'] = 'χειροκίνητο'; |
---|
51 | $lang['exif_value_exposure_program_action'] = 'ενέργεια'; |
---|
52 | $lang['exif_value_exposure_program_aperture'] = 'προτεραιότητα διαφράγματος'; |
---|
53 | $lang['exif_value_exposure_program_creative'] = 'δημιουργικό'; |
---|
54 | $lang['exif_value_exposure_program_landscape'] = 'τοπίο'; |
---|
55 | $lang['exif_value_exposure_program_manual'] = 'χειροκίνητο'; |
---|
56 | ?> |
---|