diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 904526f2..4efd3f4f 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2448,6 +2448,7 @@ Christoph Haubrich for implementing anti-aliasing for cPixmap::DrawSlope() and cPixmap::DrawEllipse() for reporting an unnecessary double call to Display() in cMenuRecording::RefreshRecording() for reporting too much memory being allocated in the cImage constructors + for making the 'Edit path' dialog also show the total size of all recordings in that path Pekka Mauno for fixing cSchedule::GetFollowingEvent() in case there is currently no present diff --git a/HISTORY b/HISTORY index 7aaf9fa3..fe42743c 100644 --- a/HISTORY +++ b/HISTORY @@ -9691,3 +9691,5 @@ Video Disk Recorder Revision History - The transponder value of channels is now cached, because cChannel::Transponder(void) is called very often (pointed out by Helmut Binder). - Added code for the 'qad' audio track (thanks to Helmut Binder). +- The 'Edit path' dialog now also shows the total size of all recordings in that path + (thanks to Christoph Haubrich). diff --git a/menu.c b/menu.c index c6104e67..8f4eb19e 100644 --- a/menu.c +++ b/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 5.5 2021/05/19 11:22:20 kls Exp $ + * $Id: menu.c 5.6 2021/05/21 10:41:31 kls Exp $ */ #include "menu.h" @@ -2549,6 +2549,23 @@ cMenuPathEdit::cMenuPathEdit(const char *Path) p->SetSelectable(!pathIsInUse); Add(p = new cMenuEditStrItem(tr("Name"), name, sizeof(name))); p->SetSelectable(!pathIsInUse); + if (*path) { + int DirSize = 0; + { + LOCK_RECORDINGS_READ; + for (const cRecording *Recording = Recordings->First(); Recording; Recording = Recordings->Next(Recording)) { + if (Recording->IsInPath(path)) { + int FileSizeMB = Recording->FileSizeMB(); + if (FileSizeMB > 0 ) + DirSize += FileSizeMB; + } + } + } + if (DirSize > 1023) + Add(new cOsdItem(cString::sprintf("%s:\t%.2f GB", tr("Size"), DirSize / 1024.), osUnknown, false)); + else + Add(new cOsdItem(cString::sprintf("%s:\t%d MB", tr("Size"), DirSize), osUnknown, false)); + } if (pathIsInUse) { Add(new cOsdItem("", osUnknown, false)); Add(new cOsdItem(tr("This folder is currently in use - no changes are possible!"), osUnknown, false)); diff --git a/po/ar.po b/po/ar.po index 534e90fe..79acfd79 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2008-10-16 11:16-0400\n" "Last-Translator: Osama Alrawab \n" "Language-Team: Arabic \n" @@ -793,6 +793,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/ca_ES.po b/po/ca_ES.po index 2f5cc97e..5f93593f 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n" "Last-Translator: Luca Olivetti \n" "Language-Team: Catalan \n" @@ -792,6 +792,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index f9bfb6bd..bbc98251 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2010-05-06 11:00+0200\n" "Last-Translator: Aleš Juřík \n" "Language-Team: Czech \n" @@ -792,6 +792,9 @@ msgstr "Editace cesty" msgid "Folder" msgstr "Složka" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Tato složka je používána - změny nejsou možné!" diff --git a/po/da_DK.po b/po/da_DK.po index 159685ad..03eb1ac2 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Mogens Elneff \n" "Language-Team: Danish \n" @@ -789,6 +789,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 7a614a37..26fce0e5 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-24 17:42+0100\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-10 13:45+0100\n" "Last-Translator: Klaus Schmidinger \n" "Language-Team: German \n" @@ -790,6 +790,9 @@ msgstr "Pfad editieren" msgid "Folder" msgstr "Ordner" +msgid "Size" +msgstr "Gre" + msgid "This folder is currently in use - no changes are possible!" msgstr "Dieser Ordner ist zur Zeit in Verwendung - es sind keine nderungen mglich!" diff --git a/po/el_GR.po b/po/el_GR.po index 465e455d..6c285310 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Dimitrios Dimitrakos \n" "Language-Team: Greek \n" @@ -789,6 +789,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 5d04462f..dbb63f48 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-19 23:00+0100\n" "Last-Translator: Gabriel Bonich \n" "Language-Team: Spanish \n" @@ -790,6 +790,9 @@ msgstr "Editar path" msgid "Folder" msgstr "Carpeta" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Esta carpeta esta en uso - no se pueden hacer cambios!" diff --git a/po/et_EE.po b/po/et_EE.po index 24a12429..cc95d818 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Arthur Konovalov \n" "Language-Team: Estonian \n" @@ -789,6 +789,9 @@ msgstr "Muuda teed" msgid "Folder" msgstr "Kaust" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Kaust on juba kasutusel - muutmine ei ole võimalik!" diff --git a/po/fi_FI.po b/po/fi_FI.po index 75cd3c23..caf56864 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n" "Last-Translator: Matti Lehtimäki \n" "Language-Team: Finnish \n" @@ -793,6 +793,9 @@ msgstr "Muokkaa polkua" msgid "Folder" msgstr "Kansio" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Kansio on käytössä - muokkaukset eivät mahdollisia!" diff --git a/po/fr_FR.po b/po/fr_FR.po index 9a3fe878..f3ae021a 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-04-14 10:16+0100\n" "Last-Translator: Bernard Jaulin \n" "Language-Team: French \n" @@ -800,6 +800,9 @@ msgstr "Éditer le chemin" msgid "Folder" msgstr "Dossier" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Ce dossier est en cours d'utilisation - pas de modification possible !" diff --git a/po/hr_HR.po b/po/hr_HR.po index d2fcbb09..873af786 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n" "Last-Translator: Adrian Caval \n" "Language-Team: Croatian \n" @@ -791,6 +791,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index e24a919f..3b937a02 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-04-09 21:42+0300\n" "Last-Translator: István Füley \n" "Language-Team: Hungarian \n" @@ -794,6 +794,9 @@ msgstr "Elérés szerkesztése" msgid "Folder" msgstr "Könyvtár" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Ez a könyvtár használatban van - módosítás nem lehetséges!" diff --git a/po/it_IT.po b/po/it_IT.po index cd5fc317..2eb313a9 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-04-06 19:13+0100\n" "Last-Translator: Gringo \n" "Language-Team: Italian \n" @@ -795,6 +795,9 @@ msgstr "Modifica percorso" msgid "Folder" msgstr "Cartella" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "La cartella è attualmente in uso - nessuna modifica possibile!" diff --git a/po/lt_LT.po b/po/lt_LT.po index 4da5a9b5..527274f0 100644 --- a/po/lt_LT.po +++ b/po/lt_LT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-11 14:02+0200\n" "Last-Translator: Valdemaras Pipiras \n" "Language-Team: Lithuanian \n" @@ -789,6 +789,9 @@ msgstr "Koreguoti kelią" msgid "Folder" msgstr "Katalogas" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Šis katalogas šiuo metu naudojamas, tad šiuo metu negalimi jokie pakeitimai!" diff --git a/po/mk_MK.po b/po/mk_MK.po index e3d1a358..a49a4ab0 100644 --- a/po/mk_MK.po +++ b/po/mk_MK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-03-31 21:47+0100\n" "Last-Translator: Dimitar Petrovski \n" "Language-Team: Macedonian \n" @@ -791,6 +791,9 @@ msgstr "Уреди патека" msgid "Folder" msgstr "Папка" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Оваа папка е моментално во употреба - промени не се возможни!" diff --git a/po/nl_NL.po b/po/nl_NL.po index 0d3af8c3..5e0d7827 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-10 19:43+0100\n" "Last-Translator: Erik Oomen \n" "Language-Team: Dutch \n" @@ -795,6 +795,9 @@ msgstr "Pad bewerken" msgid "Folder" msgstr "Map" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Deze map is momenteel in gebruik - geen wijzigingen zijn mogelijk!" diff --git a/po/nn_NO.po b/po/nn_NO.po index 5824a562..18594aab 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Truls Slevigen \n" "Language-Team: Norwegian Nynorsk \n" @@ -790,6 +790,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index e6232dbc..ecee3d25 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-02-19 00:42+0100\n" "Last-Translator: Tomasz Maciej Nowak \n" "Language-Team: Polish \n" @@ -794,6 +794,9 @@ msgstr "Edytuj ścieżkę" msgid "Folder" msgstr "Katalog" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Ten katalog jest w użyciu - zmiany nie są możliwe!" diff --git a/po/pt_PT.po b/po/pt_PT.po index 1f6fbe66..2ef67313 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n" "Last-Translator: Cris Silva \n" "Language-Team: Portuguese \n" @@ -790,6 +790,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/ro_RO.po b/po/ro_RO.po index 079385d6..06c61214 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-11 22:26+0100\n" "Last-Translator: Lucian Muresan \n" "Language-Team: Romanian \n" @@ -791,6 +791,9 @@ msgstr "Editează calea" msgid "Folder" msgstr "Director" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Acest director tocmai este accesat - nu sunt posibile modificări!" diff --git a/po/ru_RU.po b/po/ru_RU.po index 1134bc1a..4added7c 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2016-12-27 17:13+0100\n" "Last-Translator: Pridvorov Andrey \n" "Language-Team: Russian \n" @@ -790,6 +790,9 @@ msgstr "Изменить путь" msgid "Folder" msgstr "Папка" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Папка используется - не изменено!" diff --git a/po/sk_SK.po b/po/sk_SK.po index c3b1f650..0a663e5d 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-17 18:59+0100\n" "Last-Translator: Milan Hrala \n" "Language-Team: Slovak \n" @@ -790,6 +790,9 @@ msgstr "Upravi msgid "Folder" msgstr "Prieinok" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Tento prieinok sa prve pouva - iadne zmeny nie s mon!" diff --git a/po/sl_SI.po b/po/sl_SI.po index a1390816..4c4e34db 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2013-03-04 12:46+0100\n" "Last-Translator: Matjaz Thaler \n" "Language-Team: Slovenian \n" @@ -790,6 +790,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/sr_RS.po b/po/sr_RS.po index 9f4d6f20..e1833182 100644 --- a/po/sr_RS.po +++ b/po/sr_RS.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2013-03-16 15:05+0100\n" "Last-Translator: Zoran Turalija \n" "Language-Team: Serbian \n" @@ -790,6 +790,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/sv_SE.po b/po/sv_SE.po index 711825a4..eb5b2129 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2015-02-12 21:58+0100\n" "Last-Translator: Magnus Sirvi \n" "Language-Team: Swedish \n" @@ -794,6 +794,9 @@ msgstr "Redigera s msgid "Folder" msgstr "Mapp" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Den hr mappen anvnds just nu - inga frndringar r mjliga!" diff --git a/po/tr_TR.po b/po/tr_TR.po index 3dfd8834..01dc881c 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n" "Last-Translator: Oktay Yolgeen \n" "Language-Team: Turkish \n" @@ -789,6 +789,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "" diff --git a/po/uk_UA.po b/po/uk_UA.po index c32aa6fd..ad159a62 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2018-03-18 20:00+0100\n" "Last-Translator: Yarema aka Knedlyk \n" "Language-Team: Ukrainian \n" @@ -790,6 +790,9 @@ msgstr "Редагувати шлях" msgid "Folder" msgstr "Тека" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr "Ця тека зараз використовується - не дозволено жодних змін!" diff --git a/po/zh_CN.po b/po/zh_CN.po index bfca171c..9385f6ae 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-21 11:46+0200\n" +"POT-Creation-Date: 2021-05-21 12:36+0200\n" "PO-Revision-Date: 2013-03-04 14:52+0800\n" "Last-Translator: NFVDR \n" "Language-Team: Chinese (simplified) \n" @@ -791,6 +791,9 @@ msgstr "" msgid "Folder" msgstr "" +msgid "Size" +msgstr "" + msgid "This folder is currently in use - no changes are possible!" msgstr ""