mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path
This commit is contained in:
parent
6564d8e928
commit
84b386c4a1
4
HISTORY
4
HISTORY
@ -6384,7 +6384,7 @@ Video Disk Recorder Revision History
|
||||
tracks appear in the "Audio" menu. Dolby Digital is always recorded.
|
||||
This obsoletes the DOLBYINREC patch.
|
||||
|
||||
2010-03-06: Version 1.7.14
|
||||
2010-03-12: Version 1.7.14
|
||||
|
||||
- Fixed handling empty strings in cSource::FromString().
|
||||
- Assigned the source character 'I' to "IPTV" (suggested by Rolf Ahrenberg).
|
||||
@ -6408,3 +6408,5 @@ Video Disk Recorder Revision History
|
||||
(pointed out by Udo Richter).
|
||||
- Fixed "attempt to drop wrong frame from ring buffer" when skipping +/- one minute
|
||||
during replay.
|
||||
- The new setup option "Folders in timer menu" controls whether the file names in
|
||||
the timer menu are shown with their full folder path.
|
||||
|
4
MANUAL
4
MANUAL
@ -584,6 +584,10 @@ Version 1.6
|
||||
Turns displaying the Recordings menu as a hierarchical
|
||||
directory structure on or off.
|
||||
|
||||
Folders in timer menu = yes
|
||||
Controls whether the full folder path is shown in the
|
||||
"Timers" menu, or just the basic recording name.
|
||||
|
||||
EPG:
|
||||
|
||||
EPG scan timeout = 5 The time (in hours) of user inactivity after which the
|
||||
|
5
config.c
5
config.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.c 2.11 2010/03/06 15:29:17 kls Exp $
|
||||
* $Id: config.c 2.12 2010/03/12 16:41:37 kls Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@ -354,6 +354,7 @@ cSetup::cSetup(void)
|
||||
UseVps = 0;
|
||||
VpsMargin = 120;
|
||||
RecordingDirs = 1;
|
||||
FoldersInTimerMenu = 1;
|
||||
VideoDisplayFormat = 1;
|
||||
VideoFormat = 0;
|
||||
UpdateChannels = 5;
|
||||
@ -543,6 +544,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
|
||||
else if (!strcasecmp(Name, "UseVps")) UseVps = atoi(Value);
|
||||
else if (!strcasecmp(Name, "VpsMargin")) VpsMargin = atoi(Value);
|
||||
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
|
||||
else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
|
||||
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
|
||||
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
|
||||
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
|
||||
@ -637,6 +639,7 @@ bool cSetup::Save(void)
|
||||
Store("UseVps", UseVps);
|
||||
Store("VpsMargin", VpsMargin);
|
||||
Store("RecordingDirs", RecordingDirs);
|
||||
Store("FoldersInTimerMenu", FoldersInTimerMenu);
|
||||
Store("VideoDisplayFormat", VideoDisplayFormat);
|
||||
Store("VideoFormat", VideoFormat);
|
||||
Store("UpdateChannels", UpdateChannels);
|
||||
|
3
config.h
3
config.h
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.h 2.24 2010/03/06 15:29:46 kls Exp $
|
||||
* $Id: config.h 2.25 2010/03/12 16:02:53 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_H
|
||||
@ -253,6 +253,7 @@ public:
|
||||
int UseVps;
|
||||
int VpsMargin;
|
||||
int RecordingDirs;
|
||||
int FoldersInTimerMenu;
|
||||
int VideoDisplayFormat;
|
||||
int VideoFormat;
|
||||
int UpdateChannels;
|
||||
|
5
menu.c
5
menu.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: menu.c 2.20 2010/03/07 14:08:15 kls Exp $
|
||||
* $Id: menu.c 2.21 2010/03/12 16:03:07 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -1052,7 +1052,7 @@ void cMenuTimerItem::Set(void)
|
||||
strftime(buffer, sizeof(buffer), "%Y%m%d", &tm_r);
|
||||
day = buffer;
|
||||
}
|
||||
const char *File = strrchr(timer->File(), FOLDERDELIMCHAR);
|
||||
const char *File = Setup.FoldersInTimerMenu ? NULL : strrchr(timer->File(), FOLDERDELIMCHAR);
|
||||
if (File && strcmp(File + 1, TIMERMACRO_TITLE) && strcmp(File + 1, TIMERMACRO_EPISODE))
|
||||
File++;
|
||||
else
|
||||
@ -2567,6 +2567,7 @@ void cMenuSetupOSD::Set(void)
|
||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Scroll wraps"), &data.MenuScrollWrap));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Menu key closes"), &data.MenuKeyCloses));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu));
|
||||
SetCurrent(Get(current));
|
||||
Display();
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||
"Language-Team: Catalanian\n"
|
||||
@ -836,6 +836,9 @@ msgstr "Tecla menu tanca"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Gravacions en subcarpetes"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guia de Programes"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-02-28 15:00+0200\n"
|
||||
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>, Jiøí Dobrý <jdobry@centrum.cz>\n"
|
||||
"Language-Team: Czech\n"
|
||||
@ -834,6 +834,9 @@ msgstr "Kl
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Seznam nahrávek"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
||||
"Language-Team: Danish\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Menu taste lukker"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Optagelser i foldere"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
|
||||
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
|
||||
"Language-Team: German\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Menu-Taste schlie
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Aufnahmeverzeichnisse"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Verzeichnisse im Timer-Menü"
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
||||
"Language-Team: Greek\n"
|
||||
@ -833,6 +833,9 @@ msgstr ""
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "ÖÜêåëïé åããñáöþí"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Çëåêôñïíéêüò ïäçãüò ðñïãñÜììáôïò"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
@ -834,6 +834,9 @@ msgstr "Cerrar al pulsar bot
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Mostrar directorios de grabaciones"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guía de Programación"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
||||
"Language-Team: Estonian\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Sulgemine Men
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Kausta nime salvestamine"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@ -836,6 +836,9 @@ msgstr "Sulje valikkon
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Näytä tallennehakemistot"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Ohjelmaopas"
|
||||
|
||||
|
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
|
||||
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
|
||||
"Language-Team: French\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Menu bouton ferm
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Dossiers d'enregistrements"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guide des programmes"
|
||||
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
||||
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
||||
"Language-Team: Croatian\n"
|
||||
@ -835,6 +835,9 @@ msgstr "Tipka Izbornik zatvara"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Imenik za snimke"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG (elektronski programski vodiè)"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-12-01 21:42+0200\n"
|
||||
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
@ -836,6 +836,9 @@ msgstr "A men
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Felvételek listája"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2010-01-31 23:06+0100\n"
|
||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||
"Language-Team: Italian\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Tasto Menu per chiudere"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Directory di registrazione"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guida programmi EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.12\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2010-02-22 18:05+0200\n"
|
||||
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Uždaryti Meniu mygtuku"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Įrašų katalogai"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Elektroninis programų gidas (EPG)"
|
||||
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
|
||||
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
@ -837,6 +837,9 @@ msgstr "Menu toets sluit ook af"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Opname mappen"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
@ -834,6 +834,9 @@ msgstr ""
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Kataloger til opptak"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Programoversikt"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
|
||||
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
||||
"Language-Team: Polish\n"
|
||||
@ -834,6 +834,9 @@ msgstr "Przycisk Menu zamyka"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Katalogi nagrañ"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-18 17:04+0100\n"
|
||||
"Last-Translator: anonymous\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Tecla Menu fecha"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Directorias de gravação"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guia de programação"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.12\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2010-02-11 13:38+0100\n"
|
||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||
"Language-Team: Romanian\n"
|
||||
@ -836,6 +836,9 @@ msgstr "Tasta 'Meniu'
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Directoare înregistrãri"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
|
||||
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
|
||||
"Language-Team: Russian\n"
|
||||
@ -834,6 +834,9 @@ msgstr "
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "ºÐâÐÛÞÓØ åàÐÝÕÝØï ×ÐßØáÕÙ"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "ÂÕÛÕÓØÔ"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2009-09-30 12:50+0100\n"
|
||||
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
||||
"Language-Team: Slovak\n"
|
||||
@ -834,6 +834,9 @@ msgstr "Kl
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Zoznam záznamov"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
|
||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||
"Language-Team: Slovenian\n"
|
||||
@ -834,6 +834,9 @@ msgstr "Meni gumb zapre meni"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Direktoriji za posnetke"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Programski vodnik"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
|
||||
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
@ -836,6 +836,9 @@ msgstr "Menyknappen st
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Kataloger för inspelningar"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
||||
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
||||
"Language-Team: Turkish\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Men
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Kayýt dizinleri"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2009-05-31 13:17+0200\n"
|
||||
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@ -833,6 +833,9 @@ msgstr "Кнопку Меню закрити"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "Каталоги зберігання записів"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Телегід"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-07 13:36+0100\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
|
||||
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
|
||||
"Language-Team: Chinese\n"
|
||||
@ -836,6 +836,9 @@ msgstr "菜单关闭结束"
|
||||
msgid "Setup.OSD$Recording directories"
|
||||
msgstr "录像目录"
|
||||
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "电子节目单设置"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user