summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.cc2
-rw-r--r--src/lib/config.h10
-rw-r--r--src/lib/kdm.cc20
-rw-r--r--src/lib/po/de_DE.po30
-rw-r--r--src/lib/po/es_ES.po30
-rw-r--r--src/lib/po/fr_FR.po30
-rw-r--r--src/lib/po/it_IT.po30
-rw-r--r--src/lib/po/nl_NL.po30
-rw-r--r--src/lib/po/sv_SE.po30
-rw-r--r--src/tools/po/de_DE.po2
-rw-r--r--src/tools/po/es_ES.po2
-rw-r--r--src/tools/po/fr_FR.po2
-rw-r--r--src/tools/po/it_IT.po2
-rw-r--r--src/tools/po/nl_NL.po2
-rw-r--r--src/tools/po/sv_SE.po2
-rw-r--r--src/wx/config_dialog.cc12
-rw-r--r--src/wx/po/de_DE.po78
-rw-r--r--src/wx/po/es_ES.po78
-rw-r--r--src/wx/po/fr_FR.po78
-rw-r--r--src/wx/po/it_IT.po78
-rw-r--r--src/wx/po/nl_NL.po78
-rw-r--r--src/wx/po/sv_SE.po78
22 files changed, 405 insertions, 299 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index d4976676d..71431ec0d 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -189,6 +189,7 @@ Config::read ()
_mail_server = f.string_child ("MailServer");
_mail_user = f.optional_string_child("MailUser").get_value_or ("");
_mail_password = f.optional_string_child("MailPassword").get_value_or ("");
+ _kdm_subject = f.optional_string_child ("KDMSubject").get_value_or (_("KDM delivery: $CPL_NAME"));
_kdm_from = f.string_child ("KDMFrom");
_kdm_cc = f.optional_string_child ("KDMCC").get_value_or ("");
_kdm_email = f.string_child ("KDMEmail");
@@ -305,6 +306,7 @@ Config::write () const
root->add_child("MailServer")->add_child_text (_mail_server);
root->add_child("MailUser")->add_child_text (_mail_user);
root->add_child("MailPassword")->add_child_text (_mail_password);
+ root->add_child("KDMSubject")->add_child_text (_kdm_subject);
root->add_child("KDMFrom")->add_child_text (_kdm_from);
root->add_child("KDMCC")->add_child_text (_kdm_cc);
root->add_child("KDMEmail")->add_child_text (_kdm_email);
diff --git a/src/lib/config.h b/src/lib/config.h
index f26e2532a..66ff66214 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -168,6 +168,10 @@ public:
return _mail_password;
}
+ std::string kdm_subject () const {
+ return _kdm_subject;
+ }
+
std::string kdm_from () const {
return _kdm_from;
}
@@ -322,6 +326,11 @@ public:
changed ();
}
+ void set_kdm_subject (std::string s) {
+ _kdm_subject = s;
+ changed ();
+ }
+
void set_kdm_from (std::string f) {
_kdm_from = f;
changed ();
@@ -412,6 +421,7 @@ private:
std::string _mail_server;
std::string _mail_user;
std::string _mail_password;
+ std::string _kdm_subject;
std::string _kdm_from;
std::string _kdm_cc;
std::string _kdm_email;
diff --git a/src/lib/kdm.cc b/src/lib/kdm.cc
index dd2b756c1..0593881bc 100644
--- a/src/lib/kdm.cc
+++ b/src/lib/kdm.cc
@@ -233,20 +233,30 @@ email_kdms (
/* Send email */
quickmail_initialize ();
- quickmail mail = quickmail_create (Config::instance()->kdm_from().c_str(), "KDM delivery");
+
+ stringstream start;
+ start << from.date() << " " << from.time_of_day();
+ stringstream end;
+ end << to.date() << " " << to.time_of_day();
+
+ string subject = Config::instance()->kdm_subject();
+ boost::algorithm::replace_all (subject, "$CPL_NAME", film->dcp_name ());
+ boost::algorithm::replace_all (subject, "$START_TIME", start.str ());
+ boost::algorithm::replace_all (subject, "$END_TIME", end.str ());
+ boost::algorithm::replace_all (subject, "$CINEMA_NAME", i->cinema->name);
+ quickmail mail = quickmail_create (Config::instance()->kdm_from().c_str(), subject.c_str ());
+
quickmail_add_to (mail, i->cinema->email.c_str ());
if (!Config::instance()->kdm_cc().empty ()) {
quickmail_add_cc (mail, Config::instance()->kdm_cc().c_str ());
}
+
string body = Config::instance()->kdm_email().c_str();
boost::algorithm::replace_all (body, "$CPL_NAME", film->dcp_name ());
- stringstream start;
- start << from.date() << " " << from.time_of_day();
boost::algorithm::replace_all (body, "$START_TIME", start.str ());
- stringstream end;
- end << to.date() << " " << to.time_of_day();
boost::algorithm::replace_all (body, "$END_TIME", end.str ());
boost::algorithm::replace_all (body, "$CINEMA_NAME", i->cinema->name);
+
stringstream screens;
for (list<ScreenKDM>::const_iterator j = i->screen_kdms.begin(); j != i->screen_kdms.end(); ++j) {
screens << j->screen->name << ", ";
diff --git a/src/lib/po/de_DE.po b/src/lib/po/de_DE.po
index e959fb638..d23c2bd82 100644
--- a/src/lib/po/de_DE.po
+++ b/src/lib/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-13 02:32+0100\n"
"Last-Translator: Carsten Kurz\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,7 +34,7 @@ msgstr "%1 Kanäle, %2kHz, %3 samples"
msgid "%1 frames; %2 frames per second"
msgstr "%1 Bilder; %2 Bilder pro Sekunde"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr "%1x%2 pixel (%3:1)"
@@ -131,19 +131,19 @@ msgid "Content to be joined must have the same audio gain."
msgstr ""
"Zu verbindende Inhalte müssen die gleichen Tonpegeleinstellungen verwenden."
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr "Zu verbindende Inhalte müssen die gleiche Farbumwandlung verwenden."
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr "Zu verbindende Inhalte müssen gleichen Beschnitt verwenden."
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr "Zu verbindende Inhalte müssen die gleiche Bildgröße haben."
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
msgid "Content to be joined must have the same scale setting."
msgstr "Zu verbindende Inhalte müssen die gleiche Skalierung verwenden."
@@ -163,11 +163,11 @@ msgstr ""
msgid "Content to be joined must have the same subtitle scale."
msgstr "Zu verbindende Inhalte müssen die gleiche Untertitelgröße verwenden."
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr "Zu verbindende Inhalte müssen die gleiche Bildrate haben."
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr "Zu verbindende Inhalte müssen den gleichen Bildtyp (z.B. 2D) haben."
@@ -242,7 +242,7 @@ msgstr ""
msgid "De-interlacing"
msgstr "De-Interlacer"
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
msgid ""
"Dear Projectionist\n"
"\n"
@@ -284,7 +284,7 @@ msgstr "Jedes Bild der Quelle wird im DCP verdoppelt.\n"
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Jedes Bild der Quelle wird %1 mal im DCP wiederholt.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr "Email KDMs für %1"
@@ -344,6 +344,10 @@ msgstr ""
"Ein unbekannter Fehler ist aufgetreten. Bitte schicken Sie eine Nachricht an "
"den DCP-o-matic Autor (carl@dcpomatic.com)."
+#: src/lib/config.cc:189
+msgid "KDM delivery: $CPL_NAME"
+msgstr "KDM Zustellung: $CPL_NAME"
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Kernel De-Interlacer"
@@ -380,11 +384,11 @@ msgstr "Verschiedenes"
msgid "Motion compensating deinterlacer"
msgstr "Bewegungskompensierender De-Interlacer"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr "Unskaliert"
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
msgid "No stretch"
msgstr "Nicht verzerrt"
@@ -729,7 +733,7 @@ msgstr "Nur Bitmap Untertitel werden unterstützt"
msgid "remaining"
msgstr "verbleibend"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/lib/po/es_ES.po b/src/lib/po/es_ES.po
index 813600fe5..9d54555ce 100644
--- a/src/lib/po/es_ES.po
+++ b/src/lib/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LIBDCPOMATIC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-04-20 10:12-0500\n"
"Last-Translator: Manuel AC <manuel.acevedo@civantos.>\n"
"Language-Team: Manuel AC <manuel.acevedo@civantos.com>\n"
@@ -33,7 +33,7 @@ msgstr "%1 canales, %2kHz, %3 muestras"
msgid "%1 frames; %2 frames per second"
msgstr "%1 imágenes; %2 imágenes per second"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr "%1x%2 pixels (%3:1)"
@@ -129,19 +129,19 @@ msgstr "Para unir contenido debe tener el mismo retardo de audio."
msgid "Content to be joined must have the same audio gain."
msgstr "Para unir contenido debe tener la misma ganancia de audio."
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr "Para unir contenido debe tener la misma conversión de color."
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr "Para unir contenido debe tener el mismo recorte."
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr "Para unir contenido debe tener el mismo tamaño de imagen."
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
msgid "Content to be joined must have the same scale setting."
msgstr "Para unir contenido debe tener la misma redimensión."
@@ -159,11 +159,11 @@ msgstr ""
msgid "Content to be joined must have the same subtitle scale."
msgstr "Para unir contenido debe tener el mismo tamaño de subtítulo."
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr "Para unir contenido debe tener la misma velocidad de imagen."
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr "Para unir contenido debe tener el mismo tamaño de imagen."
@@ -237,7 +237,7 @@ msgstr "DCP-o-matic ya no ofrece el filtro `%1', así que ha sido desactivado."
msgid "De-interlacing"
msgstr "Desentrelazado"
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
#, fuzzy
msgid ""
"Dear Projectionist\n"
@@ -277,7 +277,7 @@ msgstr "Se doblará cada imagen en el DCP.\n"
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Cada imagen será repetida otras %1 veces en el DCP.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr "Enviar por email las KDM para %1"
@@ -338,6 +338,10 @@ msgstr ""
"Error desconocido. La mejor idea es informar del problema a la lista de "
"correo de DCP-o-matic (carl@dcpomatic.com)"
+#: src/lib/config.cc:189
+msgid "KDM delivery"
+msgstr ""
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Kernel deinterlacer"
@@ -374,11 +378,11 @@ msgstr "Miscelánea"
msgid "Motion compensating deinterlacer"
msgstr "Motion compensating deinterlacer"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr "No redimensionar"
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
msgid "No stretch"
msgstr "Sin deformación"
@@ -720,7 +724,7 @@ msgstr "todavía no se soportan subtítulos que no son en mapas de bits"
msgid "remaining"
msgstr "pendiente"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/lib/po/fr_FR.po b/src/lib/po/fr_FR.po
index c781704a1..cd66f1545 100644
--- a/src/lib/po/fr_FR.po
+++ b/src/lib/po/fr_FR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic FRENCH\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-14 12:04+0100\n"
"Last-Translator: Grégoire AUSINA <gregoire@gisele-productions.eu>\n"
"Language-Team: \n"
@@ -33,7 +33,7 @@ msgstr "%1 canaux, %2kHz, %3 échantillons"
msgid "%1 frames; %2 frames per second"
msgstr "%1 images ; %2 images par seconde"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr "%1x%2 pixels (%3:1)"
@@ -129,19 +129,19 @@ msgstr "Le contenu à ajouter doit présenter le même délais audio"
msgid "Content to be joined must have the same audio gain."
msgstr "Le contenu à ajouter doit avoir le même gain audio"
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr "Le contenu à ajouter doit avoir le même type de conversion couleur"
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr "le contenu à ajouter doit avoir les mêmes valeurs de rognage"
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr "Le contenu à ajouter doit avoir la même taille d'image"
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
msgid "Content to be joined must have the same scale setting."
msgstr ""
"Le contenu à ajouter doit avoir les mêmes paramètres de mise à l'échelle"
@@ -162,11 +162,11 @@ msgstr ""
msgid "Content to be joined must have the same subtitle scale."
msgstr "le contenu à ajouter doit avoir le même positionnement de sous-titre"
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr "Le contenu à ajouter doit avoir la même cadence d'images"
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr "Le contenu à ajouter doit avoir le même type de trame vidéo"
@@ -239,7 +239,7 @@ msgstr "DCP-o-matic ne gère plus le filtre `%1'. Celui-ci a été désactivé."
msgid "De-interlacing"
msgstr "Désentrelacement"
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
msgid ""
"Dear Projectionist\n"
"\n"
@@ -281,7 +281,7 @@ msgstr "Chaque image source sera doublée dans le DCP.\n"
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Chaque image source sera répetée %1 fois dans le DCP.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr "Envoyer KDM par email pour %1"
@@ -341,6 +341,10 @@ msgstr ""
"Erreur indéterminée. Merci de rapporter le problème à l'auteur de DCP-o-"
"matic (carl@dcpomatic.com)"
+#: src/lib/config.cc:189
+msgid "KDM delivery"
+msgstr ""
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Désentrelaceur noyau"
@@ -377,11 +381,11 @@ msgstr "Divers"
msgid "Motion compensating deinterlacer"
msgstr "Désentrelaceur par compensation de mouvement"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr "Pas de mise à l'échelle"
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
msgid "No stretch"
msgstr "Sans déformation"
@@ -723,7 +727,7 @@ msgstr "sous-titres non-bitmap non supportés actuellement"
msgid "remaining"
msgstr "restant"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/lib/po/it_IT.po b/src/lib/po/it_IT.po
index e2bce6f87..12d83002c 100644
--- a/src/lib/po/it_IT.po
+++ b/src/lib/po/it_IT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: IT VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-02-03 10:48+0100\n"
"Last-Translator: William Fanelli <william.f@impronte.com>\n"
"Language-Team: \n"
@@ -33,7 +33,7 @@ msgstr ""
msgid "%1 frames; %2 frames per second"
msgstr "%1 fotogrammi; %2 fotogrammi al secondo"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr ""
@@ -131,19 +131,19 @@ msgstr ""
msgid "Content to be joined must have the same audio gain."
msgstr ""
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr ""
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr ""
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr ""
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
#, fuzzy
msgid "Content to be joined must have the same scale setting."
msgstr ""
@@ -163,11 +163,11 @@ msgstr ""
msgid "Content to be joined must have the same subtitle scale."
msgstr ""
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr ""
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr ""
@@ -244,7 +244,7 @@ msgstr ""
msgid "De-interlacing"
msgstr "De-interlacciamento"
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
#, fuzzy
msgid ""
"Dear Projectionist\n"
@@ -285,7 +285,7 @@ msgstr "Ogni fotogramma del sorgente sarà duplicato nel DCP.\n"
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Ogni fotogramma del sorgente sarà ripetuto %1 volte nel DCP.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr ""
@@ -346,6 +346,10 @@ msgstr ""
"Non sappiamo cosa ha causato questo errore. La cosa migliore è inviare un "
"report del problema alla mailing list di DCP-o-matic (carl@dcpomatic.com)"
+#: src/lib/config.cc:189
+msgid "KDM delivery"
+msgstr ""
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Deinterlacciatore Kernel"
@@ -383,11 +387,11 @@ msgstr "Varie"
msgid "Motion compensating deinterlacer"
msgstr "Dinterlacciatore con compensazione di movimento"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr ""
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
#, fuzzy
msgid "No stretch"
msgstr "Flat senza stiramento"
@@ -737,7 +741,7 @@ msgstr "sottotitoli non-bitmap non ancora supportati"
msgid "remaining"
msgstr "restano"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/lib/po/nl_NL.po b/src/lib/po/nl_NL.po
index f471ce8af..ffafbaab1 100644
--- a/src/lib/po/nl_NL.po
+++ b/src/lib/po/nl_NL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-03-30 19:39+0100\n"
"Last-Translator: Theo Kooijmans <tkooijmans@universaldv.nl>\n"
"Language-Team: UniversalDV <Tkooijmans@universaldv.nl>\n"
@@ -34,7 +34,7 @@ msgstr "%1 kanalen, %2kHz, %3 samples"
msgid "%1 frames; %2 frames per second"
msgstr "%1 frames; %2 frames per seconde"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr "%1x%2 pixels (%3:1)"
@@ -130,19 +130,19 @@ msgstr "Toegevoegde bestanden moeten dezelfde audio vertraging hebben."
msgid "Content to be joined must have the same audio gain."
msgstr "Toegevoegde bestanden moeten dezelfde audio gain hebben."
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr "Toegevoegde bestanden moeten dezelfde kleurindeling hebben."
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr "Toegevoegde bestanden moeten dezelfde crop hebben."
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr "Toegevoegde bestanden moeten dezelfde grootte hebben."
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
msgid "Content to be joined must have the same scale setting."
msgstr "Toegevoegde bestanden moeten dezelfde schaal hebben."
@@ -158,11 +158,11 @@ msgstr "Toegevoegde bestanden moeten dezelfde ondertitel Y offset hebben."
msgid "Content to be joined must have the same subtitle scale."
msgstr "Toegevoegde bestanden moeten dezelfde ondertitel grootte hebben."
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr "Toegevoegde bestanden moeten dezelfde video frame rate hebben."
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr "Toegevoegde bestanden moeten dezelfde video formaat hebben."
@@ -238,7 +238,7 @@ msgstr ""
msgid "De-interlacing"
msgstr "De-interlacing"
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
#, fuzzy
msgid ""
"Dear Projectionist\n"
@@ -278,7 +278,7 @@ msgstr "Elk content frame zal verdubbeld worden de DCP.\n"
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Elk content frame zal %1 herhaald worden in de DCP.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr "Email KDMs voor %1"
@@ -339,6 +339,10 @@ msgstr ""
"Dit is een onbekende fout. U kunt deze het beste melden bij de DCP-o-matic "
"mailing lijst (carl@dcpomatic.com)"
+#: src/lib/config.cc:189
+msgid "KDM delivery"
+msgstr ""
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Kernel deinterlacer"
@@ -375,11 +379,11 @@ msgstr "Diverse"
msgid "Motion compensating deinterlacer"
msgstr "Motion compensating deinterlacer"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr "Niet vergroten of verkleinen"
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
msgid "No stretch"
msgstr "Niet uitvullen"
@@ -723,7 +727,7 @@ msgstr "non-bitmap ondertitels worden nog niet ondersteund"
msgid "remaining"
msgstr "resterend"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/lib/po/sv_SE.po b/src/lib/po/sv_SE.po
index 98d76e3bd..eb9bafedb 100644
--- a/src/lib/po/sv_SE.po
+++ b/src/lib/po/sv_SE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-01-19 08:59+0100\n"
"Last-Translator: Adam Klotblixt <adam.klotblixt@gmail.com>\n"
"Language-Team: \n"
@@ -33,7 +33,7 @@ msgstr "%1 kanaler, %2kHz, %3 sampel"
msgid "%1 frames; %2 frames per second"
msgstr "%1 bilder; %2 bilder per sekund"
-#: src/lib/video_content.cc:206
+#: src/lib/video_content.cc:213
msgid "%1x%2 pixels (%3:1)"
msgstr "%1x%2 pixlar (%3:1)"
@@ -129,19 +129,19 @@ msgstr "Innehåll som ska sammanfogas måste använda samma audiofördröjning."
msgid "Content to be joined must have the same audio gain."
msgstr "Innehåll som ska sammanfogas måste använda samma audioförstärkning."
-#: src/lib/video_content.cc:144
+#: src/lib/video_content.cc:148
msgid "Content to be joined must have the same colour conversion."
msgstr "Innehåll som ska sammanfogas måste använda samma färgkonvertering."
-#: src/lib/video_content.cc:136
+#: src/lib/video_content.cc:140
msgid "Content to be joined must have the same crop."
msgstr "Innehåll som ska sammanfogas måste använda samma beskärning."
-#: src/lib/video_content.cc:124
+#: src/lib/video_content.cc:128
msgid "Content to be joined must have the same picture size."
msgstr "Innehåll som ska sammanfogas måste använda samma bildstorlek."
-#: src/lib/video_content.cc:140
+#: src/lib/video_content.cc:144
#, fuzzy
msgid "Content to be joined must have the same scale setting."
msgstr "Innehåll som ska sammanfogas måste använda samma bildförhållande."
@@ -162,11 +162,11 @@ msgstr ""
msgid "Content to be joined must have the same subtitle scale."
msgstr "Innehåll som ska sammanfogas måste använda samma skala på undertexten."
-#: src/lib/video_content.cc:128
+#: src/lib/video_content.cc:132
msgid "Content to be joined must have the same video frame rate."
msgstr "Innehåll som ska sammanfogas måste använda samma videobildhastighet."
-#: src/lib/video_content.cc:132
+#: src/lib/video_content.cc:136
msgid "Content to be joined must have the same video frame type."
msgstr "Innehåll som ska sammanfogas måste använda samma videobildtyp."
@@ -242,7 +242,7 @@ msgid "De-interlacing"
msgstr "Avflätning"
# svåröversatt
-#: src/lib/config.cc:417
+#: src/lib/config.cc:419
#, fuzzy
msgid ""
"Dear Projectionist\n"
@@ -281,7 +281,7 @@ msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr ""
"Varje bild från källan kommer att användas ytterligare %1 gång(er) i DCPn.\n"
-#: src/lib/send_kdm_email_job.cc:50
+#: src/lib/send_kdm_email_job.cc:52
msgid "Email KDMs for %1"
msgstr "E-posta KDM:er för %1"
@@ -342,6 +342,10 @@ msgstr ""
"Det är inte känt vad som orsakade detta fel. Bästa sättet att rapportera "
"problemet är till DCP-o-matics mejl-lista (carl@dcpomatic.com)"
+#: src/lib/config.cc:189
+msgid "KDM delivery"
+msgstr ""
+
#: src/lib/filter.cc:66
msgid "Kernel deinterlacer"
msgstr "Kernel-avflätare"
@@ -379,11 +383,11 @@ msgstr "Diverse"
msgid "Motion compensating deinterlacer"
msgstr "Rörelsekompenserande avflätare"
-#: src/lib/video_content.cc:476
+#: src/lib/video_content.cc:498
msgid "No scale"
msgstr ""
-#: src/lib/video_content.cc:473
+#: src/lib/video_content.cc:495
#, fuzzy
msgid "No stretch"
msgstr "Flat utan utsträckning"
@@ -733,7 +737,7 @@ msgstr "icke-rastergrafiska undertexter stöds inte ännu"
msgid "remaining"
msgstr "återstående tid"
-#: src/lib/config.cc:82 src/lib/video_content.cc:175
+#: src/lib/config.cc:82 src/lib/video_content.cc:181
msgid "sRGB"
msgstr "sRGB"
diff --git a/src/tools/po/de_DE.po b/src/tools/po/de_DE.po
index 8742e307e..94e3858cb 100644
--- a/src/tools/po/de_DE.po
+++ b/src/tools/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-13 03:04+0100\n"
"Last-Translator: Carsten Kurz\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/src/tools/po/es_ES.po b/src/tools/po/es_ES.po
index 374877caf..22fd4504d 100644
--- a/src/tools/po/es_ES.po
+++ b/src/tools/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCPOMATIC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-04-20 10:21-0500\n"
"Last-Translator: Manuel AC <manuel.acevedo@civantos.>\n"
"Language-Team: Manuel AC <manuel.acevedo@civantos.com>\n"
diff --git a/src/tools/po/fr_FR.po b/src/tools/po/fr_FR.po
index f1f5fc924..dfed2eb34 100644
--- a/src/tools/po/fr_FR.po
+++ b/src/tools/po/fr_FR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic FRENCH\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-14 10:43+0100\n"
"Last-Translator: Grégoire AUSINA <gregoire@gisele-productions.eu>\n"
"Language-Team: \n"
diff --git a/src/tools/po/it_IT.po b/src/tools/po/it_IT.po
index c3baa96d1..0a1f2f236 100644
--- a/src/tools/po/it_IT.po
+++ b/src/tools/po/it_IT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: IT VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-02-03 09:36+0100\n"
"Last-Translator: William Fanelli <william.f@impronte.com>\n"
"Language-Team: \n"
diff --git a/src/tools/po/nl_NL.po b/src/tools/po/nl_NL.po
index fe0bf7ef8..031518082 100644
--- a/src/tools/po/nl_NL.po
+++ b/src/tools/po/nl_NL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-03-30 19:38+0100\n"
"Last-Translator: Theo Kooijmans <tkooijmans@universaldv.nl>\n"
"Language-Team: UniversalDV <Tkooijmans@universaldv.nl>\n"
diff --git a/src/tools/po/sv_SE.po b/src/tools/po/sv_SE.po
index be2a243c5..4f1b033aa 100644
--- a/src/tools/po/sv_SE.po
+++ b/src/tools/po/sv_SE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-01-19 08:59+0100\n"
"Last-Translator: Adam Klotblixt <adam.klotblixt@gmail.com>\n"
"Language-Team: \n"
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index fc77b42a2..360e80572 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -670,6 +670,10 @@ public:
font.SetPointSize (font.GetPointSize() - 1);
plain->SetFont (font);
table->AddSpacer (0);
+
+ add_label_to_sizer (table, panel, _("Subject"), true);
+ _kdm_subject = new wxTextCtrl (panel, wxID_ANY);
+ table->Add (_kdm_subject, 1, wxEXPAND | wxALL);
add_label_to_sizer (table, panel, _("From address"), true);
_kdm_from = new wxTextCtrl (panel, wxID_ANY);
@@ -692,6 +696,8 @@ public:
_mail_user->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&KDMEmailPage::mail_user_changed, this));
_mail_password->SetValue (std_to_wx (config->mail_password ()));
_mail_password->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&KDMEmailPage::mail_password_changed, this));
+ _kdm_subject->SetValue (std_to_wx (config->kdm_subject ()));
+ _kdm_subject->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&KDMEmailPage::kdm_subject_changed, this));
_kdm_from->SetValue (std_to_wx (config->kdm_from ()));
_kdm_from->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&KDMEmailPage::kdm_from_changed, this));
_kdm_cc->SetValue (std_to_wx (config->kdm_cc ()));
@@ -718,6 +724,11 @@ private:
{
Config::instance()->set_mail_password (wx_to_std (_mail_password->GetValue ()));
}
+
+ void kdm_subject_changed ()
+ {
+ Config::instance()->set_kdm_subject (wx_to_std (_kdm_subject->GetValue ()));
+ }
void kdm_from_changed ()
{
@@ -743,6 +754,7 @@ private:
wxTextCtrl* _mail_server;
wxTextCtrl* _mail_user;
wxTextCtrl* _mail_password;
+ wxTextCtrl* _kdm_subject;
wxTextCtrl* _kdm_from;
wxTextCtrl* _kdm_cc;
wxTextCtrl* _kdm_email;
diff --git a/src/wx/po/de_DE.po b/src/wx/po/de_DE.po
index eb1b8db3f..0a7e77f5e 100644
--- a/src/wx/po/de_DE.po
+++ b/src/wx/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-13 03:08+0100\n"
"Last-Translator: Carsten Kurz\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,11 +117,11 @@ msgstr "Ordner hinzufügen..."
msgid "Add..."
msgstr "Hinzufügen..."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
msgid "Allow any DCP frame rate"
msgstr "Auch Nicht-Standard-Bildraten erlauben (Vorsicht!)"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr "Grafik von"
@@ -182,7 +182,7 @@ msgstr "Aber ich nutze gegenwärtig Faderstellung"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
msgid "CC address"
msgstr "CC: Adresse"
@@ -211,7 +211,7 @@ msgid "Certificate"
msgstr "Zertifikat"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
msgid "Certificate downloaded"
msgstr "Zertifikat heruntergeladen"
@@ -239,11 +239,11 @@ msgstr "Beim Start auf Updates überprüfen."
msgid "Choose a file"
msgstr "Datei auswählen"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Eine oder mehrere Dateien auswählen"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Ordner wählen"
@@ -260,7 +260,7 @@ msgstr "Farbumwandlungen"
msgid "Colour conversion"
msgstr "Farbumwandlung"
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
msgid "Config|Timing"
msgstr "Timing"
@@ -409,7 +409,7 @@ msgstr "Dolby"
msgid "Doremi"
msgstr "Doremi"
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr "Doremi Seriennummern müssen aus 6 Zahlen bestehen!"
@@ -426,7 +426,7 @@ msgid "Download certificate"
msgstr "Lade Zertifikat"
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr "Zertifikat wird heruntergeladen..."
@@ -456,7 +456,7 @@ msgstr "Encoding Server"
msgid "Encrypted"
msgstr "Verschlüsselt (->für KDM Erstellung)"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr "Fehler"
@@ -507,7 +507,7 @@ msgstr ""
msgid "From"
msgstr "Von"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
msgid "From address"
msgstr "Absenderadresse"
@@ -515,7 +515,7 @@ msgstr "Absenderadresse"
msgid "Full"
msgstr "Voll"
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr "Gesamtlänge"
@@ -536,7 +536,7 @@ msgstr "Abschwächung des Kanals %d im DCP Kanal %d"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr "Allgemein"
@@ -596,6 +596,10 @@ msgstr "Verbinden"
msgid "KDM Email"
msgstr "KDM Email"
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
#: src/wx/kdm_dialog.cc:99
msgid "KDM|Timing"
msgstr "Zeitfenster"
@@ -628,7 +632,7 @@ msgstr "Linearisiere Eingangs Gamma für niedrige Werte"
msgid "Load from file..."
msgstr "Lade aus Datei..."
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr "Log"
@@ -636,7 +640,7 @@ msgstr "Log"
msgid "Ls"
msgstr "SL"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "FEHLT:"
@@ -660,11 +664,11 @@ msgstr "Zielhelligkeit (z.B. '4fL' für 3D)"
msgid "Matrix"
msgstr "Matrix"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
msgid "Maximum JPEG2000 bandwidth"
msgstr "Maximale JPEG2000 Datenrate (Vorsicht!)"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr "Mbit/s"
@@ -745,7 +749,7 @@ msgstr "Spitze"
msgid "Play"
msgstr "Abspielen"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr "Abspiellänge"
@@ -753,7 +757,7 @@ msgstr "Abspiellänge"
msgid "Please wait; audio is being analysed..."
msgstr "Bitte warten; Ton wird analysiert..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Startposition"
@@ -806,7 +810,7 @@ msgstr "Inhalt wiederholen"
msgid "Repeat..."
msgstr "Wiederhole..."
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr "Auf Standardtext zurücksetzen"
@@ -855,7 +859,7 @@ msgstr "Skalierverfahren"
msgid "Screens"
msgstr "Saal"
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
msgid "Select CPL XML file"
msgstr "CPL XML Datei auswählen"
@@ -863,7 +867,7 @@ msgstr "CPL XML Datei auswählen"
msgid "Select Certificate File"
msgstr "Zertifikat Datei auswählen"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Per Email senden"
@@ -879,7 +883,7 @@ msgstr "Server"
msgid "Server manufacturer"
msgstr "Server Hersteller"
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr "Server Seriennummer"
@@ -887,7 +891,7 @@ msgstr "Server Seriennummer"
msgid "Servers"
msgstr "Encoding Server"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr "Setzen"
@@ -927,6 +931,10 @@ msgstr "Spur"
msgid "Studio (e.g. TCF)"
msgstr "Studio (z.B. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Untertitel Sprache (z.B. EN)"
@@ -935,7 +943,7 @@ msgstr "Untertitel Sprache (z.B. EN)"
msgid "Subtitles"
msgstr "Untertitel"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr "Unterstützt durch"
@@ -959,7 +967,7 @@ msgstr "Gebiet (z.B. UK)"
msgid "Test version "
msgstr "Test Version"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
msgid "Tested by"
msgstr "Getestet von"
@@ -981,7 +989,7 @@ msgstr "Keine Warnungen: Alles sieht gut aus!"
msgid "There is not enough free memory to do that."
msgstr "Für diese Operation ist nicht genug freier Speicher verfügbar."
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr "Dies ist keine gültige CPL Datei"
@@ -1005,7 +1013,7 @@ msgstr "Zeitleiste"
msgid "Timeline..."
msgstr "Zeitleiste..."
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
msgid "Timing|Timing"
msgstr "Trimmen"
@@ -1013,15 +1021,15 @@ msgstr "Trimmen"
msgid "Top crop"
msgstr "Oben beschneiden"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr "Übersetzt von"
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Schnitt vom Ende"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Schnitt vom Anfang"
@@ -1077,11 +1085,11 @@ msgstr "VI"
msgid "Video"
msgstr "Bild"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "Bildwiederholrate"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr "Warnungen"
@@ -1089,7 +1097,7 @@ msgstr "Warnungen"
msgid "With Subtitles"
msgstr "Mit Untertitelung"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr "Speichern nach"
diff --git a/src/wx/po/es_ES.po b/src/wx/po/es_ES.po
index d84e5355c..60b7dd3dd 100644
--- a/src/wx/po/es_ES.po
+++ b/src/wx/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libdcpomatic-wx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-04-20 12:06-0500\n"
"Last-Translator: Manuel AC <manuel.acevedo@civantos.>\n"
"Language-Team: Manuel AC <manuel.acevedo@civantos.com>\n"
@@ -118,12 +118,12 @@ msgstr "Añadir carpeta..."
msgid "Add..."
msgstr "Añadir..."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
#, fuzzy
msgid "Allow any DCP frame rate"
msgstr "Velocidad de imagen"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr "Grafismo de"
@@ -181,7 +181,7 @@ msgstr "pero tengo que usar el fader a"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
#, fuzzy
msgid "CC address"
msgstr "Dirección IP"
@@ -212,7 +212,7 @@ msgid "Certificate"
msgstr "Certificado"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
msgid "Certificate downloaded"
msgstr "Certificado descargado"
@@ -240,11 +240,11 @@ msgstr "Buscar actualizaciones al iniciar"
msgid "Choose a file"
msgstr "Elige un fichero"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Elegir un fichero o ficheros"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Elige una carpeta"
@@ -261,7 +261,7 @@ msgstr "Conversiones de color"
msgid "Colour conversion"
msgstr "Conversión de color"
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
#, fuzzy
msgid "Config|Timing"
msgstr "Tiempo"
@@ -413,7 +413,7 @@ msgstr "Dolby"
msgid "Doremi"
msgstr "Doremi"
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr "Los números de serie de Doremi deben tener 6 cifras"
@@ -430,7 +430,7 @@ msgid "Download certificate"
msgstr "Descargar certificado"
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr "Descargando certificado"
@@ -460,7 +460,7 @@ msgstr "Servidores de codificación"
msgid "Encrypted"
msgstr "Encriptado"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr ""
@@ -510,7 +510,7 @@ msgstr ""
msgid "From"
msgstr "De"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
#, fuzzy
msgid "From address"
msgstr "Dirección IP"
@@ -519,7 +519,7 @@ msgstr "Dirección IP"
msgid "Full"
msgstr "Completo"
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr "Duración completa"
@@ -540,7 +540,7 @@ msgstr "Ganancia del canal %d en el canal %d del DCP"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr ""
@@ -601,6 +601,10 @@ msgstr "Unir"
msgid "KDM Email"
msgstr "Email KDM"
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
#: src/wx/kdm_dialog.cc:99
#, fuzzy
msgid "KDM|Timing"
@@ -634,7 +638,7 @@ msgstr "Hacer lineal la curva de gamma de entrada para valores bajos"
msgid "Load from file..."
msgstr "Cargar de fichero..."
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr ""
@@ -642,7 +646,7 @@ msgstr ""
msgid "Ls"
msgstr "Ls"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "FALTA:"
@@ -666,11 +670,11 @@ msgstr ""
msgid "Matrix"
msgstr "Matriz"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
msgid "Maximum JPEG2000 bandwidth"
msgstr "Ancho de banda JPEG2000 máximo"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr "Mbit/s"
@@ -752,7 +756,7 @@ msgstr "Pico"
msgid "Play"
msgstr "Reproducir"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr "Duración"
@@ -760,7 +764,7 @@ msgstr "Duración"
msgid "Please wait; audio is being analysed..."
msgstr "Por favor espere, el audio está siendo analizado..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Posición"
@@ -813,7 +817,7 @@ msgstr "Repetir contenido"
msgid "Repeat..."
msgstr "Repetir..."
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr ""
@@ -864,7 +868,7 @@ msgstr "Escalador"
msgid "Screens"
msgstr "Añadir pantalla..."
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
#, fuzzy
msgid "Select CPL XML file"
msgstr "Seleccionar fichero de audio"
@@ -873,7 +877,7 @@ msgstr "Seleccionar fichero de audio"
msgid "Select Certificate File"
msgstr "Seleccionar fichero de certificado"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Enviar por email"
@@ -890,7 +894,7 @@ msgstr "Servidor"
msgid "Server manufacturer"
msgstr "Número de serie del servidor"
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr "Número de serie del servidor"
@@ -898,7 +902,7 @@ msgstr "Número de serie del servidor"
msgid "Servers"
msgstr "Servidores"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr "Seleccionar"
@@ -939,6 +943,10 @@ msgstr "Flujo"
msgid "Studio (e.g. TCF)"
msgstr "Estudio (ej. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Idioma del subtítulo (ej. EN)"
@@ -947,7 +955,7 @@ msgstr "Idioma del subtítulo (ej. EN)"
msgid "Subtitles"
msgstr "Subtítulos"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr "Soportado por"
@@ -972,7 +980,7 @@ msgstr "Territorio (ej. ES)"
msgid "Test version "
msgstr "Versión en prueba"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
msgid "Tested by"
msgstr "Comprobado por"
@@ -993,7 +1001,7 @@ msgstr "No hay recomendaciones: ¡todo parece bien!"
msgid "There is not enough free memory to do that."
msgstr "No hay suficiente memoria para hacer eso."
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr ""
@@ -1017,7 +1025,7 @@ msgstr "Línea de tiempo"
msgid "Timeline..."
msgstr "Linea de tiempo..."
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
#, fuzzy
msgid "Timing|Timing"
msgstr "Tiempo"
@@ -1026,15 +1034,15 @@ msgstr "Tiempo"
msgid "Top crop"
msgstr "Recortar arriba"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr "Traducido por"
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Recortar del final"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Recortar del inicio"
@@ -1091,11 +1099,11 @@ msgstr "VI"
msgid "Video"
msgstr "Vídeo"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "Velocidad de imagen"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr ""
@@ -1103,7 +1111,7 @@ msgstr ""
msgid "With Subtitles"
msgstr "Con subtítulos"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr "Escribe a"
diff --git a/src/wx/po/fr_FR.po b/src/wx/po/fr_FR.po
index 8a784a0a6..924004eb1 100644
--- a/src/wx/po/fr_FR.po
+++ b/src/wx/po/fr_FR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic FRENCH\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-07-14 11:27+0100\n"
"Last-Translator: Grégoire AUSINA <gregoire@gisele-productions.eu>\n"
"Language-Team: \n"
@@ -117,11 +117,11 @@ msgstr "Ajout dossier..."
msgid "Add..."
msgstr "Ajouter..."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
msgid "Allow any DCP frame rate"
msgstr "Autoriser toutes cadences"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr "Thème par"
@@ -182,7 +182,7 @@ msgstr "Mais je dois mixer"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
msgid "CC address"
msgstr "Adresse CC"
@@ -211,7 +211,7 @@ msgid "Certificate"
msgstr "Certificat"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
msgid "Certificate downloaded"
msgstr "Certificat téléchargé"
@@ -239,11 +239,11 @@ msgstr "Recherche de mises à jour au démarrage."
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Choisissez un ou plusieurs fichiers"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Choisissez un dossier"
@@ -260,7 +260,7 @@ msgstr "Conversions Couleurs"
msgid "Colour conversion"
msgstr "Espace Couleurs"
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
msgid "Config|Timing"
msgstr "Configuration|Temps"
@@ -409,7 +409,7 @@ msgstr "Dolby"
msgid "Doremi"
msgstr "Doremi"
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr "Les numéros de série Doremi doivent être composés de 6 chiffres"
@@ -426,7 +426,7 @@ msgid "Download certificate"
msgstr "Téléchargement Certificat"
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr "Téléchargement Certificat en cours"
@@ -456,7 +456,7 @@ msgstr "Serveurs Encodage"
msgid "Encrypted"
msgstr "Crypté"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr "Erreurs"
@@ -505,7 +505,7 @@ msgstr "Création de DCP libre et gratuit depuis presque tout."
msgid "From"
msgstr "À partir du"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
msgid "From address"
msgstr "Adresse source"
@@ -513,7 +513,7 @@ msgstr "Adresse source"
msgid "Full"
msgstr "Plein"
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr "Durée totale"
@@ -534,7 +534,7 @@ msgstr "Gain pour le canal audio %d dans le canal du DCP %d"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr "Général"
@@ -594,6 +594,10 @@ msgstr "Ajouter"
msgid "KDM Email"
msgstr "e-mail KDM"
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
#: src/wx/kdm_dialog.cc:99
msgid "KDM|Timing"
msgstr "KDM|Temps"
@@ -626,7 +630,7 @@ msgstr "Courbe gamma d'entrée linéaire pour les bas niveaux"
msgid "Load from file..."
msgstr "Chargement depuis fichier..."
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr "Rapport"
@@ -634,7 +638,7 @@ msgstr "Rapport"
msgid "Ls"
msgstr "Sr.G"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "MANQUANT:"
@@ -658,11 +662,11 @@ msgstr "Luminance masterisée (ex: 4fl)"
msgid "Matrix"
msgstr "Matrice"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
msgid "Maximum JPEG2000 bandwidth"
msgstr "Qualité JPEG2000 Maxi"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr "Mbit/s"
@@ -743,7 +747,7 @@ msgstr "Crête"
msgid "Play"
msgstr "Lecture"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr "Durée de lecture"
@@ -751,7 +755,7 @@ msgstr "Durée de lecture"
msgid "Please wait; audio is being analysed..."
msgstr "Merci de patienter ; analyse de la piste son..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Position"
@@ -804,7 +808,7 @@ msgstr "Répéter le contenu"
msgid "Repeat..."
msgstr "Répéter..."
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr "texte par défaut"
@@ -853,7 +857,7 @@ msgstr "Mise à l'échelle"
msgid "Screens"
msgstr "Ecrans"
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
msgid "Select CPL XML file"
msgstr "Sélectionner le fichier CPL.xml"
@@ -861,7 +865,7 @@ msgstr "Sélectionner le fichier CPL.xml"
msgid "Select Certificate File"
msgstr "Sélectionner le certificat"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Envoyé par e-mail"
@@ -877,7 +881,7 @@ msgstr "Serveur"
msgid "Server manufacturer"
msgstr "Constructeur du serveur"
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr "Numéro de Série du Serveur"
@@ -885,7 +889,7 @@ msgstr "Numéro de Série du Serveur"
msgid "Servers"
msgstr "Serveurs"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr "Sélection"
@@ -925,6 +929,10 @@ msgstr "Flux"
msgid "Studio (e.g. TCF)"
msgstr "Studio (ex. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Langue de sous-titres (ex. FR)"
@@ -933,7 +941,7 @@ msgstr "Langue de sous-titres (ex. FR)"
msgid "Subtitles"
msgstr "Sous-titres"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr "Soutenu par"
@@ -957,7 +965,7 @@ msgstr "Territoire (ex. FR)"
msgid "Test version "
msgstr "Version test"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
msgid "Tested by"
msgstr "Testé par"
@@ -979,7 +987,7 @@ msgstr "Il n'y a aucun avertissement: tout semble correct!"
msgid "There is not enough free memory to do that."
msgstr "Il n'y a pas assez de mémoire pour faire cela."
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr "Ceci n'est pas un fichier CPL valide"
@@ -1003,7 +1011,7 @@ msgstr "Timeline"
msgid "Timeline..."
msgstr "Timeline..."
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
msgid "Timing|Timing"
msgstr "Temps|Temps"
@@ -1011,15 +1019,15 @@ msgstr "Temps|Temps"
msgid "Top crop"
msgstr "Rogner en haut"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr "Traduit par"
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Rogner par la fin"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Rogner au début"
@@ -1075,11 +1083,11 @@ msgstr "VI"
msgid "Video"
msgstr "Vidéo"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "Cadence vidéo"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr "Avertissements"
@@ -1087,7 +1095,7 @@ msgstr "Avertissements"
msgid "With Subtitles"
msgstr "Avec sous-titres"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr "Ecrire à"
diff --git a/src/wx/po/it_IT.po b/src/wx/po/it_IT.po
index 7789601a7..eea54c9a6 100644
--- a/src/wx/po/it_IT.po
+++ b/src/wx/po/it_IT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: IT VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-02-03 10:46+0100\n"
"Last-Translator: William Fanelli <william.f@impronte.com>\n"
"Language-Team: \n"
@@ -116,12 +116,12 @@ msgstr "Aggiungi cartella"
msgid "Add..."
msgstr "Aggiungi..."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
#, fuzzy
msgid "Allow any DCP frame rate"
msgstr "Frequenza fotogrammi video"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr ""
@@ -182,7 +182,7 @@ msgstr "Ma dovrò riprodurre con il fader a"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
#, fuzzy
msgid "CC address"
msgstr "Indirizzo IP"
@@ -213,7 +213,7 @@ msgid "Certificate"
msgstr "Seleziona il file del Certificato"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
#, fuzzy
msgid "Certificate downloaded"
msgstr "Seleziona il file del Certificato"
@@ -242,11 +242,11 @@ msgstr "Controlla gli aggiornamentio alla partenza"
msgid "Choose a file"
msgstr "Scegli un file"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Scegli uno o più file"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Scegli una cartella"
@@ -265,7 +265,7 @@ msgstr "Conversioni colore"
msgid "Colour conversion"
msgstr "Conversione colore"
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
msgid "Config|Timing"
msgstr ""
@@ -419,7 +419,7 @@ msgstr ""
msgid "Doremi"
msgstr ""
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr ""
@@ -436,7 +436,7 @@ msgid "Download certificate"
msgstr ""
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr ""
@@ -467,7 +467,7 @@ msgstr "Servers di codifica"
msgid "Encrypted"
msgstr "Criptato"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr ""
@@ -517,7 +517,7 @@ msgstr ""
msgid "From"
msgstr "Da"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
#, fuzzy
msgid "From address"
msgstr "Indirizzo IP"
@@ -526,7 +526,7 @@ msgstr "Indirizzo IP"
msgid "Full"
msgstr ""
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr ""
@@ -547,7 +547,7 @@ msgstr "Guadagno per il canale sorgente %d nel canale DCP %d"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr ""
@@ -609,6 +609,10 @@ msgstr ""
msgid "KDM Email"
msgstr ""
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
#: src/wx/kdm_dialog.cc:99
msgid "KDM|Timing"
msgstr ""
@@ -641,7 +645,7 @@ msgstr "Linearizza la curva del gamma in ingresso per piccoli valori"
msgid "Load from file..."
msgstr ""
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr ""
@@ -649,7 +653,7 @@ msgstr ""
msgid "Ls"
msgstr "Ls"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "MANCANTE:"
@@ -675,12 +679,12 @@ msgstr ""
msgid "Matrix"
msgstr "Matrice"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
#, fuzzy
msgid "Maximum JPEG2000 bandwidth"
msgstr "Banda passante JPEG2000"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr ""
@@ -763,7 +767,7 @@ msgstr "Picco"
msgid "Play"
msgstr "Riproduci"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr ""
@@ -771,7 +775,7 @@ msgstr ""
msgid "Please wait; audio is being analysed..."
msgstr "Attendere prego; sto analizzando l'audio..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Posizione"
@@ -824,7 +828,7 @@ msgstr "Ripeti il contenuto"
msgid "Repeat..."
msgstr ""
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr ""
@@ -875,7 +879,7 @@ msgstr "Scaler"
msgid "Screens"
msgstr "Aggiungi Schermo"
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
#, fuzzy
msgid "Select CPL XML file"
msgstr "Seleziona file audio"
@@ -884,7 +888,7 @@ msgstr "Seleziona file audio"
msgid "Select Certificate File"
msgstr "Seleziona il file del Certificato"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Manda per email"
@@ -900,7 +904,7 @@ msgstr "Server"
msgid "Server manufacturer"
msgstr ""
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr ""
@@ -909,7 +913,7 @@ msgstr ""
msgid "Servers"
msgstr "Server"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr ""
@@ -950,6 +954,10 @@ msgstr "Traccia"
msgid "Studio (e.g. TCF)"
msgstr "Studio (es. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Lingua dei Sottotitoli (es. FR)"
@@ -958,7 +966,7 @@ msgstr "Lingua dei Sottotitoli (es. FR)"
msgid "Subtitles"
msgstr "Sottotitoli"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr ""
@@ -984,7 +992,7 @@ msgstr "Nazione (es. UK)"
msgid "Test version "
msgstr "Versione di test"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
msgid "Tested by"
msgstr ""
@@ -1005,7 +1013,7 @@ msgstr "Non ci sono suggerimenti: sembra tutto a posto!"
msgid "There is not enough free memory to do that."
msgstr ""
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr ""
@@ -1029,7 +1037,7 @@ msgstr "Timeline"
msgid "Timeline..."
msgstr ""
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
msgid "Timing|Timing"
msgstr ""
@@ -1037,15 +1045,15 @@ msgstr ""
msgid "Top crop"
msgstr "Taglio in alto"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr ""
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Taglia dalla fine"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Taglia dall'inizio"
@@ -1104,11 +1112,11 @@ msgstr "VI"
msgid "Video"
msgstr "Video"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "Frequenza fotogrammi video"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr ""
@@ -1116,7 +1124,7 @@ msgstr ""
msgid "With Subtitles"
msgstr "Con sottotitoli"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr ""
diff --git a/src/wx/po/nl_NL.po b/src/wx/po/nl_NL.po
index b33e4a748..0b9eb547d 100644
--- a/src/wx/po/nl_NL.po
+++ b/src/wx/po/nl_NL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-03-30 19:40+0100\n"
"Last-Translator: Theo Kooijmans <tkooijmans@universaldv.nl>\n"
"Language-Team: UniversalDV <TKooijmans@universaldv.nl>\n"
@@ -119,12 +119,12 @@ msgstr "Voeg map toe..."
msgid "Add..."
msgstr "Toevoegen.."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
#, fuzzy
msgid "Allow any DCP frame rate"
msgstr "Video frame rate"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr "Artwork door"
@@ -186,7 +186,7 @@ msgstr "Maak ik gebruik een fader"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
#, fuzzy
msgid "CC address"
msgstr "IP adres"
@@ -217,7 +217,7 @@ msgid "Certificate"
msgstr "certificaat"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
#, fuzzy
msgid "Certificate downloaded"
msgstr "certificaat"
@@ -246,11 +246,11 @@ msgstr "Selecteer voor updates controle bij startup"
msgid "Choose a file"
msgstr "Kies een bestand"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Kies bestand(en)"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Kies map"
@@ -267,7 +267,7 @@ msgstr "Colour Conversions"
msgid "Colour conversion"
msgstr "Colour conversion"
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
#, fuzzy
msgid "Config|Timing"
msgstr "Timing"
@@ -419,7 +419,7 @@ msgstr "Dolby"
msgid "Doremi"
msgstr "Doremi"
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr "Doremi serial numbers moeten bestaan uit 6 digits"
@@ -436,7 +436,7 @@ msgid "Download certificate"
msgstr "Download certificaat"
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr "Downloading certificaat"
@@ -466,7 +466,7 @@ msgstr "Encoding Servers"
msgid "Encrypted"
msgstr "Encrypted"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr ""
@@ -515,7 +515,7 @@ msgstr "Gratis, open-source DCP samensteller voor bijna alles."
msgid "From"
msgstr "Van"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
#, fuzzy
msgid "From address"
msgstr "IP adres"
@@ -524,7 +524,7 @@ msgstr "IP adres"
msgid "Full"
msgstr "Volledig"
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr "Volledige lengte"
@@ -545,7 +545,7 @@ msgstr "Gain voor content kanaal %d in DCP kanaal %d"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr ""
@@ -606,6 +606,10 @@ msgstr "Samenvoegen"
msgid "KDM Email"
msgstr "KDM Email"
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
#: src/wx/kdm_dialog.cc:99
#, fuzzy
msgid "KDM|Timing"
@@ -639,7 +643,7 @@ msgstr "Linearise input gamma curve for low values"
msgid "Load from file..."
msgstr "Laad van bestand..."
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr ""
@@ -647,7 +651,7 @@ msgstr ""
msgid "Ls"
msgstr "Ls"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "ONTBREEKT:"
@@ -671,11 +675,11 @@ msgstr ""
msgid "Matrix"
msgstr "Matrix"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
msgid "Maximum JPEG2000 bandwidth"
msgstr "Maximum JPEG2000 bandbreedte"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr "Mbit/s"
@@ -759,7 +763,7 @@ msgstr "Piek"
msgid "Play"
msgstr "Afspelen"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr "Afspeellengte"
@@ -767,7 +771,7 @@ msgstr "Afspeellengte"
msgid "Please wait; audio is being analysed..."
msgstr "Een ogenblik geduld, het audio wordt geanalyseerd..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Positie"
@@ -820,7 +824,7 @@ msgstr "Herhaal content"
msgid "Repeat..."
msgstr "Herhaal..."
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr ""
@@ -871,7 +875,7 @@ msgstr "Schaler"
msgid "Screens"
msgstr "Voeg Scherm toe..."
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
msgid "Select CPL XML file"
msgstr ""
@@ -879,7 +883,7 @@ msgstr ""
msgid "Select Certificate File"
msgstr "Selecteer Certificaat bestand"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Stuur per Email"
@@ -896,7 +900,7 @@ msgstr "Server"
msgid "Server manufacturer"
msgstr "Server serie nummer"
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr "Server serie nummer"
@@ -904,7 +908,7 @@ msgstr "Server serie nummer"
msgid "Servers"
msgstr "Servers"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr "Instellen"
@@ -945,6 +949,10 @@ msgstr "Audio Stream"
msgid "Studio (e.g. TCF)"
msgstr "Studio (e.g. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Ondertitel Taal (vb NL)"
@@ -953,7 +961,7 @@ msgstr "Ondertitel Taal (vb NL)"
msgid "Subtitles"
msgstr "Ondertitels"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr "Ondersteund door"
@@ -978,7 +986,7 @@ msgstr "Grondgebied (vb NL)"
msgid "Test version "
msgstr "Test Versie"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
msgid "Tested by"
msgstr "Getest door"
@@ -1000,7 +1008,7 @@ msgstr "Er zijn geen tips, alles lijkt goed!"
msgid "There is not enough free memory to do that."
msgstr "Er is niet genoeg geheugen om dat te doen."
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr ""
@@ -1024,7 +1032,7 @@ msgstr "Tijdlijn"
msgid "Timeline..."
msgstr "Tijdlijn..."
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
#, fuzzy
msgid "Timing|Timing"
msgstr "Timing"
@@ -1033,15 +1041,15 @@ msgstr "Timing"
msgid "Top crop"
msgstr "Top crop"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr "Vertaald door"
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Trim vanaf einde"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Trim vanaf begin"
@@ -1098,11 +1106,11 @@ msgstr "VI"
msgid "Video"
msgstr "Video"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "Video frame rate"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr ""
@@ -1110,7 +1118,7 @@ msgstr ""
msgid "With Subtitles"
msgstr "Met ondertiteling"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr "Schrijf naar"
diff --git a/src/wx/po/sv_SE.po b/src/wx/po/sv_SE.po
index 657fe847a..0ee75e0b0 100644
--- a/src/wx/po/sv_SE.po
+++ b/src/wx/po/sv_SE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-24 14:53+0100\n"
+"POT-Creation-Date: 2014-07-16 13:56+0100\n"
"PO-Revision-Date: 2014-01-19 09:14+0100\n"
"Last-Translator: Adam Klotblixt <adam.klotblixt@gmail.com>\n"
"Language-Team: \n"
@@ -118,12 +118,12 @@ msgstr "Lägg till folder..."
msgid "Add..."
msgstr "Lägg till..."
-#: src/wx/config_dialog.cc:780
+#: src/wx/config_dialog.cc:792
#, fuzzy
msgid "Allow any DCP frame rate"
msgstr "bildhastighet"
-#: src/wx/about_dialog.cc:109
+#: src/wx/about_dialog.cc:110
msgid "Artwork by"
msgstr ""
@@ -185,7 +185,7 @@ msgstr "Men jag måste använda mixervolym"
msgid "C"
msgstr "C"
-#: src/wx/config_dialog.cc:677
+#: src/wx/config_dialog.cc:681
#, fuzzy
msgid "CC address"
msgstr "IP-adress"
@@ -217,7 +217,7 @@ msgid "Certificate"
msgstr "Välj certifikatfil"
#: src/wx/dolby_certificate_dialog.cc:157
-#: src/wx/doremi_certificate_dialog.cc:67
+#: src/wx/doremi_certificate_dialog.cc:92
#, fuzzy
msgid "Certificate downloaded"
msgstr "Välj certifikatfil"
@@ -246,11 +246,11 @@ msgstr "Sök efter uppdateringar vid start"
msgid "Choose a file"
msgstr "Välj en fil"
-#: src/wx/film_editor.cc:788
+#: src/wx/film_editor.cc:792
msgid "Choose a file or files"
msgstr "Välj en fil eller filer"
-#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:811
+#: src/wx/content_menu.cc:175 src/wx/film_editor.cc:815
msgid "Choose a folder"
msgstr "Välj en folder"
@@ -270,7 +270,7 @@ msgid "Colour conversion"
msgstr "Färgkonvertering"
# Svengelska
-#: src/wx/config_dialog.cc:793
+#: src/wx/config_dialog.cc:805
#, fuzzy
msgid "Config|Timing"
msgstr "Tajming"
@@ -425,7 +425,7 @@ msgstr ""
msgid "Doremi"
msgstr ""
-#: src/wx/doremi_certificate_dialog.cc:48
+#: src/wx/doremi_certificate_dialog.cc:49
msgid "Doremi serial numbers must have 6 digits"
msgstr ""
@@ -443,7 +443,7 @@ msgid "Download certificate"
msgstr ""
#: src/wx/dolby_certificate_dialog.cc:132
-#: src/wx/doremi_certificate_dialog.cc:52
+#: src/wx/doremi_certificate_dialog.cc:53
msgid "Downloading certificate"
msgstr ""
@@ -473,7 +473,7 @@ msgstr "Kodningsservrar"
msgid "Encrypted"
msgstr "Krypterad"
-#: src/wx/config_dialog.cc:790
+#: src/wx/config_dialog.cc:802
msgid "Errors"
msgstr ""
@@ -524,7 +524,7 @@ msgstr "Fri, öppen-källkods DCP-generering från nästan vad som helst."
msgid "From"
msgstr "Avsändare"
-#: src/wx/config_dialog.cc:673
+#: src/wx/config_dialog.cc:677
#, fuzzy
msgid "From address"
msgstr "IP-adress"
@@ -533,7 +533,7 @@ msgstr "IP-adress"
msgid "Full"
msgstr "Full"
-#: src/wx/timing_panel.cc:43
+#: src/wx/timing_panel.cc:44
msgid "Full length"
msgstr "Full längd"
@@ -554,7 +554,7 @@ msgstr "Förstärkning för innehållskanal %d i DCP-kanal %d"
msgid "Gb"
msgstr "Gb"
-#: src/wx/config_dialog.cc:785
+#: src/wx/config_dialog.cc:797
msgid "General"
msgstr ""
@@ -616,6 +616,10 @@ msgstr "Anslut"
msgid "KDM Email"
msgstr "KDM mejl"
+#: src/wx/kdm_dialog.cc:162
+msgid "KDM type"
+msgstr ""
+
# Svengelska
#: src/wx/kdm_dialog.cc:99
#, fuzzy
@@ -651,7 +655,7 @@ msgstr "Linjärisera indatas gammakurva för låga värden"
msgid "Load from file..."
msgstr ""
-#: src/wx/config_dialog.cc:784
+#: src/wx/config_dialog.cc:796
msgid "Log"
msgstr ""
@@ -659,7 +663,7 @@ msgstr ""
msgid "Ls"
msgstr "Vs"
-#: src/wx/film_editor.cc:762
+#: src/wx/film_editor.cc:766
msgid "MISSING: "
msgstr "SAKNAS:"
@@ -683,12 +687,12 @@ msgstr ""
msgid "Matrix"
msgstr "Matris"
-#: src/wx/config_dialog.cc:772
+#: src/wx/config_dialog.cc:784
#, fuzzy
msgid "Maximum JPEG2000 bandwidth"
msgstr "JPEG2000-bandbredd"
-#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:776
+#: src/wx/config_dialog.cc:283 src/wx/config_dialog.cc:788
#: src/wx/film_editor.cc:185
msgid "Mbit/s"
msgstr ""
@@ -773,7 +777,7 @@ msgstr "Topp"
msgid "Play"
msgstr "Spela"
-#: src/wx/timing_panel.cc:52
+#: src/wx/timing_panel.cc:53
msgid "Play length"
msgstr "Spellängd"
@@ -781,7 +785,7 @@ msgstr "Spellängd"
msgid "Please wait; audio is being analysed..."
msgstr "Vänligen vänta; audio analyseras..."
-#: src/wx/timing_panel.cc:40
+#: src/wx/timing_panel.cc:41
msgid "Position"
msgstr "Position"
@@ -835,7 +839,7 @@ msgstr "Repetera Innehåll"
msgid "Repeat..."
msgstr "Upprepa..."
-#: src/wx/config_dialog.cc:684
+#: src/wx/config_dialog.cc:688
msgid "Reset to default text"
msgstr ""
@@ -886,7 +890,7 @@ msgstr "Omskalare"
msgid "Screens"
msgstr "Lägg till Skärm..."
-#: src/wx/kdm_dialog.cc:515
+#: src/wx/kdm_dialog.cc:531
#, fuzzy
msgid "Select CPL XML file"
msgstr "Välj audiofil"
@@ -895,7 +899,7 @@ msgstr "Välj audiofil"
msgid "Select Certificate File"
msgstr "Välj certifikatfil"
-#: src/wx/kdm_dialog.cc:175
+#: src/wx/kdm_dialog.cc:185
msgid "Send by email"
msgstr "Skicka med mejl"
@@ -911,7 +915,7 @@ msgstr "Server"
msgid "Server manufacturer"
msgstr ""
-#: src/wx/doremi_certificate_dialog.cc:35
+#: src/wx/doremi_certificate_dialog.cc:36
msgid "Server serial number"
msgstr ""
@@ -920,7 +924,7 @@ msgstr ""
msgid "Servers"
msgstr "Server"
-#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:61
+#: src/wx/timecode.cc:65 src/wx/timing_panel.cc:62
msgid "Set"
msgstr "Sätt"
@@ -962,6 +966,10 @@ msgstr "Audioström"
msgid "Studio (e.g. TCF)"
msgstr "Studio (ex. TCF)"
+#: src/wx/config_dialog.cc:673
+msgid "Subject"
+msgstr ""
+
#: src/wx/isdcf_metadata_dialog.cc:38
msgid "Subtitle Language (e.g. FR)"
msgstr "Undertextspråk (ex. SV)"
@@ -970,7 +978,7 @@ msgstr "Undertextspråk (ex. SV)"
msgid "Subtitles"
msgstr "Undertexter"
-#: src/wx/about_dialog.cc:153
+#: src/wx/about_dialog.cc:154
msgid "Supported by"
msgstr "Stöd från"
@@ -995,7 +1003,7 @@ msgstr "Område (ex. SV)"
msgid "Test version "
msgstr "Testversion"
-#: src/wx/about_dialog.cc:198
+#: src/wx/about_dialog.cc:199
#, fuzzy
msgid "Tested by"
msgstr "Översatt av"
@@ -1017,7 +1025,7 @@ msgstr "Det finns inga råd: allt verkar bra!"
msgid "There is not enough free memory to do that."
msgstr ""
-#: src/wx/kdm_dialog.cc:537
+#: src/wx/kdm_dialog.cc:553
msgid "This is not a valid CPL file"
msgstr ""
@@ -1042,7 +1050,7 @@ msgid "Timeline..."
msgstr "Tidslinje..."
# Svengelska
-#: src/wx/timing_panel.cc:35
+#: src/wx/timing_panel.cc:36
#, fuzzy
msgid "Timing|Timing"
msgstr "Tajming"
@@ -1051,15 +1059,15 @@ msgstr "Tajming"
msgid "Top crop"
msgstr "Övre beskärning"
-#: src/wx/about_dialog.cc:105
+#: src/wx/about_dialog.cc:106
msgid "Translated by"
msgstr "Översatt av"
-#: src/wx/timing_panel.cc:49
+#: src/wx/timing_panel.cc:50
msgid "Trim from end"
msgstr "Trimma från slut"
-#: src/wx/timing_panel.cc:46
+#: src/wx/timing_panel.cc:47
msgid "Trim from start"
msgstr "Trimma från start"
@@ -1119,11 +1127,11 @@ msgstr "VI"
msgid "Video"
msgstr "Video"
-#: src/wx/timing_panel.cc:57
+#: src/wx/timing_panel.cc:58
msgid "Video frame rate"
msgstr "bildhastighet"
-#: src/wx/config_dialog.cc:787
+#: src/wx/config_dialog.cc:799
msgid "Warnings"
msgstr ""
@@ -1131,7 +1139,7 @@ msgstr ""
msgid "With Subtitles"
msgstr "Med Undertexter"
-#: src/wx/kdm_dialog.cc:162
+#: src/wx/kdm_dialog.cc:172
msgid "Write to"
msgstr "Skriv till"