diff options
Diffstat (limited to 'PLUGINS/src/skincurses')
-rw-r--r-- | PLUGINS/src/skincurses/HISTORY | 4 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/Makefile | 8 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/po/lt_LT.po | 28 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/skincurses.c | 4 |
4 files changed, 40 insertions, 4 deletions
diff --git a/PLUGINS/src/skincurses/HISTORY b/PLUGINS/src/skincurses/HISTORY index ca820f9..9e3377f 100644 --- a/PLUGINS/src/skincurses/HISTORY +++ b/PLUGINS/src/skincurses/HISTORY @@ -84,3 +84,7 @@ VDR Plugin 'skincurses' Revision History - Displaying "genre" in event descriptions. - Displaying "parental rating" in event descriptions. + +2010-02-28: Version 0.1.9 + +- Added Lithuanian language translations (thanks to Valdemaras Pipiras). diff --git a/PLUGINS/src/skincurses/Makefile b/PLUGINS/src/skincurses/Makefile index cade795..080c3e6 100644 --- a/PLUGINS/src/skincurses/Makefile +++ b/PLUGINS/src/skincurses/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 2.1 2009/10/18 14:03:30 kls Exp $ +# $Id: Makefile 2.2 2010/02/06 14:50:03 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -18,7 +18,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses +CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: @@ -26,6 +26,10 @@ VDRDIR = ../../.. LIBDIR = ../../lib TMPDIR = /tmp +### Make sure that necessary options are included: + +include $(VDRDIR)/Make.global + ### Allow user defined options to overwrite defaults: -include $(VDRDIR)/Make.config diff --git a/PLUGINS/src/skincurses/po/lt_LT.po b/PLUGINS/src/skincurses/po/lt_LT.po new file mode 100644 index 0000000..3b34ee7 --- /dev/null +++ b/PLUGINS/src/skincurses/po/lt_LT.po @@ -0,0 +1,28 @@ +# VDR plugin language source file. +# Copyright (C) 2008 Klaus Schmidinger <kls@tvdr.de> +# This file is distributed under the same license as the VDR package. +# Valdemaras Pipiras <varas@ambernet.lt>, 2010 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.12\n" +"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" +"POT-Creation-Date: 2009-10-13 11:52+0200\n" +"PO-Revision-Date: 2010-02-22 18:18+0200\n" +"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n" +"Language-Team: Lietuviai\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "A text only skin" +msgstr "Tekstinis apvalkalas" + +msgid "Key$Mute" +msgstr "Išjungti garsą" + +msgid "Volume " +msgstr "Garsas " + +msgid "Text mode" +msgstr "Tekstinis ręžimas" diff --git a/PLUGINS/src/skincurses/skincurses.c b/PLUGINS/src/skincurses/skincurses.c index d8134f6..4abb863 100644 --- a/PLUGINS/src/skincurses/skincurses.c +++ b/PLUGINS/src/skincurses/skincurses.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: skincurses.c 2.3 2010/01/03 14:59:16 kls Exp $ + * $Id: skincurses.c 2.4 2010/02/28 12:50:13 kls Exp $ */ #include <ncurses.h> @@ -11,7 +11,7 @@ #include <vdr/plugin.h> #include <vdr/skins.h> -static const char *VERSION = "0.1.8"; +static const char *VERSION = "0.1.9"; static const char *DESCRIPTION = trNOOP("A text only skin"); static const char *MAINMENUENTRY = NULL; |