diff options
author | chriszero <zerov83@gmail.com> | 2015-03-01 18:02:19 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-03-01 18:02:19 +0100 |
commit | 432cac91c6e5d861dc208f779aac8d3df2743eba (patch) | |
tree | c852c046ab3c40b95ce526760f4a35f7dd66990f /Directory.cpp | |
parent | 9450b271f139c8fe0470811da4c5cf4b1c8030d3 (diff) | |
download | vdr-plugin-plex-432cac91c6e5d861dc208f779aac8d3df2743eba.tar.gz vdr-plugin-plex-432cac91c6e5d861dc208f779aac8d3df2743eba.tar.bz2 |
Updated translation
Diffstat (limited to 'Directory.cpp')
-rw-r--r-- | Directory.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Directory.cpp b/Directory.cpp index 64e2ddf..e6e240b 100644 --- a/Directory.cpp +++ b/Directory.cpp @@ -1,4 +1,5 @@ #include "Directory.h" +#include <vdr/i18n.h> #include <Poco/Format.h> namespace plexclient @@ -34,7 +35,7 @@ std::string Directory::GetTitle() { switch(m_eType) { case SEASON: - return Poco::format("%s - Staffel %d", m_sTitle2, m_iIndex); + return Poco::format(tr("%s - Season %d"), m_sTitle2, m_iIndex); default: return m_sTitle; } |