diff options
author | Andreas Regel <andreas.regel@powarman.de> | 2004-07-31 23:55:00 +0200 |
---|---|---|
committer | Andreas Regel <andreas.regel@powarman.de> | 2004-07-31 23:55:00 +0200 |
commit | c024446839241af2fa7d618ce49cc8c1e5693f7f (patch) | |
tree | 6fe9beb2336294e030a739c4039911fb3e51d477 /i18n.c | |
parent | 1df133b2a0565a35c3b07e043bd04b449869a0cb (diff) | |
download | vdr-plugin-osdpip-c024446839241af2fa7d618ce49cc8c1e5693f7f.tar.gz vdr-plugin-osdpip-c024446839241af2fa7d618ce49cc8c1e5693f7f.tar.bz2 |
Release version 0.0.6v0.0.6
- added channel swapping. It is now possible to swap the currently viewed
channel with the pip channel by pressing the red key. (thanks to Sascha
Volkenandt)
- added support for other aspect ratios than 4:3. Image is now correctly
scaled and black border is added when necessary.
- added automatic frame dropping that always takes the last frame from
the ringbuffer.
- added -D_GNU_SOURCE to DEFINES in Makefile
- fixed a memory leak: missing deletion of frame ringbuffer
- fixed a memory leak: missing frame deletion in case of a full ringbuffer
- small speedup through just putting relevant frames to ringbuffer
- updated finnish translations (thanks to Rolf Ahrenberg)
Diffstat (limited to 'i18n.c')
-rw-r--r-- | i18n.c | 96 |
1 files changed, 96 insertions, 0 deletions
@@ -583,6 +583,102 @@ const tI18nPhrase Phrases[] = { # endif #endif }, + { + "automatic", // English + "automatisch", // Deutsch + "", // Slovenski + "", // Italiano + "", // Nederlands + "", // Português + "", // Français + "", // Norsk + "automaattisesti", // Suomi + "", // Polski + "", // Español + "", // Ellinika + "", // Svenska + "", // Romaneste + "", // Magyar + "", // Catala +#if VDRVERSNUM > 10302 + "", // Russian +# if VDRVERSNUM > 10307 + "", // Croatian +# endif +#endif + }, + { + "none", // English + "keine", // Deutsch + "", // Slovenski + "", // Italiano + "", // Nederlands + "", // Português + "", // Français + "", // Norsk + "ei", // Suomi + "", // Polski + "", // Español + "", // Ellinika + "", // Svenska + "", // Romaneste + "", // Magyar + "", // Catala +#if VDRVERSNUM > 10302 + "", // Russian +# if VDRVERSNUM > 10307 + "", // Croatian +# endif +#endif + }, + { + "1 frame", // English + "1 Frame", // Deutsch + "", // Slovenski + "", // Italiano + "", // Nederlands + "", // Português + "", // Français + "", // Norsk + "1 kehys", // Suomi + "", // Polski + "", // Español + "", // Ellinika + "", // Svenska + "", // Romaneste + "", // Magyar + "", // Catala +#if VDRVERSNUM > 10302 + "", // Russian +# if VDRVERSNUM > 10307 + "", // Croatian +# endif +#endif + }, + { + "2 frames", // English + "2 Frames", // Deutsch + "", // Slovenski + "", // Italiano + "", // Nederlands + "", // Português + "", // Français + "", // Norsk + "2 kehystä", // Suomi + "", // Polski + "", // Español + "", // Ellinika + "", // Svenska + "", // Romaneste + "", // Magyar + "", // Catala +#if VDRVERSNUM > 10302 + "", // Russian +# if VDRVERSNUM > 10307 + "", // Croatian +# endif +#endif + }, { NULL } }; |