nl.pm 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222
  1. #------------------------------------------------------------------------------
  2. # File: nl.pm
  3. #
  4. # Description: ExifTool Dutch language translations
  5. #
  6. # Notes: This file generated automatically by Image::ExifTool::TagInfoXML
  7. #------------------------------------------------------------------------------
  8. package Image::ExifTool::Lang::nl;
  9. use strict;
  10. use vars qw($VERSION);
  11. $VERSION = '1.11';
  12. %Image::ExifTool::Lang::nl::Translate = (
  13. 'AEBAutoCancel' => {
  14. PrintConv => {
  15. 'Off' => 'Uit',
  16. 'On' => 'Aan',
  17. },
  18. },
  19. 'AELock' => {
  20. Description => 'AE-vergrendeling',
  21. PrintConv => {
  22. 'Off' => 'Uit',
  23. 'On' => 'Aan',
  24. },
  25. },
  26. 'AELockButton' => {
  27. Description => 'AE-L/AF-L',
  28. PrintConv => {
  29. 'AE Lock (hold)' => 'AE-vergrendeling vast',
  30. 'AE Lock Only' => 'AE-vergrendeling',
  31. 'AE-L/AF Area' => 'AE-L/AF veld',
  32. 'AE-L/AF-L/AF Area' => 'AE-L/AF-L/AF veld',
  33. 'AE/AF Lock' => 'AE/AF-vergrendeling',
  34. 'AF Lock Only' => 'AF-vergrendeling',
  35. 'AF-L/AF Area' => 'AF-L/AF veld',
  36. 'AF-ON/AF Area' => 'AF-ON/AF veld',
  37. 'FV Lock' => 'FV-vergrendeling',
  38. 'Focus Area Selection' => 'AF-veld',
  39. },
  40. },
  41. 'AEMeteringMode' => {
  42. PrintConv => {
  43. 'Multi-segment' => 'Multi segment',
  44. },
  45. },
  46. 'AEProgramMode' => {
  47. PrintConv => {
  48. 'Landscape' => 'Landschap',
  49. 'Portrait' => 'Portret',
  50. 'Standard' => 'Standaard',
  51. },
  52. },
  53. 'AF-CPrioritySelection' => {
  54. Description => 'Selectie AF-C-prioriteit',
  55. PrintConv => {
  56. 'Focus' => 'Scherpstelling',
  57. 'Release' => 'Ontspannen',
  58. 'Release + Focus' => 'Ontspannen + scherpstelling',
  59. },
  60. },
  61. 'AF-OnForMB-D10' => {
  62. Description => 'Functie AF-ON-knop MBD10',
  63. PrintConv => {
  64. 'AE Lock (hold)' => 'AE-vergrendeling (vast)',
  65. 'AE Lock (reset on release)' => 'AE-vergr. (herstel na ontspan.)',
  66. 'AE Lock Only' => 'AE-vergrendeling',
  67. 'AE/AF Lock' => 'AE/AF-vergrendeling',
  68. 'AF Lock Only' => 'AF-vergrendeling',
  69. 'AF-On' => 'AF-ON',
  70. 'Same as FUNC Button' => 'Zelfde als FUNC.-knop',
  71. },
  72. },
  73. 'AF-SPrioritySelection' => {
  74. Description => 'Selectie AF-S-prioriteit',
  75. PrintConv => {
  76. 'Focus' => 'Scherpstelling',
  77. 'Release' => 'Ontspannen',
  78. },
  79. },
  80. 'AFActivation' => {
  81. Description => 'AF activering',
  82. PrintConv => {
  83. 'AF-On Only' => 'Alleen AF-ON',
  84. 'Shutter/AF-On' => 'Ontspanknop/AF-ON',
  85. },
  86. },
  87. 'AFAreaIllumination' => {
  88. Description => 'AF-veld verlichting',
  89. PrintConv => {
  90. 'Auto' => 'Automatisch',
  91. 'Off' => 'Uit',
  92. 'On' => 'Aan',
  93. },
  94. },
  95. 'AFAreaMode' => {
  96. Description => 'AF-veldstand',
  97. PrintConv => {
  98. 'Auto-area' => 'Automatischveld AF',
  99. 'Dynamic Area' => 'Dynamisch veld',
  100. 'Single Area' => 'Enkelveld',
  101. },
  102. },
  103. 'AFAreaModeSetting' => {
  104. Description => 'AF-veldstand',
  105. PrintConv => {
  106. 'Closest Subject' => 'Dichtstbz. onderw.',
  107. 'Dynamic Area' => 'Dynamisch veld',
  108. 'Single Area' => 'Enkelveld',
  109. },
  110. },
  111. 'AFAssist' => {
  112. Description => 'AF-hulpverlichting',
  113. PrintConv => {
  114. 'Off' => 'Uit',
  115. 'On' => 'Aan',
  116. },
  117. },
  118. 'AFPoint' => {
  119. PrintConv => {
  120. 'None' => 'Geen',
  121. },
  122. },
  123. 'AFPointActivationArea' => {
  124. PrintConv => {
  125. 'Standard' => 'Standaard',
  126. },
  127. },
  128. 'AFPointBrightness' => {
  129. PrintConv => {
  130. 'Normal' => 'Normaal',
  131. },
  132. },
  133. 'AFPointDisplayDuringFocus' => {
  134. PrintConv => {
  135. 'Off' => 'Uit',
  136. 'On' => 'Aan',
  137. },
  138. },
  139. 'AFPointIllumination' => {
  140. Description => 'Verlichting scherpstelpunt',
  141. PrintConv => {
  142. 'Auto' => 'Automatisch',
  143. 'Off' => 'Uit',
  144. 'On' => 'Aan',
  145. },
  146. },
  147. 'AFPointMode' => {
  148. PrintConv => {
  149. 'Auto' => 'Automatisch',
  150. },
  151. },
  152. 'AFPointRegistration' => {
  153. PrintConv => {
  154. 'Automatic' => 'Automatisch',
  155. },
  156. },
  157. 'AFPointSelected' => {
  158. PrintConv => {
  159. 'Auto' => 'Automatisch',
  160. },
  161. },
  162. 'AFPointSelected2' => {
  163. PrintConv => {
  164. 'Auto' => 'Automatisch',
  165. },
  166. },
  167. 'AFPointSelection' => {
  168. Description => 'Selectie scherpstelpunt',
  169. PrintConv => {
  170. '11 Points' => '11 punten',
  171. '51 Points' => '51 punten (3D-tracking)',
  172. },
  173. },
  174. 'AFPointSelectionMethod' => {
  175. PrintConv => {
  176. 'Normal' => 'Normaal',
  177. },
  178. },
  179. 'AFPointsInFocus' => {
  180. PrintConv => {
  181. 'None' => 'Geen',
  182. },
  183. },
  184. 'AFPointsUnknown2' => {
  185. PrintConv => {
  186. 'Auto' => 'Automatisch',
  187. },
  188. },
  189. 'AIServoTrackingSensitivity' => {
  190. PrintConv => {
  191. 'Standard' => 'Standaard',
  192. },
  193. },
  194. 'APEVersion' => 'APE versie',
  195. 'ARMIdentifier' => 'ARM herkenningscode',
  196. 'ARMVersion' => 'ARM versie',
  197. 'ActionAdvised' => {
  198. Description => 'Actie advies',
  199. PrintConv => {
  200. 'Object Kill' => 'Object verwijderen',
  201. 'Object Reference' => 'Object referentie',
  202. 'Object Replace' => 'Object vervangen',
  203. 'Ojbect Append' => 'Object toevoegen',
  204. },
  205. },
  206. 'ActiveD-Lighting' => {
  207. PrintConv => {
  208. 'High' => 'Hoog',
  209. 'Low' => 'Laag',
  210. 'Normal' => 'Normaal',
  211. 'Off' => 'Uit',
  212. 'On' => 'Aan',
  213. },
  214. },
  215. 'ActiveD-LightingMode' => {
  216. PrintConv => {
  217. 'High' => 'Hoog',
  218. 'Low' => 'Laag',
  219. 'Normal' => 'Normaal',
  220. 'Off' => 'Uit',
  221. },
  222. },
  223. 'AddAspectRatioInfo' => {
  224. PrintConv => {
  225. 'Off' => 'Uit',
  226. },
  227. },
  228. 'AddOriginalDecisionData' => {
  229. PrintConv => {
  230. 'Off' => 'Uit',
  231. 'On' => 'Aan',
  232. },
  233. },
  234. 'AdultContentWarning' => {
  235. PrintConv => {
  236. 'Unknown' => 'Onbekend',
  237. },
  238. },
  239. 'AdvancedRaw' => {
  240. PrintConv => {
  241. 'Off' => 'Uit',
  242. 'On' => 'Aan',
  243. },
  244. },
  245. 'AlphaByteCount' => 'Aantal alphagegevens in bytes',
  246. 'AlphaDataDiscard' => {
  247. Description => 'Afgedankte alphagegevens',
  248. PrintConv => {
  249. 'Flexbits Discarded' => 'Afgedankte flexbits',
  250. 'Full Resolution' => 'Volledige resolutie',
  251. 'HighPass Frequency Data Discarded' => 'Afgedankte hoogdoorlaat frequentiegegevens',
  252. 'Highpass and LowPass Frequency Data Discarded' => 'Afgedankte hoogdoorlaat en laagdoorlaat frequentiegegevens',
  253. },
  254. },
  255. 'AlphaOffset' => 'Alphaverplaatsing',
  256. 'Anti-Blur' => {
  257. PrintConv => {
  258. 'Off' => 'Uit',
  259. },
  260. },
  261. 'Aperture' => 'Diafragma',
  262. 'ApertureValue' => 'Diafragma',
  263. 'ApplicationRecordVersion' => 'Gegevensversie',
  264. 'Artist' => 'Maker van de afbeelding',
  265. 'AssistButtonFunction' => {
  266. PrintConv => {
  267. 'Normal' => 'Normaal',
  268. },
  269. },
  270. 'Audio' => {
  271. PrintConv => {
  272. 'No' => 'Nee',
  273. 'Yes' => 'Ja',
  274. },
  275. },
  276. 'AudioDuration' => 'Audio duur',
  277. 'AudioOutcue' => 'Audio eindaftiteling',
  278. 'AudioSamplingRate' => 'Audio bemonsteringssnelheid',
  279. 'AudioSamplingResolution' => 'Audio bemonsteringsresolutie',
  280. 'AudioType' => {
  281. Description => 'Type audio',
  282. PrintConv => {
  283. 'Mono Actuality' => 'Actualiteit (mono (1 kanaal) audio)',
  284. 'Mono Music' => 'Muziek, zelf verstuurd (mono (1 kanaal) audio)',
  285. 'Mono Question and Answer Session' => 'Vraag en antwoord sessie (mono (1 kanaal) audio)',
  286. 'Mono Raw Sound' => 'Ruwe geluid (mono (1 kanaal) audio)',
  287. 'Mono Response to a Question' => 'Beantwoord een vraag (mono (1 kanaal) audio)',
  288. 'Mono Scener' => 'Toneel (mono (1 kanaal) audio)',
  289. 'Mono Voicer' => 'Stem (mono (1 kanaals) audio)',
  290. 'Mono Wrap' => 'Wrap (mono (1 kanaals) audio)',
  291. 'Stereo Actuality' => 'Actualiteit (stereo (2 kanalen) audio)',
  292. 'Stereo Music' => 'Muziek, zelf verstuurd (stereo (2 kanalen) audio)',
  293. 'Stereo Question and Answer Session' => 'Vraag en antwoord sessie (stereo (2 kanalen) audio)',
  294. 'Stereo Raw Sound' => 'Ruwe geluid (stereo (2 kanalen) audio)',
  295. 'Stereo Response to a Question' => 'Beantwoord een vraag (stereo (2 kanalen) audio)',
  296. 'Stereo Scener' => 'Toneel (stereo (2 kanaals) audio)',
  297. 'Stereo Voicer' => 'Stem (stereo (2 kanaals) audio)',
  298. 'Stereo Wrap' => 'Wrap (stereo (2 kanaals) audio)',
  299. 'Text Only' => 'Alleen tekst (geen objectgegevens)',
  300. },
  301. },
  302. 'Author' => 'Auteur',
  303. 'AuthorsPosition' => 'Positie van de auteur',
  304. 'AutoAperture' => {
  305. PrintConv => {
  306. 'Off' => 'Uit',
  307. 'On' => 'Aan',
  308. },
  309. },
  310. 'AutoBracketModeM' => {
  311. Description => 'Auto bracketing (M-stand)',
  312. PrintConv => {
  313. 'Flash Only' => 'Alleen flits',
  314. 'Flash/Aperture' => 'Flits/diafragma',
  315. 'Flash/Speed' => 'Flits/sluitertijd',
  316. 'Flash/Speed/Aperture' => 'Flits/sluitertijd/diafragma',
  317. },
  318. },
  319. 'AutoBracketOrder' => 'Bracketingvolgorde',
  320. 'AutoBracketSet' => {
  321. Description => 'Inst. voor auto bracketing',
  322. PrintConv => {
  323. 'AE & Flash' => 'AE & flits',
  324. 'AE Only' => 'Alleen AE',
  325. 'Flash Only' => 'Alleen flits',
  326. 'WB Bracketing' => 'Witbalans bracketing',
  327. },
  328. },
  329. 'AutoBracketing' => {
  330. PrintConv => {
  331. 'Off' => 'Uit',
  332. },
  333. },
  334. 'AutoExposureBracketing' => {
  335. PrintConv => {
  336. 'Off' => 'Uit',
  337. 'On' => 'Aan',
  338. },
  339. },
  340. 'AutoFP' => {
  341. Description => 'Auto FP',
  342. PrintConv => {
  343. 'Off' => 'Uit',
  344. 'On' => 'Aan',
  345. },
  346. },
  347. 'AutoFocus' => {
  348. PrintConv => {
  349. 'Off' => 'Uit',
  350. 'On' => 'Aan',
  351. },
  352. },
  353. 'AutoISO' => {
  354. Description => 'ISO auto',
  355. PrintConv => {
  356. 'Off' => 'Uit',
  357. 'On' => 'Aan',
  358. },
  359. },
  360. 'AutoISOMax' => 'ISO auto Maximale',
  361. 'AutoISOMinShutterSpeed' => 'ISO auto Langste sluitertijd',
  362. 'AutoLightingOptimizer' => {
  363. PrintConv => {
  364. 'Low' => 'Laag',
  365. 'Off' => 'Uit',
  366. 'Standard' => 'Standaard',
  367. },
  368. },
  369. 'AutoLightingOptimizerOn' => {
  370. PrintConv => {
  371. 'No' => 'Nee',
  372. 'Yes' => 'Ja',
  373. },
  374. },
  375. 'AutoRedEye' => {
  376. PrintConv => {
  377. 'Off' => 'Uit',
  378. 'On' => 'Aan',
  379. },
  380. },
  381. 'AutoRotate' => {
  382. PrintConv => {
  383. 'None' => 'Geen',
  384. 'Rotate 180' => '180° (onder/rechts)',
  385. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  386. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  387. 'n/a' => 'Onbekend',
  388. },
  389. },
  390. 'BWMode' => {
  391. PrintConv => {
  392. 'Off' => 'Uit',
  393. },
  394. },
  395. 'BackgroundColorIndicator' => 'Achtergrond kleur indicator',
  396. 'BackgroundColorValue' => 'Achtergrond kleur waarde',
  397. 'BackgroundTiling' => {
  398. PrintConv => {
  399. 'No' => 'Nee',
  400. 'Yes' => 'Ja',
  401. },
  402. },
  403. 'BannerImageType' => {
  404. PrintConv => {
  405. 'None' => 'Geen',
  406. },
  407. },
  408. 'BatteryLevel' => 'Batterij status',
  409. 'BatteryOrder' => {
  410. Description => 'Batterijvolgorde',
  411. PrintConv => {
  412. 'Camera Battery First' => 'Camerabatterij eerst',
  413. 'MB-D10 First' => 'MB-D10 batterijen eerst',
  414. },
  415. },
  416. 'Beep' => {
  417. Description => 'Signaal',
  418. PrintConv => {
  419. 'High' => 'Hoog',
  420. 'Low' => 'Laag',
  421. 'Off' => 'Uit',
  422. 'On' => 'Aan',
  423. },
  424. },
  425. 'BitsPerSample' => 'Aantal Bits per component',
  426. 'BlueMatrixColumn' => 'Blauwe matrixkolom',
  427. 'BlueTRC' => 'Blauwe toon reproductie curve',
  428. 'BlurWarning' => {
  429. PrintConv => {
  430. 'None' => 'Geen',
  431. },
  432. },
  433. 'BracketMode' => {
  434. PrintConv => {
  435. 'Off' => 'Uit',
  436. },
  437. },
  438. 'BracketStep' => {
  439. PrintConv => {
  440. '1 EV' => '1 stop',
  441. '1/3 EV' => '1/3 stop',
  442. '2/3 EV' => '2/3 stop',
  443. },
  444. },
  445. 'Brightness' => 'Helderheid',
  446. 'BrightnessValue' => 'Helderheid',
  447. 'BurstMode' => {
  448. PrintConv => {
  449. 'Off' => 'Uit',
  450. 'On' => 'Aan',
  451. },
  452. },
  453. 'By-line' => 'Maker',
  454. 'By-lineTitle' => 'Beroep van de maker',
  455. 'CFAPattern' => 'Kleur filter matrix',
  456. 'CFAPattern2' => 'Kleurfiltermatrix 2',
  457. 'CFARepeatPatternDim' => 'Kleurfiltermatrix grootte',
  458. 'CLModeShootingSpeed' => 'Opnamesnelheid',
  459. 'CMMFlags' => 'CMM vlaggen',
  460. 'CPUType' => {
  461. PrintConv => {
  462. 'None' => 'Geen',
  463. },
  464. },
  465. 'CalibrationIlluminant1' => {
  466. PrintConv => {
  467. 'Cloudy' => 'Bewolkt',
  468. 'Cool White Fluorescent' => 'Koel wit TL-licht',
  469. 'Day White Fluorescent' => 'Daglicht wit TL-licht',
  470. 'Daylight' => 'Daglicht',
  471. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  472. 'Fine Weather' => 'Onbewolkt',
  473. 'Flash' => 'Flits',
  474. 'Fluorescent' => 'Fluoresceren',
  475. 'ISO Studio Tungsten' => 'ISO studio kunstlicht (gloeilamp)',
  476. 'Other' => 'Andere lichtbron',
  477. 'Shade' => 'Schaduw',
  478. 'Standard Light A' => 'Standaard licht A',
  479. 'Standard Light B' => 'Standaard licht B',
  480. 'Standard Light C' => 'Standaard licht C',
  481. 'Tungsten (Incandescent)' => 'Kunstlicht (gloeilamp)',
  482. 'Unknown' => 'Onbekend',
  483. 'Warm White Fluorescent' => 'Warm wit TL-licht',
  484. 'White Fluorescent' => 'Wit TL-licht',
  485. },
  486. },
  487. 'CalibrationIlluminant2' => {
  488. PrintConv => {
  489. 'Cloudy' => 'Bewolkt',
  490. 'Cool White Fluorescent' => 'Koel wit TL-licht',
  491. 'Day White Fluorescent' => 'Daglicht wit TL-licht',
  492. 'Daylight' => 'Daglicht',
  493. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  494. 'Fine Weather' => 'Onbewolkt',
  495. 'Flash' => 'Flits',
  496. 'Fluorescent' => 'Fluoresceren',
  497. 'ISO Studio Tungsten' => 'ISO studio kunstlicht (gloeilamp)',
  498. 'Other' => 'Andere lichtbron',
  499. 'Shade' => 'Schaduw',
  500. 'Standard Light A' => 'Standaard licht A',
  501. 'Standard Light B' => 'Standaard licht B',
  502. 'Standard Light C' => 'Standaard licht C',
  503. 'Tungsten (Incandescent)' => 'Kunstlicht (gloeilamp)',
  504. 'Unknown' => 'Onbekend',
  505. 'Warm White Fluorescent' => 'Warm wit TL-licht',
  506. 'White Fluorescent' => 'Wit TL-licht',
  507. },
  508. },
  509. 'CameraOrientation' => {
  510. Description => 'Oriëntatie van de afbeelding',
  511. PrintConv => {
  512. 'Horizontal (normal)' => '0° (boven/links)',
  513. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  514. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  515. },
  516. },
  517. 'CanonExposureMode' => {
  518. PrintConv => {
  519. 'Aperture-priority AE' => 'Diafragmaprioriteit',
  520. 'Manual' => 'Handmatig',
  521. 'Shutter speed priority AE' => 'Sluiterprioriteit',
  522. },
  523. },
  524. 'CanonFlashMode' => {
  525. PrintConv => {
  526. 'Auto' => 'Automatisch',
  527. 'Off' => 'Uit',
  528. 'On' => 'Aan',
  529. },
  530. },
  531. 'Caption-Abstract' => 'Titel/Beschrijving',
  532. 'CaptionWriter' => 'Schrijver van het onderschrift',
  533. 'CaptureXResolutionUnit' => {
  534. PrintConv => {
  535. 'um' => 'µm (micrometer)',
  536. },
  537. },
  538. 'CaptureYResolutionUnit' => {
  539. PrintConv => {
  540. 'um' => 'µm (micrometer)',
  541. },
  542. },
  543. 'Categories' => 'Categorieën',
  544. 'Category' => 'Categorie',
  545. 'CellLength' => 'Cel lengte',
  546. 'CellWidth' => 'Cel breedte',
  547. 'CenterAFArea' => {
  548. Description => 'Centrale AF-veld',
  549. PrintConv => {
  550. 'Normal Zone' => 'Normaal',
  551. 'Wide Zone' => 'Breed',
  552. },
  553. },
  554. 'CenterWeightedAreaSize' => {
  555. Description => 'Grootte meetgebied',
  556. PrintConv => {
  557. 'Average' => 'Gemiddeld',
  558. },
  559. },
  560. 'CharacterSet' => 'Tekenset',
  561. 'ChrominanceNR_TIFF_JPEG' => {
  562. PrintConv => {
  563. 'High' => 'Hoog',
  564. 'Low' => 'Laag',
  565. 'Off' => 'Uit',
  566. },
  567. },
  568. 'ChrominanceNoiseReduction' => {
  569. PrintConv => {
  570. 'High' => 'Hoog',
  571. 'Low' => 'Laag',
  572. 'Off' => 'Uit',
  573. },
  574. },
  575. 'City' => 'Plaats',
  576. 'ClassifyState' => 'Rangschik status',
  577. 'CodedCharacterSet' => 'Gecodeerde character set',
  578. 'ColorAberrationControl' => {
  579. PrintConv => {
  580. 'Off' => 'Uit',
  581. 'On' => 'Aan',
  582. },
  583. },
  584. 'ColorAdjustmentMode' => {
  585. PrintConv => {
  586. 'Off' => 'Uit',
  587. 'On' => 'Aan',
  588. },
  589. },
  590. 'ColorBalanceAdj' => {
  591. PrintConv => {
  592. 'Off' => 'Uit',
  593. 'On' => 'Aan',
  594. },
  595. },
  596. 'ColorBooster' => {
  597. PrintConv => {
  598. 'Off' => 'Uit',
  599. 'On' => 'Aan',
  600. },
  601. },
  602. 'ColorEffect' => {
  603. PrintConv => {
  604. 'Off' => 'Uit',
  605. },
  606. },
  607. 'ColorFilter' => {
  608. Description => 'Kleurfilter',
  609. PrintConv => {
  610. 'Off' => 'Uit',
  611. },
  612. },
  613. 'ColorMode' => {
  614. Description => 'Instellingen',
  615. PrintConv => {
  616. 'Autumn Leaves' => 'Herfstbladeren',
  617. 'B&W' => 'Zwart-wit',
  618. 'Clear' => 'Doorzichtig',
  619. 'Deep' => 'Diep',
  620. 'Evening' => 'Avond',
  621. 'Landscape' => 'Landschap',
  622. 'Light' => 'Licht',
  623. 'Neutral' => 'Neutraal',
  624. 'Night View' => 'Nacht',
  625. 'Night View/Portrait' => 'Nachtportret',
  626. 'Normal' => 'Normaal',
  627. 'Off' => 'Uit',
  628. 'Portrait' => 'Portret',
  629. 'Standard' => 'Standaard',
  630. 'Sunset' => 'Zonsondergang',
  631. 'Vivid' => 'Levendige kleuren',
  632. },
  633. },
  634. 'ColorMoireReduction' => {
  635. PrintConv => {
  636. 'Off' => 'Uit',
  637. 'On' => 'Aan',
  638. },
  639. },
  640. 'ColorMoireReductionMode' => {
  641. PrintConv => {
  642. 'High' => 'Hoog',
  643. 'Low' => 'Laag',
  644. 'Off' => 'Uit',
  645. },
  646. },
  647. 'ColorSpace' => {
  648. Description => 'Kleur ruimte',
  649. PrintConv => {
  650. 'ICC Profile' => 'ICC-profiel',
  651. 'Uncalibrated' => 'Niet vastgelegd',
  652. },
  653. },
  654. 'ColorSpaceData' => 'Gegevenskleurenruimte',
  655. 'ColorTable' => 'Kleur tabel',
  656. 'ColorTemperature' => 'Kleurtemperatuur',
  657. 'ColorTone' => {
  658. PrintConv => {
  659. 'Normal' => 'Normaal',
  660. },
  661. },
  662. 'CommandDials' => {
  663. Description => 'Instelschijven',
  664. PrintConv => {
  665. 'Reversed (Main Aperture, Sub Shutter)' => 'Verwissel hoofd/sec.',
  666. 'Standard (Main Shutter, Sub Aperture)' => 'Standaard',
  667. },
  668. },
  669. 'CommandDialsApertureSetting' => {
  670. Description => 'Functie instelschijven inst. Instellen diafragma',
  671. PrintConv => {
  672. 'Aperture Ring' => 'Diafragmaring',
  673. 'Sub-command Dial' => 'Secundaire instelschijf',
  674. },
  675. },
  676. 'CommandDialsChangeMainSub' => {
  677. Description => 'Functie instelschijven inst. Verwissel hoofd/secundair',
  678. PrintConv => {
  679. 'Off' => 'Uit',
  680. 'On' => 'Aan',
  681. },
  682. },
  683. 'CommandDialsMenuAndPlayback' => {
  684. Description => 'Functie instelschijven inst. Menu’s en weergave',
  685. PrintConv => {
  686. 'Off' => 'Uit',
  687. 'On' => 'Aan',
  688. },
  689. },
  690. 'CommandDialsReverseRotation' => {
  691. Description => 'Functie instelschijven inst. Rotatie omkeren',
  692. PrintConv => {
  693. 'No' => 'Nee',
  694. 'Yes' => 'Ja',
  695. },
  696. },
  697. 'CommanderChannel' => 'Commanderstand Kanaal',
  698. 'CommanderGroupAManualOutput' => 'Commanderstand Groep A M Corrct',
  699. 'CommanderGroupAMode' => {
  700. Description => 'Commanderstand Groep A Stand',
  701. PrintConv => {
  702. 'Manual' => 'Handmatig',
  703. 'Off' => 'Uit',
  704. 'TTL' => 'DDL',
  705. },
  706. },
  707. 'CommanderGroupA_TTL-AAComp' => 'Commanderstand Groep A DDL/AA Corrct',
  708. 'CommanderGroupBManualOutput' => 'Commanderstand Groep B M Corrct',
  709. 'CommanderGroupBMode' => {
  710. Description => 'Commanderstand Groep B Stand',
  711. PrintConv => {
  712. 'Manual' => 'Handmatig',
  713. 'Off' => 'Uit',
  714. 'TTL' => 'DDL',
  715. },
  716. },
  717. 'CommanderGroupB_TTL-AAComp' => 'Commanderstand Groep B DDL/AA Corrct',
  718. 'CommanderInternalFlash' => {
  719. Description => 'Commanderstand Ingb. flitsr Stand',
  720. PrintConv => {
  721. 'Manual' => 'Handmatig',
  722. 'Off' => 'Uit',
  723. 'TTL' => 'DDL',
  724. },
  725. },
  726. 'CommanderInternalManualOutput' => 'Commanderstand Ingb. flitsr M Corrct',
  727. 'CommanderInternalTTLComp' => 'Commanderstand Ingb. flitsr DDL Corrct',
  728. 'Comment' => 'Kommentaar',
  729. 'Compilation' => {
  730. PrintConv => {
  731. 'No' => 'Nee',
  732. 'Yes' => 'Ja',
  733. },
  734. },
  735. 'ComponentsConfiguration' => 'Betekenis van elke component',
  736. 'CompressedBitsPerPixel' => 'Afbeelding compressie modus',
  737. 'Compression' => {
  738. Description => 'Compressie schema',
  739. PrintConv => {
  740. 'JPEG' => 'JPEG-compressie',
  741. 'JPEG (old-style)' => 'JPEG (oude versie)',
  742. 'Kodak DCR Compressed' => 'Kodak DCR gcomprimeerd',
  743. 'Kodak KDC Compressed' => 'Kodak KDC gecomprimeerd',
  744. 'Next' => 'NeXT 2-Bit codering',
  745. 'Nikon NEF Compressed' => 'Nikon NEF gecomprimeerd',
  746. 'None' => 'Geen',
  747. 'Pentax PEF Compressed' => 'Pentax PEF gecomprimeerd',
  748. 'SGILog' => 'SGI 32-Bit Log Luminance gecodeerd',
  749. 'SGILog24' => 'SGI 24-Bit Log Luminance gecodeerd',
  750. 'Sony ARW Compressed' => 'Sony ARW gecomprimeerd',
  751. 'Thunderscan' => 'ThunderScan 4-Bit codering',
  752. 'Uncompressed' => 'Niet gecomprimeerd',
  753. },
  754. },
  755. 'CompressionType' => {
  756. PrintConv => {
  757. 'None' => 'Geen',
  758. },
  759. },
  760. 'ConnectionSpaceIlluminant' => 'Witpunt van connectiekleurruimte',
  761. 'ContentLocationCode' => 'Locatiecode van inhoud',
  762. 'ContentLocationName' => 'Locatienaam van inhoud',
  763. 'ContinuousDrive' => {
  764. PrintConv => {
  765. 'Continuous' => 'Continu',
  766. },
  767. },
  768. 'Contrast' => {
  769. Description => 'Kontrast',
  770. PrintConv => {
  771. 'High' => 'Hoog',
  772. 'Low' => 'Laag',
  773. 'Normal' => 'Normaal',
  774. },
  775. },
  776. 'ConversionLens' => {
  777. PrintConv => {
  778. 'Off' => 'Uit',
  779. },
  780. },
  781. 'Copyright' => 'Copyright houder',
  782. 'CopyrightNotice' => 'Copyright vermelding',
  783. 'CopyrightStatus' => {
  784. PrintConv => {
  785. 'Unknown' => 'Onbekend',
  786. },
  787. },
  788. 'Country' => 'Land',
  789. 'Country-PrimaryLocationCode' => 'ISO landcode',
  790. 'Country-PrimaryLocationName' => 'Land',
  791. 'CreateDate' => 'Datum van de originele data generatie',
  792. 'CreationDate' => 'Opname datum',
  793. 'Creator' => 'Maker',
  794. 'CreatorAddress' => 'Maker - Adres',
  795. 'CreatorCity' => 'Maker - Plaats',
  796. 'CreatorCountry' => 'Maker - Land',
  797. 'CreatorPostalCode' => 'Maker - Postcode',
  798. 'CreatorRegion' => 'Maker - Provincie',
  799. 'CreatorWorkEmail' => 'Maker - E-mail',
  800. 'CreatorWorkTelephone' => 'Maker - Telefoonnummer',
  801. 'CreatorWorkURL' => 'Maker - Website(s)',
  802. 'Credit' => 'Leverancier',
  803. 'CropActive' => {
  804. PrintConv => {
  805. 'No' => 'Nee',
  806. 'Yes' => 'Ja',
  807. },
  808. },
  809. 'Curves' => {
  810. PrintConv => {
  811. 'Off' => 'Uit',
  812. 'On' => 'Aan',
  813. },
  814. },
  815. 'CustomRendered' => {
  816. Description => 'Gebruiker gedefineerde beeldverwerking',
  817. PrintConv => {
  818. 'Custom' => 'Gebruiker gedefineerd proces',
  819. 'Normal' => 'Standaard proces',
  820. },
  821. },
  822. 'D-LightingHQ' => {
  823. PrintConv => {
  824. 'Off' => 'Uit',
  825. 'On' => 'Aan',
  826. },
  827. },
  828. 'D-LightingHQSelected' => {
  829. PrintConv => {
  830. 'No' => 'Nee',
  831. 'Yes' => 'Ja',
  832. },
  833. },
  834. 'D-LightingHS' => {
  835. PrintConv => {
  836. 'Off' => 'Uit',
  837. 'On' => 'Aan',
  838. },
  839. },
  840. 'DataImprint' => {
  841. PrintConv => {
  842. 'None' => 'Geen',
  843. },
  844. },
  845. 'DateCreated' => 'Opnamedatum',
  846. 'DateSent' => 'Datum van zenden',
  847. 'DateStampMode' => {
  848. PrintConv => {
  849. 'Off' => 'Uit',
  850. },
  851. },
  852. 'DateTime' => 'Datum bestand wijziging',
  853. 'DateTimeOriginal' => 'Datum van de originele data generatie',
  854. 'DaylightSavings' => {
  855. PrintConv => {
  856. 'No' => 'Nee',
  857. 'Yes' => 'Ja',
  858. },
  859. },
  860. 'Description' => 'Beschrijving',
  861. 'Destination' => 'Bestemming',
  862. 'DestinationDST' => {
  863. PrintConv => {
  864. 'No' => 'Nee',
  865. 'Yes' => 'Ja',
  866. },
  867. },
  868. 'DeviceAttributes' => 'Apparaateigenschappen',
  869. 'DeviceManufacturer' => 'Apparaatproducent',
  870. 'DeviceMfgDesc' => 'Apparaatproducent kenmerk',
  871. 'DeviceModel' => 'Apparaatmodel',
  872. 'DeviceModelDesc' => 'Apparaatmodel kenmerk',
  873. 'DeviceSettingDescription' => 'Toestelinstellingen',
  874. 'DialDirectionTvAv' => {
  875. PrintConv => {
  876. 'Normal' => 'Normaal',
  877. },
  878. },
  879. 'DigitalCreationDate' => 'Digitale opnamedatum',
  880. 'DigitalCreationTime' => 'Digitaal opnametijdstip',
  881. 'DigitalZoom' => {
  882. Description => 'Digitaal zoomen',
  883. PrintConv => {
  884. 'None' => 'Geen',
  885. 'Off' => 'Uit',
  886. },
  887. },
  888. 'DigitalZoomOn' => {
  889. PrintConv => {
  890. 'Off' => 'Uit',
  891. 'On' => 'Aan',
  892. },
  893. },
  894. 'DigitalZoomRatio' => 'Digitale zoom factor',
  895. 'Directory' => 'Plaats van het bestand',
  896. 'DisplaySize' => {
  897. PrintConv => {
  898. 'Normal' => 'Normaal',
  899. },
  900. },
  901. 'DisplayXResolutionUnit' => {
  902. PrintConv => {
  903. 'um' => 'µm (micrometer)',
  904. },
  905. },
  906. 'DisplayYResolutionUnit' => {
  907. PrintConv => {
  908. 'um' => 'µm (micrometer)',
  909. },
  910. },
  911. 'DistortionCorrection' => {
  912. PrintConv => {
  913. 'Off' => 'Uit',
  914. 'On' => 'Aan',
  915. },
  916. },
  917. 'DistortionCorrection2' => {
  918. PrintConv => {
  919. 'Off' => 'Uit',
  920. 'On' => 'Aan',
  921. },
  922. },
  923. 'DjVuVersion' => 'DjVu versie',
  924. 'DocumentHistory' => 'Documentgeschiedenis',
  925. 'DocumentName' => 'Document naam',
  926. 'DocumentNotes' => 'Documentopmerkingen',
  927. 'DriveMode' => {
  928. Description => 'Ontspannermodus',
  929. PrintConv => {
  930. 'Continuous' => 'Continu',
  931. 'Continuous Shooting' => 'Continu',
  932. 'Off' => 'Uit',
  933. 'Self-timer' => 'Zelfontspanner',
  934. 'Self-timer Operation' => 'Zelfontspanner',
  935. 'Single' => 'Enkel beeld',
  936. 'Single Frame' => 'Enkel beeld',
  937. 'Single Shot' => 'Enkel beeld',
  938. 'Single-frame Shooting' => 'Enkel beeld',
  939. },
  940. },
  941. 'DynamicAFArea' => {
  942. Description => 'Dynamisch AF-veld',
  943. PrintConv => {
  944. '21 Points' => '21 punten',
  945. '51 Points' => '51 punten',
  946. '51 Points (3D-tracking)' => '51 punten (3D-tracking)',
  947. '9 Points' => '9 punten',
  948. },
  949. },
  950. 'DynamicRange' => {
  951. PrintConv => {
  952. 'Standard' => 'Standaard',
  953. },
  954. },
  955. 'DynamicRangeExpansion' => {
  956. PrintConv => {
  957. 'Off' => 'Uit',
  958. 'On' => 'Aan',
  959. },
  960. },
  961. 'DynamicRangeOptimizer' => {
  962. Description => 'Dyn.-bereikoptim',
  963. PrintConv => {
  964. 'Advanced Auto' => 'Geavancrd Auto',
  965. 'Advanced Lv1' => 'Geavanceerd-1',
  966. 'Advanced Lv2' => 'Geavanceerd-2',
  967. 'Advanced Lv3' => 'Geavanceerd-3',
  968. 'Advanced Lv4' => 'Geavanceerd-4',
  969. 'Advanced Lv5' => 'Geavanceerd-5',
  970. 'Auto' => 'Automatisch',
  971. 'Off' => 'Uit',
  972. 'Standard' => 'Standaard',
  973. },
  974. },
  975. 'ETTLII' => {
  976. PrintConv => {
  977. 'Average' => 'Gemiddeld',
  978. },
  979. },
  980. 'EVStepSize' => {
  981. Description => 'LW stapgrootte',
  982. PrintConv => {
  983. '1/2 EV' => '1/2 stop',
  984. '1/3 EV' => '1/3 stop',
  985. },
  986. },
  987. 'EasyExposureCompensation' => {
  988. Description => 'Eenv. belichtingscorrectie',
  989. PrintConv => {
  990. 'Off' => 'Uit',
  991. 'On' => 'Aan',
  992. 'On (auto reset)' => 'Aan (autoherstel)',
  993. },
  994. },
  995. 'EasyMode' => {
  996. PrintConv => {
  997. 'Landscape' => 'Landschap',
  998. 'Manual' => 'Handmatig',
  999. 'Night' => 'Nachtscene',
  1000. 'Portrait' => 'Portret',
  1001. },
  1002. },
  1003. 'EdgeNoiseReduction' => {
  1004. PrintConv => {
  1005. 'Off' => 'Uit',
  1006. 'On' => 'Aan',
  1007. },
  1008. },
  1009. 'EditStatus' => 'Bewerkingsstatus',
  1010. 'EditorialUpdate' => {
  1011. Description => 'Redactionele bewerking',
  1012. PrintConv => {
  1013. 'Additional language' => 'Extra taal',
  1014. },
  1015. },
  1016. 'Emphasis' => {
  1017. PrintConv => {
  1018. 'None' => 'Geen',
  1019. },
  1020. },
  1021. 'EnhanceDarkTones' => {
  1022. PrintConv => {
  1023. 'Off' => 'Uit',
  1024. 'On' => 'Aan',
  1025. },
  1026. },
  1027. 'Enhancement' => {
  1028. PrintConv => {
  1029. 'Off' => 'Uit',
  1030. },
  1031. },
  1032. 'EnvelopeNumber' => 'Basisdatanummer',
  1033. 'EnvelopePriority' => {
  1034. Description => 'Prioriteit',
  1035. PrintConv => {
  1036. '0 (reserved)' => '0 (Gereserveerd voor toekomstig gebruik)',
  1037. '1 (most urgent)' => '1 (Meest belangrijk)',
  1038. '5 (normal urgency)' => '5 (Normaal)',
  1039. '8 (least urgent)' => '8 (Minst belangrijk)',
  1040. '9 (user-defined priority)' => '9 (Door gebruiker aangegeven prioriteit)',
  1041. },
  1042. },
  1043. 'EnvelopeRecordVersion' => 'Recordversie',
  1044. 'ExifCameraInfo' => 'Exif Camera-informatie',
  1045. 'ExifImageHeight' => 'Afbeelding hoogte',
  1046. 'ExifImageWidth' => 'Afbeelding breedte',
  1047. 'ExifOffset' => 'Exif IFD-wijzer',
  1048. 'ExifToolVersion' => 'ExifTool versie',
  1049. 'ExifVersion' => 'Exif versie',
  1050. 'ExpandFilm' => 'Breid film uit',
  1051. 'ExpandFilterLens' => 'Breid filterlens uit',
  1052. 'ExpandFlashLamp' => 'Breid flitser uit',
  1053. 'ExpandLens' => 'Breid objectief',
  1054. 'ExpandScanner' => 'Breid scanner uit',
  1055. 'ExpandSoftware' => 'Breid software uit',
  1056. 'ExpirationDate' => 'Verloopdatum',
  1057. 'ExpirationTime' => 'Verlooptijdstip',
  1058. 'ExposureCompStepSize' => {
  1059. Description => 'Stapgrootte belichtingscorr.',
  1060. PrintConv => {
  1061. '1 EV' => '1 stop',
  1062. '1/2 EV' => '1/2 stop',
  1063. '1/3 EV' => '1/3 stop',
  1064. },
  1065. },
  1066. 'ExposureCompensation' => 'Belichtingscorrectie',
  1067. 'ExposureControlStepSize' => {
  1068. Description => 'Stapgrootte inst. belichting',
  1069. PrintConv => {
  1070. '1 EV' => '1 stop',
  1071. '1/2 EV' => '1/2 stop',
  1072. '1/3 EV' => '1/3 stop',
  1073. },
  1074. },
  1075. 'ExposureDelayMode' => {
  1076. Description => 'Spiegelvoorontspanning',
  1077. PrintConv => {
  1078. 'Off' => 'Uit',
  1079. 'On' => 'Aan',
  1080. },
  1081. },
  1082. 'ExposureIndex' => 'Belichtingsindex',
  1083. 'ExposureLevelIncrements' => {
  1084. Description => 'Stapgrootte inst. belichting',
  1085. PrintConv => {
  1086. '1/2 Stop' => '1/2 stop',
  1087. '1/3 Stop' => '1/3 stop',
  1088. },
  1089. },
  1090. 'ExposureMode' => {
  1091. Description => 'Belichting modus',
  1092. PrintConv => {
  1093. 'Aperture Priority' => 'Diafragmaprioriteit',
  1094. 'Aperture-priority AE' => 'Diafragmaprioriteit',
  1095. 'Auto' => 'Automatische belichting',
  1096. 'Auto bracket' => 'Belichting serie',
  1097. 'Landscape' => 'Landschap',
  1098. 'Manual' => 'Handmatige belichting',
  1099. 'Portrait' => 'Portret',
  1100. 'Shutter Priority' => 'Sluiterprioriteit',
  1101. 'Shutter speed priority AE' => 'Sluiterprioriteit',
  1102. },
  1103. },
  1104. 'ExposureModeInManual' => {
  1105. PrintConv => {
  1106. 'Center-weighted average' => 'Centrum gemiddelde',
  1107. 'Partial metering' => 'Gedeelte',
  1108. },
  1109. },
  1110. 'ExposureProgram' => {
  1111. Description => 'Belichtingsprogramma',
  1112. PrintConv => {
  1113. 'Action (High speed)' => 'Actie programma (georiënteerd op snelle sluitertijden)',
  1114. 'Aperture Priority' => 'Diafragmaprioriteit',
  1115. 'Aperture-priority AE' => 'Diafragmaprioriteit',
  1116. 'Creative (Slow speed)' => 'Creatief programma (georiënteerd op scherptediepte)',
  1117. 'Landscape' => 'Landschap modus',
  1118. 'Manual' => 'Handmatig',
  1119. 'Not Defined' => 'Niet gedefinieerd',
  1120. 'Portrait' => 'Portret modus',
  1121. 'Program AE' => 'Normaal programma',
  1122. 'Shutter Priority' => 'Sluiterprioriteit',
  1123. 'Shutter speed priority AE' => 'Sluiterprioriteit',
  1124. },
  1125. },
  1126. 'ExposureTime' => 'Belichtingstijd',
  1127. 'ExposureTime2' => 'Belichtingstijd 2',
  1128. 'ExtendedWBDetect' => {
  1129. PrintConv => {
  1130. 'Off' => 'Uit',
  1131. 'On' => 'Aan',
  1132. },
  1133. },
  1134. 'ExternalFlash' => {
  1135. PrintConv => {
  1136. 'Off' => 'Uit',
  1137. 'On' => 'Aan',
  1138. },
  1139. },
  1140. 'ExternalFlashBounce' => {
  1141. PrintConv => {
  1142. 'No' => 'Nee',
  1143. 'Yes' => 'Ja',
  1144. },
  1145. },
  1146. 'ExternalFlashMode' => {
  1147. PrintConv => {
  1148. 'Off' => 'Uit',
  1149. },
  1150. },
  1151. 'ExtraSamples' => 'Extra componenten',
  1152. 'FNumber' => 'F waarde',
  1153. 'FaceOrientation' => {
  1154. PrintConv => {
  1155. 'Horizontal (normal)' => '0° (boven/links)',
  1156. 'Rotate 180' => '180° (onder/rechts)',
  1157. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  1158. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  1159. },
  1160. },
  1161. 'FastSeek' => {
  1162. PrintConv => {
  1163. 'No' => 'Nee',
  1164. 'Yes' => 'Ja',
  1165. },
  1166. },
  1167. 'FaxProfile' => {
  1168. PrintConv => {
  1169. 'Unknown' => 'Onbekend',
  1170. },
  1171. },
  1172. 'FaxRecvParams' => 'Fax ontvangst parameters',
  1173. 'FaxRecvTime' => 'Fax ontvangst tijd',
  1174. 'FaxSubAddress' => 'Fax sub adres',
  1175. 'FileFormat' => 'Fileformaat',
  1176. 'FileModifyDate' => 'Datum actualisering',
  1177. 'FileName' => 'Bestandnaam',
  1178. 'FileNumberMemory' => {
  1179. PrintConv => {
  1180. 'Off' => 'Uit',
  1181. 'On' => 'Aan',
  1182. },
  1183. },
  1184. 'FileNumberSequence' => {
  1185. Description => 'Opeenvolgende nummering',
  1186. PrintConv => {
  1187. 'Off' => 'Uit',
  1188. 'On' => 'Aan',
  1189. },
  1190. },
  1191. 'FileSize' => 'Bestandgrootte',
  1192. 'FileSource' => {
  1193. Description => 'Bestand bron',
  1194. PrintConv => {
  1195. 'Digital Camera' => 'Digitale camera',
  1196. 'Film Scanner' => 'Film scanner',
  1197. 'Reflection Print Scanner' => 'Scanner',
  1198. },
  1199. },
  1200. 'FileType' => 'Bestandtype',
  1201. 'FileVersion' => 'Fileformaat versie',
  1202. 'Filename' => 'Bestandnaam',
  1203. 'FillOrder' => {
  1204. Description => 'Vul volgorde',
  1205. PrintConv => {
  1206. 'Normal' => 'Normaal',
  1207. },
  1208. },
  1209. 'Filter' => {
  1210. PrintConv => {
  1211. 'Off' => 'Uit',
  1212. },
  1213. },
  1214. 'FilterEffect' => {
  1215. PrintConv => {
  1216. 'None' => 'Geen',
  1217. 'Off' => 'Uit',
  1218. },
  1219. },
  1220. 'FilterEffectMonochrome' => {
  1221. PrintConv => {
  1222. 'None' => 'Geen',
  1223. },
  1224. },
  1225. 'FinderDisplayDuringExposure' => {
  1226. PrintConv => {
  1227. 'Off' => 'Uit',
  1228. 'On' => 'Aan',
  1229. },
  1230. },
  1231. 'FineTuneOptCenterWeighted' => 'Fijnafst. voor opt. belichting Centrumgericht',
  1232. 'FineTuneOptMatrixMetering' => 'Fijnafst. voor opt. belichting Matrixmeting',
  1233. 'FineTuneOptSpotMetering' => 'Fijnafst. voor opt. belichting Spotmeting',
  1234. 'FixtureIdentifier' => 'Kenmerk',
  1235. 'Flash' => {
  1236. Description => 'Flits',
  1237. PrintConv => {
  1238. 'Auto, Did not fire' => 'Flits werd niet ontstoken, automodus',
  1239. 'Auto, Did not fire, Red-eye reduction' => 'Flits werd niet ontstoken, rode ogen reductie',
  1240. 'Auto, Fired' => 'Flits werd ontstoken, automodus',
  1241. 'Auto, Fired, Red-eye reduction' => 'Flits werd ontstoken, automodus, rode ogen reductie',
  1242. 'Auto, Fired, Red-eye reduction, Return detected' => 'Flits werd ontstoken, automodus, gereflecteerd flitslicht, rode ogen reductie',
  1243. 'Auto, Fired, Red-eye reduction, Return not detected' => 'Flits werd ontstoken, automodus, geen gereflecteerd flitslicht, rode ogen reductie',
  1244. 'Auto, Fired, Return detected' => 'Flits werd ontstoken, automodus, gereflecteerd flitslicht',
  1245. 'Auto, Fired, Return not detected' => 'Flits werd ontstoken, automodus, geen gereflecteerd flitslicht',
  1246. 'Did not fire' => 'Geen flits',
  1247. 'Fired' => 'Flits afgevuurd',
  1248. 'Fired, Red-eye reduction' => 'Flits werd ontstoken, Rode ogen reductie',
  1249. 'Fired, Red-eye reduction, Return detected' => 'Flits werd ontstoken, rode ogen reductie, gereflecteerd flitslicht',
  1250. 'Fired, Red-eye reduction, Return not detected' => 'Flits werd ontstoken, rode oen reductie, geen gereflecteerd flitslicht',
  1251. 'Fired, Return detected' => 'Gereflecteerd flitslicht gedetecteerd',
  1252. 'Fired, Return not detected' => 'Geen gereflecteerd flitslicht gedetecteerd',
  1253. 'No Flash' => 'Geen flits',
  1254. 'No flash function' => 'Geen flits functie',
  1255. 'Off' => 'Uit',
  1256. 'Off, Did not fire' => 'Flits werd niet ontstoken, flits onderdruk modus',
  1257. 'Off, Did not fire, Return not detected' => 'Gedeactiveerd, flits werd niet ontstoken, geen gereflecteerd flitslicht',
  1258. 'Off, No flash function' => 'Gedeactiveerd, geen flits functie',
  1259. 'Off, Red-eye reduction' => 'Gedeactiveerd, rode ogen reductie',
  1260. 'On' => 'Aan',
  1261. 'On, Did not fire' => 'Aan, flits werd niet ontstoken',
  1262. 'On, Fired' => 'Flits werd ontstoken, flits afdwing modus',
  1263. 'On, Red-eye reduction' => 'Flits werd ontstoken, flits afdwing modus, rode ogen reductie',
  1264. 'On, Red-eye reduction, Return detected' => 'Flits werd ontstoken, flits afdwing modus, rode ogen reductie, gereflecteerd flitslicht',
  1265. 'On, Red-eye reduction, Return not detected' => 'Flits werd ontstoken, flits afdwing modus, rode ogen reductie, geen gereflecteerd flitslicht',
  1266. 'On, Return detected' => 'Flits werd ontstoken, flits afdwing modus, gereflecteerd flitslicht gedetecteerd',
  1267. 'On, Return not detected' => 'Flits werd ontstoken, flits afdwing modus, geen gereflecteerd flitslicht gedetecteerd',
  1268. },
  1269. },
  1270. 'FlashCommanderMode' => {
  1271. PrintConv => {
  1272. 'Off' => 'Uit',
  1273. 'On' => 'Aan',
  1274. },
  1275. },
  1276. 'FlashCompensation' => 'Flitscorrectie',
  1277. 'FlashControlMode' => {
  1278. PrintConv => {
  1279. 'Manual' => 'Handmatig',
  1280. 'Off' => 'Uit',
  1281. 'Repeating Flash' => 'Stroboscopisch flitsen',
  1282. },
  1283. },
  1284. 'FlashDevice' => {
  1285. PrintConv => {
  1286. 'None' => 'Geen',
  1287. },
  1288. },
  1289. 'FlashEnergy' => 'Flits energie',
  1290. 'FlashExposureComp' => 'Flitscompensatie',
  1291. 'FlashExposureLock' => {
  1292. PrintConv => {
  1293. 'Off' => 'Uit',
  1294. 'On' => 'Aan',
  1295. },
  1296. },
  1297. 'FlashFired' => {
  1298. PrintConv => {
  1299. 'No' => 'Nee',
  1300. 'Yes' => 'Ja',
  1301. },
  1302. },
  1303. 'FlashGroupAControlMode' => {
  1304. PrintConv => {
  1305. 'Manual' => 'Handmatig',
  1306. 'Off' => 'Uit',
  1307. 'Repeating Flash' => 'Stroboscopisch flitsen',
  1308. },
  1309. },
  1310. 'FlashGroupBControlMode' => {
  1311. PrintConv => {
  1312. 'Manual' => 'Handmatig',
  1313. 'Off' => 'Uit',
  1314. 'Repeating Flash' => 'Stroboscopisch flitsen',
  1315. },
  1316. },
  1317. 'FlashGroupCControlMode' => {
  1318. PrintConv => {
  1319. 'Manual' => 'Handmatig',
  1320. 'Off' => 'Uit',
  1321. 'Repeating Flash' => 'Stroboscopisch flitsen',
  1322. },
  1323. },
  1324. 'FlashIntensity' => {
  1325. PrintConv => {
  1326. 'High' => 'Hoog',
  1327. 'Normal' => 'Normaal',
  1328. },
  1329. },
  1330. 'FlashLevel' => 'Flitscorrectie',
  1331. 'FlashMode' => {
  1332. PrintConv => {
  1333. 'Auto' => 'Automatisch',
  1334. 'Normal' => 'Normaal',
  1335. 'Off' => 'Uit',
  1336. 'On' => 'Aan',
  1337. 'Unknown' => 'Onbekend',
  1338. },
  1339. },
  1340. 'FlashModel' => {
  1341. PrintConv => {
  1342. 'None' => 'Geen',
  1343. },
  1344. },
  1345. 'FlashOptions' => {
  1346. PrintConv => {
  1347. 'Auto' => 'Automatisch',
  1348. 'Normal' => 'Normaal',
  1349. },
  1350. },
  1351. 'FlashOptions2' => {
  1352. PrintConv => {
  1353. 'Auto' => 'Automatisch',
  1354. 'Normal' => 'Normaal',
  1355. },
  1356. },
  1357. 'FlashShutterSpeed' => 'Langste sluitertijd bij flits',
  1358. 'FlashStatus' => {
  1359. PrintConv => {
  1360. 'Off' => 'Uit',
  1361. },
  1362. },
  1363. 'FlashSyncSpeed' => 'Flitssynchronisatie snelheid',
  1364. 'FlashSyncSpeedAv' => {
  1365. PrintConv => {
  1366. 'Auto' => 'Automatisch',
  1367. },
  1368. },
  1369. 'FlashType' => {
  1370. PrintConv => {
  1371. 'None' => 'Geen',
  1372. },
  1373. },
  1374. 'FlashWarning' => {
  1375. Description => 'Flitswaarschuwing',
  1376. PrintConv => {
  1377. 'Off' => 'Uit',
  1378. 'On' => 'Aan',
  1379. },
  1380. },
  1381. 'FlashpixVersion' => 'Ondersteunde Flashpix versie',
  1382. 'FlickerReduce' => {
  1383. PrintConv => {
  1384. 'Off' => 'Uit',
  1385. 'On' => 'Aan',
  1386. },
  1387. },
  1388. 'FlipHorizontal' => {
  1389. PrintConv => {
  1390. 'No' => 'Nee',
  1391. 'Yes' => 'Ja',
  1392. },
  1393. },
  1394. 'FocalLength' => 'Brandpuntafstand',
  1395. 'FocalLength35efl' => 'Brandpuntafstand',
  1396. 'FocalLengthIn35mmFormat' => 'Brandpuntafstand in 35 mm kleinbeeld formaat',
  1397. 'FocalPlaneResolutionUnit' => {
  1398. Description => 'Sensor resolutie eenheid',
  1399. PrintConv => {
  1400. 'None' => 'Geen',
  1401. 'inches' => 'inch',
  1402. 'um' => 'µm (micrometer)',
  1403. },
  1404. },
  1405. 'FocalPlaneXResolution' => 'Horizontale sensor resolutie',
  1406. 'FocalPlaneYResolution' => 'Verticale sensor resolutie',
  1407. 'Focus' => {
  1408. Description => 'Scherpstelling',
  1409. PrintConv => {
  1410. 'Manual' => 'Handmatig',
  1411. },
  1412. },
  1413. 'FocusArea' => 'Scherpstelveld',
  1414. 'FocusAreaSelection' => {
  1415. Description => 'Doorloop scherpstelpunt',
  1416. PrintConv => {
  1417. 'No Wrap' => 'Geen doorloop',
  1418. 'Wrap' => 'Doorloop',
  1419. },
  1420. },
  1421. 'FocusContinuous' => {
  1422. PrintConv => {
  1423. 'Continuous' => 'Continu',
  1424. 'Manual' => 'Handmatig',
  1425. },
  1426. },
  1427. 'FocusMode' => {
  1428. Description => 'Focus modus',
  1429. PrintConv => {
  1430. 'Auto' => 'Automatisch',
  1431. 'Continuous' => 'Continu',
  1432. 'Manual' => 'Handmatig',
  1433. 'Normal' => 'Normaal',
  1434. },
  1435. },
  1436. 'FocusMode2' => {
  1437. PrintConv => {
  1438. 'Manual' => 'Handmatig',
  1439. },
  1440. },
  1441. 'FocusModeSetting' => {
  1442. Description => 'Scherpstelstand',
  1443. PrintConv => {
  1444. 'AF-A' => 'Automatische AF',
  1445. 'AF-C' => 'Continue AF',
  1446. 'AF-S' => 'Enkelvoudige AF',
  1447. 'Manual' => 'Handmatig',
  1448. },
  1449. },
  1450. 'FocusPointWrap' => {
  1451. Description => 'Doorloop scherpstelpunt',
  1452. PrintConv => {
  1453. 'No Wrap' => 'Geen doorloop',
  1454. 'Wrap' => 'Doorloop',
  1455. },
  1456. },
  1457. 'FocusRange' => {
  1458. PrintConv => {
  1459. 'Auto' => 'Automatisch',
  1460. 'Manual' => 'Handmatig',
  1461. 'Normal' => 'Normaal',
  1462. },
  1463. },
  1464. 'FocusTrackingLockOn' => {
  1465. Description => 'Focus Tracking met Lock-On',
  1466. PrintConv => {
  1467. 'Long' => 'Lang',
  1468. 'Normal' => 'Normaal',
  1469. 'Off' => 'Uit',
  1470. 'Short' => 'Kort',
  1471. },
  1472. },
  1473. 'FrameRate' => 'Beeldwisselsnelheid',
  1474. 'FrameSize' => 'Beeldformaat',
  1475. 'FreeByteCounts' => 'Aantal bytes van het lege databereik',
  1476. 'FreeOffsets' => 'Vrije data posities',
  1477. 'FujiFlashMode' => {
  1478. PrintConv => {
  1479. 'Auto' => 'Automatisch',
  1480. },
  1481. },
  1482. 'FunctionButton' => {
  1483. Description => 'FUNC. knop',
  1484. PrintConv => {
  1485. 'AF-area Mode' => 'AF-veldstand',
  1486. 'Center AF Area' => 'Centrale AF-veld',
  1487. 'Center-weighted' => 'Centrumgericht',
  1488. 'FV Lock' => 'FV-vergrendeling',
  1489. 'Flash Off' => 'Flitser uit',
  1490. 'Framing Grid' => 'Rasterweergave',
  1491. 'ISO Display' => 'ISO-weergave',
  1492. 'Matrix Metering' => 'Matrixmeting',
  1493. 'Spot Metering' => 'Spotmeting',
  1494. },
  1495. },
  1496. 'GIFVersion' => 'GIF versie',
  1497. 'GPSAltitude' => 'Hoogte',
  1498. 'GPSAltitudeRef' => {
  1499. Description => 'Hoogte referentie',
  1500. PrintConv => {
  1501. 'Above Sea Level' => 'Zee spiegel',
  1502. 'Below Sea Level' => 'Zee spiegel referentie (negatieve waarde)',
  1503. },
  1504. },
  1505. 'GPSAreaInformation' => 'Naam van het GPS gebied',
  1506. 'GPSDOP' => 'Meet nauwkeurigheid',
  1507. 'GPSDateStamp' => 'GPS datum',
  1508. 'GPSDateTime' => 'GPS tijd (atoomklok)',
  1509. 'GPSDestBearing' => 'Motiefrichting',
  1510. 'GPSDestBearingRef' => {
  1511. Description => 'Referentie voor de motiefrichting',
  1512. PrintConv => {
  1513. 'Magnetic North' => 'Magnetische uitrichting',
  1514. 'True North' => 'Geografische uitrichting',
  1515. },
  1516. },
  1517. 'GPSDestDistance' => 'Afstand tot bestemming',
  1518. 'GPSDestDistanceRef' => {
  1519. Description => 'Referentie voor de afstand tot de bestemming',
  1520. PrintConv => {
  1521. 'Miles' => 'Mijlen',
  1522. 'Nautical Miles' => 'Knopen',
  1523. },
  1524. },
  1525. 'GPSDestLatitude' => 'Breedte van het doel',
  1526. 'GPSDestLatitudeRef' => {
  1527. Description => 'Referentie voor de breedte van het doel',
  1528. PrintConv => {
  1529. 'North' => 'Noordelijke breedte',
  1530. 'South' => 'Zuidelijke breedte',
  1531. },
  1532. },
  1533. 'GPSDestLongitude' => 'Lengtegraad van het doel',
  1534. 'GPSDestLongitudeRef' => {
  1535. Description => 'Referentie voor de lengte van het doel',
  1536. PrintConv => {
  1537. 'East' => 'Oostelijke lengte',
  1538. 'West' => 'Westlijke lengte',
  1539. },
  1540. },
  1541. 'GPSDifferential' => {
  1542. Description => 'GPS differentiaal correctie',
  1543. PrintConv => {
  1544. 'Differential Corrected' => 'Differentiaal correctie toegepast',
  1545. 'No Correction' => 'Meting zonder differentiaal correctie',
  1546. },
  1547. },
  1548. 'GPSImgDirection' => 'Richting van de afbeelding',
  1549. 'GPSImgDirectionRef' => {
  1550. Description => 'Referentie voor de uitrichting van de afbeelding',
  1551. PrintConv => {
  1552. 'Magnetic North' => 'Magnetische uitrichting',
  1553. 'True North' => 'Geografische uitrichting',
  1554. },
  1555. },
  1556. 'GPSInfo' => 'GPS Info IFD-wijzer',
  1557. 'GPSLatitude' => 'Breedte graad',
  1558. 'GPSLatitudeRef' => {
  1559. Description => 'Noord. of zuid. breedte',
  1560. PrintConv => {
  1561. 'North' => 'Noordelijke breedte',
  1562. 'South' => 'Zuidlijke breedte',
  1563. },
  1564. },
  1565. 'GPSLongitude' => 'Geografische lengte',
  1566. 'GPSLongitudeRef' => {
  1567. Description => 'Oost. of west. lengte',
  1568. PrintConv => {
  1569. 'East' => 'Oostlijke lengte',
  1570. 'West' => 'Westlijke lengte',
  1571. },
  1572. },
  1573. 'GPSMapDatum' => 'Geodatische datum',
  1574. 'GPSMeasureMode' => {
  1575. Description => 'GPS meet methode',
  1576. PrintConv => {
  1577. '2-D' => '2 dimensionale meting',
  1578. '2-Dimensional' => '2 dimensionale meting',
  1579. '2-Dimensional Measurement' => '2 dimensionale meting',
  1580. '3-D' => '3 dimensionale meting',
  1581. '3-Dimensional' => '3 dimensionale meting',
  1582. '3-Dimensional Measurement' => '3 dimensionale meting',
  1583. },
  1584. },
  1585. 'GPSProcessingMethod' => 'Naam van de GPS verwerk methode',
  1586. 'GPSSatellites' => 'Voor de meting gebruikte satellieten',
  1587. 'GPSSpeed' => 'Snelheid van de GPS ontvanger',
  1588. 'GPSSpeedRef' => {
  1589. Description => 'Snelheids eenheid',
  1590. PrintConv => {
  1591. 'km/h' => 'Kilometer per uur',
  1592. 'knots' => 'Knopen',
  1593. 'mph' => 'Mijl per uur',
  1594. },
  1595. },
  1596. 'GPSStatus' => {
  1597. Description => 'GPS ontvanger status',
  1598. PrintConv => {
  1599. 'Measurement Active' => 'Meting loopt',
  1600. 'Measurement Void' => 'Interoperabiliteit voor metingen',
  1601. },
  1602. },
  1603. 'GPSTimeStamp' => 'GPS tijd (atoomklok)',
  1604. 'GPSTrack' => 'Bewegingsrichting',
  1605. 'GPSTrackRef' => {
  1606. Description => 'Referentie voor de bewegingsrichting',
  1607. PrintConv => {
  1608. 'Magnetic North' => 'Magnetische uitrichting',
  1609. 'True North' => 'Geographische uitrichting',
  1610. },
  1611. },
  1612. 'GPSVersionID' => 'GPS tag versie',
  1613. 'GainControl' => {
  1614. Description => 'Belichtingsversterking',
  1615. PrintConv => {
  1616. 'High gain down' => 'Hoge helderheidsverminderring',
  1617. 'High gain up' => 'Hoge helderheidsvesterking',
  1618. 'Low gain down' => 'Kleine helderheidsverminderring',
  1619. 'Low gain up' => 'Kleine helderheidsvesterking',
  1620. 'None' => 'Geen',
  1621. },
  1622. },
  1623. 'Gapless' => {
  1624. PrintConv => {
  1625. 'No' => 'Nee',
  1626. 'Yes' => 'Ja',
  1627. },
  1628. },
  1629. 'Gradation' => 'Levendig',
  1630. 'GrayResponseUnit' => {
  1631. PrintConv => {
  1632. '0.0001' => 'Nummer stelt een 1000ste van een eenheid voor',
  1633. '0.001' => 'Nummer stelt een 100ste van een eenheid voor',
  1634. '0.1' => 'Nummer stelt een 10de van een eenheid voor',
  1635. '1e-05' => 'Nummer stelt een 10000ste van een eenheid voor',
  1636. '1e-06' => 'Nummer stelt een 100000ste van een eenheid voor',
  1637. },
  1638. },
  1639. 'GrayTRC' => 'Grijze toon reproductie curve',
  1640. 'GreenMatrixColumn' => 'Groene matrixkolom',
  1641. 'GreenTRC' => 'Groene toon reproductie curve',
  1642. 'GridDisplay' => {
  1643. Description => 'Rasterweergave in zoeker',
  1644. PrintConv => {
  1645. 'Off' => 'Uit',
  1646. 'On' => 'Aan',
  1647. },
  1648. },
  1649. 'HDR' => {
  1650. Description => 'Auto HDR',
  1651. PrintConv => {
  1652. 'Off' => 'Uit',
  1653. },
  1654. },
  1655. 'Headline' => 'Opschrift',
  1656. 'HeightResolution' => 'Beeldresolutie verticaal',
  1657. 'HighISONoiseReduction' => {
  1658. Description => 'NR bij hoge-ISO',
  1659. PrintConv => {
  1660. 'Auto' => 'Automatisch',
  1661. 'High' => 'Hi',
  1662. 'Low' => 'Laag',
  1663. 'Normal' => 'Normaal',
  1664. 'Off' => 'Uit',
  1665. 'On' => 'Aan',
  1666. 'Standard' => 'Standaard',
  1667. },
  1668. },
  1669. 'HighlightTonePriority' => {
  1670. PrintConv => {
  1671. 'Off' => 'Uit',
  1672. 'On' => 'Aan',
  1673. },
  1674. },
  1675. 'HometownDST' => {
  1676. PrintConv => {
  1677. 'No' => 'Nee',
  1678. 'Yes' => 'Ja',
  1679. },
  1680. },
  1681. 'Hue' => 'Kleurtoon',
  1682. 'ICCProfile' => 'ICC Profiel',
  1683. 'IPTC-NAA' => 'IPTC-NAA metadata',
  1684. 'ISO' => 'ISO gevoeligheid',
  1685. 'ISOAuto' => 'ISO auto',
  1686. 'ISODisplay' => 'ISO-weergave',
  1687. 'ISOExpansion' => {
  1688. PrintConv => {
  1689. 'Off' => 'Uit',
  1690. 'On' => 'Aan',
  1691. },
  1692. },
  1693. 'ISOExpansion2' => {
  1694. PrintConv => {
  1695. 'Off' => 'Uit',
  1696. },
  1697. },
  1698. 'ISOSetting' => {
  1699. PrintConv => {
  1700. 'Auto' => 'Automatisch',
  1701. 'Manual' => 'Handmatig',
  1702. },
  1703. },
  1704. 'ISOSpeedExpansion' => {
  1705. PrintConv => {
  1706. 'No' => 'Nee',
  1707. 'Yes' => 'Ja',
  1708. },
  1709. },
  1710. 'ISOSpeedIncrements' => {
  1711. Description => 'ISO-stapgrootte',
  1712. PrintConv => {
  1713. '1 Stop' => '1 stop',
  1714. '1/3 Stop' => '1/3 stop',
  1715. },
  1716. },
  1717. 'ISOStepSize' => {
  1718. Description => 'ISO-stapgrootte',
  1719. PrintConv => {
  1720. '1 EV' => '1 stop',
  1721. '1/2 EV' => '1/2 stop',
  1722. '1/3 EV' => '1/3 stop',
  1723. },
  1724. },
  1725. 'Illumination' => {
  1726. Description => 'Verlichting',
  1727. PrintConv => {
  1728. 'Off' => 'Uit',
  1729. 'On' => 'Aan',
  1730. },
  1731. },
  1732. 'ImageAuthentication' => {
  1733. PrintConv => {
  1734. 'Off' => 'Uit',
  1735. },
  1736. },
  1737. 'ImageByteCount' => 'Aantal beeldgegevens in bytes',
  1738. 'ImageColorIndicator' => 'Afbeelding kleur indicator',
  1739. 'ImageColorValue' => 'Afbeelding kleur waarde',
  1740. 'ImageDataDiscard' => {
  1741. Description => 'Afgedankte beeldgegevens',
  1742. PrintConv => {
  1743. 'Flexbits Discarded' => 'Afgedankte flexbits',
  1744. 'Full Resolution' => 'Volledige resolutie',
  1745. 'HighPass Frequency Data Discarded' => 'Afgedankte hoogdoorlaat frequentiegegevens',
  1746. 'Highpass and LowPass Frequency Data Discarded' => 'Afgedankte hoogdoorlaat en laagdoorlaat frequentiegegevens',
  1747. },
  1748. },
  1749. 'ImageDescription' => 'Afbeelding beschrijving',
  1750. 'ImageDustOff' => {
  1751. PrintConv => {
  1752. 'Off' => 'Uit',
  1753. 'On' => 'Aan',
  1754. },
  1755. },
  1756. 'ImageHeight' => 'Afbeeldingshoogte',
  1757. 'ImageHistory' => 'Afbeelding geschiedenis',
  1758. 'ImageNumber' => 'Afbeelding nummer',
  1759. 'ImageOffset' => 'Beeldverplaatsing',
  1760. 'ImageOrientation' => {
  1761. Description => 'Foto oriëntatie',
  1762. PrintConv => {
  1763. 'Landscape' => 'Landschap',
  1764. 'Portrait' => 'Portret',
  1765. 'Square' => 'Vierkant',
  1766. },
  1767. },
  1768. 'ImageQuality' => {
  1769. Description => 'Bldkwaliteit',
  1770. PrintConv => {
  1771. 'High' => 'Hoog',
  1772. 'Normal' => 'Normaal',
  1773. },
  1774. },
  1775. 'ImageQuality2' => 'Bldkwaliteit 2',
  1776. 'ImageReview' => {
  1777. Description => 'Beeld terugspelen',
  1778. PrintConv => {
  1779. 'Off' => 'Uit',
  1780. 'On' => 'Aan',
  1781. },
  1782. },
  1783. 'ImageReviewTime' => 'Timers uit Beeld terugspelen',
  1784. 'ImageRotated' => {
  1785. PrintConv => {
  1786. 'No' => 'Nee',
  1787. 'Yes' => 'Ja',
  1788. },
  1789. },
  1790. 'ImageSize' => 'Beeldformaat',
  1791. 'ImageStabilization' => {
  1792. PrintConv => {
  1793. 'Off' => 'Uit',
  1794. 'On' => 'Aan',
  1795. },
  1796. },
  1797. 'ImageTone' => {
  1798. PrintConv => {
  1799. 'Landscape' => 'Landschap',
  1800. 'Portrait' => 'Portret',
  1801. },
  1802. },
  1803. 'ImageType' => 'Beeldtype',
  1804. 'ImageUniqueID' => 'Uniek afbeeldings ID',
  1805. 'ImageWidth' => 'Afbeeldingsbreedte',
  1806. 'InitialZoomSetting' => {
  1807. Description => 'Aanvankelijke zoominstelling',
  1808. PrintConv => {
  1809. 'High Magnification' => 'Hoge zoom',
  1810. 'Low Magnification' => 'Lage zoom',
  1811. 'Medium Magnification' => 'Gemiddelde zoom',
  1812. },
  1813. },
  1814. 'Instructions' => 'Instructies',
  1815. 'IntellectualGenre' => 'Genre',
  1816. 'IntensityStereo' => {
  1817. PrintConv => {
  1818. 'Off' => 'Uit',
  1819. 'On' => 'Aan',
  1820. },
  1821. },
  1822. 'InternalFlash' => {
  1823. Description => 'Flitssturing ingeb. flitser',
  1824. PrintConv => {
  1825. 'Commander Mode' => 'Commanderstand',
  1826. 'Fired' => 'Flits afgevuurd',
  1827. 'Manual' => 'Handmatig',
  1828. 'No' => 'Geen flits',
  1829. 'Off' => 'Uit',
  1830. 'On' => 'Aan',
  1831. 'Repeating Flash' => 'Stroboscopisch flitsen',
  1832. 'TTL' => 'DDL',
  1833. },
  1834. },
  1835. 'InternalFlashMode' => {
  1836. PrintConv => {
  1837. 'On' => 'Aan',
  1838. },
  1839. },
  1840. 'InteropIndex' => {
  1841. Description => 'Interoperabiliteits Identificatie',
  1842. PrintConv => {
  1843. 'R03 - DCF option file (Adobe RGB)' => 'R03: DCF Optie formaat (Adobe RGB)',
  1844. 'R98 - DCF basic file (sRGB)' => 'R98: DCF Basis formaat (sRGB)',
  1845. 'THM - DCF thumbnail file' => 'THM: DCF Miniatuur formaat',
  1846. },
  1847. },
  1848. 'InteropOffset' => 'Interoperabiliteit-tag',
  1849. 'InteropVersion' => 'Interoperabiliteits versie',
  1850. 'JFIFVersion' => 'JFIF versie',
  1851. 'JPEGQuality' => {
  1852. Description => 'Beeldkwaliteit',
  1853. PrintConv => {
  1854. 'Extra Fine' => 'Extra fijn',
  1855. 'Fine' => 'Fijn',
  1856. 'Standard' => 'Normaal',
  1857. },
  1858. },
  1859. 'JobID' => 'ID van baan',
  1860. 'Keyword' => 'Trefwoorden',
  1861. 'Keywords' => 'Trefwoord',
  1862. 'LCDIllumination' => {
  1863. Description => 'LCD-verlichting',
  1864. PrintConv => {
  1865. 'Off' => 'Uit',
  1866. 'On' => 'Aan',
  1867. },
  1868. },
  1869. 'LCDIlluminationDuringBulb' => {
  1870. PrintConv => {
  1871. 'Off' => 'Uit',
  1872. 'On' => 'Aan',
  1873. },
  1874. },
  1875. 'LCHEditor' => {
  1876. PrintConv => {
  1877. 'Off' => 'Uit',
  1878. 'On' => 'Aan',
  1879. },
  1880. },
  1881. 'LanguageIdentifier' => 'Taalherkenning',
  1882. 'Lens' => 'Objectief',
  1883. 'LensInfo' => 'Lensgegevens',
  1884. 'LicenseType' => {
  1885. PrintConv => {
  1886. 'Unknown' => 'Onbekend',
  1887. },
  1888. },
  1889. 'LightSource' => {
  1890. Description => 'Lichtbron',
  1891. PrintConv => {
  1892. 'Cloudy' => 'Bewolkt',
  1893. 'Cool White Fluorescent' => 'Koel wit TL-licht',
  1894. 'Day White Fluorescent' => 'Daglicht wit TL-licht',
  1895. 'Daylight' => 'Daglicht',
  1896. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  1897. 'Fine Weather' => 'Onbewolkt',
  1898. 'Flash' => 'Flits',
  1899. 'Fluorescent' => 'Fluoresceren',
  1900. 'ISO Studio Tungsten' => 'ISO studio kunstlicht (gloeilamp)',
  1901. 'Other' => 'Andere lichtbron',
  1902. 'Shade' => 'Schaduw',
  1903. 'Standard Light A' => 'Standaard licht A',
  1904. 'Standard Light B' => 'Standaard licht B',
  1905. 'Standard Light C' => 'Standaard licht C',
  1906. 'Tungsten (Incandescent)' => 'Kunstlicht (gloeilamp)',
  1907. 'Unknown' => 'Onbekend',
  1908. 'Warm White Fluorescent' => 'Warm wit TL-licht',
  1909. 'White Fluorescent' => 'Wit TL-licht',
  1910. },
  1911. },
  1912. 'LightSourceSpecial' => {
  1913. PrintConv => {
  1914. 'Off' => 'Uit',
  1915. 'On' => 'Aan',
  1916. },
  1917. },
  1918. 'Lightness' => 'Helderheid',
  1919. 'Lit' => {
  1920. PrintConv => {
  1921. 'No' => 'Nee',
  1922. 'Yes' => 'Ja',
  1923. },
  1924. },
  1925. 'LiveViewShooting' => {
  1926. PrintConv => {
  1927. 'Off' => 'Uit',
  1928. 'On' => 'Aan',
  1929. },
  1930. },
  1931. 'Location' => 'Lokatie',
  1932. 'LongExposureNoiseReduction' => {
  1933. Description => 'NR lang-belicht',
  1934. PrintConv => {
  1935. 'Auto' => 'Automatisch',
  1936. 'Off' => 'Uit',
  1937. 'On' => 'Aan',
  1938. },
  1939. },
  1940. 'LoopStyle' => {
  1941. PrintConv => {
  1942. 'Normal' => 'Normaal',
  1943. },
  1944. },
  1945. 'LuminanceNoiseReduction' => {
  1946. PrintConv => {
  1947. 'High' => 'Hoog',
  1948. 'Low' => 'Laag',
  1949. 'Off' => 'Uit',
  1950. },
  1951. },
  1952. 'MB-D10Batteries' => 'MB-D10 batterijen',
  1953. 'MB-D10BatteryType' => 'MB-D10 batterijen',
  1954. 'MB-D80Batteries' => 'MB-D80 batterijen',
  1955. 'MIEVersion' => 'MIE versie',
  1956. 'MSStereo' => {
  1957. PrintConv => {
  1958. 'Off' => 'Uit',
  1959. 'On' => 'Aan',
  1960. },
  1961. },
  1962. 'Macro' => {
  1963. PrintConv => {
  1964. 'Manual' => 'Handmatig',
  1965. 'Normal' => 'Normaal',
  1966. 'Off' => 'Uit',
  1967. 'On' => 'Aan',
  1968. },
  1969. },
  1970. 'MacroMode' => {
  1971. PrintConv => {
  1972. 'Normal' => 'Normaal',
  1973. 'Off' => 'Uit',
  1974. 'On' => 'Aan',
  1975. },
  1976. },
  1977. 'MainDialExposureComp' => {
  1978. Description => 'Main Dial Belichtingscorrectie',
  1979. PrintConv => {
  1980. 'Off' => 'Uit',
  1981. 'On' => 'Aan',
  1982. },
  1983. },
  1984. 'Make' => 'Fabrikant',
  1985. 'MakeAndModel' => 'Producent en model',
  1986. 'MakerNote' => 'Fabrikant informatie',
  1987. 'MakerNotes' => 'Wenken van de fabrikant',
  1988. 'ManualFlashOutput' => {
  1989. Description => 'Ingebouwde flitser Handmatig Sterkte',
  1990. PrintConv => {
  1991. 'Low' => 'Laag',
  1992. },
  1993. },
  1994. 'MasterDocumentID' => 'ID van hoofddocument',
  1995. 'MaxAperture' => 'Maximale lensopening',
  1996. 'MaxApertureValue' => 'Grootste diafragma',
  1997. 'MaxContinuousRelease' => 'Max. aant. continuopnamen',
  1998. 'MaxSampleValue' => 'Max sample waarde',
  1999. 'MediaBlackPoint' => 'Media zwartpunt',
  2000. 'MediaType' => {
  2001. PrintConv => {
  2002. 'Normal' => 'Normaal',
  2003. },
  2004. },
  2005. 'MediaWhitePoint' => 'Media Witpunt',
  2006. 'Metering' => {
  2007. Description => 'Lichtmeting',
  2008. PrintConv => {
  2009. 'Center-weighted' => 'Centrumgericht',
  2010. 'Matrix' => 'Matrixmeting',
  2011. },
  2012. },
  2013. 'MeteringMode' => {
  2014. Description => 'Belichting meet methode',
  2015. PrintConv => {
  2016. 'Average' => 'Gemiddeld',
  2017. 'Center-weighted average' => 'Centrum gemiddelde',
  2018. 'Multi-segment' => 'Multi segment',
  2019. 'Multi-spot' => 'MultiSpot',
  2020. 'Other' => 'Andere',
  2021. 'Partial' => 'Gedeelte',
  2022. 'Unknown' => 'Onbekend',
  2023. },
  2024. },
  2025. 'MeteringMode2' => {
  2026. PrintConv => {
  2027. 'Multi-segment' => 'Multi segment',
  2028. },
  2029. },
  2030. 'MeteringMode3' => {
  2031. PrintConv => {
  2032. 'Multi-segment' => 'Multi segment',
  2033. },
  2034. },
  2035. 'MeteringTime' => {
  2036. Description => 'Timers uit Belichtingsmeters',
  2037. PrintConv => {
  2038. 'No Limit' => 'Altijd aan',
  2039. },
  2040. },
  2041. 'MinSampleValue' => 'Min sample waarde',
  2042. 'MinoltaQuality' => {
  2043. PrintConv => {
  2044. 'Normal' => 'Normaal',
  2045. 'Standard' => 'Standaard',
  2046. },
  2047. },
  2048. 'Model' => 'Camera model',
  2049. 'Model2' => 'Camera model (2)',
  2050. 'ModelingFlash' => {
  2051. Description => 'Instellicht',
  2052. PrintConv => {
  2053. 'Off' => 'Uit',
  2054. 'On' => 'Aan',
  2055. },
  2056. },
  2057. 'ModifiedPictureStyle' => {
  2058. PrintConv => {
  2059. 'Landscape' => 'Landschap',
  2060. 'None' => 'Geen',
  2061. 'Portrait' => 'Portret',
  2062. 'Standard' => 'Standaard',
  2063. },
  2064. },
  2065. 'ModifiedSaturation' => {
  2066. PrintConv => {
  2067. 'Off' => 'Uit',
  2068. },
  2069. },
  2070. 'ModifiedSharpnessFreq' => {
  2071. PrintConv => {
  2072. 'High' => 'Hoog',
  2073. 'Low' => 'Laag',
  2074. 'Standard' => 'Standaard',
  2075. },
  2076. },
  2077. 'ModifiedToneCurve' => {
  2078. PrintConv => {
  2079. 'Manual' => 'Handmatig',
  2080. 'Standard' => 'Standaard',
  2081. },
  2082. },
  2083. 'ModifiedWhiteBalance' => {
  2084. PrintConv => {
  2085. 'Auto' => 'Automatisch',
  2086. 'Cloudy' => 'Bewolkt',
  2087. 'Daylight' => 'Daglicht',
  2088. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  2089. 'Flash' => 'Flits',
  2090. 'Fluorescent' => 'Fluoresceren',
  2091. 'Shade' => 'Schaduw',
  2092. 'Tungsten' => 'Kunstlicht (gloeilamp)',
  2093. },
  2094. },
  2095. 'ModifyDate' => 'Datum bestand wijziging',
  2096. 'MoireFilter' => {
  2097. PrintConv => {
  2098. 'Off' => 'Uit',
  2099. 'On' => 'Aan',
  2100. },
  2101. },
  2102. 'MonitorOffTime' => 'Monitor uit',
  2103. 'MonochromeFilterEffect' => {
  2104. PrintConv => {
  2105. 'None' => 'Geen',
  2106. },
  2107. },
  2108. 'MonochromeLinear' => {
  2109. PrintConv => {
  2110. 'No' => 'Nee',
  2111. 'Yes' => 'Ja',
  2112. },
  2113. },
  2114. 'MonochromeToningEffect' => {
  2115. PrintConv => {
  2116. 'None' => 'Geen',
  2117. },
  2118. },
  2119. 'MultiExposureAutoGain' => {
  2120. PrintConv => {
  2121. 'Off' => 'Uit',
  2122. 'On' => 'Aan',
  2123. },
  2124. },
  2125. 'MultiExposureMode' => {
  2126. PrintConv => {
  2127. 'Off' => 'Uit',
  2128. },
  2129. },
  2130. 'MultiFrameNoiseReduction' => {
  2131. Description => 'Ruisond. Multi Frame',
  2132. PrintConv => {
  2133. 'Off' => 'Uit',
  2134. 'On' => 'Aan',
  2135. },
  2136. },
  2137. 'MultiSelector' => {
  2138. Description => 'Multi-selector',
  2139. PrintConv => {
  2140. 'Do Nothing' => 'Doe niets',
  2141. 'Reset Meter-off Delay' => 'Activeer lichtmeter',
  2142. },
  2143. },
  2144. 'MultiSelectorPlaybackMode' => {
  2145. Description => 'Centrale knop multiselector Weergavestand',
  2146. PrintConv => {
  2147. 'Choose Folder' => 'Map selecteren',
  2148. 'Thumbnail On/Off' => 'Miniatuur aan/uit',
  2149. 'View Histograms' => 'Histogrammen weergeven',
  2150. 'Zoom On/Off' => 'Zoom aan/uit',
  2151. },
  2152. },
  2153. 'MultiSelectorShootMode' => {
  2154. Description => 'Centrale knop multiselector Opnamestand',
  2155. PrintConv => {
  2156. 'Highlight Active Focus Point' => 'Actieve AF-punt markeren',
  2157. 'Not Used' => 'Geen functie',
  2158. 'Select Center Focus Point' => 'Middelste AF-punt selecteren',
  2159. },
  2160. },
  2161. 'MultipleExposureSet' => {
  2162. PrintConv => {
  2163. 'Off' => 'Uit',
  2164. 'On' => 'Aan',
  2165. },
  2166. },
  2167. 'Mute' => {
  2168. PrintConv => {
  2169. 'Off' => 'Uit',
  2170. 'On' => 'Aan',
  2171. },
  2172. },
  2173. 'MyColorMode' => {
  2174. PrintConv => {
  2175. 'Off' => 'Uit',
  2176. },
  2177. },
  2178. 'NDFilter' => {
  2179. PrintConv => {
  2180. 'Off' => 'Uit',
  2181. 'On' => 'Aan',
  2182. },
  2183. },
  2184. 'NEFCompression' => {
  2185. PrintConv => {
  2186. 'Uncompressed' => 'Niet gecomprimeerd',
  2187. },
  2188. },
  2189. 'NikonImageSize' => 'Beeldformaat',
  2190. 'NoMemoryCard' => {
  2191. Description => 'Geen geheugenkaart',
  2192. PrintConv => {
  2193. 'Enable Release' => 'Ontgrendel ontspanknop',
  2194. 'Release Locked' => 'Vergrendel ontspanknop',
  2195. },
  2196. },
  2197. 'Noise' => 'Ruis',
  2198. 'NoiseFilter' => {
  2199. PrintConv => {
  2200. 'High' => 'Hoog',
  2201. 'Low' => 'Laag',
  2202. 'Off' => 'Uit',
  2203. 'Standard' => 'Standaard',
  2204. },
  2205. },
  2206. 'NoiseReduction' => {
  2207. Description => 'Ruisreductie',
  2208. PrintConv => {
  2209. 'Auto' => 'Automatisch',
  2210. 'Normal' => 'Normaal',
  2211. 'Off' => 'Uit',
  2212. 'On' => 'Aan',
  2213. 'Standard' => 'Standaard',
  2214. },
  2215. },
  2216. 'ObjectAttributeReference' => 'Intellectuele genre',
  2217. 'ObjectCycle' => {
  2218. Description => 'Objectcyclus',
  2219. PrintConv => {
  2220. 'Both Morning and Evening' => 'Beide',
  2221. 'Evening' => 'Avond',
  2222. 'Morning' => 'Ochtend',
  2223. },
  2224. },
  2225. 'ObjectFileType' => {
  2226. PrintConv => {
  2227. 'None' => 'Geen',
  2228. 'Unknown' => 'Onbekend',
  2229. },
  2230. },
  2231. 'ObjectName' => 'Titel',
  2232. 'ObjectPreviewData' => 'Voorvertoning objectgegevens',
  2233. 'ObjectPreviewFileFormat' => 'Voorvertoning objectgegevens bestandsformaat',
  2234. 'ObjectPreviewFileVersion' => 'Voorvertoning objectgegevens bestandsformaatversie',
  2235. 'ObjectTypeReference' => 'Referentie van Object type',
  2236. 'OldSubfileType' => 'Subbestand type',
  2237. 'OneTouchWB' => {
  2238. PrintConv => {
  2239. 'Off' => 'Uit',
  2240. },
  2241. },
  2242. 'OpticalZoomMode' => {
  2243. PrintConv => {
  2244. 'Standard' => 'Standaard',
  2245. },
  2246. },
  2247. 'OpticalZoomOn' => {
  2248. PrintConv => {
  2249. 'Off' => 'Uit',
  2250. 'On' => 'Aan',
  2251. },
  2252. },
  2253. 'Opto-ElectricConvFactor' => 'Opto elektronische omreken factor',
  2254. 'Orientation' => {
  2255. Description => 'Oriëntatie van de afbeelding',
  2256. PrintConv => {
  2257. 'Horizontal (normal)' => '0° (boven/links)',
  2258. 'Mirror horizontal' => 'Horizontaal gespiegeld',
  2259. 'Mirror horizontal and rotate 270 CW' => 'Spiegel horizontaal en draai 270° met de klok mee',
  2260. 'Mirror horizontal and rotate 90 CW' => 'Spiegel horizontaal en draai 90° met de klok mee',
  2261. 'Mirror vertical' => 'Vertikaal gespiegeld',
  2262. 'Rotate 180' => '180° (onder/rechts)',
  2263. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  2264. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  2265. },
  2266. },
  2267. 'OriginalTransmissionReference' => 'Werknummer',
  2268. 'OriginatingProgram' => 'Oorspronkelijk programma',
  2269. 'OwnerID' => 'ID van eigenaar',
  2270. 'PEFVersion' => 'PEF versie',
  2271. 'Padding' => 'Plaatshouder',
  2272. 'PageName' => 'Pagina naam',
  2273. 'PageNumber' => 'Pagina nummer',
  2274. 'PhotoEffect' => {
  2275. PrintConv => {
  2276. 'Off' => 'Uit',
  2277. },
  2278. },
  2279. 'PhotoEffects' => {
  2280. PrintConv => {
  2281. 'Off' => 'Uit',
  2282. 'On' => 'Aan',
  2283. },
  2284. },
  2285. 'PhotoEffectsType' => {
  2286. PrintConv => {
  2287. 'None' => 'Geen',
  2288. },
  2289. },
  2290. 'PhotoInfoPlayback' => {
  2291. Description => 'Functie van multi-selector',
  2292. PrintConv => {
  2293. 'Info Left-right, Playback Up-down' => 'Info <> / Foto’s',
  2294. 'Info Up-down, Playback Left-right' => 'Info / Foto’s <>',
  2295. },
  2296. },
  2297. 'PhotometricInterpretation' => {
  2298. Description => 'Pixel schema',
  2299. PrintConv => {
  2300. 'BlackIsZero' => 'Zwart is nul',
  2301. 'Color Filter Array' => 'CFA (Kleur Filter Matrix)',
  2302. 'Pixar LogL' => 'CIE Log2(L) (Log Luminantie)',
  2303. 'Pixar LogLuv' => 'CIE Log2(L)(u\',v\') (Log Luminantie en Chrominantie)',
  2304. 'RGB Palette' => 'RGB palet',
  2305. 'Transparency Mask' => 'Transparent masker',
  2306. 'WhiteIsZero' => 'Wit is nul',
  2307. },
  2308. },
  2309. 'PhotoshopFormat' => {
  2310. PrintConv => {
  2311. 'Standard' => 'Standaard',
  2312. },
  2313. },
  2314. 'PictureControl' => {
  2315. PrintConv => {
  2316. 'Off' => 'Uit',
  2317. 'On' => 'Aan',
  2318. },
  2319. },
  2320. 'PictureControlActive' => {
  2321. PrintConv => {
  2322. 'Off' => 'Uit',
  2323. 'On' => 'Aan',
  2324. },
  2325. },
  2326. 'PictureFinish' => {
  2327. PrintConv => {
  2328. 'Portrait' => 'Portret',
  2329. },
  2330. },
  2331. 'PictureMode' => {
  2332. PrintConv => {
  2333. 'Aperture-priority AE' => 'Diafragmaprioriteit',
  2334. 'Auto' => 'Automatisch',
  2335. 'Landscape' => 'Landschap',
  2336. 'Manual' => 'Handmatig',
  2337. 'Portrait' => 'Portret',
  2338. 'Shutter speed priority AE' => 'Sluiterprioriteit',
  2339. 'Standard' => 'Standaard',
  2340. },
  2341. },
  2342. 'PictureMode2' => {
  2343. PrintConv => {
  2344. 'Aperture Priority' => 'Diafragmaprioriteit',
  2345. 'Manual' => 'Handmatig',
  2346. 'Shutter Speed Priority' => 'Sluiterprioriteit',
  2347. },
  2348. },
  2349. 'PictureStyle' => {
  2350. PrintConv => {
  2351. 'Landscape' => 'Landschap',
  2352. 'None' => 'Geen',
  2353. 'Portrait' => 'Portret',
  2354. 'Standard' => 'Standaard',
  2355. },
  2356. },
  2357. 'PixelFormat' => 'Pixelformaat',
  2358. 'PixelUnits' => {
  2359. PrintConv => {
  2360. 'Unknown' => 'Onbekend',
  2361. },
  2362. },
  2363. 'PlanarConfiguration' => {
  2364. Description => 'Afbeelding data arrangement',
  2365. PrintConv => {
  2366. 'Chunky' => 'Chunky Formaat (Interleaved)',
  2367. 'Planar' => 'Planar Formaat',
  2368. },
  2369. },
  2370. 'Predictor' => {
  2371. PrintConv => {
  2372. 'Horizontal differencing' => 'Horizontale differencering',
  2373. 'None' => 'Geen prodictor schema in gebruik',
  2374. },
  2375. },
  2376. 'PreviewColorSpace' => {
  2377. PrintConv => {
  2378. 'Unknown' => 'Onbekend',
  2379. },
  2380. },
  2381. 'PreviewImage' => 'Voorbeeld',
  2382. 'PreviewImageValid' => {
  2383. PrintConv => {
  2384. 'No' => 'Nee',
  2385. 'Yes' => 'Ja',
  2386. },
  2387. },
  2388. 'PreviewQuality' => {
  2389. PrintConv => {
  2390. 'Normal' => 'Normaal',
  2391. },
  2392. },
  2393. 'PrimaryChromaticities' => 'Chromaticiteit van primaire kleuren',
  2394. 'PrimaryPlatform' => 'Primaire platform',
  2395. 'ProcessingSoftware' => 'Verwerkingssoftware',
  2396. 'ProductID' => 'Produkt ID',
  2397. 'ProfileCMMType' => 'Profiel CMM-type',
  2398. 'ProfileClass' => {
  2399. Description => 'Profielklasse',
  2400. PrintConv => {
  2401. 'Abstract Profile' => 'Abstractprofiel',
  2402. 'ColorSpace Conversion Profile' => 'Kleurenruimteprofiel',
  2403. 'DeviceLink Profile' => 'Apparaatverbindingsprofiel',
  2404. 'Display Device Profile' => 'Beeldschermapparaatprofiel',
  2405. 'Input Device Profile' => 'Invoerapparaatprofiel',
  2406. 'NamedColor Profile' => 'Genoemd kleurenprofiel',
  2407. 'Nikon Input Device Profile (NON-STANDARD!)' => 'Nikonprofiel ("nkpf")',
  2408. 'Output Device Profile' => 'Uitvoerapparaatprofiel',
  2409. },
  2410. },
  2411. 'ProfileConnectionSpace' => 'Profielconnectieruimte',
  2412. 'ProfileCopyright' => 'Profielcopyright',
  2413. 'ProfileCreator' => 'Profielproducent',
  2414. 'ProfileDateTime' => 'Datum 1e aanmaak profiel',
  2415. 'ProfileDescription' => 'Profielbeschrijving',
  2416. 'ProfileDescriptionML' => 'Profielbeschrijving ML',
  2417. 'ProfileFileSignature' => 'Profiel filekenmerk',
  2418. 'ProfileID' => 'Profiel-ID',
  2419. 'ProfileSequenceDesc' => 'Profielvolgorde beschrijving',
  2420. 'ProfileVersion' => 'Profielversie',
  2421. 'ProgramLine' => {
  2422. PrintConv => {
  2423. 'Normal' => 'Normaal',
  2424. },
  2425. },
  2426. 'ProgramMode' => {
  2427. PrintConv => {
  2428. 'None' => 'Geen',
  2429. 'Portrait' => 'Portret',
  2430. },
  2431. },
  2432. 'ProgramVersion' => 'Programmaversie',
  2433. 'Province-State' => 'Provincie',
  2434. 'Quality' => {
  2435. Description => 'Beeldkwaliteit',
  2436. PrintConv => {
  2437. 'Compressed RAW' => 'cRAW',
  2438. 'Compressed RAW + JPEG' => 'cRAW+JPEG',
  2439. 'Extra Fine' => 'Extra fijn',
  2440. 'Fine' => 'Fijn',
  2441. 'High' => 'Hoog',
  2442. 'Low' => 'Laag',
  2443. 'Normal' => 'Normaal',
  2444. 'RAW + JPEG' => 'RAW+JPEG',
  2445. 'Standard' => 'Standaard',
  2446. },
  2447. },
  2448. 'QualityMode' => {
  2449. PrintConv => {
  2450. 'Normal' => 'Normaal',
  2451. },
  2452. },
  2453. 'QuickShot' => {
  2454. PrintConv => {
  2455. 'Off' => 'Uit',
  2456. 'On' => 'Aan',
  2457. },
  2458. },
  2459. 'RAFVersion' => 'RAF versie',
  2460. 'RasterizedCaption' => 'Gerasterde titel',
  2461. 'Rating' => 'Waardering',
  2462. 'RatingPercent' => 'Waardering in procent',
  2463. 'RawDevAutoGradation' => {
  2464. PrintConv => {
  2465. 'Off' => 'Uit',
  2466. 'On' => 'Aan',
  2467. },
  2468. },
  2469. 'RawJpgQuality' => {
  2470. PrintConv => {
  2471. 'Normal' => 'Normaal',
  2472. },
  2473. },
  2474. 'RecordMode' => {
  2475. Description => 'Opnamemodus',
  2476. PrintConv => {
  2477. 'Aperture Priority' => 'Diafragmaprioriteit',
  2478. 'Manual' => 'Handmatig',
  2479. 'Shutter Priority' => 'Sluiterprioriteit',
  2480. },
  2481. },
  2482. 'RecordingMode' => {
  2483. PrintConv => {
  2484. 'Auto' => 'Automatisch',
  2485. 'Landscape' => 'Landschap',
  2486. 'Manual' => 'Handmatig',
  2487. 'Portrait' => 'Portret',
  2488. },
  2489. },
  2490. 'RedEyeCorrection' => {
  2491. PrintConv => {
  2492. 'Automatic' => 'Automatisch',
  2493. 'Off' => 'Uit',
  2494. },
  2495. },
  2496. 'RedEyeReduction' => {
  2497. PrintConv => {
  2498. 'Off' => 'Uit',
  2499. 'On' => 'Aan',
  2500. },
  2501. },
  2502. 'RedMatrixColumn' => 'Rode matrixkolom',
  2503. 'RedTRC' => 'Rode toon reproductie curve',
  2504. 'ReferenceBlackWhite' => 'Zwart/wit referentie punten',
  2505. 'ReferenceDate' => 'Referentiedatum',
  2506. 'ReferenceNumber' => 'Referentienummer',
  2507. 'ReferenceService' => 'Referentieservice',
  2508. 'RelatedImageFileFormat' => 'Bestandsformaat van de afbeelding',
  2509. 'RelatedImageHeight' => 'Afbeeldingshoogte',
  2510. 'RelatedImageWidth' => 'Afbeeldingsbreedte',
  2511. 'RelatedSoundFile' => 'Bijbehorend audio bestand',
  2512. 'ReleaseButtonToUseDial' => {
  2513. Description => 'Knop loslaten voor instelsch.',
  2514. PrintConv => {
  2515. 'No' => 'Nee',
  2516. 'Yes' => 'Ja',
  2517. },
  2518. },
  2519. 'ReleaseDate' => 'Datum van vrijgave',
  2520. 'ReleaseTime' => 'Tijdstip van vrijgave',
  2521. 'RemoteOnDuration' => 'Afstandsbediening',
  2522. 'RenderingIntent' => {
  2523. Description => 'Rendermethode',
  2524. PrintConv => {
  2525. 'ICC-Absolute Colorimetric' => 'Absoluut colorimetrisch',
  2526. 'Media-Relative Colorimetric' => 'Relatieve colorimetrisch',
  2527. 'Perceptual' => 'Waarnemend',
  2528. 'Saturation' => 'Verzadiging',
  2529. },
  2530. },
  2531. 'RepeatingFlashCount' => 'Stroboscopisch flitsen Aantal',
  2532. 'RepeatingFlashOutput' => 'Stroboscopisch flitsen Sterkte',
  2533. 'RepeatingFlashRate' => 'Stroboscopisch flitsen Freq.',
  2534. 'ResampleParamsQuality' => {
  2535. PrintConv => {
  2536. 'High' => 'Hoog',
  2537. 'Low' => 'Laag',
  2538. },
  2539. },
  2540. 'Resaved' => {
  2541. PrintConv => {
  2542. 'No' => 'Nee',
  2543. 'Yes' => 'Ja',
  2544. },
  2545. },
  2546. 'ResolutionUnit' => {
  2547. Description => 'Eenheid van de X und Y resolutie',
  2548. PrintConv => {
  2549. 'None' => 'Geen',
  2550. 'cm' => 'centimeter',
  2551. },
  2552. },
  2553. 'RetouchHistory' => {
  2554. PrintConv => {
  2555. 'None' => 'Geen',
  2556. },
  2557. },
  2558. 'ReverseIndicators' => 'Aanduidingen omkeren',
  2559. 'Rotation' => {
  2560. PrintConv => {
  2561. 'Horizontal' => '0° (boven/links)',
  2562. 'Horizontal (Normal)' => '0° (boven/links)',
  2563. 'Horizontal (normal)' => '0° (boven/links)',
  2564. 'Rotate 180' => '180° (onder/rechts)',
  2565. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  2566. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  2567. 'Rotated 180' => '180° (onder/rechts)',
  2568. 'Rotated 270 CW' => 'Draai 270° met de klok mee',
  2569. 'Rotated 90 CW' => '90° tegen de klok in (rechts/boven)',
  2570. },
  2571. },
  2572. 'RowsPerStrip' => 'Aantal lijnen in de afbeelding',
  2573. 'SPIFFVersion' => 'SPIFF versie',
  2574. 'SRActive' => {
  2575. PrintConv => {
  2576. 'No' => 'Nee',
  2577. 'Yes' => 'Ja',
  2578. },
  2579. },
  2580. 'SVGVersion' => 'SVG versie',
  2581. 'SampleFormat' => {
  2582. Description => 'Sample Formaat',
  2583. PrintConv => {
  2584. 'Complex int' => 'Complexe integer',
  2585. 'Float' => 'Drijvende komma waarde',
  2586. 'Signed' => 'Integer met voorteken',
  2587. 'Undefined' => 'Niet gedefinierd',
  2588. 'Unsigned' => 'Integer zonder voorteken',
  2589. },
  2590. },
  2591. 'SamplesPerPixel' => 'Aantal van de componenten',
  2592. 'Saturation' => {
  2593. Description => 'Kleurverzadiging',
  2594. PrintConv => {
  2595. 'High' => 'Hoge kleurvezadiging',
  2596. 'Low' => 'Lage kleurverzadiging',
  2597. 'Normal' => 'Normaal',
  2598. },
  2599. },
  2600. 'ScanImageEnhancer' => {
  2601. PrintConv => {
  2602. 'Off' => 'Uit',
  2603. 'On' => 'Aan',
  2604. },
  2605. },
  2606. 'SceneCaptureType' => {
  2607. Description => 'Scene opname type',
  2608. PrintConv => {
  2609. 'Landscape' => 'Landschap',
  2610. 'Night' => 'Nachtscene',
  2611. 'Portrait' => 'Portret',
  2612. 'Standard' => 'Standaard',
  2613. },
  2614. },
  2615. 'SceneMode' => {
  2616. Description => 'Scènekeuze',
  2617. PrintConv => {
  2618. '3D Sweep Panorama' => '3D',
  2619. 'Anti Motion Blur' => 'Anti-bewegingswaas',
  2620. 'Aperture Priority' => 'Diafragmaprioriteit',
  2621. 'Auto' => 'Automatisch',
  2622. 'Cont. Priority AE' => 'Continuvoork. AE',
  2623. 'Handheld Night Shot' => 'Nachtopname uit hand',
  2624. 'Landscape' => 'Landschap',
  2625. 'Manual' => 'Handmatig',
  2626. 'Night Portrait' => 'Nachtportret',
  2627. 'Night Scene' => 'Nacht',
  2628. 'Night View/Portrait' => 'Nacht/portret',
  2629. 'Normal' => 'Normaal',
  2630. 'Off' => 'Uit',
  2631. 'Portrait' => 'Portret',
  2632. 'Shutter Priority' => 'Sluiterprioriteit',
  2633. 'Sports' => 'Sportactie',
  2634. 'Standard' => 'Standaard',
  2635. 'Sunset' => 'Zonsondergang',
  2636. 'Sweep Panorama' => 'Panorama d. beweg.',
  2637. },
  2638. },
  2639. 'SceneModeUsed' => {
  2640. PrintConv => {
  2641. 'Aperture Priority' => 'Diafragmaprioriteit',
  2642. 'Landscape' => 'Landschap',
  2643. 'Manual' => 'Handmatig',
  2644. 'Portrait' => 'Portret',
  2645. 'Shutter Priority' => 'Sluiterprioriteit',
  2646. },
  2647. },
  2648. 'SceneSelect' => {
  2649. PrintConv => {
  2650. 'Night' => 'Nachtscene',
  2651. 'Off' => 'Uit',
  2652. },
  2653. },
  2654. 'SceneType' => {
  2655. Description => 'Scene type',
  2656. PrintConv => {
  2657. 'Directly photographed' => 'Direkt opgenomen afbeelding',
  2658. },
  2659. },
  2660. 'SecurityClassification' => {
  2661. Description => 'Veiligheid classificering',
  2662. PrintConv => {
  2663. 'Confidential' => 'Vertrouwelijk',
  2664. 'Restricted' => 'Begrensd',
  2665. 'Secret' => 'Geheim',
  2666. 'Top Secret' => 'Streng geheim',
  2667. 'Unclassified' => 'Niet geclassificeerd',
  2668. },
  2669. },
  2670. 'SelfTimer' => {
  2671. PrintConv => {
  2672. 'Off' => 'Uit',
  2673. 'On' => 'Aan',
  2674. },
  2675. },
  2676. 'SelfTimerMode' => 'Zelfontspanner mode',
  2677. 'SelfTimerTime' => 'Vertraging zelfontspanner',
  2678. 'SensingMethod' => {
  2679. Description => 'Meet methode',
  2680. PrintConv => {
  2681. 'Color sequential area' => 'Color sequential area sensor',
  2682. 'Color sequential linear' => 'Kleur sequentiële lineaire sensor',
  2683. 'Monochrome area' => 'Monochrome sensor',
  2684. 'Monochrome linear' => 'Monochrome lineaire sensor',
  2685. 'Not defined' => 'Niet gedefineerd',
  2686. 'One-chip color area' => 'Één chip kleur sensor',
  2687. 'Three-chip color area' => 'Drie chip kleur sensor',
  2688. 'Trilinear' => 'Trilineaire sensor',
  2689. 'Two-chip color area' => 'Twee chip kleur sensor',
  2690. },
  2691. },
  2692. 'SequentialShot' => {
  2693. PrintConv => {
  2694. 'None' => 'Geen',
  2695. 'Standard' => 'Standaard',
  2696. },
  2697. },
  2698. 'SerialNumber' => 'Camera-ID',
  2699. 'ServiceIdentifier' => 'Service ID',
  2700. 'SetButtonCrossKeysFunc' => {
  2701. PrintConv => {
  2702. 'Normal' => 'Normaal',
  2703. },
  2704. },
  2705. 'ShadingCompensation' => {
  2706. Description => 'Schaduwcompensatie',
  2707. PrintConv => {
  2708. 'Off' => 'Uit',
  2709. 'On' => 'Aan',
  2710. },
  2711. },
  2712. 'ShadingCompensation2' => {
  2713. PrintConv => {
  2714. 'Off' => 'Uit',
  2715. 'On' => 'Aan',
  2716. },
  2717. },
  2718. 'ShakeReduction' => {
  2719. PrintConv => {
  2720. 'Off' => 'Uit',
  2721. 'On' => 'Aan',
  2722. },
  2723. },
  2724. 'Sharpness' => {
  2725. Description => 'Scherpte',
  2726. PrintConv => {
  2727. 'Hard' => '+',
  2728. 'Normal' => 'Normaal',
  2729. 'Soft' => 'Zacht',
  2730. },
  2731. },
  2732. 'SharpnessFrequency' => {
  2733. PrintConv => {
  2734. 'High' => 'Hoog',
  2735. 'Low' => 'Laag',
  2736. 'Standard' => 'Standaard',
  2737. },
  2738. },
  2739. 'ShootingInfoDisplay' => {
  2740. Description => 'Weergave opname-info',
  2741. PrintConv => {
  2742. 'Auto' => 'Automatisch',
  2743. 'Manual (dark on light)' => 'Handmatig - Donker op licht',
  2744. 'Manual (light on dark)' => 'Handmatig - Licht op donker',
  2745. },
  2746. },
  2747. 'ShootingMode' => {
  2748. Description => 'Opnamestand',
  2749. PrintConv => {
  2750. 'Aperture Priority' => 'Diafragmaprioriteit',
  2751. 'Manual' => 'Handmatig',
  2752. 'Normal' => 'Normaal',
  2753. 'Portrait' => 'Portret',
  2754. 'Shutter Priority' => 'Sluiterprioriteit',
  2755. },
  2756. },
  2757. 'ShootingModeSetting' => {
  2758. Description => 'Opnamestand',
  2759. PrintConv => {
  2760. 'Continuous' => 'Continu',
  2761. 'Delayed Remote' => 'Vertraagd op afstand',
  2762. 'Quick-response Remote' => 'Direct op afstand',
  2763. 'Self-timer' => 'Zelfontspanner',
  2764. 'Single Frame' => 'Enkel beeld',
  2765. },
  2766. },
  2767. 'ShortDocumentID' => 'Korte foto ID',
  2768. 'ShutterMode' => {
  2769. PrintConv => {
  2770. 'Aperture Priority' => 'Diafragmaprioriteit',
  2771. 'Auto' => 'Automatisch',
  2772. },
  2773. },
  2774. 'ShutterReleaseButtonAE-L' => {
  2775. Description => 'AE-vergr. ontspanknop',
  2776. PrintConv => {
  2777. 'Off' => 'Uit',
  2778. 'On' => 'Aan',
  2779. },
  2780. },
  2781. 'ShutterReleaseNoCFCard' => {
  2782. PrintConv => {
  2783. 'No' => 'Nee',
  2784. 'Yes' => 'Ja',
  2785. },
  2786. },
  2787. 'ShutterSpeed' => 'Belichtingstijd',
  2788. 'ShutterSpeedValue' => 'Belichtingstijd',
  2789. 'SimilarityIndex' => 'Fotogelijkheidsindex',
  2790. 'SlideShow' => {
  2791. PrintConv => {
  2792. 'No' => 'Nee',
  2793. 'Yes' => 'Ja',
  2794. },
  2795. },
  2796. 'SlowShutter' => {
  2797. PrintConv => {
  2798. 'None' => 'Geen',
  2799. 'Off' => 'Uit',
  2800. 'On' => 'Aan',
  2801. },
  2802. },
  2803. 'SlowSync' => {
  2804. PrintConv => {
  2805. 'Off' => 'Uit',
  2806. },
  2807. },
  2808. 'Software' => 'Gebruikte software',
  2809. 'Source' => 'Bron',
  2810. 'SpatialFrequencyResponse' => 'Spatial frequency response',
  2811. 'SpecialEffectsOpticalFilter' => {
  2812. PrintConv => {
  2813. 'None' => 'Geen',
  2814. },
  2815. },
  2816. 'SpecialInstructions' => 'Instructies',
  2817. 'SpectralSensitivity' => 'Spectrale gevoeligheid',
  2818. 'State' => 'Staat',
  2819. 'StripByteCounts' => 'Aantal bytes per gecomprimeerd afbeelding deel',
  2820. 'StripOffsets' => 'Positie van afbeelding data',
  2821. 'Sub-location' => 'Locatie',
  2822. 'SubSecCreateDate' => 'Datum van de originele data generatie',
  2823. 'SubSecDateTimeOriginal' => 'Datum van de originele data generatie',
  2824. 'SubSecModifyDate' => 'Datum bestand wijziging',
  2825. 'SubSecTime' => 'DateTime 1/100 seconden',
  2826. 'SubSecTimeDigitized' => 'DateTimeDigitized 1/100 seconden',
  2827. 'SubSecTimeOriginal' => 'DateTimeOriginal 1/100 seconden',
  2828. 'SubfileType' => 'Nieuw subbestand type',
  2829. 'Subject' => 'Onderwerp',
  2830. 'SubjectArea' => 'Positie hoofdobject',
  2831. 'SubjectDistance' => 'Object afstand',
  2832. 'SubjectDistanceRange' => {
  2833. Description => 'Objectief afstandsbereik',
  2834. PrintConv => {
  2835. 'Close' => 'Dichtbij',
  2836. 'Distant' => 'Verweg',
  2837. 'Unknown' => 'Onbekend',
  2838. },
  2839. },
  2840. 'SubjectLocation' => 'Positie hoofdobject',
  2841. 'SubjectProgram' => {
  2842. PrintConv => {
  2843. 'None' => 'Geen',
  2844. 'Portrait' => 'Portret',
  2845. },
  2846. },
  2847. 'SubjectReference' => 'Onderwerp code',
  2848. 'Subsystem' => {
  2849. PrintConv => {
  2850. 'Unknown' => 'Onbekend',
  2851. },
  2852. },
  2853. 'SuperMacro' => {
  2854. PrintConv => {
  2855. 'Off' => 'Uit',
  2856. },
  2857. },
  2858. 'SuperimposedDisplay' => {
  2859. PrintConv => {
  2860. 'Off' => 'Uit',
  2861. 'On' => 'Aan',
  2862. },
  2863. },
  2864. 'SupplementalCategories' => 'Aanvullende categorie',
  2865. 'T4Options' => 'Opvul bit toegevoegd',
  2866. 'T6Options' => 'T6 Opties',
  2867. 'Tagged' => {
  2868. PrintConv => {
  2869. 'No' => 'Nee',
  2870. 'Yes' => 'Ja',
  2871. },
  2872. },
  2873. 'TargetPrinter' => 'Doel Printer',
  2874. 'Technology' => {
  2875. Description => 'Technologie',
  2876. PrintConv => {
  2877. 'Active Matrix Display' => 'Actieve matrixdisplay',
  2878. 'Cathode Ray Tube Display' => 'CRT-beeldscherm',
  2879. 'Digital Camera' => 'Digitale camera',
  2880. 'Dye Sublimation Printer' => 'Dye sublimation printer',
  2881. 'Electrophotographic Printer' => 'Laserprinter',
  2882. 'Electrostatic Printer' => 'Electrostatische printer',
  2883. 'Film Scanner' => 'Filmscanner',
  2884. 'Film Writer' => 'Filmprinter',
  2885. 'Flexography' => 'Flexografie',
  2886. 'Gravure' => 'Fotogravure - koperdiepdruk',
  2887. 'Ink Jet Printer' => 'Inkjet printer',
  2888. 'Offset Lithography' => 'Offset Lithografie',
  2889. 'Passive Matrix Display' => 'Passieve matrixdisplay',
  2890. 'Photo CD' => 'Photo-CD',
  2891. 'Photo Image Setter' => 'Fotofilmbelichter',
  2892. 'Photographic Paper Printer' => 'Fotopapier printer',
  2893. 'Projection Television' => 'Projectietelevisie',
  2894. 'Reflective Scanner' => 'Reflectieve Scanner',
  2895. 'Thermal Wax Printer' => 'Thermische was printer',
  2896. 'Video Camera' => 'Videocamera',
  2897. 'Video Monitor' => 'Videomonitor',
  2898. },
  2899. },
  2900. 'Teleconverter' => {
  2901. PrintConv => {
  2902. 'None' => 'Geen',
  2903. },
  2904. },
  2905. 'TextStamp' => {
  2906. PrintConv => {
  2907. 'Off' => 'Uit',
  2908. 'On' => 'Aan',
  2909. },
  2910. },
  2911. 'ThumbnailImage' => 'Miniatuur',
  2912. 'ThumbnailImageSize' => 'Thumbnail formaat',
  2913. 'TimeCreated' => 'Opnametijdstip',
  2914. 'TimeScaleParamsQuality' => {
  2915. PrintConv => {
  2916. 'High' => 'Hoog',
  2917. 'Low' => 'Laag',
  2918. },
  2919. },
  2920. 'TimeSent' => 'Tijdstip van zenden',
  2921. 'TimerFunctionButton' => {
  2922. Description => 'Fn-knop',
  2923. PrintConv => {
  2924. 'ISO' => 'ISO-gevoeligheid',
  2925. 'Image Quality/Size' => 'Bldkwaliteit/-formaat',
  2926. 'Self-timer' => 'Zelfontspanner',
  2927. 'Shooting Mode' => 'Opnamestand',
  2928. 'White Balance' => 'Witbalans',
  2929. },
  2930. },
  2931. 'Title' => 'Titel',
  2932. 'ToneCurve' => {
  2933. PrintConv => {
  2934. 'Manual' => 'Handmatig',
  2935. 'Standard' => 'Standaard',
  2936. },
  2937. },
  2938. 'ToneCurveActive' => {
  2939. PrintConv => {
  2940. 'No' => 'Nee',
  2941. 'Yes' => 'Ja',
  2942. },
  2943. },
  2944. 'ToningEffect' => {
  2945. PrintConv => {
  2946. 'None' => 'Geen',
  2947. },
  2948. },
  2949. 'ToningEffectMonochrome' => {
  2950. PrintConv => {
  2951. 'None' => 'Geen',
  2952. },
  2953. },
  2954. 'TransferFunction' => 'Transformatie functie',
  2955. 'Transformation' => {
  2956. PrintConv => {
  2957. 'Horizontal (normal)' => '0° (boven/links)',
  2958. 'Mirror horizontal' => 'Horizontaal gespiegeld',
  2959. 'Mirror horizontal and rotate 270 CW' => 'Spiegel horizontaal en draai 270° met de klok mee',
  2960. 'Mirror horizontal and rotate 90 CW' => 'Spiegel horizontaal en draai 90° met de klok mee',
  2961. 'Mirror vertical' => 'Vertikaal gespiegeld',
  2962. 'Rotate 180' => '180° (onder/rechts)',
  2963. 'Rotate 270 CW' => 'Draai 270° met de klok mee',
  2964. 'Rotate 90 CW' => '90° tegen de klok in (rechts/boven)',
  2965. },
  2966. },
  2967. 'TransmissionReference' => 'Transmissiereferentie',
  2968. 'Trapped' => {
  2969. PrintConv => {
  2970. 'Unknown' => 'Onbekend',
  2971. },
  2972. },
  2973. 'Uncompressed' => {
  2974. Description => 'Niet gecomprimeerd',
  2975. PrintConv => {
  2976. 'No' => 'Nee',
  2977. 'Yes' => 'Ja',
  2978. },
  2979. },
  2980. 'UniqueDocumentID' => 'Uniek foto ID',
  2981. 'UniqueObjectName' => 'Unieke Naam van het Object',
  2982. 'Unknown' => 'Onbekend',
  2983. 'UnsharpMask' => {
  2984. PrintConv => {
  2985. 'Off' => 'Uit',
  2986. 'On' => 'Aan',
  2987. },
  2988. },
  2989. 'Urgency' => {
  2990. Description => 'Urgentie',
  2991. PrintConv => {
  2992. '0 (reserved)' => '0 (Gereserveerd voor toekomstig gebruik)',
  2993. '1 (most urgent)' => '1 (zeer dringend)',
  2994. '5 (normal urgency)' => '5 (dringend)',
  2995. '8 (least urgent)' => '8 (minst dringend)',
  2996. '9 (user-defined priority)' => '9 (Gereserveerd voor toekomstig gebruik)',
  2997. },
  2998. },
  2999. 'UserComment' => 'Gebruiker kommentaar',
  3000. 'UserDef1PictureStyle' => {
  3001. PrintConv => {
  3002. 'Landscape' => 'Landschap',
  3003. 'Portrait' => 'Portret',
  3004. 'Standard' => 'Standaard',
  3005. },
  3006. },
  3007. 'UserDef2PictureStyle' => {
  3008. PrintConv => {
  3009. 'Landscape' => 'Landschap',
  3010. 'Portrait' => 'Portret',
  3011. 'Standard' => 'Standaard',
  3012. },
  3013. },
  3014. 'UserDef3PictureStyle' => {
  3015. PrintConv => {
  3016. 'Landscape' => 'Landschap',
  3017. 'Portrait' => 'Portret',
  3018. 'Standard' => 'Standaard',
  3019. },
  3020. },
  3021. 'VRDVersion' => 'VRD versie',
  3022. 'VR_0x66' => {
  3023. PrintConv => {
  3024. 'Off' => 'Uit',
  3025. },
  3026. },
  3027. 'Version' => 'Versie',
  3028. 'VibrationReduction' => {
  3029. PrintConv => {
  3030. 'Off' => 'Uit',
  3031. 'On' => 'Aan',
  3032. },
  3033. },
  3034. 'ViewfinderWarning' => {
  3035. Description => 'Zoekerwaarschuwing',
  3036. PrintConv => {
  3037. 'Off' => 'Uit',
  3038. 'On' => 'Aan',
  3039. },
  3040. },
  3041. 'VignetteControl' => {
  3042. PrintConv => {
  3043. 'High' => 'Hoog',
  3044. 'Normal' => 'Normaal',
  3045. 'Off' => 'Uit',
  3046. 'On' => 'Aan',
  3047. },
  3048. },
  3049. 'VoiceMemo' => {
  3050. PrintConv => {
  3051. 'Off' => 'Uit',
  3052. 'On' => 'Aan',
  3053. },
  3054. },
  3055. 'WBAdjLighting' => {
  3056. PrintConv => {
  3057. 'Daylight (direct sunlight)' => 'Daglicht (0)',
  3058. 'Daylight (shade)' => 'Daglicht (1)',
  3059. 'Daylight (cloudy)' => 'Daglicht (2)',
  3060. 'Flash' => 'Flits',
  3061. 'None' => 'Geen',
  3062. },
  3063. },
  3064. 'WBBracketMode' => {
  3065. PrintConv => {
  3066. 'Off' => 'Uit',
  3067. },
  3068. },
  3069. 'WBFineTuneActive' => {
  3070. PrintConv => {
  3071. 'No' => 'Nee',
  3072. 'Yes' => 'Ja',
  3073. },
  3074. },
  3075. 'WBMode' => {
  3076. PrintConv => {
  3077. 'Auto' => 'Automatisch',
  3078. },
  3079. },
  3080. 'WCSProfiles' => 'Windows kleursysteemprofiel',
  3081. 'WhiteBalance' => {
  3082. Description => 'Witbalans',
  3083. PrintConv => {
  3084. 'Auto' => 'Automatisch',
  3085. 'Black & White' => 'Monochroom',
  3086. 'Cloudy' => 'Bewolkt',
  3087. 'Color Temperature/Color Filter' => 'Kleurtemperatuur / Kleurfilter',
  3088. 'Cool White Fluorescent' => 'Koelwit TL-licht',
  3089. 'Custom' => 'Eigen instel.',
  3090. 'Custom 1' => 'VOORKEUR 1',
  3091. 'Custom 2' => 'VOORKEUR 2',
  3092. 'Custom 3' => 'VOORKEUR 3',
  3093. 'Custom 4' => 'VOORKEUR 4',
  3094. 'Day White Fluorescent' => 'Daglicht wit TL-licht',
  3095. 'Daylight' => 'Daglicht',
  3096. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  3097. 'Flash' => 'Flits',
  3098. 'Fluorescent' => 'Fluoresceren',
  3099. 'Manual' => 'Handmatig',
  3100. 'Shade' => 'Schaduw',
  3101. 'Tungsten' => 'Kunstlicht (gloeilamp)',
  3102. 'Unknown' => 'Onbekend',
  3103. 'Warm White Fluorescent' => 'Warm wit TL-licht',
  3104. 'White Fluorescent' => 'Wit TL-licht',
  3105. },
  3106. },
  3107. 'WhiteBalance2' => {
  3108. PrintConv => {
  3109. 'Auto' => 'Automatisch',
  3110. },
  3111. },
  3112. 'WhiteBalanceAdj' => {
  3113. PrintConv => {
  3114. 'Auto' => 'Automatisch',
  3115. 'Cloudy' => 'Bewolkt',
  3116. 'Daylight' => 'Daglicht',
  3117. 'Flash' => 'Flits',
  3118. 'Fluorescent' => 'Fluoresceren',
  3119. 'Off' => 'Uit',
  3120. 'On' => 'Aan',
  3121. 'Shade' => 'Schaduw',
  3122. 'Tungsten' => 'Kunstlicht (gloeilamp)',
  3123. },
  3124. },
  3125. 'WhiteBalanceMode' => {
  3126. PrintConv => {
  3127. 'Unknown' => 'Onbekend',
  3128. },
  3129. },
  3130. 'WhiteBalanceSet' => {
  3131. PrintConv => {
  3132. 'Auto' => 'Automatisch',
  3133. 'Cloudy' => 'Bewolkt',
  3134. 'Daylight' => 'Daglicht',
  3135. 'Daylight Fluorescent' => 'Daglicht TL-licht',
  3136. 'Flash' => 'Flits',
  3137. 'Manual' => 'Handmatig',
  3138. 'Shade' => 'Schaduw',
  3139. 'Tungsten' => 'Kunstlicht (gloeilamp)',
  3140. 'White Fluorescent' => 'Warm wit TL-licht',
  3141. },
  3142. },
  3143. 'WhitePoint' => 'Wit punt chromaticiteit',
  3144. 'WideRange' => {
  3145. PrintConv => {
  3146. 'Off' => 'Uit',
  3147. 'On' => 'Aan',
  3148. },
  3149. },
  3150. 'WidthResolution' => 'Beeldresolutie horizontaal',
  3151. 'Writer-Editor' => 'Titel/Beschrijving auteur',
  3152. 'XMP' => 'XMP metadata',
  3153. 'XPAuthor' => 'Auteur',
  3154. 'XPComment' => 'Kommentaar',
  3155. 'XPKeywords' => 'Trefwoorden',
  3156. 'XPSubject' => 'Onderwerp',
  3157. 'XPTitle' => 'Titel',
  3158. 'XPosition' => 'X positie',
  3159. 'XResolution' => 'Horizontale afbeelding resolutie',
  3160. 'YCbCrCoefficients' => 'YCbCr coëfficiënt',
  3161. 'YCbCrPositioning' => {
  3162. Description => 'Y en C positie',
  3163. PrintConv => {
  3164. 'Centered' => 'Gecentreerd',
  3165. 'Co-sited' => 'Naast liggend',
  3166. },
  3167. },
  3168. 'YCbCrSubSampling' => 'Subsampling ratio van Y tot C',
  3169. 'YPosition' => 'Y positie',
  3170. 'YResolution' => 'Vertikale afbeelding resolutie',
  3171. 'ZoneMatching' => {
  3172. Description => 'Zoneaanpassing',
  3173. PrintConv => {
  3174. 'High Key' => 'Hi',
  3175. 'ISO Setting Used' => 'Uit',
  3176. 'Low Key' => 'Lo',
  3177. },
  3178. },
  3179. 'ZoneMatchingOn' => {
  3180. PrintConv => {
  3181. 'Off' => 'Uit',
  3182. 'On' => 'Aan',
  3183. },
  3184. },
  3185. );
  3186. 1; # end
  3187. __END__
  3188. =head1 NAME
  3189. Image::ExifTool::Lang::nl.pm - ExifTool Dutch language translations
  3190. =head1 DESCRIPTION
  3191. This file is used by Image::ExifTool to generate localized tag descriptions
  3192. and values.
  3193. =head1 AUTHOR
  3194. Copyright 2003-2016, Phil Harvey (phil at owl.phy.queensu.ca)
  3195. This library is free software; you can redistribute it and/or modify it
  3196. under the same terms as Perl itself.
  3197. =head1 ACKNOWLEDGEMENTS
  3198. Thanks to Jens Duttke, Peter Moonen, Herman Beld and Peter van der Laan for
  3199. providing this translation.
  3200. =head1 SEE ALSO
  3201. L<Image::ExifTool(3pm)|Image::ExifTool>,
  3202. L<Image::ExifTool::TagInfoXML(3pm)|Image::ExifTool::TagInfoXML>
  3203. =cut