diff --git a/reactos/subsys/system/reporterror/En.rc b/reactos/subsys/system/reporterror/En.rc index 226da1211c0..0ed32cc5153 100644 --- a/reactos/subsys/system/reporterror/En.rc +++ b/reactos/subsys/system/reporterror/En.rc @@ -14,7 +14,7 @@ STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION CAPTION "Error reporting assistant" FONT 8, "MS Shell Dlg", 0, 0, 0x0 BEGIN - LTEXT "Please describe what you were trying to do when the error occurred.\n\nClick 'Next' to send the report to the ReacOS project or 'Cancel' to not send any information.",-1,10,0,225,40 + LTEXT "Please describe what you were trying to do when the error occurred.\n\nClick 'Next' to send the report to the ReactOS project or 'Cancel' to not send any information.",-1,10,0,225,40 LTEXT "Your e-mail address (optional):",-1,10,40,120,20 EDITTEXT IDE_SUBMIT_REPORT_YOUR_EMAIL, 110,40,150,12 LTEXT "Description of problem (optional):",-1,10,55,120,20 diff --git a/reactos/subsys/system/reporterror/dk.rc b/reactos/subsys/system/reporterror/dk.rc new file mode 100644 index 00000000000..e0b93b9657b --- /dev/null +++ b/reactos/subsys/system/reporterror/dk.rc @@ -0,0 +1,54 @@ +LANGUAGE LANG_DANISH, SUBLANG_DEFAULT + +IDD_FIRSTPAGE DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION +CAPTION "Fejl Meddeler Assistenten" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + LTEXT "Systemet er blev genoprettet fra en fejl.", -1, 115, 15, 160, 24 + LTEXT "Ønsker du at indsende en fejl rapport til ReactOS Projektet?", -1, 115, 35, 160, 17 +END + +IDD_SUBMIT_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION +CAPTION "Fejl Meddeler Assistenten" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + LTEXT "Beskriv venligst hvad du prøvede at gøre inden fejlen opstod.\n\nKlik på 'Næste' for at indsende rapporten til ReactOS Projektet eller 'Fortryd' for ikke at indsende nogle informationer.",-1,10,0,225,40 + LTEXT "Din e-mail adresse (valgfri):",-1,10,40,120,20 + EDITTEXT IDE_SUBMIT_REPORT_YOUR_EMAIL, 110,40,150,12 + LTEXT "Beskrivelse af problemet (valgfri):",-1,10,55,120,20 + EDITTEXT IDE_SUBMIT_REPORT_PROBLEM_DESCRIPTION,10,65,250,55,ES_WANTRETURN|ES_MULTILINE|ES_LEFT|WS_BORDER|WS_TABSTOP|WS_VSCROLL +END + +IDD_SUBMITTING_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION +CAPTION "Fejl Meddeler Assistenten" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + LTEXT "{STATUS}",IDC_SUBMISSION_STATUS,25,58,225,8 + CONTROL "", IDC_SUBMITTING_IN_PROGRESS, "msctls_progress32", PBS_MARQUEE | WS_CHILD | WS_VISIBLE | WS_BORDER, 25, 80, 225, 8 +END + +IDD_SUBMITTED_REPORT DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION +CAPTION "Fejl Meddeler Assistenten" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + LTEXT "Din fejl rapport blev vellykket indsendt til ReactOS Projektet. Mange Tak.",-1,25,5,225,20 +END + +STRINGTABLE +BEGIN + IDS_WIZARD_NAME "Rapporterings Fejl ved indsendelse til ReactOS Projektet" + IDS_FAILED_TO_CONTACT_SERVER "Systemet var ikke i stand til at kontakte Fejl Rapportings Serveren.\nVær venlig at sikre dig at dit system er forbundet til Internettet." + IDS_FAILED_TO_DELIVER_ERROR_REPORT "Systemet var ikke i stand til at levere Fejl Rapporten." +END + +STRINGTABLE +BEGIN + IDS_CONTACTING_SERVER "Kontakter Fejl Rapporterings Serveren Vent Venligst..." + IDS_FAILED_TO_INITIALIZE_WINSOCK "Fejl opstod da man forsøgte at initialisere Winsock 2.0 (Reactos Fejl Kode %d)" + IDS_FAILED_TO_LOCATE_SERVER "Kunne ikke komme i kontakt med Fejl Rapportings Serveren. Prøv Venligst igen Senere.." +END + diff --git a/reactos/subsys/system/reporterror/reporterror.rc b/reactos/subsys/system/reporterror/reporterror.rc index fc0a1134081..eecc9786190 100644 --- a/reactos/subsys/system/reporterror/reporterror.rc +++ b/reactos/subsys/system/reporterror/reporterror.rc @@ -16,3 +16,4 @@ IDB_HEADER BITMAP "resources/header.bmp" #include "En.rc" #include "De.rc" +#include "Dk.rc"