db update mail via notification()
remove last template
This commit is contained in:
parent
5861bdd6e9
commit
a8c90155f8
44
boot.php
44
boot.php
|
@ -1025,26 +1025,14 @@ if(! function_exists('update_db')) {
|
||||||
require_once("include/dbstructure.php");
|
require_once("include/dbstructure.php");
|
||||||
$retval = update_structure(false, true);
|
$retval = update_structure(false, true);
|
||||||
if($retval) {
|
if($retval) {
|
||||||
//send the administrator an e-mail
|
update_fail(
|
||||||
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
DB_UPDATE_VERSION,
|
||||||
$email_msg = replace_macros($email_tpl, array(
|
sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
|
||||||
'$sitename' => $a->config['sitename'],
|
);
|
||||||
'$siteurl' => $a->get_baseurl(),
|
|
||||||
'$update' => DB_UPDATE_VERSION,
|
|
||||||
'$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
|
|
||||||
));
|
|
||||||
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
|
|
||||||
require_once('include/email.php');
|
|
||||||
$subject = email_header_encode($subject,'UTF-8');
|
|
||||||
mail($a->config['admin_email'], $subject, $email_msg,
|
|
||||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n"
|
|
||||||
.'Content-type: text/plain; charset=UTF-8'."\n"
|
|
||||||
.'Content-transfer-encoding: 8bit');
|
|
||||||
//try the logger
|
|
||||||
logger("CRITICAL: Database structure update failed: ".$retval);
|
|
||||||
break;
|
break;
|
||||||
} else
|
} else {
|
||||||
set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success');
|
set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success');
|
||||||
|
}
|
||||||
|
|
||||||
for($x = $stored; $x < $current; $x ++) {
|
for($x = $stored; $x < $current; $x ++) {
|
||||||
if(function_exists('update_' . $x)) {
|
if(function_exists('update_' . $x)) {
|
||||||
|
@ -1068,22 +1056,10 @@ if(! function_exists('update_db')) {
|
||||||
$retval = $func();
|
$retval = $func();
|
||||||
if($retval) {
|
if($retval) {
|
||||||
//send the administrator an e-mail
|
//send the administrator an e-mail
|
||||||
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
update_fail(
|
||||||
$email_msg = replace_macros($email_tpl, array(
|
$x,
|
||||||
'$sitename' => $a->config['sitename'],
|
sprintf(t('Update %s failed. See error logs.'), $x)
|
||||||
'$siteurl' => $a->get_baseurl(),
|
);
|
||||||
'$update' => $x,
|
|
||||||
'$error' => sprintf( t('Update %s failed. See error logs.'), $x)
|
|
||||||
));
|
|
||||||
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
|
|
||||||
require_once('include/email.php');
|
|
||||||
$subject = email_header_encode($subject,'UTF-8');
|
|
||||||
mail($a->config['admin_email'], $subject, $email_msg,
|
|
||||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
|
||||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
|
||||||
. 'Content-transfer-encoding: 8bit' );
|
|
||||||
//try the logger
|
|
||||||
logger('CRITICAL: Update Failed: '. $x);
|
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
set_config('database','update_' . $x, 'success');
|
set_config('database','update_' . $x, 'success');
|
||||||
|
|
|
@ -1,5 +1,66 @@
|
||||||
<?php
|
<?php
|
||||||
require_once("boot.php");
|
require_once("boot.php");
|
||||||
|
require_once("include/text.php");
|
||||||
|
/*
|
||||||
|
* send the email and do what is needed to do on update fails
|
||||||
|
*
|
||||||
|
* @param update_id (int) number of failed update
|
||||||
|
* @param error_message (str) error message
|
||||||
|
*/
|
||||||
|
function update_fail($update_id, $error_message){
|
||||||
|
//send the administrators an e-mail
|
||||||
|
$admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
|
||||||
|
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
|
||||||
|
$admin_mail_list
|
||||||
|
);
|
||||||
|
|
||||||
|
// every admin could had different language
|
||||||
|
|
||||||
|
foreach ($adminlist as $admin) {
|
||||||
|
$lang = (($admin['language'])?$admin['language']:'en');
|
||||||
|
push_lang($lang);
|
||||||
|
|
||||||
|
$preamble = deindent(t("
|
||||||
|
The friendica developers released update %s recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and I can't do it alone. Please contact a
|
||||||
|
friendica developer if you can not help me on your own. My database might be invalid.");
|
||||||
|
$body = t("The error message is\n[pre]%s[/pre]");
|
||||||
|
$preamble = sprintf($preamble, $update_id);
|
||||||
|
$body = sprintf($body, $error_message);
|
||||||
|
|
||||||
|
notification(array(
|
||||||
|
'type' => "SYSTEM_EMAIL",
|
||||||
|
'to_email' => $admin['email'],
|
||||||
|
'preamble' => $preamble,
|
||||||
|
'body' => $body,
|
||||||
|
'language' => $lang,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
||||||
|
$email_msg = replace_macros($email_tpl, array(
|
||||||
|
'$sitename' => $a->config['sitename'],
|
||||||
|
'$siteurl' => $a->get_baseurl(),
|
||||||
|
'$update' => DB_UPDATE_VERSION,
|
||||||
|
'$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
|
||||||
|
));
|
||||||
|
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
|
||||||
|
require_once('include/email.php');
|
||||||
|
$subject = email_header_encode($subject,'UTF-8');
|
||||||
|
mail($a->config['admin_email'], $subject, $email_msg,
|
||||||
|
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n"
|
||||||
|
.'Content-type: text/plain; charset=UTF-8'."\n"
|
||||||
|
.'Content-transfer-encoding: 8bit');
|
||||||
|
*/
|
||||||
|
//try the logger
|
||||||
|
logger("CRITICAL: Database structure update failed: ".$retval);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
function dbstructure_run(&$argv, &$argc) {
|
function dbstructure_run(&$argv, &$argc) {
|
||||||
global $a, $db;
|
global $a, $db;
|
||||||
|
|
|
@ -312,7 +312,7 @@ function notification($params) {
|
||||||
case "SYSTEM_REGISTER_REQUEST":
|
case "SYSTEM_REGISTER_REQUEST":
|
||||||
$subject = sprintf( t('[Friendica System:Notify] registration request'));
|
$subject = sprintf( t('[Friendica System:Notify] registration request'));
|
||||||
$preamble = sprintf( t('You\'ve received a registration request from \'%1$s\' at %2$s'), $params['source_name'], $sitename);
|
$preamble = sprintf( t('You\'ve received a registration request from \'%1$s\' at %2$s'), $params['source_name'], $sitename);
|
||||||
$epreamble = sprintf( t('You\'ve received a registration request [url=%1$s]an introduction[/url] from %2$s.'),
|
$epreamble = sprintf( t('You\'ve received a [url=%1$s]registration request[/url] from %2$s.'),
|
||||||
$itemlink,
|
$itemlink,
|
||||||
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
|
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
|
||||||
$body = sprintf( t('Full Name: %1$s\nSite Location: %2$s\nLogin Name: %3$s (%4$s)'),
|
$body = sprintf( t('Full Name: %1$s\nSite Location: %2$s\nLogin Name: %3$s (%4$s)'),
|
||||||
|
|
|
@ -120,7 +120,7 @@ function register_post(&$a) {
|
||||||
|
|
||||||
// send email to admins
|
// send email to admins
|
||||||
$admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
|
$admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
|
||||||
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s) LIMIT 1",
|
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
|
||||||
$admin_mail_list
|
$admin_mail_list
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
Cheic,
|
|
||||||
Jo soc a $sitename.
|
|
||||||
Els desenvolupadors de Friendica han alliberat una actualització $update recentment,
|
|
||||||
però quan vaig intentar actualitzar, quelcom terrible va anar malament.
|
|
||||||
Això necessita ser reparat aviat i no ho puc fer sol. Per favor, contacta amb
|
|
||||||
un desenvolupador de Friendica si no em pots ajudar per tu mateix. La meva base de dades es pot corrompre.
|
|
||||||
|
|
||||||
El missatge d'error va ser '$error'.
|
|
||||||
|
|
||||||
Ho lamento.
|
|
||||||
El teu servidor friendica a $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Ahoj,
|
|
||||||
Já jsem $sitename.
|
|
||||||
Vývojáři friendica nednávno uvolnili aktualizaci $update,
|
|
||||||
ale když jsem se ji snažil nainstalovat, nepovedlo se mi to.
|
|
||||||
Je to třeba rychle opravit a já to sám nedokážu. Prosím kontaktuj
|
|
||||||
vývojáře friendica, pokud mi nemůžeš pomoct ty sám. Moje databáze může být nekonzistentní.
|
|
||||||
|
|
||||||
Chybová zpráva je '$error'.
|
|
||||||
|
|
||||||
Je mi líto,
|
|
||||||
Tvůj web friendica na $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hi,
|
|
||||||
ich bin {{$sitename}}.
|
|
||||||
Die friendica Entwickler haben jüngst Update {{$update}} veröffentlicht,
|
|
||||||
aber als ich versucht habe es zu installieren ist etwas schrecklich schief gegangen.
|
|
||||||
Das sollte schnellst möglichst behoben werden und ich kann das nicht alleine machen.
|
|
||||||
Bitte wende dich an einen friendica Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte unbrauchbar sein.
|
|
||||||
|
|
||||||
Die Fehlermeldung lautet '{{$error}}'.
|
|
||||||
|
|
||||||
Tut mir Leid!
|
|
||||||
Deine friendica Instanz auf {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hi,
|
|
||||||
$sitename
|
|
||||||
Die friendica Entwickler haben jüngst Update $update veröffentlicht,
|
|
||||||
aber als ich versucht habe es zu installieren ist etwas schrecklich schief gegangen.
|
|
||||||
Das sollte schnellst möglich behoben werden und ich kann das nicht alleine machen.
|
|
||||||
Bitte wende dich an einen friendica Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte unbrauchbar sein.
|
|
||||||
|
|
||||||
Die Fehlermeldung lautet '$error'.
|
|
||||||
|
|
||||||
Tut mir Leid!
|
|
||||||
Deine friendica Instanz auf $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hey,
|
|
||||||
I'm {{$sitename}};
|
|
||||||
The friendica developers released update {{$update}} recently,
|
|
||||||
but when I tried to install it, something went terribly wrong.
|
|
||||||
This needs to be fixed soon and I can't do it alone. Please contact a
|
|
||||||
friendica developer if you can not help me on your own. My database might be invalid.
|
|
||||||
|
|
||||||
The error message is '{{$error}}'.
|
|
||||||
|
|
||||||
I'm sorry,
|
|
||||||
your friendica server at {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hey,
|
|
||||||
I'm $sitename;
|
|
||||||
The friendica developers released update $update recently,
|
|
||||||
but when I tried to install it, something went terribly wrong.
|
|
||||||
This needs to be fixed soon and I can't do it alone. Please contact a
|
|
||||||
friendica developer if you can not help me on your own. My database might be invalid.
|
|
||||||
|
|
||||||
The error message is '$error'.
|
|
||||||
|
|
||||||
I'm sorry,
|
|
||||||
your friendica server at $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Saluton!
|
|
||||||
Mi estas {{$sitename}}.
|
|
||||||
La programistoj de Frienda eldonis ĝisdatigon {{$update}} antaŭ ne longe,
|
|
||||||
sed kiam mi provis instali ĝin, io terure malsukcesis.
|
|
||||||
Tio tuj bezonas riparon kaj mi ne povas fari ĝin sole. Bonvolu kontakti
|
|
||||||
Friendica programistion se vi ne povas helpi vin mem. Mia datumbazo eble ne plu validas.
|
|
||||||
|
|
||||||
La erarmesaĝo estas '{{$error}}'.
|
|
||||||
|
|
||||||
Mi bedaŭras,
|
|
||||||
via Friendica servilo ĉe {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Saluton!
|
|
||||||
Mi estas $sitename.
|
|
||||||
La programistoj de Frienda eldonis ĝisdatigon $update antaŭ ne longe,
|
|
||||||
sed kiam mi provis instali ĝin, io terure malsukcesis.
|
|
||||||
Tio tuj bezonas riparon kaj mi ne povas fari ĝin sole. Bonvolu kontakti
|
|
||||||
Friendica programistion se vi ne povas helpi vin mem. Mia datumbazo eble ne plu validas.
|
|
||||||
|
|
||||||
La erarmesaĝo estas '$error'.
|
|
||||||
|
|
||||||
Mi bedaŭras,
|
|
||||||
via Friendica servilo ĉe $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hola,
|
|
||||||
Estoy en $sitename;
|
|
||||||
Los desarrolladores actualizaron a $update recientemente,
|
|
||||||
pero cuando intento instalarlo, algo falla.
|
|
||||||
Este error debe ser corregido, pero no puedo hacerlo solo. Por favor,
|
|
||||||
avisa a algún desarrollador si no puedes ayudarme tú mismo. Mi
|
|
||||||
|
|
||||||
base de datos puede estar corrupta. El error que me da es '$error'.
|
|
||||||
|
|
||||||
Lo siento,
|
|
||||||
tu servidor de Friendica en $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Salut,
|
|
||||||
Je suis $sitename;
|
|
||||||
Les développeurs de Friendica ont publié la mise-à-jour $update récemment,
|
|
||||||
mais quand j'essaye de l'installer, quelque-chose merdoie violemment.
|
|
||||||
Il faudrait réparer ça rapidement, et je ne peux le faire tout seul. Merci de contacter un développeur Friendica
|
|
||||||
si vous ne pensez pas pouvoir m'aider tout seul. Ma base de données pourrait tout à fait être corrompue.
|
|
||||||
|
|
||||||
Le message d'erreur est '$error'.
|
|
||||||
|
|
||||||
Je suis vraiment désolé,
|
|
||||||
votre dévoué serveur friendica, situé à $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hæ,
|
|
||||||
Ég er {{$sitename}}.
|
|
||||||
Þróunarteymi friendica gáfu nýlega út uppfærslu {{$update}},
|
|
||||||
En þegar ég reyndi að uppfæra, gerist eitthvað hræðilegt.
|
|
||||||
Þetta þarf að laga strax og ég get það ekki ein. Hafðu samband við
|
|
||||||
þróunarteymi friendica ef þú getur ekki hjálpað mér. Gagnagrunnurinn minn gæti verið skemmdur
|
|
||||||
|
|
||||||
Villuskilaboðin eru '{{$error}}'.
|
|
||||||
|
|
||||||
Fyrirgefðu,
|
|
||||||
þinn friendica þjónn á {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hæ,
|
|
||||||
Ég er $sitename;
|
|
||||||
Þróunarteymi friendica gáfu nýlega út uppfærslu $update,
|
|
||||||
En þegar ég reyndi að uppfæra, gerist eitthvað hræðilegt.
|
|
||||||
Þetta þarf að laga strax og ég get það ekki ein. Hafðu samband við
|
|
||||||
þróunarteymi friendica ef þú getur ekki hjálpað mér. Gagnagrunnurinn minn gæti verið skemmdur
|
|
||||||
|
|
||||||
Villuskilaboðin eru '$error'.
|
|
||||||
|
|
||||||
Fyrirgefðu,
|
|
||||||
þinn friendica þjónn á $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Ehi,
|
|
||||||
Sono {{$sitename}};
|
|
||||||
Gli sviluppatori di Friendica hanno appena rilasciato la nuova versione {{$update}},
|
|
||||||
ma appena ho provato ad installarla qualcosa è andato tremendamente storto.
|
|
||||||
Le cose vanno messe a posto al più presto e non riesco a farlo da solo. Contatta uno
|
|
||||||
sviluppatore di friendica se non riesci ad aiutarmi da solo. Il mio database potrebbe non essere più a posto.
|
|
||||||
|
|
||||||
Il messaggio di errore è: '{{$error}}'.
|
|
||||||
|
|
||||||
Mi dispiace,
|
|
||||||
il tuo server friendica su {{$siteurl}}
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hei,
|
|
||||||
jeg er {{$sitename}}.
|
|
||||||
Friendica-utviklerne slapp nylig oppdateringen {{$update}},
|
|
||||||
men da jeg prøvde å installere den, gikk noe forferdelig galt.
|
|
||||||
Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en
|
|
||||||
Friendica-utvikler hvis du ikke kan hjelpe meg på egenhånd. Databasen min er kanskje ugyldig.
|
|
||||||
|
|
||||||
Feilmeldingen er '{{$error}}'.
|
|
||||||
|
|
||||||
Jeg beklager,
|
|
||||||
din Friendica-tjener hos {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hei,
|
|
||||||
Jeg er $sitename;
|
|
||||||
Friendica-utviklerne slapp nylig oppdateringen $update,
|
|
||||||
men da jeg prøvde å installere den, gikk noe forferdelig galt.
|
|
||||||
Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en
|
|
||||||
Friendica-utvikler hvis du ikke kan hjelpe meg på egenhånd. Databasen min er kanskje ugyldig.
|
|
||||||
|
|
||||||
Feilmeldingen er '$error'.
|
|
||||||
|
|
||||||
Jeg beklager,
|
|
||||||
din Friendica-tjener hos $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hallo,
|
|
||||||
Ik ben $sitename;
|
|
||||||
De friendica ontwikkelaars hebben update $update vrijgegeven.
|
|
||||||
Maar toen ik probeerde te installeren ging het vreselijk fout
|
|
||||||
Dit moet snel gerepareerd worden maar dat kan ik niet alleen, Contacteer a.u.b.
|
|
||||||
een Friendica ontwikkelaar als je me niet zelf kunt helpen. Mijn database kan ongeldig zijn.
|
|
||||||
|
|
||||||
De foutmeldimg is '$error'.
|
|
||||||
|
|
||||||
Sorry,
|
|
||||||
je Friendica server op $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hey,
|
|
||||||
Jestem {{$sitename}}.
|
|
||||||
Deweloperzy friendica wydali ostatnio aktualizację {{$update}},
|
|
||||||
ale kiedy próbowałem ją zainstalować, coś poszło nie tak.
|
|
||||||
To musi być szybko poprawione, ale nie mogę zrobić tego sam. Proszę o kontakt z
|
|
||||||
deweloperami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być uszkodzona.
|
|
||||||
|
|
||||||
Komunikat o błędzie: '{{$error}}'.
|
|
||||||
|
|
||||||
Przepraszam,
|
|
||||||
twój serwer friendica w {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Hey,
|
|
||||||
Jestem $sitename;
|
|
||||||
Deweloperzy friendica wydali ostatnio aktualizację $update,
|
|
||||||
ale kiedy próbowałem ją zainstalować, coś poszło nie tak.
|
|
||||||
To musi być szybko poprawione, ale nie mogę zrobić tego sam. Proszę o kontakt z
|
|
||||||
deweloperami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być uszkodzona.
|
|
||||||
|
|
||||||
Komunikat o błędzie: '$error'.
|
|
||||||
|
|
||||||
Przepraszam,
|
|
||||||
twój serwer friendica w $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Oi,
|
|
||||||
Eu sou {{$sitename}}
|
|
||||||
Os desenvolvedores do friendica lançaram uma atualização {{$update}} recentemente,
|
|
||||||
mas quando tentei instalá-la algo de errado aconeteceu.
|
|
||||||
Isso precisa ser corrigido logo e não posso fazê-lo sozinho. Por favor contacte um
|
|
||||||
desenvolvedor do friendica se você não puder fazer a correção. Meu banco de dados pode estar inválido.
|
|
||||||
|
|
||||||
A mensagem de erro é : '{{$error}}'.
|
|
||||||
|
|
||||||
Lamento.
|
|
||||||
Seu servidor friendica em {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
Oi,
|
|
||||||
Eu sou $sitename
|
|
||||||
Os desenvolvedores do friendica lançaram uma atualização $update recentemente,
|
|
||||||
mas quando tentei instalá-la algo de errado aconeteceu.
|
|
||||||
Isso precisa ser corrigido logo e não posso fazê-lo sozinho. Por favor contacte um
|
|
||||||
desenvolvedor do friendica se você não puder fazer a correção. Meu banco de dados pode estar inválido.
|
|
||||||
|
|
||||||
A mensagem de erro é : '$error'.
|
|
||||||
|
|
||||||
Lamento.
|
|
||||||
Seu servidor friendica em $siteurl
|
|
|
@ -1,11 +0,0 @@
|
||||||
Bună,
|
|
||||||
Sunt $sitename;
|
|
||||||
Dezvoltatorii friendica au lansat actualizarea $update recent,
|
|
||||||
dar când am incercat s-o instalez, ceva a mers teribil de prost.
|
|
||||||
Aceasta trebuie fixată curând . Nu o pot face singur. Vă rog contactaţi-mă la
|
|
||||||
friendica dezvoltator dacă nu mă pot ajuta pe cont propriu. Baza mea de date ar putea fi invalidă.
|
|
||||||
|
|
||||||
Mesajul de eraoare este '$error'.
|
|
||||||
|
|
||||||
Îmi pare rău.
|
|
||||||
serverul dvs. friendica la $siteurl
|
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Hey,
|
|
||||||
I'm {{$sitename}}.
|
|
||||||
The friendica developers released update {{$update}} recently,
|
|
||||||
but when I tried to install it, something went terribly wrong.
|
|
||||||
This needs to be fixed soon and I can't do it alone. Please contact a
|
|
||||||
friendica developer if you can not help me on your own. My database might be invalid.
|
|
||||||
|
|
||||||
The error message is '{{$error}}'.
|
|
||||||
|
|
||||||
I'm sorry,
|
|
||||||
your friendica server at {{$siteurl}}
|
|
|
@ -1,11 +0,0 @@
|
||||||
你好,
|
|
||||||
我是$sitename;
|
|
||||||
Friendica开发者最近出版更新$update,
|
|
||||||
可我安装的时候,遇到什么灾害,
|
|
||||||
这要紧急地维修,可我不会自己做。请联系
|
|
||||||
一个Friendica开发者如果你不会自己帮我。我的数据库会不效。
|
|
||||||
|
|
||||||
错误通信是「$error」
|
|
||||||
|
|
||||||
不好意思,
|
|
||||||
你Friendica服务器在$siteurl
|
|
Loading…
Reference in a new issue