diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | i18n.c | 12 | ||||
-rw-r--r-- | image.c | 4 | ||||
-rw-r--r-- | image.h | 4 |
4 files changed, 14 insertions, 10 deletions
@@ -2,6 +2,10 @@ VDR Plugin 'image' Revision History ----------------------------------- 2006-04-23 +- Updated finnish translations. (Thanks to Rolf Ahrenberg) +- Warn if wrong APIVERSION used + +2006-04-23 - Release Version 0.2.6 2006-04-18 @@ -1,7 +1,7 @@ /* * Image plugin to VDR (C++) * - * (C) 2004-2006 Andreas Brachold <anbr at users.berlios.de> + * (C) 2004 - 2006 Andreas Brachold <anbr at users.berlios.de> * based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net> * * This code is free software; you can redistribute it and/or @@ -809,7 +809,7 @@ const tI18nPhrase Phrases[] = { "Mostre a informação do exif da imagem", // Portuguese "Montrez l'information d'exif de l'image", // French "", // Norwegian - "", // Finnish + "Näytä kuvien Exif-tiedot", // Finnish "", // Polish "Mostrar información exif de la imagen", // Spanish "", // Greek @@ -830,7 +830,7 @@ const tI18nPhrase Phrases[] = { "Não podia analisar gramaticalmente a nota do fabricante do exif!", // Portuguese "N'a pas pu analyser la note de fabricant d'exif !", // French "", // Norwegian - "", // Finnish + "Exif-tiedon analysointi epäonnistui!", // Finnish "", // Polish "¡No se pudo analizar la información exif!", // Spanish "", // Greek @@ -851,7 +851,7 @@ const tI18nPhrase Phrases[] = { "Não podia carregar dados do exif da imagem!", // Portuguese "N'a pas pu charger des données d'exif de l'image !", // French "", // Norwegian - "", // Finnish + "Exif-tiedon lukeminen epäonnistui!", // Finnish "", // Polish "¡No se pudo cargar los datos exif de la imagen!", // Spanish "", // Greek @@ -872,7 +872,7 @@ const tI18nPhrase Phrases[] = { "", // Portuguese "", // French "", // Norwegian - "", // Finnish + "Markkerit", // Finnish "", // Polish "Marca", // Spanish "", // Greek @@ -893,7 +893,7 @@ const tI18nPhrase Phrases[] = { "", // Portuguese "", // French "", // Norwegian - "", // Finnish + "Tagit", // Finnish "", // Polish "Etiquetas", // Spanish "", // Greek @@ -3,9 +3,9 @@ * * (C) 2003 Kai Tobias Burwieck <kai at burwieck.net> * (C) 2004 "Interpohl" <interpohl at vdr-portal.de> - * (C) 2004 A. Brachold <anbr at users.berlios.de> * (C) 2004 O. Kreuzinger <Onno at Kreuzinger.biz> * (C) 2004 A. Holzhammer for the massive script updates + * (C) 2004 - 2006 A. Brachold <anbr at users.berlios.de> * * based on mp3/mplayer plguin by Stefan Hülswitt <huels at iname.com> * @@ -37,7 +37,7 @@ #include "commands.h" #include "liboutput/encode.h" -static const char *VERSION = "0.2.6"; +static const char *VERSION = "0.2.7"; static const char *DESCRIPTION = "A Image Viewer plugin"; static const char *MAINMENUENTRY = "Image"; @@ -27,8 +27,8 @@ #include <vdr/skins.h> #include <string.h> -#if VDRVERSNUM < 10329 - #error "For compiled are at the least VDR 1.3.29 required" +#if APIVERSNUM < 10347 + #error "For compiled are at the least VDR Plugin-API 1.3.47 required" #endif |