diff --git a/plugins_tools/eid-viewer/gtk/gtkui.c b/plugins_tools/eid-viewer/gtk/gtkui.c index e16a5933b..3d126c73c 100644 --- a/plugins_tools/eid-viewer/gtk/gtkui.c +++ b/plugins_tools/eid-viewer/gtk/gtkui.c @@ -419,6 +419,32 @@ void readers_changed(unsigned long nreaders, slotdesc* slots) { g_message("readers changed"); } +void show_card_eu_start_date(char* doctype) { + //show card EU start date or card EU+ start date depending on doctype of the card + GValue *show_data, *show_label, *hide_label; + show_data = calloc(sizeof(GValue), 1); + g_value_init(show_data, G_TYPE_BOOLEAN); + g_value_set_boolean(show_data, TRUE); + show_label = calloc(sizeof(GValue), 1); + g_value_init(show_label, G_TYPE_BOOLEAN); + g_value_set_boolean(show_label, TRUE); + hide_label = calloc(sizeof(GValue), 1); + g_value_init(hide_label, G_TYPE_BOOLEAN); + g_value_set_boolean(hide_label, FALSE); + if(((doctype[0] == '3') && (doctype[1] == '1')) || ((doctype[0] == '6') && (doctype[1] == '1'))) { //EU case + GObject* objEU = gtk_builder_get_object(builder, "cardEU_start_date"); + g_object_set_threaded_gvalue(objEU, "visible", show_data, free); + g_object_set_threaded_gvalue(gtk_builder_get_object(builder, "title_cardEU_start_date"), "visible", show_label, free); + g_object_set_threaded_gvalue(gtk_builder_get_object(builder, "title_cardEUPlus_start_date"), "visible", hide_label, free); + } + if(((doctype[0] == '3') && (doctype[1] == '2')) || ((doctype[0] == '6') && (doctype[1] == '2'))) { //EU+ case + GObject* objEU = gtk_builder_get_object(builder, "cardEU_start_date"); + g_object_set_threaded_gvalue(objEU, "visible", show_data, free); + g_object_set_threaded_gvalue(gtk_builder_get_object(builder, "title_cardEUPlus_start_date"), "visible", show_label, free); + g_object_set_threaded_gvalue(gtk_builder_get_object(builder, "title_cardEU_start_date"), "visible", hide_label, free); + } +} + void update_doctype(char* label G_GNUC_UNUSED, void* data, int length) { static char doctype[2]; char* newtype = (char*)data; @@ -448,6 +474,9 @@ void update_doctype(char* label G_GNUC_UNUSED, void* data, int length) { if(!obj) { continue; } + if(toggles->label[i] == "cardEU_start_date") { + continue; + } titlelabel = g_strdup_printf("title_%s", toggles->label[i]); show_data = calloc(sizeof(GValue), 1); g_value_init(show_data, G_TYPE_BOOLEAN); @@ -459,5 +488,6 @@ void update_doctype(char* label G_GNUC_UNUSED, void* data, int length) { g_object_set_threaded_gvalue(gtk_builder_get_object(builder, titlelabel), "visible", show_label, free); g_free(titlelabel); } + show_card_eu_start_date(doctype); } } diff --git a/plugins_tools/eid-viewer/gtk/gtkui.h b/plugins_tools/eid-viewer/gtk/gtkui.h index 8da27a5af..ded92ba4a 100644 --- a/plugins_tools/eid-viewer/gtk/gtkui.h +++ b/plugins_tools/eid-viewer/gtk/gtkui.h @@ -28,6 +28,7 @@ void drag_data_get(GtkWidget * widget, GdkDragContext * ctx, #endif void validate_toggle(gpointer event_source, gpointer user_data); void auto_reader(GtkWidget * mi, gpointer user_data); +void show_card_eu_start_date(char* doctype); void update_doctype(char* label, void* data, int length); extern gboolean is_foreigner; diff --git a/plugins_tools/eid-viewer/gtk/po/de.po b/plugins_tools/eid-viewer/gtk/po/de.po index aad9338ea..c3114b253 100644 --- a/plugins_tools/eid-viewer/gtk/po/de.po +++ b/plugins_tools/eid-viewer/gtk/po/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: eid-mw 4.1.1-v4.1.1.4.gc149158.dirty\n" "Report-Msgid-Bugs-To: servicedesk@bosa.fgov.be\n" -"POT-Creation-Date: 2022-03-24 14:44+0200\n" -"PO-Revision-Date: 2021-12-09 18:07+0200\n" +"POT-Creation-Date: 2024-01-11 13:46+0100\n" +"PO-Revision-Date: 2024-01-11 11:51+0100\n" "Last-Translator: Wouter Verhelst \n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" #: plugins_tools/eid-viewer/gtk/main.c:98 #, c-format @@ -177,250 +177,258 @@ msgstr "Häufig gestellte Fragen..." msgid "eID Card Test Site..." msgstr "eID Test Site..." -#: plugins_tools/eid-viewer/gtk/viewer.glade:279 +#: plugins_tools/eid-viewer/gtk/viewer.glade:277 #: plugins_tools/eid-viewer/gtk/print.c:36 msgid "Name:" msgstr "Name:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:298 +#: plugins_tools/eid-viewer/gtk/viewer.glade:293 #: plugins_tools/eid-viewer/gtk/print.c:37 msgid "Given names:" msgstr "Vornamen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:317 +#: plugins_tools/eid-viewer/gtk/viewer.glade:309 #: plugins_tools/eid-viewer/gtk/print.c:38 msgid "Place of birth:" msgstr "Geburtsort:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:336 +#: plugins_tools/eid-viewer/gtk/viewer.glade:325 #: plugins_tools/eid-viewer/gtk/print.c:39 msgid "Date of birth:" msgstr "Geburtsdatum:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:355 +#: plugins_tools/eid-viewer/gtk/viewer.glade:341 #: plugins_tools/eid-viewer/gtk/print.c:40 msgid "Sex:" msgstr "Geschlecht:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:374 +#: plugins_tools/eid-viewer/gtk/viewer.glade:357 #: plugins_tools/eid-viewer/gtk/print.c:42 msgid "National number:" msgstr "Nationale Nummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:393 +#: plugins_tools/eid-viewer/gtk/viewer.glade:373 #: plugins_tools/eid-viewer/gtk/print.c:47 msgid "Municipality:" msgstr "Gemeinde:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:412 +#: plugins_tools/eid-viewer/gtk/viewer.glade:389 #: plugins_tools/eid-viewer/gtk/print.c:46 msgid "Postal code:" msgstr "Postleitzahl:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:431 +#: plugins_tools/eid-viewer/gtk/viewer.glade:405 #: plugins_tools/eid-viewer/gtk/print.c:45 msgid "Street:" msgstr "Straße:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:464 +#: plugins_tools/eid-viewer/gtk/viewer.glade:435 #: plugins_tools/eid-viewer/gtk/print.c:44 msgid "Special status:" msgstr "Sonderstatus:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:483 +#: plugins_tools/eid-viewer/gtk/viewer.glade:451 #: plugins_tools/eid-viewer/gtk/print.c:43 msgid "Title:" msgstr "Titel:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:502 +#: plugins_tools/eid-viewer/gtk/viewer.glade:467 #: plugins_tools/eid-viewer/gtk/print.c:41 msgid "Nationality:" msgstr "Staatsangehörigkeit:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:733 +#: plugins_tools/eid-viewer/gtk/viewer.glade:491 msgid "On-card photo of the holder" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:792 +#: plugins_tools/eid-viewer/gtk/viewer.glade:522 #: plugins_tools/eid-viewer/gtk/print.c:60 msgid "Date and country of international protection:" msgstr "Datum und Land des internationalen Schutzes:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:810 +#: plugins_tools/eid-viewer/gtk/viewer.glade:537 #: plugins_tools/eid-viewer/gtk/print.c:62 msgid "Employer's VAT/CBE number (1):" msgstr "Mehrwertsteuernummer/ZDU-Nummer des Arbeitgebers (1):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:844 +#: plugins_tools/eid-viewer/gtk/viewer.glade:552 #: plugins_tools/eid-viewer/gtk/print.c:63 msgid "Employer's VAT/CBE number (2):" msgstr "Mehrwertsteuernummer/ZDU-Nummer des Arbeitgebers (2):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:894 +#: plugins_tools/eid-viewer/gtk/viewer.glade:567 #: plugins_tools/eid-viewer/gtk/print.c:61 msgid "Access to the labour market:" msgstr "Zugang zum Arbeitsmarkt:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:928 +#: plugins_tools/eid-viewer/gtk/viewer.glade:582 #: plugins_tools/eid-viewer/gtk/print.c:64 msgid "Regional file number:" msgstr "Regionale Aktennummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:946 +#: plugins_tools/eid-viewer/gtk/viewer.glade:597 #: plugins_tools/eid-viewer/gtk/print.c:57 msgid "Family member:" msgstr "Familienangehöriger:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:980 +#: plugins_tools/eid-viewer/gtk/viewer.glade:612 #: plugins_tools/eid-viewer/gtk/print.c:58 msgid "Organization:" msgstr "Organisation:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:998 +#: plugins_tools/eid-viewer/gtk/viewer.glade:627 #: plugins_tools/eid-viewer/gtk/print.c:59 msgid "Duplicate:" msgstr "Duplikat:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1048 +#: plugins_tools/eid-viewer/gtk/viewer.glade:642 #: plugins_tools/eid-viewer/gtk/print.c:65 msgid "Brexit mentions:" msgstr "Brexit Erwähnungen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1091 +#: plugins_tools/eid-viewer/gtk/viewer.glade:655 msgid "Mentions:" msgstr "Erwähnungen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1172 +#: plugins_tools/eid-viewer/gtk/viewer.glade:668 +msgid "Date of registration:" +msgstr "Datum Anmeldung:" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:681 +msgid "Date of permanent residence:" +msgstr "Datum Daueraufenthalt:" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:1177 msgid "Identity" msgstr "Identität" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1228 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1233 #: plugins_tools/eid-viewer/gtk/print.c:48 msgid "Card number:" msgstr "Kartennummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1245 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1250 #: plugins_tools/eid-viewer/gtk/print.c:49 msgid "Place of issue:" msgstr "Ausstellungsort:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1262 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1267 #: plugins_tools/eid-viewer/gtk/print.c:50 msgid "Chip number:" msgstr "Chipnummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1279 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1699 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1284 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1704 #: plugins_tools/eid-viewer/gtk/print.c:51 msgid "Valid from:" msgstr "Gültig ab:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1296 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1718 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1301 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1723 #: plugins_tools/eid-viewer/gtk/print.c:52 msgid "Valid until:" msgstr "Gültig bis:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1310 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1315 msgid "Verify PIN" msgstr "PIN uberprufen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1326 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1331 msgid "Change PIN" msgstr "PIN ändern" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1461 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1466 msgid "Basic key:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1478 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1483 #: plugins_tools/eid-viewer/gtk/print.c:53 msgid "Contact chip:" msgstr "Kontaktchip:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1550 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1555 msgid "Card/PIN" msgstr "Karte/PIN" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1576 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1581 msgid "Contains a hierarchical view of the certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1737 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1742 msgid "Usage:" msgstr "Verwendung:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1756 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1761 msgid "Trust:" msgstr "Vertrauen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1887 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1892 msgid "Always validate certificate trust" msgstr "Zuverlässigkeit der Zertifikate immer validieren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1897 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1902 msgid "" "Enable this to disable the \"Validate now\" button and always validate " "certificates as soon as the card is read." msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1909 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1914 msgid "Validate Now" msgstr "Jetzt validieren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1917 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1922 msgid "Immediately checks validity of all certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1960 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1965 msgid "Certificates" msgstr "Zertifikate" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2017 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2022 msgid "Filter the log entries" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2029 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2034 msgid "Clear Log" msgstr "Protokoll löschen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2043 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2048 msgid "Copy Log To Clipboard" msgstr "Protokoll in Zwischenablage kopieren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2082 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2087 msgid "Log" msgstr "Logbuch" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2147 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2152 msgid "Preferences" msgstr "Einstellungen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2163 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2168 msgid "Show log tab" msgstr "Logbuch anzeigen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2192 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2197 msgid "Check for update at startup" msgstr "Beim Starten auf Updates prüfen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2206 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2211 msgid "Check for update now" msgstr "Jetzt nach Updates suchen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2225 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2230 msgid "Update checks" msgstr "Updateprüfungen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2321 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2324 msgid "Language" msgstr "Sprache" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2349 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2352 msgid "Automatic" msgstr "Automatisch" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2370 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2373 msgid "Reader selection" msgstr "Leserauswahl" diff --git a/plugins_tools/eid-viewer/gtk/po/eid-viewer.pot b/plugins_tools/eid-viewer/gtk/po/eid-viewer.pot index d3dbadc32..d1bacabae 100644 --- a/plugins_tools/eid-viewer/gtk/po/eid-viewer.pot +++ b/plugins_tools/eid-viewer/gtk/po/eid-viewer.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: eid-mw 5.1.2-v5.1.2.25.g299cdd95.dirty\n" +"Project-Id-Version: eid-mw 5.1.8-v5.1.8mw.16.g3ed3494f.dirty\n" "Report-Msgid-Bugs-To: servicedesk@bosa.fgov.be\n" -"POT-Creation-Date: 2022-03-24 14:44+0200\n" +"POT-Creation-Date: 2024-01-11 13:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -177,250 +177,258 @@ msgstr "" msgid "eID Card Test Site..." msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:279 +#: plugins_tools/eid-viewer/gtk/viewer.glade:277 #: plugins_tools/eid-viewer/gtk/print.c:36 msgid "Name:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:298 +#: plugins_tools/eid-viewer/gtk/viewer.glade:293 #: plugins_tools/eid-viewer/gtk/print.c:37 msgid "Given names:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:317 +#: plugins_tools/eid-viewer/gtk/viewer.glade:309 #: plugins_tools/eid-viewer/gtk/print.c:38 msgid "Place of birth:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:336 +#: plugins_tools/eid-viewer/gtk/viewer.glade:325 #: plugins_tools/eid-viewer/gtk/print.c:39 msgid "Date of birth:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:355 +#: plugins_tools/eid-viewer/gtk/viewer.glade:341 #: plugins_tools/eid-viewer/gtk/print.c:40 msgid "Sex:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:374 +#: plugins_tools/eid-viewer/gtk/viewer.glade:357 #: plugins_tools/eid-viewer/gtk/print.c:42 msgid "National number:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:393 +#: plugins_tools/eid-viewer/gtk/viewer.glade:373 #: plugins_tools/eid-viewer/gtk/print.c:47 msgid "Municipality:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:412 +#: plugins_tools/eid-viewer/gtk/viewer.glade:389 #: plugins_tools/eid-viewer/gtk/print.c:46 msgid "Postal code:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:431 +#: plugins_tools/eid-viewer/gtk/viewer.glade:405 #: plugins_tools/eid-viewer/gtk/print.c:45 msgid "Street:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:464 +#: plugins_tools/eid-viewer/gtk/viewer.glade:435 #: plugins_tools/eid-viewer/gtk/print.c:44 msgid "Special status:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:483 +#: plugins_tools/eid-viewer/gtk/viewer.glade:451 #: plugins_tools/eid-viewer/gtk/print.c:43 msgid "Title:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:502 +#: plugins_tools/eid-viewer/gtk/viewer.glade:467 #: plugins_tools/eid-viewer/gtk/print.c:41 msgid "Nationality:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:733 +#: plugins_tools/eid-viewer/gtk/viewer.glade:491 msgid "On-card photo of the holder" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:792 +#: plugins_tools/eid-viewer/gtk/viewer.glade:522 #: plugins_tools/eid-viewer/gtk/print.c:60 msgid "Date and country of international protection:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:810 +#: plugins_tools/eid-viewer/gtk/viewer.glade:537 #: plugins_tools/eid-viewer/gtk/print.c:62 msgid "Employer's VAT/CBE number (1):" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:844 +#: plugins_tools/eid-viewer/gtk/viewer.glade:552 #: plugins_tools/eid-viewer/gtk/print.c:63 msgid "Employer's VAT/CBE number (2):" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:894 +#: plugins_tools/eid-viewer/gtk/viewer.glade:567 #: plugins_tools/eid-viewer/gtk/print.c:61 msgid "Access to the labour market:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:928 +#: plugins_tools/eid-viewer/gtk/viewer.glade:582 #: plugins_tools/eid-viewer/gtk/print.c:64 msgid "Regional file number:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:946 +#: plugins_tools/eid-viewer/gtk/viewer.glade:597 #: plugins_tools/eid-viewer/gtk/print.c:57 msgid "Family member:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:980 +#: plugins_tools/eid-viewer/gtk/viewer.glade:612 #: plugins_tools/eid-viewer/gtk/print.c:58 msgid "Organization:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:998 +#: plugins_tools/eid-viewer/gtk/viewer.glade:627 #: plugins_tools/eid-viewer/gtk/print.c:59 msgid "Duplicate:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1048 +#: plugins_tools/eid-viewer/gtk/viewer.glade:642 #: plugins_tools/eid-viewer/gtk/print.c:65 msgid "Brexit mentions:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1091 +#: plugins_tools/eid-viewer/gtk/viewer.glade:655 msgid "Mentions:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1172 +#: plugins_tools/eid-viewer/gtk/viewer.glade:668 +msgid "Date of registration:" +msgstr "" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:681 +msgid "Date of permanent residence:" +msgstr "" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:1177 msgid "Identity" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1228 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1233 #: plugins_tools/eid-viewer/gtk/print.c:48 msgid "Card number:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1245 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1250 #: plugins_tools/eid-viewer/gtk/print.c:49 msgid "Place of issue:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1262 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1267 #: plugins_tools/eid-viewer/gtk/print.c:50 msgid "Chip number:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1279 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1699 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1284 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1704 #: plugins_tools/eid-viewer/gtk/print.c:51 msgid "Valid from:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1296 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1718 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1301 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1723 #: plugins_tools/eid-viewer/gtk/print.c:52 msgid "Valid until:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1310 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1315 msgid "Verify PIN" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1326 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1331 msgid "Change PIN" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1461 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1466 msgid "Basic key:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1478 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1483 #: plugins_tools/eid-viewer/gtk/print.c:53 msgid "Contact chip:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1550 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1555 msgid "Card/PIN" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1576 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1581 msgid "Contains a hierarchical view of the certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1737 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1742 msgid "Usage:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1756 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1761 msgid "Trust:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1887 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1892 msgid "Always validate certificate trust" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1897 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1902 msgid "" "Enable this to disable the \"Validate now\" button and always validate " "certificates as soon as the card is read." msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1909 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1914 msgid "Validate Now" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1917 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1922 msgid "Immediately checks validity of all certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1960 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1965 msgid "Certificates" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2017 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2022 msgid "Filter the log entries" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2029 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2034 msgid "Clear Log" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2043 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2048 msgid "Copy Log To Clipboard" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2082 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2087 msgid "Log" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2147 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2152 msgid "Preferences" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2163 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2168 msgid "Show log tab" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2192 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2197 msgid "Check for update at startup" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2206 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2211 msgid "Check for update now" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2225 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2230 msgid "Update checks" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2321 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2324 msgid "Language" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2349 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2352 msgid "Automatic" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2370 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2373 msgid "Reader selection" msgstr "" diff --git a/plugins_tools/eid-viewer/gtk/po/fr.po b/plugins_tools/eid-viewer/gtk/po/fr.po index cbf4bb6d6..e86fd44b5 100644 --- a/plugins_tools/eid-viewer/gtk/po/fr.po +++ b/plugins_tools/eid-viewer/gtk/po/fr.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: eid-mw 4.1.1-v4.1.1.4.gc149158.dirty\n" "Report-Msgid-Bugs-To: servicedesk@bosa.fgov.be\n" -"POT-Creation-Date: 2022-03-24 14:44+0200\n" -"PO-Revision-Date: 2021-12-09 18:04+0200\n" +"POT-Creation-Date: 2024-01-11 13:46+0100\n" +"PO-Revision-Date: 2024-01-11 11:47+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" #: plugins_tools/eid-viewer/gtk/main.c:98 #, c-format @@ -175,250 +175,258 @@ msgstr "Foire aux questions..." msgid "eID Card Test Site..." msgstr "Site de test eID..." -#: plugins_tools/eid-viewer/gtk/viewer.glade:279 +#: plugins_tools/eid-viewer/gtk/viewer.glade:277 #: plugins_tools/eid-viewer/gtk/print.c:36 msgid "Name:" msgstr "Nom:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:298 +#: plugins_tools/eid-viewer/gtk/viewer.glade:293 #: plugins_tools/eid-viewer/gtk/print.c:37 msgid "Given names:" msgstr "Prénoms:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:317 +#: plugins_tools/eid-viewer/gtk/viewer.glade:309 #: plugins_tools/eid-viewer/gtk/print.c:38 msgid "Place of birth:" msgstr "Lieu de naissance:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:336 +#: plugins_tools/eid-viewer/gtk/viewer.glade:325 #: plugins_tools/eid-viewer/gtk/print.c:39 msgid "Date of birth:" msgstr "Date de naissance:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:355 +#: plugins_tools/eid-viewer/gtk/viewer.glade:341 #: plugins_tools/eid-viewer/gtk/print.c:40 msgid "Sex:" msgstr "Sexe:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:374 +#: plugins_tools/eid-viewer/gtk/viewer.glade:357 #: plugins_tools/eid-viewer/gtk/print.c:42 msgid "National number:" msgstr "Numéro national:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:393 +#: plugins_tools/eid-viewer/gtk/viewer.glade:373 #: plugins_tools/eid-viewer/gtk/print.c:47 msgid "Municipality:" msgstr "Commune:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:412 +#: plugins_tools/eid-viewer/gtk/viewer.glade:389 #: plugins_tools/eid-viewer/gtk/print.c:46 msgid "Postal code:" msgstr "Code postal:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:431 +#: plugins_tools/eid-viewer/gtk/viewer.glade:405 #: plugins_tools/eid-viewer/gtk/print.c:45 msgid "Street:" msgstr "Rue:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:464 +#: plugins_tools/eid-viewer/gtk/viewer.glade:435 #: plugins_tools/eid-viewer/gtk/print.c:44 msgid "Special status:" msgstr "Statut spécial:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:483 +#: plugins_tools/eid-viewer/gtk/viewer.glade:451 #: plugins_tools/eid-viewer/gtk/print.c:43 msgid "Title:" msgstr "Titre:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:502 +#: plugins_tools/eid-viewer/gtk/viewer.glade:467 #: plugins_tools/eid-viewer/gtk/print.c:41 msgid "Nationality:" msgstr "Nationalité:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:733 +#: plugins_tools/eid-viewer/gtk/viewer.glade:491 msgid "On-card photo of the holder" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:792 +#: plugins_tools/eid-viewer/gtk/viewer.glade:522 #: plugins_tools/eid-viewer/gtk/print.c:60 msgid "Date and country of international protection:" msgstr "Date et pays de protection internationale:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:810 +#: plugins_tools/eid-viewer/gtk/viewer.glade:537 #: plugins_tools/eid-viewer/gtk/print.c:62 msgid "Employer's VAT/CBE number (1):" msgstr "Numéro TVA/BCE de l'employeur (1):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:844 +#: plugins_tools/eid-viewer/gtk/viewer.glade:552 #: plugins_tools/eid-viewer/gtk/print.c:63 msgid "Employer's VAT/CBE number (2):" msgstr "Numéro TVA/BCE de l'employeur (2):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:894 +#: plugins_tools/eid-viewer/gtk/viewer.glade:567 #: plugins_tools/eid-viewer/gtk/print.c:61 msgid "Access to the labour market:" msgstr "Accès au marché du travail:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:928 +#: plugins_tools/eid-viewer/gtk/viewer.glade:582 #: plugins_tools/eid-viewer/gtk/print.c:64 msgid "Regional file number:" msgstr "Numéro de dossier régional:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:946 +#: plugins_tools/eid-viewer/gtk/viewer.glade:597 #: plugins_tools/eid-viewer/gtk/print.c:57 msgid "Family member:" msgstr "Membre de famille:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:980 +#: plugins_tools/eid-viewer/gtk/viewer.glade:612 #: plugins_tools/eid-viewer/gtk/print.c:58 msgid "Organization:" msgstr "Organisation:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:998 +#: plugins_tools/eid-viewer/gtk/viewer.glade:627 #: plugins_tools/eid-viewer/gtk/print.c:59 msgid "Duplicate:" msgstr "Duplicata:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1048 +#: plugins_tools/eid-viewer/gtk/viewer.glade:642 #: plugins_tools/eid-viewer/gtk/print.c:65 msgid "Brexit mentions:" msgstr "Mentions du Brexit:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1091 +#: plugins_tools/eid-viewer/gtk/viewer.glade:655 msgid "Mentions:" msgstr "Mentions:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1172 +#: plugins_tools/eid-viewer/gtk/viewer.glade:668 +msgid "Date of registration:" +msgstr "Date d'enregistrement:" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:681 +msgid "Date of permanent residence:" +msgstr "Date du séjour permanent:" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:1177 msgid "Identity" msgstr "Identité" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1228 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1233 #: plugins_tools/eid-viewer/gtk/print.c:48 msgid "Card number:" msgstr "Numéro de carte:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1245 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1250 #: plugins_tools/eid-viewer/gtk/print.c:49 msgid "Place of issue:" msgstr "Lieu d'émission:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1262 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1267 #: plugins_tools/eid-viewer/gtk/print.c:50 msgid "Chip number:" msgstr "Numéro de puce:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1279 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1699 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1284 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1704 #: plugins_tools/eid-viewer/gtk/print.c:51 msgid "Valid from:" msgstr "Valable à partir du:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1296 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1718 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1301 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1723 #: plugins_tools/eid-viewer/gtk/print.c:52 msgid "Valid until:" msgstr "Valable jusqu'au:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1310 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1315 msgid "Verify PIN" msgstr "Verifier le code PIN" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1326 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1331 msgid "Change PIN" msgstr "Changer le code PIN" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1461 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1466 msgid "Basic key:" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1478 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1483 #: plugins_tools/eid-viewer/gtk/print.c:53 msgid "Contact chip:" msgstr "Puce à contact:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1550 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1555 msgid "Card/PIN" msgstr "Carte/PIN" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1576 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1581 msgid "Contains a hierarchical view of the certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1737 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1742 msgid "Usage:" msgstr "Utilisation:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1756 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1761 msgid "Trust:" msgstr "Confiance:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1887 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1892 msgid "Always validate certificate trust" msgstr "Toujours valider la fiabilité des certificats" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1897 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1902 msgid "" "Enable this to disable the \"Validate now\" button and always validate " "certificates as soon as the card is read." msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1909 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1914 msgid "Validate Now" msgstr "Valider maintenant" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1917 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1922 msgid "Immediately checks validity of all certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1960 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1965 msgid "Certificates" msgstr "Certificats" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2017 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2022 msgid "Filter the log entries" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2029 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2034 msgid "Clear Log" msgstr "Effacer le journal" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2043 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2048 msgid "Copy Log To Clipboard" msgstr "Copier le journal dans le presse-papiers" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2082 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2087 msgid "Log" msgstr "Journal" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2147 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2152 msgid "Preferences" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2163 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2168 msgid "Show log tab" msgstr "Afficher le journal" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2192 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2197 msgid "Check for update at startup" msgstr "Rechercher des mises à jour au démarrage" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2206 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2211 msgid "Check for update now" msgstr "Rechercher des mises à jour maintenant" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2225 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2230 msgid "Update checks" msgstr "Contrôles de mise à jour" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2321 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2324 msgid "Language" msgstr "Language" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2349 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2352 msgid "Automatic" msgstr "Automatique" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2370 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2373 msgid "Reader selection" msgstr "Sélection du lecteur" diff --git a/plugins_tools/eid-viewer/gtk/po/nl.po b/plugins_tools/eid-viewer/gtk/po/nl.po index 72908b468..856bc3259 100644 --- a/plugins_tools/eid-viewer/gtk/po/nl.po +++ b/plugins_tools/eid-viewer/gtk/po/nl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: eid-mw 4.1.1-v4.1.1.dirty\n" "Report-Msgid-Bugs-To: servicedesk@bosa.fgov.be\n" -"POT-Creation-Date: 2022-03-24 14:44+0200\n" -"PO-Revision-Date: 2021-12-09 18:05+0200\n" +"POT-Creation-Date: 2024-01-11 13:46+0100\n" +"PO-Revision-Date: 2024-01-11 11:49+0100\n" "Last-Translator: Wouter Verhelst \n" "Language-Team: \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" #: plugins_tools/eid-viewer/gtk/main.c:98 #, c-format @@ -180,250 +180,258 @@ msgstr "Veelgestelde vragen..." msgid "eID Card Test Site..." msgstr "Testsite voor eID..." -#: plugins_tools/eid-viewer/gtk/viewer.glade:279 +#: plugins_tools/eid-viewer/gtk/viewer.glade:277 #: plugins_tools/eid-viewer/gtk/print.c:36 msgid "Name:" msgstr "Naam:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:298 +#: plugins_tools/eid-viewer/gtk/viewer.glade:293 #: plugins_tools/eid-viewer/gtk/print.c:37 msgid "Given names:" msgstr "Voornamen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:317 +#: plugins_tools/eid-viewer/gtk/viewer.glade:309 #: plugins_tools/eid-viewer/gtk/print.c:38 msgid "Place of birth:" msgstr "Geboorteplaats:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:336 +#: plugins_tools/eid-viewer/gtk/viewer.glade:325 #: plugins_tools/eid-viewer/gtk/print.c:39 msgid "Date of birth:" msgstr "Geboortedatum:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:355 +#: plugins_tools/eid-viewer/gtk/viewer.glade:341 #: plugins_tools/eid-viewer/gtk/print.c:40 msgid "Sex:" msgstr "Geslacht:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:374 +#: plugins_tools/eid-viewer/gtk/viewer.glade:357 #: plugins_tools/eid-viewer/gtk/print.c:42 msgid "National number:" msgstr "Nationaal nummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:393 +#: plugins_tools/eid-viewer/gtk/viewer.glade:373 #: plugins_tools/eid-viewer/gtk/print.c:47 msgid "Municipality:" msgstr "Gemeente:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:412 +#: plugins_tools/eid-viewer/gtk/viewer.glade:389 #: plugins_tools/eid-viewer/gtk/print.c:46 msgid "Postal code:" msgstr "Postcode:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:431 +#: plugins_tools/eid-viewer/gtk/viewer.glade:405 #: plugins_tools/eid-viewer/gtk/print.c:45 msgid "Street:" msgstr "Straat:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:464 +#: plugins_tools/eid-viewer/gtk/viewer.glade:435 #: plugins_tools/eid-viewer/gtk/print.c:44 msgid "Special status:" msgstr "Speciale status:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:483 +#: plugins_tools/eid-viewer/gtk/viewer.glade:451 #: plugins_tools/eid-viewer/gtk/print.c:43 msgid "Title:" msgstr "Titel:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:502 +#: plugins_tools/eid-viewer/gtk/viewer.glade:467 #: plugins_tools/eid-viewer/gtk/print.c:41 msgid "Nationality:" msgstr "Nationaliteit:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:733 +#: plugins_tools/eid-viewer/gtk/viewer.glade:491 msgid "On-card photo of the holder" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:792 +#: plugins_tools/eid-viewer/gtk/viewer.glade:522 #: plugins_tools/eid-viewer/gtk/print.c:60 msgid "Date and country of international protection:" msgstr "Datum en land van internationale bescherming:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:810 +#: plugins_tools/eid-viewer/gtk/viewer.glade:537 #: plugins_tools/eid-viewer/gtk/print.c:62 msgid "Employer's VAT/CBE number (1):" msgstr "BTW/KBO-nummer van de werkgever (1):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:844 +#: plugins_tools/eid-viewer/gtk/viewer.glade:552 #: plugins_tools/eid-viewer/gtk/print.c:63 msgid "Employer's VAT/CBE number (2):" msgstr "BTW/KBO-nummer van de werkgever (2):" -#: plugins_tools/eid-viewer/gtk/viewer.glade:894 +#: plugins_tools/eid-viewer/gtk/viewer.glade:567 #: plugins_tools/eid-viewer/gtk/print.c:61 msgid "Access to the labour market:" msgstr "Toegang tot de arbeidsmarkt:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:928 +#: plugins_tools/eid-viewer/gtk/viewer.glade:582 #: plugins_tools/eid-viewer/gtk/print.c:64 msgid "Regional file number:" msgstr "Gewestelijk dossiernummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:946 +#: plugins_tools/eid-viewer/gtk/viewer.glade:597 #: plugins_tools/eid-viewer/gtk/print.c:57 msgid "Family member:" msgstr "Gezinslid:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:980 +#: plugins_tools/eid-viewer/gtk/viewer.glade:612 #: plugins_tools/eid-viewer/gtk/print.c:58 msgid "Organization:" msgstr "Organisatie:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:998 +#: plugins_tools/eid-viewer/gtk/viewer.glade:627 #: plugins_tools/eid-viewer/gtk/print.c:59 msgid "Duplicate:" msgstr "Duplicaat:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1048 +#: plugins_tools/eid-viewer/gtk/viewer.glade:642 #: plugins_tools/eid-viewer/gtk/print.c:65 msgid "Brexit mentions:" msgstr "Brexit vermeldingen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1091 +#: plugins_tools/eid-viewer/gtk/viewer.glade:655 msgid "Mentions:" msgstr "Vermeldingen:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1172 +#: plugins_tools/eid-viewer/gtk/viewer.glade:668 +msgid "Date of registration:" +msgstr "Datum van inschrijving:" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:681 +msgid "Date of permanent residence:" +msgstr "Datum van het duurzaam verblijf" + +#: plugins_tools/eid-viewer/gtk/viewer.glade:1177 msgid "Identity" msgstr "Identiteit" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1228 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1233 #: plugins_tools/eid-viewer/gtk/print.c:48 msgid "Card number:" msgstr "Kaartnummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1245 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1250 #: plugins_tools/eid-viewer/gtk/print.c:49 msgid "Place of issue:" msgstr "Plaats van afgifte:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1262 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1267 #: plugins_tools/eid-viewer/gtk/print.c:50 msgid "Chip number:" msgstr "Chip nummer:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1279 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1699 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1284 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1704 #: plugins_tools/eid-viewer/gtk/print.c:51 msgid "Valid from:" msgstr "Geldig vanaf:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1296 -#: plugins_tools/eid-viewer/gtk/viewer.glade:1718 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1301 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1723 #: plugins_tools/eid-viewer/gtk/print.c:52 msgid "Valid until:" msgstr "Geldig tot:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1310 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1315 msgid "Verify PIN" msgstr "Pincode testen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1326 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1331 msgid "Change PIN" msgstr "Pincode wijzigen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1461 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1466 msgid "Basic key:" msgstr "Basissleutel:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1478 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1483 #: plugins_tools/eid-viewer/gtk/print.c:53 msgid "Contact chip:" msgstr "Contactchip:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1550 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1555 msgid "Card/PIN" msgstr "Kaart/PIN" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1576 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1581 msgid "Contains a hierarchical view of the certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1737 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1742 msgid "Usage:" msgstr "Gebruik:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1756 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1761 msgid "Trust:" msgstr "Betrouwbaarheid:" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1887 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1892 msgid "Always validate certificate trust" msgstr "Certificaatbetrouwbaarheid altijd valideren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1897 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1902 msgid "" "Enable this to disable the \"Validate now\" button and always validate " "certificates as soon as the card is read." msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1909 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1914 msgid "Validate Now" msgstr "Nu valideren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1917 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1922 msgid "Immediately checks validity of all certificates on the card" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:1960 +#: plugins_tools/eid-viewer/gtk/viewer.glade:1965 msgid "Certificates" msgstr "Certificaten" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2017 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2022 msgid "Filter the log entries" msgstr "" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2029 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2034 msgid "Clear Log" msgstr "Log wissen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2043 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2048 msgid "Copy Log To Clipboard" msgstr "Log naar klembord kopiëren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2082 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2087 msgid "Log" msgstr "Logboek" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2147 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2152 msgid "Preferences" msgstr "Voorkeuren" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2163 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2168 msgid "Show log tab" msgstr "Logboek tonen" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2192 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2197 msgid "Check for update at startup" msgstr "Controleren op updates bij het opstarten" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2206 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2211 msgid "Check for update now" msgstr "Nu controleren op updates" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2225 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2230 msgid "Update checks" msgstr "Updatecontroles" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2321 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2324 msgid "Language" msgstr "Taal" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2349 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2352 msgid "Automatic" msgstr "Automatisch" -#: plugins_tools/eid-viewer/gtk/viewer.glade:2370 +#: plugins_tools/eid-viewer/gtk/viewer.glade:2373 msgid "Reader selection" msgstr "Selectie van lezer" diff --git a/plugins_tools/eid-viewer/gtk/viewer.glade b/plugins_tools/eid-viewer/gtk/viewer.glade index 6388f085b..bbc8335bb 100644 --- a/plugins_tools/eid-viewer/gtk/viewer.glade +++ b/plugins_tools/eid-viewer/gtk/viewer.glade @@ -207,14 +207,15 @@ True True - + True False + vertical - + True False - True + True False @@ -223,15 +224,27 @@ - + + True + False + False + - + + + False + True + 1 + + + + True False - vertical - + True False - True + True False @@ -243,30 +256,15 @@ True False - 28 - 4 - - - True - False - False - - - - - 4 - GTK_FILL - GTK_FILL - - + 27 + 2 True False - 4 - 1 - 2 + 2 GTK_FILL GTK_FILL @@ -277,15 +275,12 @@ False start Name: - - - 1 2 - 2 - 3 + 1 + 2 GTK_FILL GTK_FILL @@ -296,15 +291,12 @@ False start Given names: - - - 1 2 - 3 - 4 + 2 + 3 GTK_FILL GTK_FILL @@ -315,15 +307,12 @@ False start Place of birth: - - - 1 2 - 4 - 5 + 3 + 4 GTK_FILL GTK_FILL @@ -334,15 +323,12 @@ False start Date of birth: - - - 1 2 - 5 - 6 + 4 + 5 GTK_FILL GTK_FILL @@ -353,15 +339,12 @@ False start Sex: - - - 1 2 - 6 - 7 + 5 + 6 GTK_FILL GTK_FILL @@ -372,15 +355,12 @@ False start National number: - - - 1 2 - 7 - 8 + 6 + 7 GTK_FILL GTK_FILL @@ -391,15 +371,12 @@ False start Municipality: - - - 1 2 - 14 - 15 + 13 + 14 GTK_FILL GTK_FILL @@ -410,15 +387,12 @@ False start Postal code: - - - 1 2 - 13 - 14 + 12 + 13 GTK_FILL GTK_FILL @@ -429,15 +403,12 @@ False start Street: - - - 1 2 - 12 - 13 + 11 + 12 GTK_FILL GTK_FILL @@ -449,9 +420,9 @@ 1 - 4 - 11 - 12 + 2 + 10 + 11 GTK_FILL GTK_FILL @@ -462,15 +433,12 @@ False start Special status: - - - 1 2 - 10 - 11 + 9 + 10 GTK_FILL GTK_FILL @@ -481,15 +449,12 @@ False start Title: - - - 1 2 - 9 - 10 + 8 + 9 GTK_FILL GTK_FILL @@ -500,208 +465,254 @@ False start Nationality: - - - 1 2 - 8 - 9 + 7 + 8 GTK_FILL GTK_FILL - + True - False False - start - - + False + + + True + False + False + gtk-file + + + On-card photo of the holder + + + + - 2 - 4 - 2 - 3 + 1 + 27 GTK_FILL GTK_FILL - + True - False False - start - - - 2 - 3 - 3 - 4 + 1 + 2 + 14 + 15 GTK_FILL GTK_FILL - - True - False + False start - - + Date and country of international protection: - 2 - 4 - 4 - 5 + 1 + 2 + 18 + 19 GTK_FILL GTK_FILL - - True - False + False start - - + Employer's VAT/CBE number (1): - 2 - 4 - 5 - 6 + 1 + 2 + 20 + 21 GTK_FILL GTK_FILL - - True - False + False start - - + Employer's VAT/CBE number (2): - 2 - 4 - 6 - 7 + 1 + 2 + 21 + 22 GTK_FILL GTK_FILL - - True - False + False start - - + Access to the labour market: - 2 - 4 - 7 - 8 + 1 + 2 + 19 + 20 GTK_FILL GTK_FILL - - True - False + False start - - + Regional file number: - 2 - 4 - 8 - 9 + 1 + 2 + 22 + 23 GTK_FILL GTK_FILL - - True - False + False start - - + Family member: - 2 - 4 - 9 - 10 + 1 + 2 + 15 + 16 GTK_FILL GTK_FILL - - True - False + False start - - + Organization: - 2 - 4 - 10 - 11 + 1 + 2 + 16 + 17 GTK_FILL GTK_FILL - - True - False + False start - - + Duplicate: - 2 - 4 - 12 - 13 + 1 + 2 + 17 + 18 GTK_FILL GTK_FILL - - True - False + False start - - + Brexit mentions: - 2 - 4 - 13 - 14 + 1 + 2 + 23 + 24 + + + + + False + start + Mentions: + + + 1 + 2 + 24 + 25 + + + + + False + start + Date of registration: + + + 1 + 2 + 25 + 26 + + + + + False + start + Date of permanent residence: + + + 1 + 2 + 26 + 27 + + + + + False + True + 1 + + + + + True + False + 27 + 2 + + + True + False + + + 2 GTK_FILL GTK_FILL - + True False False @@ -709,36 +720,24 @@ - - 2 - 4 - 14 - 15 + 2 + 1 + 2 GTK_FILL GTK_FILL - + True + False False - False - - - True - False - False - gtk-file - - - On-card photo of the holder - - - - + start + - 2 - 28 + 3 GTK_FILL GTK_FILL @@ -749,210 +748,194 @@ False - 3 - 4 - 3 - 4 + 1 + 2 + 2 + 3 - + True + False False + start + - - 1 - 4 - 15 - 16 + 2 + 3 + 4 GTK_FILL GTK_FILL - + + True False False start - - 2 - 4 - 19 - 20 + 2 + 4 + 5 GTK_FILL GTK_FILL - + + True + False False start - Date and country of international protection: - - - + - - 1 2 - 19 - 20 + 5 + 6 GTK_FILL GTK_FILL - + + True + False False start - Employer's VAT/CBE number (1): - - - + - - 1 2 - 21 - 22 + 6 + 7 GTK_FILL GTK_FILL - + + True False False start - - 2 - 4 - 21 - 22 + 2 + 7 + 8 GTK_FILL GTK_FILL - + + True + False False start - Employer's VAT/CBE number (2): - - - + - - 1 2 - 22 - 23 + 8 + 9 GTK_FILL GTK_FILL - + + True False False start - - 2 - 4 - 22 - 23 + 2 + 9 + 10 GTK_FILL GTK_FILL - - False + + True False - start - - - 2 - 4 - 23 - 24 + 2 + 10 + 11 GTK_FILL GTK_FILL - + + True + False False start - Access to the labour market: - - - + - - 1 2 - 20 - 21 + 11 + 12 GTK_FILL GTK_FILL - + + True False False start - - 2 - 4 - 20 - 21 + 2 + 12 + 13 GTK_FILL GTK_FILL - + + True + False False start - Regional file number: - - - + - - 1 2 - 23 - 24 + 13 + 14 GTK_FILL GTK_FILL - + + True False - start - Family member: - - - - 1 2 - 16 - 17 + 14 + 15 GTK_FILL GTK_FILL @@ -961,29 +944,40 @@ False - False + True False False True - 2 - 4 + 2 + 15 + 16 + + + + + False + False + start + - + + + 2 16 17 + GTK_FILL + GTK_FILL - + + False False start - Organization: - - - + - - 1 2 17 18 @@ -992,16 +986,13 @@ - + + False False start - Duplicate: - - - + - - 1 2 18 19 @@ -1010,95 +1001,87 @@ - + False False start - - 2 - 4 - 17 - 18 + 2 + 19 + 20 GTK_FILL GTK_FILL - + False False start - - 2 - 4 - 18 - 19 + 2 + 20 + 21 GTK_FILL GTK_FILL - + + False False start - Brexit mentions: - - - - + - - 1 2 - 24 - 25 + 21 + 22 + GTK_FILL + GTK_FILL - + False False start - - 2 - 3 - 24 - 25 + 2 + 22 + 23 + GTK_FILL + GTK_FILL - - True + + False False + start + - - 3 - 4 - 24 - 25 + 23 + 24 - + + True False - start - Mentions: - - - - 1 2 - 25 - 26 + 23 + 24 @@ -1109,10 +1092,8 @@ - - 2 - 3 - 25 - 26 + 24 + 25 @@ -1120,24 +1101,11 @@ True False - - 3 - 4 - 25 - 26 - - - - - False - start - Date of registration: - 1 2 - 26 - 27 + 24 + 25 @@ -1145,76 +1113,59 @@ False False start - - - - - 2 - 4 - 26 - 27 - - - - - False - start - Date of permanent residence: - 1 2 - 27 - 28 + 25 + 26 - False False start - - - 2 - 4 - 27 - 28 + 2 + 26 + 27 False True - 1 + 2 - + True False True True - 2 + 4 False True - 1 + 2 - + True False + True - True + False True - 2 + 3 @@ -2308,7 +2259,6 @@ True True False - True True @@ -2354,7 +2304,6 @@ True True False - True True language_de