From: Tim Düsterhus Date: Tue, 29 Sep 2015 20:44:31 +0000 (+0200) Subject: Add translation for "What happened?" in exception handler X-Git-Tag: 3.0.0_Beta_1~2094^2~5 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dd6a2623bf3cf38b9210f851635b48aa1200068c;p=GitHub%2FWoltLab%2FWCF.git Add translation for "What happened?" in exception handler --- diff --git a/wcfsetup/install/files/lib/core.functions.php b/wcfsetup/install/files/lib/core.functions.php index fc0dfc01a0..f9b45b1083 100644 --- a/wcfsetup/install/files/lib/core.functions.php +++ b/wcfsetup/install/files/lib/core.functions.php @@ -190,9 +190,24 @@ namespace wcf\functions\exception {

Fatal Error

+ What happened?

An unrecoverable error occured while trying to handle your request. The internal error code is as follows:

Please send this code to the administrator to help him fix the issue.

+

If you are the administrator you can view the complete error message at "ACP > Logs > Errors" einsehen. The error code itself is worthless for the support!

+ '; + try { + $message = str_replace('{$exceptionID}', $exceptionID, WCF::getLanguage()->get('wcf.global.error.exception', true)); + } + catch (\Exception $e) { + + } + catch (\Throwable $e) { + + } + echo $message; + ?>
diff --git a/wcfsetup/install/lang/de.xml b/wcfsetup/install/lang/de.xml index 49255cca32..5dfa0906a6 100644 --- a/wcfsetup/install/lang/de.xml +++ b/wcfsetup/install/lang/de.xml @@ -2221,7 +2221,10 @@ Fehler sind beispielsweise: - Die Fehlermeldung kann mit dieser ID über „ACP » Protokoll » Fehler“ eingesehen werden.]]> + Was ist passiert? +

Ein nicht zu korrigierender Fehler ist bei der Verarbeitung Ihrer Anfrage aufgetreten. Der interne Fehlercode lautet: {$exceptionID}

+

Leiten Sie diesen Code an den Administrator weiter, um ihm bei der Behebung zu helfen.

+

Wenn Sie der Administrator sind können Sie die vollständige Fehler bei „ACP » Protokoll » Fehler“ einsehen. Der Fehlercode selbst ist für den Support wertlos!

]]>
diff --git a/wcfsetup/install/lang/en.xml b/wcfsetup/install/lang/en.xml index 9416109a07..8069a6de82 100644 --- a/wcfsetup/install/lang/en.xml +++ b/wcfsetup/install/lang/en.xml @@ -2219,7 +2219,10 @@ Errors are: - The error message can be looked up at “ACP » Logs » Errors”.]]> + What happened? +

An unrecoverable error occured while trying to handle your request. The internal error code is as follows: {$exceptionID}

+

Please send this code to the administrator to help him fix the issue.

+

If you are the administrator you can view the complete error message at “ACP » Logs » Errors” einsehen. The error code itself is worthless for the support!

]]>