common_cadline_libraries (CRM hardlock/db/users classes; upstream cadline_web/cadcommonlib), maintenance/ (ARCHLine.XP license backend; upstream cadline_web/maintenance), maintenance2/. Vetted live files (byte-truth); upstream repos in PROVENANCE.md. NOTE: could be git submodules — kept as live files for byte-fidelity. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
445 lines
34 KiB
PHP
445 lines
34 KiB
PHP
<?php
|
|
|
|
/*******************************************************************************
|
|
* eredeti url: http://www.archline.hu/crash/66556465465
|
|
******************************************************************************/
|
|
include('config.php');
|
|
|
|
if (isset($_POST) && !empty($_POST)) {
|
|
$guid = $_POST["guid"];
|
|
$id = (int)$_POST["newid"];
|
|
$lang = $_POST["language"];
|
|
$email = (trim($_POST['email']) > '' ? trim($_POST["email"]) : trim($_POST['email2']));
|
|
$info = ' ' . $_POST["info"];
|
|
|
|
$msh2->query("SELECT * FROM `" . $config2['db_name'] . "`.`crash` WHERE guid='" . $guid . "' AND id=" . $id . " AND deleted=0");
|
|
$res = $msh2->fetchAssoc();
|
|
|
|
if (!empty($res)) {
|
|
$msh2->update("`" . $config2['db_name'] . "`.`crash`", array("email" => $email, "info" => $res[0]['info'] . $info), array("guid" => $guid, "id" => $id, "deleted" => 0));
|
|
}
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
//default is english
|
|
$text1 = utf8_encode("Thank you!");
|
|
$text2 = utf8_encode("The report of this issue is now delivered and awaiting processing.");
|
|
$text3 = utf8_encode("If you provided your e-mail address, we will send you a message when there is new information about this issue.");
|
|
$text4 = utf8_encode("Best regards");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
if ('hun' == $lang) {
|
|
$text1 = utf8_encode("Köszönjük!");
|
|
$text2 = utf8_encode("A hibajelentést kézbesítettük és jelenleg feldolgozásra vár.");
|
|
$text3 = utf8_encode("Amennyiben megadta e-mail címét értesítést küldünk a jelenséget érintő bárminemű fejlemény esetén.");
|
|
$text4 = utf8_encode("Tisztelettel");
|
|
$text5 = utf8_encode("A CADLine Kft. csapata");
|
|
} else if ('ita' == $lang) {
|
|
$text1 = utf8_encode("Grazie!");
|
|
$text2 = utf8_encode("Il report verrà ora inviato, attendere il completamento.");
|
|
$text3 = utf8_encode("Se avete fornito l'indirizzo e-mail, riceverete un messaggio di conferma.");
|
|
$text4 = utf8_encode("Distinti saluti");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('esp' == $lang) {
|
|
} else if ('ger' == $lang || 'de-DE' == $lang || 'de-AT' == $lang) {
|
|
$text1 = utf8_encode("Herzlichen Dank!");
|
|
$text2 = utf8_encode("Der Report wird nun weitergeleitet und demnächst bearbeitet.");
|
|
$text3 = utf8_encode("Wenn Sie uns eine Email Adresse bekannt gegeben haben, werden wir Sie auf diesem Wege auf dem Laufenden halten.");
|
|
$text4 = utf8_encode("Mit freundlichen Grüßen");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('gre' == $lang) {
|
|
$text1 = utf8_encode("Ευχαριστώ!");
|
|
$text2 = utf8_encode("Η αναφορά του αιτήματος αυτού παραδίδεται τώρα και αναμένεται επεξεργασία.");
|
|
$text3 = utf8_encode("Αν δώσατε τη διεύθυνση email σας, θα σας στείλουμε ένα μήνυμα μόλις υπάρξουν νέες πληροφορίες σχετικά με αυτό το θέμα.");
|
|
$text4 = utf8_encode("Με φιλικούς χαιρετισμούς");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('cz' == $lang) {
|
|
$text1 = utf8_encode("Děkujeme!");
|
|
$text2 = utf8_encode("Zpráva o tomto problému je nyní předána a čeká na zpracování.");
|
|
$text3 = utf8_encode("Pokud jste poskytli svou e-mailovou adresu, pošleme vám zprávu s novými informacemi o tomto problému.");
|
|
$text4 = utf8_encode("S pozdravem");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('pol' == $lang) {
|
|
} else if ('cr' == $lang) {
|
|
$text1 = utf8_encode("Hvala Vam!");
|
|
$text2 = utf8_encode("Izvještaj ovog problema je poslan i čeka na obradu.");
|
|
$text3 = utf8_encode("Ako ste naveli Vašu e-mail adresu, poslat ćemo Vam poruku kada ćemo imati nove informacije vezane uz ovaj problem.");
|
|
$text4 = utf8_encode("Srdačan pozdrav,");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('nl' == $lang) {
|
|
} else if ('kor' == $lang) {
|
|
$text1 = utf8_encode("감사합니다.");
|
|
$text2 = utf8_encode("이 문제에 대한 보고서가 전달되어 처리를 기다리고 있습니다.");
|
|
$text3 = utf8_encode("전자 메일 주소를 제공 한 경우이 문제에 대한 새로운 정보가있을 때 메시지가 전송됩니다.");
|
|
$text4 = utf8_encode("감사합니다.");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
} else if ('chn' == $lang) {
|
|
} else if ('por' == $lang) {
|
|
} else if ('nor' == $lang) {
|
|
$text1 = utf8_encode("Takk!");
|
|
$text2 = utf8_encode("Rapporten er levert og avventer behandling.");
|
|
$text3 = utf8_encode("Hvis du har oppgitt din e-post adresse vil vi sende deg mail når det er nytt om saken.");
|
|
$text4 = utf8_encode("Med vennlig hilsen");
|
|
$text5 = utf8_encode("CadLine Network Ltd.");
|
|
}
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
|
<script type="text/javascript" src="/public/js/jquery.js"></script>
|
|
<script type="text/javascript" src="/public/js/jquery_ui.js"></script>
|
|
<link href="/public/css/jquery.ui.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
.gomb {
|
|
width: 177px;
|
|
height: 40px;
|
|
padding-bottom: 1px;
|
|
font-size: 1.1em;
|
|
border: 0px;
|
|
float: right;
|
|
margin-top: 10px;
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
textarea {
|
|
overflow: auto;
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div style="width: 694px; font-family: Arial,Helvetica,sans-serif; font-size: 16px;">
|
|
<div style="background: url('/public/img/bg/crash/box_main_top.png') no-repeat; width: 100%; height: 14px;"></div>
|
|
<div style="background: url('/public/img/bg/crash/box_main_repeat.png') repeat-y; width: 644px; padding: 0 30px 0 20px;">
|
|
<h1 style="margin: 0px;"><?= $text1 ?></h1>
|
|
<p style="margin-bottom: 0px;"><?= $text2 ?><br /><br /></p>
|
|
<p style="margin-bottom: 0px;"><?= $text3 ?><br /><br /></p>
|
|
<p style="margin-bottom: 0px;"><?= $text4 ?><br /></p>
|
|
<p style="margin-bottom: 0px;"><?= $text5 ?><br /><br /></p>
|
|
</div>
|
|
<div style="background: url('/public/img/bg/crash/box_main_bottom.png') no-repeat; width: 100%; height: 14px;"></div>
|
|
<img src="/public/img/bg/crash/logo.png" style="margin: 5px 15px;" />
|
|
</body>
|
|
|
|
</html>
|
|
<?php
|
|
} else {
|
|
$info = "";
|
|
$guid = $_GET['guid'];
|
|
$build = (isset($_GET['build']) ? $_GET['build'] : NULL);
|
|
$lang = (isset($_GET['lang']) ? $_GET['lang'] : NULL);
|
|
if (NULL == $lang)
|
|
$lang = 'eng';
|
|
|
|
$serial = (isset($_GET['serial']) ? $_GET['serial'] : NULL);
|
|
$error = false;
|
|
|
|
if ($serial) {
|
|
$year = substr($serial, 7, 2);
|
|
if ($year == "34")
|
|
$info .= "2017 ";
|
|
else if ($year == "35")
|
|
$info .= "2018 ";
|
|
else if ($year == "36")
|
|
$info .= "2019 ";
|
|
else if ($year == "37")
|
|
$info .= "2020 ";
|
|
else if ($year == "38")
|
|
$info .= "2021 ";
|
|
else if ($year == "39")
|
|
$info .= "2022 ";
|
|
else if ($year == "40")
|
|
$info .= "2023 ";
|
|
}
|
|
if ($build) $info .= "build: " . $build . " ";
|
|
if ($serial) $info .= " serial: " . $serial . " ";
|
|
|
|
$newID = "";
|
|
$msh2->insert("`" . $config2['db_name'] . "`.`crash`", array(
|
|
"guid" => $guid,
|
|
"info" => utf8_encode(trim($info)),
|
|
"datum" => date('Y-m-d H:i:s', time()),
|
|
));
|
|
$newID = $msh2->getInsertedId();
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
//default is english
|
|
$confirm = "Confirm";
|
|
if ('hun' == $lang) {
|
|
$confirm = "Megerősít";
|
|
} else if ('ita' == $lang) {
|
|
$confirm = "Conferma";
|
|
} else if ('esp' == $lang) {
|
|
} else if ('ger' == $lang || 'de-DE' == $lang || 'de-AT' == $lang) {
|
|
$confirm = "Bestätigen";
|
|
} else if ('gre' == $lang) {
|
|
$confirm = "επιβεβαιώνω";
|
|
} else if ('cz' == $lang) {
|
|
$confirm = "Potvrdit";
|
|
} else if ('pol' == $lang) {
|
|
} else if ('cr' == $lang) {
|
|
$confirm = "Potvrdi";
|
|
} else if ('nl' == $lang) {
|
|
} else if ('kor' == $lang) {
|
|
$confirm = "확인";
|
|
} else if ('chn' == $lang) {
|
|
} else if ('por' == $lang) {
|
|
} else if ('nor' == $lang) {
|
|
$confirm = "Bekreft";
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
|
<script type="text/javascript" src="/public/js/jquery.js"></script>
|
|
<script type="text/javascript" src="/public/js/jquery_ui.js"></script>
|
|
<link href="/public/css/jquery.ui.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
.gomb {
|
|
width: 177px;
|
|
height: 40px;
|
|
padding-bottom: 1px;
|
|
font-size: 1.1em;
|
|
border: 0px;
|
|
float: right;
|
|
margin-top: 10px;
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
textarea {
|
|
overflow: auto;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript" charset="UTF-8">
|
|
jQuery(document).ready(function($) {
|
|
var ellenorizve = false;
|
|
|
|
$('#crashform').submit(function() {
|
|
//alert("submit volt");
|
|
|
|
var error = "";
|
|
var email = $('#email');
|
|
|
|
if (email.val() == '') {
|
|
error = "Missing e-mail address!\n";
|
|
}
|
|
|
|
|
|
// alert(error);
|
|
|
|
if (ellenorizve) {
|
|
//$('#crashform').submit();
|
|
} else if (error != "") {
|
|
ellenorizve = true;
|
|
$('#dialog').dialog('open');
|
|
return false;
|
|
}
|
|
/*else
|
|
$('#crashform').submit();*/
|
|
|
|
});
|
|
|
|
$('#dialog').dialog({
|
|
autoOpen: false,
|
|
modal: true,
|
|
width: 650,
|
|
buttons: {
|
|
'<?= $confirm ?>': function() {
|
|
myconfirm();
|
|
$('#dialog').dialog('close');
|
|
}
|
|
}
|
|
});
|
|
|
|
function myconfirm() {
|
|
ellenorizve = true;
|
|
$('#email').val($('#email2').val());
|
|
$('#crashform').submit();
|
|
}
|
|
|
|
});
|
|
</script>
|
|
|
|
<?php
|
|
//default is english
|
|
$text1 = "We are really sorry...";
|
|
$text2 = "It seems like ARCHLine.XP has crashed.";
|
|
$text3 = "Please take a few moments and describe the error you've just encountered. Thank you!";
|
|
$text4 = "Your e-mail:";
|
|
$text5 = "If you give us your email we will use this information to keep you informed about the changes and improvements. Thank you!";
|
|
$text6 = "Description";
|
|
$text7 = "Send report";
|
|
$text8 = "Your e-mail address seems to be missing.";
|
|
$text9 = "Providing your contact e-mail is not mandatory";
|
|
$text10 = "however sometimes we need to learn more about the issue to be able to find a solution. If you kindly provide an e-mail address we can use it to can ask about important details regarding this issue.";
|
|
$text11 = "If you decide not to provide your e-mail address, do not worry, please simply press the \"Confirm\" button.";
|
|
$text12 = "If you decide to provide your e-mail address, please fill up the following field and press the \"Confirm\" button.";
|
|
$text13 = "(This e-mail address will only be used to provide technical support in connection to this specific issue and will not be used for advertising and marketing purposes, except you have already provided the same address for such purposes.)";
|
|
if ('hun' == $lang) {
|
|
$text1 = "Őszintén sajnáljuk...";
|
|
$text2 = "Úgy tűnik az ARCHLine.XP rendellenesen állt le.";
|
|
$text3 = "Kérjük szánjon rá egy percet és ossza meg velünk mi történt, amikor a hiba jelentkezett. Közreműködése sokat segít!";
|
|
$text4 = "Az Ön e-mail címe:";
|
|
$text5 = "A megadott e-mail címen tudjuk felvenni Önnel a kapcsolatot, ha további információ szükséges és ezen tudjuk tájékoztatni is a fejleményekről. Köszönjük!";
|
|
$text6 = "A jelenség leírása";
|
|
$text7 = "Hibajelentés küldése";
|
|
$text8 = "Úgy tűnik nem adott meg e-mail címet.";
|
|
$text9 = "Az e-mail cím megadása nem kötelező";
|
|
$text10 = "ugyanakkor számos esetben szükségünk lehet további információkra ahhoz, hogy megoldást találjunk. Amennyiben úgy dönt, hogy megadja az e-mail címét, akkor fel tudjuk venni Önnel a kapcsolatot a rendellenességgel kapcsolatos fontos részletek miatt.";
|
|
$text11 = "Amennyiben nem szeretné megadni az e-mail címét, semmi gond, egyszerűen csak nyomja meg a \"Megerősít\" gombot.";
|
|
$text12 = "Amennyiben meg kívánja adni e-mail címét, kérjük gépelje az alábbi mezőbe és nyomja meg a \"Megerősít\" gombot.";
|
|
$text13 = "(Ezt az e-mail címet kizárólag az ezzel a konkrét jelenséggel kapcsolatos technikai segítségnyújtás céljára használjuk fel és nem használjuk egyéb hirdetési vagy marketing célokra, kivéve ha Ön ezt az e-mail címet máshol ilyen céllal már megadta.)";
|
|
} else if ('ita' == $lang) {
|
|
$text1 = "Vi chiediamo scusa...";
|
|
$text2 = "Sembra che ARCHLine.XP sia terminato in modo inaspettato.";
|
|
$text3 = "Vi preghiamo di dedicarci qualche attimo per descrivere il problema riscontrato. Grazie!";
|
|
$text4 = "Vostra e-mail:";
|
|
$text5 = "Se indicate la vostra email provvederemo a informarvi su eventuali modifiche o miglioramenti. Grazie!";
|
|
$text6 = "Descrizione";
|
|
$text7 = "Invia report";
|
|
$text8 = "Manca l'indirizzo e-mail.";
|
|
$text9 = "La fornitura del contatto e-mail non è obbligatoria";
|
|
$text10 = "ma talvolta ci è necessario avere ulteriori informazioni per capire e risolvere il problema. Se gentilmente ci fornite l'indirizzo e-mail possiamo utilizzarlo per richiedervi ulteriori dettagli riguardanti questo problema.";
|
|
$text11 = "Se non desiderate indicare l'indirizzo e-mail, nessun problema, semplicemente premete il pulsante \"Conferma\".";
|
|
$text12 = "Se desiderate indicare l'indirizzo e-mail, scrivetelo nel campo che segue e premete il pulsante \"Conferma\".";
|
|
$text13 = "(Questo indirizzo e-mail sarà utilizzato solo per supporto tecnico correlato allo specifico problema e non verrà utilizzato ne ceduto ad altri per fini pubblicitari o marketing, tranne il caso in cui lo stesso indirizzo sia già stato fornito per queste ragioni.)";
|
|
} else if ('esp' == $lang) {
|
|
} else if ('ger' == $lang || 'de-DE' == $lang || 'de-AT' == $lang) {
|
|
$text1 = "Bitte entschuldigen Sie...";
|
|
$text2 = "So wie es aussieht, wurde ARCHLine.XP unerwartet beendet.";
|
|
$text3 = "Bitte nehmen Sie sich einen Moment Zeit, und beschreiben Sie die Schritte welche dazu geführt haben.";
|
|
$text4 = "Ihre Email:";
|
|
$text5 = "Wenn Sie uns Ihre Email Adresse bekanntgeben, werden wir Sie über Änderungen und Fortschritte am Laufenden halten. Danke!";
|
|
$text6 = "Beschreibung";
|
|
$text7 = "Report abschicken";
|
|
$text8 = "Ihre Email Adresse fehlt.";
|
|
$text9 = "Die Angabe ist nicht verpflichtend";
|
|
$text10 = "aber für eventuelle Rückfragen wichtig. Wenn Sie uns eine Email Adresse mitteilen, so können wir Sie bei weiteren Fragen zur Lösungsfindung kontaktieren.";
|
|
$text11 = "Wenn Sie keine Email Adresse angeben wollen, so klicken Sie einfach auf die \"Bestätigen\" Schaltfläche.";
|
|
$text12 = "Ansonsten geben Sie bitte Ihre Email Adresse im folgenden Feld ein und klicken auf \"Bestätigen\".";
|
|
$text13 = "(Diese Email Adresse wird nur zur technischen Unterstützung in Bezug auf dieses Ticket und in keinem Fall für Werbung oder Marketing verwendet, außer Sie sind mit dieser Adresse bereits für solche Dienste gemeldet.)";
|
|
} else if ('gre' == $lang) {
|
|
$text1 = "Λυπούμαστε πραγματικά...";
|
|
$text2 = "Παρουσίασε σφάλμα στο ARCHLine.XP.";
|
|
$text3 = "Παρακαλούμε αφιερώστε λίγα λεπτά και να περιγράψετε το σφάλμα που μόλις συνάντησε. Ευχαριστούμε!";
|
|
$text4 = "Το e-mail σας:";
|
|
$text5 = "Αν μας δώσετε την ηλεκτρονική σας διεύθυνση e-mail, θα τη χρησιμοποιήσουμε για να σας ενημερώνουμε για τις αλλαγές και τις βελτιώσεις. Ευχαριστούμε!";
|
|
$text6 = "Περιγραφή";
|
|
$text7 = "Αποστολή αναφοράς";
|
|
$text8 = "Φαίνεται να λείπει η διεύθυνση e-mail.";
|
|
$text9 = "Η παροχή της ηλεκτρονική σας επαφής δεν είναι υποχρεωτική";
|
|
$text10 = "ωστόσο μερικές φορές χρειάζεται να μάθετε περισσότερα σχετικά με το θέμα για να μπορέσετε να βρείτε μια λύση. Αν έχετε την καλοσύνη να μας δώσετε μια διεύθυνση e-mail, θα μπορούσαμε να την χρησιμοποιήσουμε για να σας ρωτήσουμε κάτι σχετικό με αυτό το θέμα.";
|
|
$text11 = "Αν δεν επιθυμείτε να μας δώσετε τη διεύθυνση e-mail σας, μην ανησυχείτε, απλά πατήστε το κουμπί \"Επιβεβαίωση\".";
|
|
$text12 = "Αν αποφασίσετε να μας δώσετε τη διεύθυνση e-mail σας, παρακαλούμε συμπληρώστε το παρακάτω πεδίο και πατήστε το κουμπί \"Επιβεβαίωση\".";
|
|
$text13 = "(Αυτή η διεύθυνση e-mail θα χρησιμοποιηθεί μόνο για την παροχή τεχνικής υποστήριξης σε σχέση με το συγκεκριμένο θέμα και δεν θα χρησιμοποιηθεί για σκοπούς διαφήμισης και μάρκετινγκ, εκτός εάν εσείς την έχετε ήδη παράσχει την ίδια διεύθυνση για τέτοιους σκοπούς.)";
|
|
} else if ('cz' == $lang) {
|
|
$text1 = "Je nám opravdu líto ...";
|
|
$text2 = "Vypadá to, že se ARCHLine.XP zhroutil.";
|
|
$text3 = "Věnujte nám prosím chviličku a popište chybu, se kterou jste právě setkali. Děkujeme!";
|
|
$text4 = "Váš e-mail:";
|
|
$text5 = "Pokud nám poskytnete váš e-mail, použijeme tuto informaci, abychom vás průběžně informovali o změnách a vylepšeních. Děkujeme!";
|
|
$text6 = "Popis";
|
|
$text7 = "Poslat zprávu";
|
|
$text8 = "Zdá se, že schází vaše e-mailová adresa.";
|
|
$text9 = "Poskytnutí vašeho kontaktního e-mailu není povinné";
|
|
$text10 = "ale někdy se musíme dozvědět více o tomto problému, aby bylo možné najít řešení. Když budete tak laskaví a poskytnete nám vaši e-mailovou adresu, mohli bychom ji použít k dotazování na důležité detaily týkajících se tohoto problému.";
|
|
$text11 = "Pokud se rozhodnete neposkytnout svoji e-mailovou adresu, bez obav prosím jednoduše stiskněte tlačítko \"Potvrdit\".";
|
|
$text12 = "Pokud se rozhodnete poskytnout svoji e-mailovou adresu, vyplňte prosím následující políčko a stiskněte tlačítko \"Potvrdit\".";
|
|
$text13 = "(Tato emailová adresa bude použita pouze k poskytování technické podpory v souvislosti s tímto konkrétním problémem a nebude použita pro reklamní a marketingové účely, mimo případů, kdy jste již poskytli stejnou adresu pro tyto účely.)";
|
|
} else if ('pol' == $lang) {
|
|
} else if ('cr' == $lang) {
|
|
$text1 = "Ispričavamo se...";
|
|
$text2 = "Čini se da je ARCHLine.XP prestao s radom.";
|
|
$text3 = "Molim Vas, odvojite nekoliko trenutaka i opišite grešku na koju ste upravo naišli. Hvala Vam!";
|
|
$text4 = "Vaš e-mail:";
|
|
$text5 = "Vašu e-mail adresu koristit ćemo kako bi vas obavijestili o promjenama i poboljšanjima. Hvala Vam!";
|
|
$text6 = "Opis";
|
|
$text7 = "Pošalji izvješće";
|
|
$text8 = "Čini se da Vaša e-mail adresa nedostaje.";
|
|
$text9 = "Pružanje kontakta e-mail adrese nije obavezno";
|
|
$text10 = "no ponekad nam je potrebno više informacija o problemu kako bi mogli pronaći rješenje. Molimo Vas da nam pružite Vašu e-mail adresu kako bi je mogli koristiti za pitanja o važnim detaljima vezana uz ovaj problem.";
|
|
$text11 = "Ako odlučite da nam ne želite dati svoju e-mail adresu, ne brinite, molimo Vas samo pritisnite gumb \"Potvrdi\".";
|
|
$text12 = "Ako ste odlučili dati nam svoju e-mail adresu, molimo Vas da ispunite sljedeće polje i pritisnite gumb \"Potvrdi\".";
|
|
$text13 = "(Ova e-mail adresa će se koristiti samo za pružanje tehničke podrške vezane uz ovaj specifični problem i neće se koristiti za oglašavanje i marketinške svrhe, osim ako ste već dali istu adresu za takve svrhe.)";
|
|
} else if ('nl' == $lang) {
|
|
} else if ('kor' == $lang) {
|
|
$text1 = "이런 일이 벌어진 것에 대해 대단히 유감입니다.";
|
|
$text2 = "ARCHLine.XP가 충돌 한 것 같습니다.";
|
|
$text3 = "잠시 시간을내어 방금 만난 오류를 설명하십시오. 고맙습니다!";
|
|
$text4 = "귀하의 e-mail:";
|
|
$text5 = "이메일을 보내 주시면, 이 정보를 사용하여 변경 사항 및 개선 사항에 대한 정보를 알려 드리겠습니다. 대단히 감사합니다!";
|
|
$text6 = "오류내용";
|
|
$text7 = "보고서 보내기";
|
|
$text8 = "귀하의 전자 메일 주소가 누락 된 것 같습니다.";
|
|
$text9 = "전자메일을 제공하는 것은 필수는 아니지만 때로는 해결책을 찾을 수 있도록 문제에 대해 더 자세히 알아야합니다.";
|
|
$text10 = "친절하게 우리가 사용할 수있는 전자 메일 주소를 제공하면이 문제와 관련된 중요한 세부 정보를 요청할 수 있습니다.";
|
|
$text11 = "전자 메일 주소를 제공하지 않으려면 \"확인\"버튼을 누르십시오.";
|
|
$text12 = "전자 메일 주소를 제공하기로 결정한 경우, 다음 필드를 채우고 \"확인\"버튼을 누르십시오.";
|
|
$text13 = "(이 전자 메일 주소는이 특정 문제와 관련하여 기술 지원을 제공하는 데에만 사용되며 광고 및 마케팅 용도로는 사용되지 않습니다. 단, 귀하는 이미 그러한 주소로 동일한 주소를 제공 한 것입니다.)";
|
|
} else if ('chn' == $lang) {
|
|
} else if ('por' == $lang) {
|
|
} else if ('nor' == $lang) {
|
|
$text1 = "Opps!";
|
|
$text2 = "Dette var flaut, det ser ut som ARCHLine har krasjet.";
|
|
$text3 = "Kan du beskrive kort hva som hendte. Takk!";
|
|
$text4 = "Din e-mail:";
|
|
$text5 = "Hvis du oppgir din e-post vil vi holde deg oppdatert om endringer og forbedringer. Takk!";
|
|
$text6 = "Beskrivelse";
|
|
$text7 = "Sende rapport";
|
|
$text8 = "Det ser ut som vi mangler din e-post.";
|
|
$text9 = "Dette er ikke obligatorisk men";
|
|
$text10 = "noen ganger trenger vi litt mere informasjon om saken for å løse problemet. Hvis du kan oppgi din e-post adresse kan vi spørre deg om viktige detaljer om saken.";
|
|
$text11 = "Det er ingen problem om du ikke vil gi oss din e-post adresse, bare klikk \"Bekreft\" knappen.";
|
|
$text12 = "Hvis du vil oppgi din e-post, fyll inn følgene felt og klikk \"Bekreft\" knappen.";
|
|
$text13 = "(Denne e-post vil kun brukes til kontakt fra teknisk avdeling i forbindelse med saken. Den vil IKKE brukes til reklame eller markedsførings formål med unntak av der du har tidligere oppgitt samme e-post til slik.)";
|
|
}
|
|
?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div style="width: 694px; font-family: Arial,Helvetica,sans-serif; font-size: 16px;">
|
|
<div style="background: url('/public/img/bg/crash/box_main_top.png') no-repeat; width: 100%; height: 14px;"></div>
|
|
<div style="background: url('/public/img/bg/crash/box_main_repeat.png') repeat-y; width: 644px; padding: 0 30px 0 20px;">
|
|
<h1 style="margin: 0px;"><?= $text1 ?></h1>
|
|
<p style="margin-bottom: 0px;"><?= $text2 ?> <?= $text3 ?><br /><br /></p>
|
|
<form action="/maintenance/crash.php" method="post" id="crashform">
|
|
<?= $text4 ?> <input type="text" name="email" id="email" value="" style="width: 200px;" /><br />
|
|
<span style="font-size: 0.8em"><?= $text5 ?></span><br />
|
|
<input type="hidden" name="guid" value="<?= $guid ?>" />
|
|
<input type="hidden" name="newid" value="<?= $newID ?>" />
|
|
<input type="hidden" name="language" value="<?= $lang ?>" />
|
|
<?= $text6 ?>: <br />
|
|
<textarea name="info" rows="15" cols="50" style="width: 100%; height: 150px;"></textarea>
|
|
<input type="submit" class="gomb" value="<?= $text7 ?>" style="background: url(/public/img/bg/crash/button_send.png); color: #FFFFFF; margin-bottom: 0px;" />
|
|
<div style="clear: both; height: 1px; margin: 0px; padding: 0px; font-size: 1px;"></div>
|
|
</form>
|
|
</div>
|
|
<div style="background: url('/public/img/bg/crash/box_main_bottom.png') no-repeat; width: 100%; height: 14px;"></div>
|
|
<img src="/public/img/bg/crash/logo.png" style="margin: 5px 15px;" />
|
|
|
|
<div id="dialog" style="display: none; font-size: 16px;" title="E-mail">
|
|
<?= $text8 ?> <strong><?= $text9 ?></strong>, <?= $text10 ?><br />
|
|
<br />
|
|
<?= $text11 ?><br />
|
|
<?= $text12 ?><br />
|
|
<br />
|
|
<input type="text" name="email2" id="email2" />
|
|
<br />
|
|
<br />
|
|
<?= $text13 ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
<?php
|
|
}
|
|
?>
|