From 304addbc00e2fc4ca7093a199d807787d00b1218 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sun, 11 Jan 2015 23:49:12 +0200 Subject: [PATCH] Added missing CI/CAM translations. --- po/ca_ES.po | 9 +++++++++ po/de_DE.po | 9 +++++++++ po/es_ES.po | 9 +++++++++ po/fi_FI.po | 12 ++++++++++++ setup.c | 4 ++-- 5 files changed, 41 insertions(+), 2 deletions(-) diff --git a/po/ca_ES.po b/po/ca_ES.po index 76ba55f..f4e694a 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -115,6 +115,15 @@ msgid "" "This setting enables integrated CI/CAM handling found in some SAT>IP hardware (e.g. Digital Devices OctopusNet)." msgstr "" +msgid "CI/CAM" +msgstr "CI/CAM" + +msgid "" +"Define a desired CAM type for the CI slot.\n" +"\n" +"The '---' option lets SAT>IP hardware do the auto-selection." +msgstr "" + msgid "Enable EPG scanning" msgstr "Activa Escanneig EPG" diff --git a/po/de_DE.po b/po/de_DE.po index 4fad057..81030b6 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -118,6 +118,15 @@ msgstr "" "\n" "Diese Einstellung aktiviert die Nutzung des integrierten CI/CAM einiger SAT>IP Geräte (z.B. Digital Devices OctopusNet)." +msgid "CI/CAM" +msgstr "CI/CAM" + +msgid "" +"Define a desired CAM type for the CI slot.\n" +"\n" +"The '---' option lets SAT>IP hardware do the auto-selection." +msgstr "" + msgid "Enable EPG scanning" msgstr "Aktiviere EPG Aktualisierung" diff --git a/po/es_ES.po b/po/es_ES.po index 9afaa69..9a8ed3f 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -115,6 +115,15 @@ msgid "" "This setting enables integrated CI/CAM handling found in some SAT>IP hardware (e.g. Digital Devices OctopusNet)." msgstr "" +msgid "CI/CAM" +msgstr "CI/CAM" + +msgid "" +"Define a desired CAM type for the CI slot.\n" +"\n" +"The '---' option lets SAT>IP hardware do the auto-selection." +msgstr "" + msgid "Enable EPG scanning" msgstr "Activa Escaneo EPG" diff --git a/po/fi_FI.po b/po/fi_FI.po index 0a049d5..03846d3 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -117,6 +117,18 @@ msgstr "" "\n" "Tällä asetuksella saadaan otettua käyttöön SAT>IP-laitteiden sisäinen CI-paikka (esim. Digital Devices OctopusNet)." +msgid "CI/CAM" +msgstr "CI/CAM" + +msgid "" +"Define a desired CAM type for the CI slot.\n" +"\n" +"The '---' option lets SAT>IP hardware do the auto-selection." +msgstr "" +"Määrittele haluttu CAM-tyyppi CI-paikalle.\n" +"\n" +"Vaihtoehto '---' antaa SAT>IP-laitteen valita automaattisesti käytetyn CI-paikan." + msgid "Enable EPG scanning" msgstr "Käytä ohjelmaoppaan taustapäivitystä" diff --git a/setup.c b/setup.c index 88be18a..552036a 100644 --- a/setup.c +++ b/setup.c @@ -377,8 +377,8 @@ void cSatipPluginSetup::Setup(void) helpM.Append(tr("Define whether a CI extension shall be used.\n\nThis setting enables integrated CI/CAM handling found in some SAT>IP hardware (e.g. Digital Devices OctopusNet).")); for (unsigned int i = 0; ciExtensionM && i < ELEMENTS(cicamsM); ++i) { - Add(new cMenuEditStraItem(*cString::sprintf(" %s #%d", "CI/CAM", i + 1), &cicamsM[i], ELEMENTS(cicamTextsM), cicamTextsM)); - helpM.Append("Define the used CI/CAM type for CI slot."); + Add(new cMenuEditStraItem(*cString::sprintf(" %s #%d", tr("CI/CAM"), i + 1), &cicamsM[i], ELEMENTS(cicamTextsM), cicamTextsM)); + helpM.Append(tr("Define a desired CAM type for the CI slot.\n\nThe '---' option lets SAT>IP hardware do the auto-selection.")); } #endif Add(new cMenuEditBoolItem(tr("Enable EPG scanning"), &eitScanM));