add Smarty templates for international templates
This commit is contained in:
parent
f0a08a05ae
commit
ddb2a8c23a
5
boot.php
5
boot.php
@ -1016,9 +1016,6 @@ function check_config(&$a) {
|
||||
if($retval) {
|
||||
//send the administrator an e-mail
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
||||
$email_msg = replace_macros($email_tpl, array(
|
||||
'$sitename' => $a->config['sitename'],
|
||||
@ -1027,8 +1024,6 @@ function check_config(&$a) {
|
||||
'$error' => sprintf( t('Update %s failed. See error logs.'), $x)
|
||||
));
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
|
||||
|
||||
mail($a->config['admin_email'], $subject, $email_msg,
|
||||
|
@ -230,9 +230,6 @@ function send_reg_approval_email($arr) {
|
||||
else
|
||||
push_lang('en');
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
$email_msg = replace_macros(get_intltext_template('register_verify_email.tpl'), array(
|
||||
'$sitename' => get_config('config','sitename'),
|
||||
'$siteurl' => z_root(),
|
||||
@ -241,8 +238,6 @@ function send_reg_approval_email($arr) {
|
||||
'$hash' => $hash
|
||||
));
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($admin['email'], sprintf( t('Registration request at %s'), get_config('config','sitename')),
|
||||
$email_msg,
|
||||
'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n"
|
||||
@ -260,9 +255,6 @@ function send_reg_approval_email($arr) {
|
||||
|
||||
function send_verification_email($email,$password) {
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
$email_msg = replace_macros(get_intltext_template('register_open_eml.tpl'), array(
|
||||
'$sitename' => get_config('config','sitename'),
|
||||
'$siteurl' => z_root(),
|
||||
@ -270,9 +262,6 @@ function send_verification_email($email,$password) {
|
||||
'$password' => $password,
|
||||
));
|
||||
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($email, sprintf( t('Registration details for %s'), get_config('system','sitename')),
|
||||
$email_msg,
|
||||
'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n"
|
||||
|
@ -3601,9 +3601,6 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
|
||||
|
||||
if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
$email_tpl = get_intltext_template('follow_notify_eml.tpl');
|
||||
$email = replace_macros($email_tpl, array(
|
||||
'$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
|
||||
@ -3613,8 +3610,6 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
|
||||
'$sitename' => $a->config['sitename']
|
||||
));
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($r[0]['email'],
|
||||
(($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
|
||||
$email,
|
||||
|
@ -31,10 +31,6 @@ function lostpass_post(&$a) {
|
||||
if($r)
|
||||
info( t('Password reset request issued. Check your email.') . EOL);
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
|
||||
$email_tpl = get_intltext_template("lostpass_eml.tpl");
|
||||
$email_tpl = replace_macros($email_tpl, array(
|
||||
'$sitename' => $a->config['sitename'],
|
||||
@ -44,9 +40,6 @@ function lostpass_post(&$a) {
|
||||
'$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $new_password
|
||||
));
|
||||
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($email, sprintf( t('Password reset requested at %s'),$a->config['sitename']),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
@ -99,8 +92,6 @@ function lostpass_content(&$a) {
|
||||
));
|
||||
info("Your password has been reset." . EOL);
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
|
||||
$email_tpl = get_intltext_template("passchanged_eml.tpl");
|
||||
@ -112,8 +103,6 @@ function lostpass_content(&$a) {
|
||||
'$new_password' => $new_password,
|
||||
'$uid' => $newuid ));
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($email,"Your password has changed at {$a->config['sitename']}",$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
|
@ -39,9 +39,6 @@ function user_allow($hash) {
|
||||
|
||||
push_lang($register[0]['language']);
|
||||
|
||||
$engine = get_app()->get_template_engine();
|
||||
get_app()->set_template_engine();
|
||||
|
||||
$email_tpl = get_intltext_template("register_open_eml.tpl");
|
||||
$email_tpl = replace_macros($email_tpl, array(
|
||||
'$sitename' => $a->config['sitename'],
|
||||
@ -52,8 +49,6 @@ function user_allow($hash) {
|
||||
'$uid' => $user[0]['uid']
|
||||
));
|
||||
|
||||
get_app()->set_template_engine($engine);
|
||||
|
||||
$res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
|
@ -78,9 +78,6 @@ function setup_post(&$a) {
|
||||
// connect to db
|
||||
$db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
|
||||
|
||||
// disable smarty for this template
|
||||
$engine = $a->get_template_engine();
|
||||
$a->set_template_engine();
|
||||
$tpl = get_intltext_template('htconfig.tpl');
|
||||
$txt = replace_macros($tpl,array(
|
||||
'$dbhost' => $dbhost,
|
||||
@ -93,7 +90,6 @@ function setup_post(&$a) {
|
||||
'$phpath' => $phpath,
|
||||
'$adminmail' => $adminmail
|
||||
));
|
||||
$a->set_template_engine($engine);
|
||||
|
||||
$result = file_put_contents('.htconfig.php', $txt);
|
||||
if(! $result) {
|
||||
|
18
view/ca/smarty3/cmnt_received_eml.tpl
Normal file
18
view/ca/smarty3/cmnt_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
'{{$from}}' ha comentat un element/conversació que estàs seguint.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accedeix a {{$siteurl}} per a veure la conversa completa:
|
||||
|
||||
{{$display}}
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
||||
|
13
view/ca/smarty3/follow_notify_eml.tpl
Normal file
13
view/ca/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
Apreciat/da {{$myname}},
|
||||
|
||||
Tens un nou seguidor en {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Pots visitar el seu perfil en {{$url}}.
|
||||
|
||||
Iniciï sessió en el seu lloc per a aprovar o rebutjar/cancelar la sol·licitud.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
19
view/ca/smarty3/friend_complete_eml.tpl
Normal file
19
view/ca/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
Grans noticies... '{{$fn}}' a '{{$dfrn_url}}' ha acceptat la teva sol·licitud de connexió en '{{$sitename}}'.
|
||||
|
||||
Ara sous amics mutus i podreu intercanviar actualizacions de estatus, fotos, i correu electrónic
|
||||
sense cap restricció.
|
||||
|
||||
Visita la teva pàgina de 'Contactes' en {{$sitename}} si desitja realizar qualsevol canvi en aquesta relació.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[Per exemple, pots crear un perfil independent amb informació que no esta disponible al públic en general
|
||||
- i assignar drets de visualització a '{{$fn}}'].
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
21
view/ca/smarty3/intro_complete_eml.tpl
Normal file
21
view/ca/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
'{{$fn}}' en '{{$dfrn_url}}' ha acceptat la teva petició
|
||||
connexió a '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' ha optat per acceptar-te com a "fan", que restringeix certes
|
||||
formes de comunicació, com missatges privats i algunes interaccions
|
||||
amb el perfil. Si ets una "celebritat" o una pàgina de comunitat,
|
||||
aquests ajustos s'aplican automàticament
|
||||
|
||||
'{{$fn}}' pot optar per extendre aixó en una relació més permisiva
|
||||
en el futur.
|
||||
|
||||
Començaràs a rebre les actualizacions públiques de estatus de '{{$fn}}',
|
||||
que apareixeran a la teva pàgina "Xarxa" en
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
35
view/ca/smarty3/lostpass_eml.tpl
Normal file
35
view/ca/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
S'ha rebut una sol·licitud en {{$sitename}} recentment per restablir
|
||||
la teva contrasenya. Per confirmar aquesta sol·licitud, per favor seleccioni l'enllaç de
|
||||
verificació sota o copia-ho i pega-ho en la barra d'adreces del teu navegador.
|
||||
|
||||
Si NO has sol·licitat aquest canvi, per favor NO segueixis l'enllaç indicat i ignora
|
||||
i/o elimina aquest missatge.
|
||||
|
||||
La teva contrasenya no es canviarà tret que puguem verificar que ets la teva qui
|
||||
va emetre aquesta sol·licitud.
|
||||
|
||||
Segueix aquest enllaç per verificar la teva identitat:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
A continuació rebràs un missatge amb la nova contrasenya.
|
||||
|
||||
Després de accedir, podràs canviar la contrasenya del teu compte a la pàgina de
|
||||
configuració.
|
||||
|
||||
Les dades d'accés són els següents:
|
||||
|
||||
|
||||
Lloc: {{$siteurl}}
|
||||
Nom: {{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Salutacions,
|
||||
L'administració de {{$sitename}}
|
||||
|
||||
|
24
view/ca/smarty3/mail_received_html_body_eml.tpl
Normal file
24
view/ca/smarty3/mail_received_html_body_eml.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Mensaje de Friendica</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='{{$siteurl}}/images/friendika-32.png'><span style="padding:7px;">Friendica</span></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">Has rebut un nou missatge privat de '{{$from}}' en {{$siteName}}.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Accedeix a <a href="{{$siteurl}}">{{$siteurl}}</a> per a llegir i respondre als teus missatges privats.</td></tr>
|
||||
<tr><td></td><td>{{$siteName}}</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
9
view/ca/smarty3/mail_received_text_body_eml.tpl
Normal file
9
view/ca/smarty3/mail_received_text_body_eml.tpl
Normal file
@ -0,0 +1,9 @@
|
||||
Has rebut un nou missatge privat de '{{$from}}' en {{$siteName}}.
|
||||
|
||||
{{$title}}
|
||||
|
||||
{{$textversion}}
|
||||
|
||||
Accedeix a {{$siteurl}} per a llegir i respondre als teus missatges privats.
|
||||
|
||||
{{$siteName}}
|
19
view/ca/smarty3/passchanged_eml.tpl
Normal file
19
view/ca/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
La teva contrasenya ha estat modificada com has sol·licitat. Pren nota d'aquesta informació
|
||||
(o canvía immediatament la contrasenya amb quelcom que recordis).
|
||||
|
||||
|
||||
Les teves dades d'accés son les següents:
|
||||
|
||||
Lloc: {{$siteurl}}
|
||||
Nom: {{$email}}
|
||||
Contrasenya: {{$new_password}}
|
||||
|
||||
Després d'accedir pots canviar la contrasenya des de la pàgina de configuració del teu perfil.
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
22
view/ca/smarty3/register_open_eml.tpl
Normal file
22
view/ca/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
Gràcies per registrar-te en {{$sitename}}. El teu compte ha estat creat.
|
||||
|
||||
|
||||
Les dades d'accés són les següents:
|
||||
|
||||
|
||||
Lloc: {{$siteurl}}
|
||||
Nom: {{$email}}
|
||||
Contrasenya: {{$password}}
|
||||
|
||||
|
||||
Després d'accedir pots canviar la teva contrasenya a la pàgina de "Configuració".
|
||||
|
||||
Pren un moment per revisar les altres configuracions del compte en aquesta pàgina.
|
||||
|
||||
|
||||
Gràcies i benvingut/da {{$sitename}}.
|
||||
|
||||
|
23
view/ca/smarty3/register_verify_eml.tpl
Normal file
23
view/ca/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
S'ha rebut la sol·licitud de registre d'un nou usuari en
|
||||
{{$sitename}} que requereix la teva aprovació.
|
||||
|
||||
Les dades d'accés són els següents:
|
||||
|
||||
Nom Complet: {{$username}}
|
||||
Lloc: {{$siteurl}}
|
||||
Nom: {{$email}}
|
||||
|
||||
|
||||
Per aprovar aquesta sol·licitud, visita el següent enllaç:
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
Per denegar la sol·licitud i eliminar el compte, per favor visita:
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Gràcies.
|
||||
|
||||
|
13
view/ca/smarty3/request_notify_eml.tpl
Normal file
13
view/ca/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
Apreciat/da {{$myname}},
|
||||
|
||||
Acabes de rebre una sol·licitud de connexió de '{{$requestor}}' en {{$sitename}}.
|
||||
|
||||
Pots visitar el seu perfil en {{$url}}.
|
||||
|
||||
Accedeix al teu lloc per a veure la presentació completa i acceptar o ignorar/cancel·lar la sol·licitud.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
18
view/ca/smarty3/wall_received_eml.tpl
Normal file
18
view/ca/smarty3/wall_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
'{{$from}}' ha escrit quelcom en el mur del teu perfil.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accedeix a {{$siteurl}} per a veure o esborrar l'element:
|
||||
|
||||
{{$display}}
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
||||
|
14
view/cs/smarty3/cmnt_received_eml.tpl
Normal file
14
view/cs/smarty3/cmnt_received_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
'{{$from}}' okommentoval položku/konverzaci, kterou následujete.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Přihlaste se na {{$siteurl}} pro zobrazení kompletní konverzace:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Díky,
|
||||
{{$sitename}} administrátor
|
25
view/cs/smarty3/cmnt_received_html_body_eml.tpl
Normal file
25
view/cs/smarty3/cmnt_received_html_body_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendika zpráva</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendika-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendika</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} okomentoval položku/konverzaci, kterou následujete.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-bottom:5px;"></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Přihlaste se na <a href="{{$display}}">pro zobrazení kompletní konverzace</a>.</td></tr>
|
||||
<tr><td></td><td>Díky,</td></tr>
|
||||
<tr><td></td><td>{{$sitename}} administrátor</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
14
view/cs/smarty3/cmnt_received_text_body_eml.tpl
Normal file
14
view/cs/smarty3/cmnt_received_text_body_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
'{{$from}}' okommentoval položku/konverzaci, kterou následujete.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Přihlaste se na {{$siteurl}} pro zobrazení kompletní konverzace:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Díky,
|
||||
{{$sitename}} administrátor
|
14
view/cs/smarty3/follow_notify_eml.tpl
Normal file
14
view/cs/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
Máte nového následovatele na {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Můžete si prohlédnout jeho/její profil na {{$url}}.
|
||||
|
||||
Přihlaste se na váš server k odsouhlasení nebo ignorování/zrušení žádosti.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
S pozdravem,
|
||||
|
||||
{{$sitename}} administrátor
|
17
view/cs/smarty3/friend_complete_eml.tpl
Normal file
17
view/cs/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
Skvělé zprávy... '{{$fn}}' na '{{$dfrn_url}}' odsouhlasil Váš požadavek na spojení na '{{$sitename}}'.
|
||||
|
||||
Jste nyní přátelé a můžete si vyměňovat aktualizace statusu, fotek a e-mailů bez omezení.
|
||||
|
||||
Pokud budete chtít tento vztah jakkoliv upravit, navštivte Vaši stránku "Kontakty" na {{$sitename}}.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
(Nyní můžete například vytvořit separátní profil s informacemi, které nebudou viditelné veřejně, a nastavit právo pro zobrazení tohoto profilu pro '{{$fn}}').
|
||||
|
||||
S pozdravem,
|
||||
|
||||
{{$sitename}} administrátor
|
||||
|
17
view/cs/smarty3/intro_complete_eml.tpl
Normal file
17
view/cs/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
|
||||
'{{$fn}}' na '{{$dfrn_url}}' odsouhlasil Váš požadavek na spojení na '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' Vás označil za svého "fanouška", což jistým způsobem omezuje komunikaci (například v oblasti soukromých zpráv a některých profilových interakcí. Pokud je toto celebritní nebo komunitní stránka, bylo toto nastavení byla přijato automaticky.
|
||||
|
||||
'{{$fn}}' může v budoucnu rozšířit toto spojení na oboustranné nebo jinak méně restriktivní.
|
||||
|
||||
Nyní začnete dostávat veřejné aktualizace statusu od '{{$fn}}', které se objeví ve Vaší stránce "Síť" na webu
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
S pozdravem,
|
||||
|
||||
{{$sitename}} administrátor
|
23
view/cs/smarty3/lostpass_eml.tpl
Normal file
23
view/cs/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
Na webu {{$sitename}} byl zaregistrován požadavek na znovunastavení hesla k Vašemu účtu. Pro potvrzení této žádosti prosím klikněte na potvrzovací odkaz níže, nebo si tento odkaz zkopírujte do adresního řádku prohlížeče.
|
||||
Pokud jste o znovunastavení hesla NEŽÁDALI, prosím NEKLIKEJTE na tento odkaz a ignorujte tento e-mail nebo ho rovnou smažte.
|
||||
|
||||
Vaše heslo nebude změněno, dokud nebudeme mít potvrzení, že jste o tento požadavek zažádali právě Vy.
|
||||
|
||||
Klikněte na tento odkaz pro prověření Vaší identity:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
Poté obdržíte další zprávu obsahující nové heslo.
|
||||
|
||||
Následně si toto heslo můžete změnit z vašeho účtu na stránce Nastavení.
|
||||
|
||||
Přihlašovací údaje jsou tato:
|
||||
|
||||
Adresa webu: {{$siteurl}}
|
||||
Přihlašovací jméno: {{$email}}
|
||||
|
||||
S pozdravem,
|
||||
|
||||
{{$sitename}} administrátor
|
25
view/cs/smarty3/mail_received_html_body_eml.tpl
Normal file
25
view/cs/smarty3/mail_received_html_body_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendika Zpráva</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendika-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendika</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} Vám poslal(a) novou soukromou zprávu na {{$siteName}}.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Přihlaste se na <a href="{{$siteurl}}">{{$siteurl}}<a/> pro čtení a zaslání odpovědí na Vaše soukromé zprávy.</td></tr>
|
||||
<tr><td></td><td>Díky,</td></tr>
|
||||
<tr><td></td><td>{{$siteName}} administrátor</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
10
view/cs/smarty3/mail_received_text_body_eml.tpl
Normal file
10
view/cs/smarty3/mail_received_text_body_eml.tpl
Normal file
@ -0,0 +1,10 @@
|
||||
{{$from}} Vám poslal(a) novou soukromou zprávu na {{$siteName}}.
|
||||
|
||||
{{$title}}
|
||||
|
||||
{{$textversion}}
|
||||
|
||||
Přihlaste se na {{$siteurl}} pro čtení a zaslání odpovědí na Vaše soukromé zprávy.
|
||||
|
||||
Díky,
|
||||
{{$siteName}} administrátor
|
14
view/cs/smarty3/passchanged_eml.tpl
Normal file
14
view/cs/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
Vaše heslo bylo na Vaši žádost změněno. Prosím zaznamenejte si tuto informaci (nebo si Vaše heslo změňte na nějaké, které si budete pamatovat).
|
||||
|
||||
Vaše přihlašovací údaje jsou tato:
|
||||
|
||||
Adresa webu: {{$siteurl}}
|
||||
Přihlašovací jméno: {{$email}}
|
||||
Heslo: {{$new_password}}
|
||||
|
||||
Toto heslo si můžete změnit z vašeho účtu na stránce Nastavení poté, co se přihlásíte.
|
||||
|
||||
S pozdravem,
|
||||
{{$sitename}} administrátor
|
23
view/cs/smarty3/register_open_eml.tpl
Normal file
23
view/cs/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
Milý/milá {{$username}},
|
||||
Díky za registraci na {{$sitename}}. Váš účet byl vytvořen.
|
||||
Vaše přihlašovací údaje jsou tato:
|
||||
|
||||
Adresa webu: {{$siteurl}}
|
||||
Přihlašovací jméno: {{$email}}
|
||||
Heslo: {{$password}}
|
||||
|
||||
Toto heslo si můžete změnit z vašeho účtu na stránce "Nastavení" poté, co se přihlásíte.
|
||||
|
||||
Věnujte prosím chvíli revizi dalších nastavení Vašeho účtu na této stránce.
|
||||
|
||||
Můžete také přidat některé základní informace do Vašeho defaultního profilu (na stránce "Profily"), čímž umožníte jiným lidem Vás snadněji nalézt.
|
||||
|
||||
Doporučujeme nastavit celé jméno, přidat profilové foto, přidat nějaká profilová "klíčová slova" (což je velmi užitečné pro hledání nových přátel) a zemi, ve které žijete. Nemusíte zadávat víc informací.
|
||||
|
||||
Plně respektujeme Vaše právo na soukromí a žádná z výše uvedených položek není povinná.
|
||||
Pokud jste nový a neznáte na tomto webu nikoho jiného, zadáním těchto položek můžete získat nové a zajímavé přátele.
|
||||
|
||||
Díky a vítejte na {{$sitename}}.
|
||||
|
||||
S pozdravem,
|
||||
{{$sitename}} administrátor
|
22
view/cs/smarty3/register_verify_eml.tpl
Normal file
22
view/cs/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Na webu {{$sitename}} byla vytvořena nová uživatelská registrace, která vyžaduje Vaše schválení.
|
||||
|
||||
Přihlašovací údaje jsou tato:
|
||||
|
||||
Celé jméno: {{$username}}
|
||||
Adresa webu: {{$siteurl}}
|
||||
Přihlašovací jméno: {{$email}}
|
||||
|
||||
Pro odsouhlasení tohoto požadavku prosím klikněte na následující odkaz:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
|
||||
Pro zamítnutí žádosti a odstranění účtu prosím klikněte na tento odkaz:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Díky.
|
15
view/cs/smarty3/request_notify_eml.tpl
Normal file
15
view/cs/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
Právě jste obdržel/obdržela požadavek na spojení na webu {{$sitename}}
|
||||
|
||||
od '{{$requestor}}'.
|
||||
|
||||
Můžete navštívit jeho/její profil na následujícím odkazu {{$url}}.
|
||||
|
||||
Přihlaste se na Váš web k zobrazení kompletní žádosti a odsouhlaste nebo ignorujte/zrušte tuto žádost.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
S pozdravem,
|
||||
{{$sitename}} administrátor
|
14
view/cs/smarty3/wall_received_eml.tpl
Normal file
14
view/cs/smarty3/wall_received_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
'{{$from}}' obohatil Vaši profilovou zeď.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Přihlaste se na {{$siteurl}} k zobrazení nebo smazání této položky:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Díky,
|
||||
{{$sitename}} administrátor
|
24
view/cs/smarty3/wall_received_html_body_eml.tpl
Normal file
24
view/cs/smarty3/wall_received_html_body_eml.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendika zpráva</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendika-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendika</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} obohatil Vaši profilovou zeď.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Přihlaste se na <a href="{{$siteurl}}">{{$siteurl}}</a> k <a href="{{$display}}">zobrazení nebo smazání této položky.</a></td></tr>
|
||||
<tr><td></td><td>Díky,</td></tr>
|
||||
<tr><td></td><td>{{$sitename}} administrátor</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
14
view/cs/smarty3/wall_received_text_body_eml.tpl
Normal file
14
view/cs/smarty3/wall_received_text_body_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
Milý/Milá {{$username}},
|
||||
|
||||
'{{$from}}' obohatil Vaši profilovou zeď.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Přihlaste se na {{$siteurl}} k zobrazení nebo smazání této položky:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Díky,
|
||||
{{$sitename}} administrátor
|
17
view/de/smarty3/cmnt_received_eml.tpl
Normal file
17
view/de/smarty3/cmnt_received_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
|
||||
'{{$from}}' hat einen Pinnwandeintrag kommentiert dem du auch folgst.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Um die gesamte Konversation zu sehen melde dich bitte bei {{$siteurl}} an:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Danke für die Aufmerksamkeit
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
25
view/de/smarty3/cmnt_received_html_body_eml.tpl
Normal file
25
view/de/smarty3/cmnt_received_html_body_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendica Nachricht</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendica-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendica</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} hat einen Beitrag kommentiert dem du auch folgst.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-bottom:5px;"></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Bitte melde dich an um <a href="{{$display}}">die komplette Unterhaltung anzuzeigen</a>.</td></tr>
|
||||
<tr><td></td><td>Beste Grüße,</td></tr>
|
||||
<tr><td></td><td>{{$sitename}} Administrator</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
16
view/de/smarty3/cmnt_received_text_body_eml.tpl
Normal file
16
view/de/smarty3/cmnt_received_text_body_eml.tpl
Normal file
@ -0,0 +1,16 @@
|
||||
Hallo {{$username}},
|
||||
|
||||
'{{$from}}' hat einen Pinnwandeintrag kommentiert dem du auch folgst.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Um die gesamte Konversation zu sehen melde dich bitte bei {{$siteurl}} an:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Danke fŸr die Aufmerksamkeit
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
14
view/de/smarty3/follow_notify_eml.tpl
Normal file
14
view/de/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Hallo {{$myname}},
|
||||
|
||||
Du hast einen neuen Anhänger auf {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Du kannst das Profil unter {{$url}} besuchen.
|
||||
|
||||
Bitte melde dich an um die Anfrage zu bestätigen oder sie zu ignorieren bzw. abzulehnen.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
beste Grüße,
|
||||
|
||||
{{$sitename}} Administrator
|
22
view/de/smarty3/friend_complete_eml.tpl
Normal file
22
view/de/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
|
||||
Großartige Neuigkeiten... '{{$fn}}' auf '{{$dfrn_url}}' hat
|
||||
deine Kontaktanfrage auf '{{$sitename}}' bestätigt.
|
||||
|
||||
Ihr seid nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails
|
||||
ohne Einschränkungen austauschen.
|
||||
|
||||
Rufe deine 'Kontakte' Seite auf {{$sitename}} auf, wenn du
|
||||
Änderungen an diesem Kontakt vornehmen willst.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[Du könntest z.B. ein spezielles Profil anlegen, das Informationen enthält,
|
||||
die nicht für die breite Öffentlichkeit sichtbar sein sollen und es für '{{$fn}}' zum Betrachten freigeben].
|
||||
|
||||
Beste Grüße,
|
||||
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
22
view/de/smarty3/intro_complete_eml.tpl
Normal file
22
view/de/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
|
||||
'{{$fn}}' auf '{{$dfrn_url}}' hat deine Verbindungsanfrage
|
||||
auf '{{$sitename}}' akzeptiert.
|
||||
|
||||
'{{$fn}}' hat entschieden Dich als "Fan" zu akzeptieren, was zu einigen
|
||||
Einschränkungen bei der Kommunikation führt - wie zB das Schreiben von privaten Nachrichten und einige Profil
|
||||
Interaktionen. Sollte dies ein Promi-Konto oder eine Forum-Seite sein, werden die Einstellungen
|
||||
automatisch angewandt.
|
||||
|
||||
'{{$fn}}' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
||||
Beziehung in der Zukunft erweitert wird.
|
||||
|
||||
Du empfängst ab sofort die öffentlichen Beiträge von '{{$fn}}',
|
||||
auf deiner "Netzwerk" Seite.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Beste Grüße,
|
||||
|
||||
{{$sitename}} Administrator
|
32
view/de/smarty3/lostpass_eml.tpl
Normal file
32
view/de/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
Auf {{$sitename}} wurde eine Anfrage zum Zurücksetzen deines
|
||||
Passworts empfangen. Um diese zu bestätigen folge bitte dem Link
|
||||
weiter unten oder kopiere ihn in die Adressleiste deines Browsers.
|
||||
|
||||
Wenn du die Anfrage NICHT gesendet haben solltest, dann IGNORIERE
|
||||
bitte diese Mail und den Link.
|
||||
|
||||
Dein Passwort wird nicht geändert werden solange wir nicht überprüfen
|
||||
konnten, dass du die Anfrage gestellt hast.
|
||||
|
||||
Folge diesem Link um deine Identität zu verifizieren:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
Du wirst eine weitere Email erhalten mit dem neuen Passwort.
|
||||
|
||||
Das Passwort kannst du anschließend wie gewohnt in deinen Account Einstellungen ändern.
|
||||
|
||||
Die Login-Details sind die folgenden:
|
||||
|
||||
Adresse der Seite: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Grüße,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
26
view/de/smarty3/mail_received_html_body_eml.tpl
Normal file
26
view/de/smarty3/mail_received_html_body_eml.tpl
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendica Nachricht</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendica-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendica</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$fromi}} hat dir eine private Nachricht auf {{$siteName}} gesendet.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Bitte melde dich auf <a href="{{$siteurl}}/message">{{$siteurl}}/message</a> an um die Nachricht zu bearbeiten.</td></tr>
|
||||
<tr><td></td><td>Beste Grüße,</td></tr>
|
||||
<tr><td></td><td>{{$siteName}} Administrator</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
11
view/de/smarty3/mail_received_text_body_eml.tpl
Normal file
11
view/de/smarty3/mail_received_text_body_eml.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
Du hast eine neue private Nachricht von '{{$from}}' auf '{{$siteName}}' erhhalten.
|
||||
|
||||
{{$title}}
|
||||
|
||||
{{$textversion}}
|
||||
|
||||
Bitte melde dich unter {{$siteurl}} an um deine privaten Nachrichte zu lesen und zu
|
||||
beantworten.
|
||||
|
||||
Viele Gr٤e,
|
||||
{{$siteName}} Administrator
|
20
view/de/smarty3/passchanged_eml.tpl
Normal file
20
view/de/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese
|
||||
Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort
|
||||
in etwas, was du dir merken kannst).
|
||||
|
||||
|
||||
Deine Login Daten wurden wie folgt geändert:
|
||||
|
||||
Adresse der Seite: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
Passwort: {{$new_password}}
|
||||
|
||||
Du kannst dein Passwort unter deinen Account-Einstellungen ändern, wenn du angemeldet bist.
|
||||
|
||||
|
||||
Beste Grüße,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
34
view/de/smarty3/register_open_eml.tpl
Normal file
34
view/de/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
Danke für deine Anmeldung auf {{$sitename}}. Dein Account wurde angelegt.
|
||||
Hier die Login Details:
|
||||
|
||||
|
||||
Adresse der Seite: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
Passwort: {{$password}}
|
||||
|
||||
Du kannst und solltest das Passwort in den "Einstellungen" zu deinem Account ändern,
|
||||
nachdem du dich erstmalig eingeloggt hast.
|
||||
|
||||
Bitte nimm dir einige Augenblicke Zeit, um die anderen Einstellungen auf der Seite kennenzulernen und zu überprüfen.
|
||||
|
||||
Eventuell möchtest du außerdem einige grundlegende Informationen in deinem Standardprofil (auf der "Profile" Seite) eintragen,
|
||||
damit andere Leute dich einfacher finden können.
|
||||
|
||||
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profilbild hochzuladen,
|
||||
sowie ein paar "Profil-Schlüsselwörter" einzutragen (um leichter Menschen mit gleichen Interessen zu finden) - und
|
||||
vielleicht auch in welchen Land du lebst; falls du nicht konkreter
|
||||
werden möchtest.
|
||||
|
||||
Wir respektieren dein Recht auf Privatsphäre und keine dieser Angaben ist notwendig.
|
||||
Wenn du ganz neu bei Friendica bist und niemanden kennst, werden sie dir aber helfen
|
||||
ein paar neue und interessante Freunde zu finden.
|
||||
|
||||
|
||||
Danke und willkommen auf {{$sitename}}.
|
||||
|
||||
Beste Grüße,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
25
view/de/smarty3/register_verify_eml.tpl
Normal file
25
view/de/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Eine Neuanmeldung auf {{$sitename}} benötigt
|
||||
deine Aufmerksamkeit.
|
||||
|
||||
|
||||
Die Login-Einzelheiten sind die folgenden:
|
||||
|
||||
Kompletter Name: {{$username}}
|
||||
Adresse der Seite: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
|
||||
|
||||
Um die Anfrage zu bestätigen besuche bitte:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
|
||||
Um die Anfrage abzulehnen und den Account zu löschen besuche bitte:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Danke!
|
17
view/de/smarty3/request_notify_eml.tpl
Normal file
17
view/de/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Hallo {{$myname}},
|
||||
|
||||
du hast eine Kontaktanfrage von '{{$requestor}}' auf {{$sitename}}
|
||||
|
||||
erhalten.
|
||||
|
||||
Du kannst sein/ihr Profil unter {{$url}} finden.
|
||||
|
||||
Bitte melde dich an um die komplette Vorstellung einzusehen
|
||||
und die Anfrage zu bestätigen oder zu ignorieren oder abzulehnen.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Beste Grüße,
|
||||
|
||||
{{$sitename}} Administrator
|
11
view/de/smarty3/update_fail_eml.tpl
Normal file
11
view/de/smarty3/update_fail_eml.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
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}}
|
18
view/de/smarty3/wall_received_eml.tpl
Normal file
18
view/de/smarty3/wall_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
|
||||
'{{$from}}' hat etwas auf deiner Profilwand gepostet.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Bitte melde dich unter {{$siteurl}} an um den Eintrag anzusehen oder zu löschen.
|
||||
|
||||
{{$display}}
|
||||
|
||||
Besten Dank!
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
||||
|
24
view/de/smarty3/wall_received_html_body_eml.tpl
Normal file
24
view/de/smarty3/wall_received_html_body_eml.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendica Nachricht</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendica-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendica</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} hat etwas auf deine Pinnwand gepostet.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Bitte melde dich auf <a href="{{$siteurl}}">{{$siteurl}}</a> an um <a href="{{$display}}">den Eintrag anzusehen oder ihn zu löschen</a>.</td></tr>
|
||||
<tr><td></td><td>Beste Grüße,</td></tr>
|
||||
<tr><td></td><td>{{$sitename}} Administrator</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
18
view/de/smarty3/wall_received_text_body_eml.tpl
Normal file
18
view/de/smarty3/wall_received_text_body_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Hallo {{$username}},
|
||||
|
||||
'{{$from}}' hat etwas auf deiner Pinnwand gepostet.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Bitte melde dich auf {{$siteurl}} an um den Beitrag anzusehen oder ihn zu löschen:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Besten Dank!
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
||||
|
14
view/en/smarty3/follow_notify_eml.tpl
Normal file
14
view/en/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Dear {{$myname}},
|
||||
|
||||
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
You may visit their profile at {{$url}}.
|
||||
|
||||
Please login to your site to approve or ignore/cancel the request.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Regards,
|
||||
|
||||
{{$sitename}} administrator
|
22
view/en/smarty3/friend_complete_eml.tpl
Normal file
22
view/en/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Dear {{$username}},
|
||||
|
||||
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||
your connection request at '{{$sitename}}'.
|
||||
|
||||
You are now mutual friends and may exchange status updates, photos, and email
|
||||
without restriction.
|
||||
|
||||
Please visit your 'Contacts' page at {{$sitename}} if you wish to make
|
||||
any changes to this relationship.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[For instance, you may create a separate profile with information that is not
|
||||
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||
|
||||
Sincerely,
|
||||
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
59
view/en/smarty3/htconfig.tpl
Normal file
59
view/en/smarty3/htconfig.tpl
Normal file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
// Set the following for your MySQL installation
|
||||
// Copy or rename this file to .htconfig.php
|
||||
|
||||
$db_host = '{{$dbhost}}';
|
||||
$db_user = '{{$dbuser}}';
|
||||
$db_pass = '{{$dbpass}}';
|
||||
$db_data = '{{$dbdata}}';
|
||||
|
||||
// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
|
||||
// It can be changed later and only applies to timestamps for anonymous viewers.
|
||||
|
||||
$default_timezone = '{{$timezone}}';
|
||||
|
||||
// What is your site name?
|
||||
|
||||
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
||||
$a->config['system']['sitename'] = "My Friend Network";
|
||||
$a->config['system']['location_hash'] = '{{$site_id}}';
|
||||
|
||||
// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
|
||||
// Be certain to create your own personal account before setting
|
||||
// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
|
||||
// the registration page. REGISTER_APPROVE requires you set 'admin_email'
|
||||
// to the email address of an already registered person who can authorise
|
||||
// and/or approve/deny the request.
|
||||
|
||||
$a->config['system']['register_policy'] = REGISTER_OPEN;
|
||||
$a->config['system']['register_text'] = '';
|
||||
$a->config['system']['admin_email'] = '{{$adminmail}}';
|
||||
|
||||
// Maximum size of an imported message, 0 is unlimited
|
||||
|
||||
$a->config['system']['max_import_size'] = 200000;
|
||||
|
||||
// maximum size of uploaded photos
|
||||
|
||||
$a->config['system']['maximagesize'] = 800000;
|
||||
|
||||
// Location of PHP command line processor
|
||||
|
||||
$a->config['system']['php_path'] = '{{$phpath}}';
|
||||
|
||||
// Configure how we communicate with directory servers.
|
||||
// DIRECTORY_MODE_NORMAL = directory client, we will find a directory
|
||||
// DIRECTORY_MODE_SECONDARY = caching directory or mirror
|
||||
// DIRECTORY_MODE_PRIMARY = main directory server
|
||||
// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services
|
||||
|
||||
$a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
|
||||
|
||||
// default system theme
|
||||
|
||||
$a->config['system']['theme'] = 'redbasic';
|
||||
|
||||
// By default allow pseudonyms
|
||||
|
||||
$a->config['system']['no_regfullname'] = true;
|
22
view/en/smarty3/intro_complete_eml.tpl
Normal file
22
view/en/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Dear {{$username}},
|
||||
|
||||
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||
your connection request at '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||
some forms of communication - such as private messaging and some profile
|
||||
interactions. If this is a celebrity or community page, these settings were
|
||||
applied automatically.
|
||||
|
||||
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||
relationship in the future.
|
||||
|
||||
You will start receiving public status updates from '{{$fn}}',
|
||||
which will appear on your 'Network' page at
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Sincerely,
|
||||
|
||||
{{$sitename}} Administrator
|
32
view/en/smarty3/lostpass_eml.tpl
Normal file
32
view/en/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
Dear {{$username}},
|
||||
A request was recently received at {{$sitename}} to reset your account
|
||||
password. In order to confirm this request, please select the verification link
|
||||
below or paste it into your web browser address bar.
|
||||
|
||||
If you did NOT request this change, please DO NOT follow the link
|
||||
provided and ignore and/or delete this email.
|
||||
|
||||
Your password will not be changed unless we can verify that you
|
||||
issued this request.
|
||||
|
||||
Follow this link to verify your identity:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
You will then receive a follow-up message containing the new password.
|
||||
|
||||
You may change that password from your account settings page after logging in.
|
||||
|
||||
The login details are as follows:
|
||||
|
||||
Site Location: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Sincerely,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
20
view/en/smarty3/passchanged_eml.tpl
Normal file
20
view/en/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
Dear {{$username}},
|
||||
Your password has been changed as requested. Please retain this
|
||||
information for your records (or change your password immediately to
|
||||
something that you will remember).
|
||||
|
||||
|
||||
Your login details are as follows:
|
||||
|
||||
Site Location: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
Password: {{$new_password}}
|
||||
|
||||
You may change that password from your account settings page after logging in.
|
||||
|
||||
|
||||
Sincerely,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
18
view/en/smarty3/register_open_eml.tpl
Normal file
18
view/en/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
An account has been created at {{$sitename}} for this email address.
|
||||
The login details are as follows:
|
||||
|
||||
Site Location: {{$siteurl}}
|
||||
Login: {{$email}}
|
||||
Password: {{$password}}
|
||||
|
||||
If this account was created without your knowledge and is not desired, please
|
||||
login and remove the account from the links on the Settings page, and we
|
||||
apologise for any inconvenience.
|
||||
|
||||
Thank you and welcome.
|
||||
|
||||
Sincerely,
|
||||
{{$sitename}} Administrator
|
||||
|
||||
|
26
view/en/smarty3/register_verify_eml.tpl
Normal file
26
view/en/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
A new user registration request was received at {{$sitename}} which requires
|
||||
your approval.
|
||||
|
||||
|
||||
The login details are as follows:
|
||||
|
||||
Full Name: {{$username}}
|
||||
Site Location: {{$siteurl}}
|
||||
Login Name: {{$email}}
|
||||
|
||||
|
||||
To approve this request please visit the following link:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
|
||||
To deny the request and remove the account, please visit:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Thank you.
|
||||
|
17
view/en/smarty3/request_notify_eml.tpl
Normal file
17
view/en/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Dear {{$myname}},
|
||||
|
||||
You have just received a connection request at {{$sitename}}
|
||||
|
||||
from '{{$requestor}}'.
|
||||
|
||||
You may visit their profile at {{$url}}.
|
||||
|
||||
Please login to your site to view the complete introduction
|
||||
and approve or ignore/cancel the request.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Regards,
|
||||
|
||||
{{$sitename}} administrator
|
11
view/en/smarty3/update_fail_eml.tpl
Normal file
11
view/en/smarty3/update_fail_eml.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
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}}
|
14
view/eo/smarty3/follow_notify_eml.tpl
Normal file
14
view/eo/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Kara {{$myname}},
|
||||
|
||||
Vi havas novan abonanton ĉe {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Vi povas viziti ilian profilon ĉe {{$url}}.
|
||||
|
||||
Bonvolu ensaluti en vian retejon por aprobi au malaprobi/nuligi la peton.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Salutoj,
|
||||
|
||||
[{{$sitename}}] administranto
|
22
view/eo/smarty3/friend_complete_eml.tpl
Normal file
22
view/eo/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Kara {{$username}},
|
||||
|
||||
Boegaj novaĵoj.... '{{$fn}}' ĉe '{{$dfrn_url}}' aprobis
|
||||
vian kontaktpeton ĉe '{{$sitename}}'.
|
||||
|
||||
Vi nun estas reciprokaj amikoj kaj povas interŝanĝi afiŝojn, bildojn kaj mesaĝojn
|
||||
senkatene.
|
||||
|
||||
Bonvolu viziti vian 'Kontaktoj' paĝon ĉe {{$sitename}} se vi volas
|
||||
ŝangi la rilaton.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[Ekzempe, vi eble volas krei disiĝintan profilon kun informoj kiu ne
|
||||
haveblas al la komuna publiko - kaj rajtigi '{{$fn}}' al ĝi]'
|
||||
|
||||
Salutoj,
|
||||
|
||||
{{$sitename}} administranto
|
||||
|
||||
|
22
view/eo/smarty3/intro_complete_eml.tpl
Normal file
22
view/eo/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Kara {{$username}},
|
||||
|
||||
'{{$fn}}' ĉe '{{$dfrn_url}}' akceptis
|
||||
vian kontaktpeton ĉe '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' elektis vin kiel "admiranto", kio malpermesas
|
||||
kelkajn komunikilojn - ekzemple privataj mesaĝoj kaj kelkaj profilrilataj
|
||||
agoj. Se tio estas konto de komunumo aŭ de eminentulo, tiaj agordoj
|
||||
aŭtomate aktiviĝis.
|
||||
|
||||
'{{$fn}}' eblas konverti la rilaton al ambaŭdirekta rilato
|
||||
aŭ apliki pli da permesoj.
|
||||
|
||||
Vi ekricevos publikajn afiŝojn de '{{$fn}}',
|
||||
kiuj aperos sur via 'Reto' paĝo ĉe
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Salutoj,
|
||||
|
||||
{{$sitename}} administranto
|
32
view/eo/smarty3/lostpass_eml.tpl
Normal file
32
view/eo/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
Kara {{$username}},
|
||||
{{$sitename}} ricevis peton por rekomencigi vian pasvorton.
|
||||
Por konfirmi la peton, bonvolu klaki la sekvantan konfirmligilon
|
||||
aŭ alglui ĝin en la adreskampo de via retumilo.
|
||||
|
||||
Se vi NE petis tiun ŝanĝon, bonvolu NE KLAKU la
|
||||
sekvantan ligilon kaj ignoru aŭ forvisu ĉi-mesaĝon.
|
||||
|
||||
Ni ne ŝanĝu vian pasvorton se ni ne povas kontroli ĉu estas vi
|
||||
kiu petis la ŝanĝon.
|
||||
|
||||
Sekvu ĉi tion ligilon por konfirmi vian identecon:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
Poste, vi ricevos mesaĝon enhavonte la novan pasvorton.
|
||||
|
||||
Vi eblas ŝangi la pasvorton ĉe viaj kontdoagordoj paĝo post ensaluti.
|
||||
|
||||
La akreditaĵoj estas:
|
||||
|
||||
Retejo:»{{$siteurl}}
|
||||
Salutnomo:»{{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Salutoj,
|
||||
{{$sitename}} administranto
|
||||
|
||||
|
20
view/eo/smarty3/passchanged_eml.tpl
Normal file
20
view/eo/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
Kara {{$username}},
|
||||
Via pasvorto estas ŝanĝita laŭ via peto. Bonvolu konservi ĉi tiun
|
||||
informon (aŭ tuj ŝanĝu vian pasvorton al
|
||||
iu kiun vi povas memori).
|
||||
|
||||
|
||||
Jen viaj legitimaĵoj:
|
||||
|
||||
Retejo:»{{$siteurl}}
|
||||
Salutnomo:»{{$email}}
|
||||
Pasvorto:»{{$new_password}}
|
||||
|
||||
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas ensalutita.
|
||||
|
||||
|
||||
Salutoj,
|
||||
{{$sitename}} administranto
|
||||
|
||||
|
34
view/eo/smarty3/register_open_eml.tpl
Normal file
34
view/eo/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
Kara {{$username}},
|
||||
Dankon pro via registrado ĉe {{$sitename}}. Vian konton estas kreita.
|
||||
Jen viaj legitimaĵoj:
|
||||
|
||||
|
||||
Retejo:»{{$siteurl}}
|
||||
Salutnomo:»{{$email}}
|
||||
Pasvorto:»{{$password}}
|
||||
|
||||
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas
|
||||
ensalutita.
|
||||
|
||||
Bonvolu preni kelkajn momentoj por kontroli la aliajn kontaktagordojn.
|
||||
|
||||
Eble vi volas aldoni kelkajn bazajn informojn al via profilo
|
||||
(ĉe la paĝo "Profiloj"), tial vi troveblas al aliaj uzantoj.
|
||||
|
||||
Ni rekomendas agordi vian plenan noman, aldoni profilbildon,
|
||||
kaj aldojo kelkajn ŝlosilvortojn (tre utila por trovi novajn amikojn) - kaj
|
||||
eble en kiu lando vi loĝas, se vi ne volas pli specifa
|
||||
ol tio.
|
||||
|
||||
Ni tute respektas vian privatecon, kaj neniu de tiuj agordoj necesas.
|
||||
Se vi novas kaj ne konas iun ĉi tie, ili eble helpas
|
||||
vin trovi novajn kaj interesajn amikojn.
|
||||
|
||||
|
||||
Dankon kaj bonvenon ĉe {{$sitename}}.
|
||||
|
||||
Salutoj,
|
||||
{{$sitename}} administranto
|
||||
|
||||
|
25
view/eo/smarty3/register_verify_eml.tpl
Normal file
25
view/eo/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Nova peto por registrado atendas ĉe {{$sitename}}
|
||||
kaj bezonas vian aprobon.
|
||||
|
||||
|
||||
Jen la detaloj de la peto:
|
||||
|
||||
Plena Nomo:»{{$username}}
|
||||
Retejo:»{{$siteurl}}
|
||||
Salutnomo:»{{$email}}
|
||||
|
||||
|
||||
Aprobonte la peton, bonvolu klaki tiun ligilon:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
|
||||
Malaprobonte kaj forviŝonte la konton, bonvolu klaki:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Dankon!
|
17
view/eo/smarty3/request_notify_eml.tpl
Normal file
17
view/eo/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Kara {{$myname}},
|
||||
|
||||
Vi ĵus ricevis kontaktpeton ĉe {{$sitename}}
|
||||
|
||||
de '{{$requestor}}'.
|
||||
|
||||
Vi eblas viziti la profilon de la petanto ĉe {{$url}}.
|
||||
|
||||
Bonvolu ensaluti en la retejo por vidi la plenan prezenton
|
||||
kaj aprobi aŭ ignori/nuligi la peton.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Salutoj,
|
||||
|
||||
{{$sitename}} administranto
|
11
view/eo/smarty3/update_fail_eml.tpl
Normal file
11
view/eo/smarty3/update_fail_eml.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
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}}
|
18
view/es/smarty3/cmnt_received_eml.tpl
Normal file
18
view/es/smarty3/cmnt_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
'{{$from}}' ha comentado un elemento/conversación que estás siguiendo.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accede a {{$siteurl}} para ver la conversación completa:
|
||||
|
||||
{{$display}}
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
||||
|
13
view/es/smarty3/follow_notify_eml.tpl
Normal file
13
view/es/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
Estimado/a {{$myname}},
|
||||
|
||||
Tienes un nuevo seguidor en {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Puedes visitar su perfil en {{$url}}.
|
||||
|
||||
Inicie sesión en su sitio para aprobar o rechazar/cancelar la solicitud.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
19
view/es/smarty3/friend_complete_eml.tpl
Normal file
19
view/es/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
Grandes noticias... '{{$fn}}' a '{{$dfrn_url}}' ha aceptado tu solicitud de conexión en '{{$sitename}}'.
|
||||
|
||||
Ahora sois amigos mutuos y podreis intercambiar actualizaciones de estado, fotos, y correo electrónico
|
||||
sin restricción alguna.
|
||||
|
||||
Visita tu página de 'Contactos' en {{$sitename}} si desear realizar cualquier cambio en esta relación.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[Por ejemplo, puedes crear un perfil independiente con información que no está disponible al público en general
|
||||
- y asignar derechos de visualización a '{{$fn}}'].
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
21
view/es/smarty3/intro_complete_eml.tpl
Normal file
21
view/es/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
'{{$fn}}' en '{{$dfrn_url}}' ha aceptado tu petición
|
||||
conexión a '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' ha optado por aceptarte come "fan", que restringe ciertas
|
||||
formas de comunicación, como mensajes privados y algunas interacciones
|
||||
con el perfil. Si eres una "celebridad" o una página de comunidad,
|
||||
estos ajustes se aplican automáticamente
|
||||
|
||||
'{{$fn}}' puede optar por extender esto en una relación más permisiva
|
||||
en el futuro.
|
||||
|
||||
Empezarás a recibir las actualizaciones públicas de estado de '{{$fn}}',
|
||||
que aparecerán en tu página "Red" en
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
34
view/es/smarty3/lostpass_eml.tpl
Normal file
34
view/es/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
Se ha recibido una solicitud en {{$sitename}} recientemente para restablecer
|
||||
tu contraseña. Para confirmar esta solicitud, por favor seleccione el enlace de
|
||||
verificación debajo o cópialo y pégalo en la barra de direcciones de tu navegador.
|
||||
|
||||
Se NO has solicitado este cambio, por favor NO sigas el enlace indicado e ignora
|
||||
y/o elimina este mensaje.
|
||||
|
||||
Tu contraseña no se cambiará a menos que podamos verificar que eres tu quien
|
||||
emitió esta solicitud.
|
||||
|
||||
Sigue este enlace para verificar tu identidad:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
A continuación recibirás un mensaje con la nueva contraseña.
|
||||
|
||||
Despues de accceder, podrás cambiar la contraseña de tu cuenta en la página de
|
||||
configuración.
|
||||
|
||||
Los datos de acceso son los siguientes:
|
||||
|
||||
Sitio: {{$siteurl}}
|
||||
Nombre: {{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Saludos,
|
||||
La administración de {{$sitename}}
|
||||
|
||||
|
24
view/es/smarty3/mail_received_html_body_eml.tpl
Normal file
24
view/es/smarty3/mail_received_html_body_eml.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Mensaje de Friendika</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='{{$siteurl}}/images/friendika-32.png'><span style="padding:7px;">Friendika</span></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">Has recibido un nuevo mensaje privado de '{{$from}}' en {{$siteName}}.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Accede a <a href="{{$siteurl}}">{{$siteurl}}</a> para leer y responder a tus mensajes privados.</td></tr>
|
||||
<tr><td></td><td>{{$siteName}}</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
9
view/es/smarty3/mail_received_text_body_eml.tpl
Normal file
9
view/es/smarty3/mail_received_text_body_eml.tpl
Normal file
@ -0,0 +1,9 @@
|
||||
Has recibido un nuevo mensaje privado de '{{$from}}' en {{$siteName}}.
|
||||
|
||||
{{$title}}
|
||||
|
||||
{{$textversion}}
|
||||
|
||||
Accede a {{$siteurl}} para leer y responder a tus mensajes privados.
|
||||
|
||||
{{$siteName}}
|
19
view/es/smarty3/passchanged_eml.tpl
Normal file
19
view/es/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
Tu contraseña ha sido modificada como has solicitado. Anota esta información
|
||||
(o cambia inmediatamente la contraseña con algo que recuerdes).
|
||||
|
||||
|
||||
Tus datos de acceso son los siguientes:
|
||||
|
||||
Sitio: {{$siteurl}}
|
||||
Nombre: {{$email}}
|
||||
Contraseña: {{$new_password}}
|
||||
|
||||
Después de acceder puedes cambiar la contraseña desde la página de configuración de tu perfil.
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
21
view/es/smarty3/register_open_eml.tpl
Normal file
21
view/es/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
Gracias por registrarte en {{$sitename}}. Tu cuenta ha sido creada.
|
||||
|
||||
|
||||
Los datos de acceso son los siguientes:
|
||||
|
||||
Sitio: {{$siteurl}}
|
||||
Nombre: {{$email}}
|
||||
Contraseña: {{$password}}
|
||||
|
||||
|
||||
Después de acceder puedes cambiar tu contraseña en la página de "Configuración".
|
||||
|
||||
Toma un momento para revisar las otras configuraciones de la cuenta en esa página.
|
||||
|
||||
|
||||
Gracias y bienvenido/a {{$sitename}}.
|
||||
|
||||
|
22
view/es/smarty3/register_verify_eml.tpl
Normal file
22
view/es/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Se ha recibido la solicitud de registro de un nuevo usuario en
|
||||
{{$sitename}} que requiere tu aprobación.
|
||||
|
||||
Los datos de acceso son los siguientes:
|
||||
|
||||
Nombre Completo: {{$username}}
|
||||
Sitio: {{$siteurl}}
|
||||
Nombre: {{$email}}
|
||||
|
||||
|
||||
Para aprobar esta solicitud, visita el siguiente enlace:
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
Para denegar la solicitud y eliminar la cuenta, por favor visita:
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Gracias.
|
||||
|
13
view/es/smarty3/request_notify_eml.tpl
Normal file
13
view/es/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
Estimado/a {{$myname}},
|
||||
|
||||
Acabas de recibir una solicitud de conexión de '{{$requestor}}' en {{$sitename}}.
|
||||
|
||||
Puedes visitar su perfil en {{$url}}.
|
||||
|
||||
Accede a tu sitio para ver la presentación completa y aceptar o ignorar/cancelar la solicitud.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
|
||||
{{$sitename}}
|
18
view/es/smarty3/wall_received_eml.tpl
Normal file
18
view/es/smarty3/wall_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Estimado/a {{$username}},
|
||||
|
||||
'{{$from}}' ha escrito algo en el muro de tu perfil.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accede a {{$siteurl}} para ver o borrar el elemento:
|
||||
|
||||
{{$display}}
|
||||
|
||||
|
||||
{{$sitename}}
|
||||
|
||||
|
||||
|
18
view/it/smarty3/cmnt_received_eml.tpl
Normal file
18
view/it/smarty3/cmnt_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Caro/a {{$username}},
|
||||
|
||||
'{{$from}}' ha commentato un elemeto/conversazione che stai seguendo.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accedi a {{$siteurl}} per verdere la conversazione completa:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Grazie,
|
||||
L'amministratore di {{$sitename}}
|
||||
|
||||
|
||||
|
25
view/it/smarty3/cmnt_received_html_body_eml.tpl
Normal file
25
view/it/smarty3/cmnt_received_html_body_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendika Messaggio</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='{{$siteurl}}/images/friendika-32.png'><span style="padding:7px;">Friendika</span></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} ha commentato un elemeto/conversazione che stai seguendo.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-bottom:5px;"></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2"><a href="{{$display}}">Accedi a {{$siteurl}} per verdere la conversazione completa:</a>.</td></tr>
|
||||
<tr><td></td><td>Grazie,</td></tr>
|
||||
<tr><td></td><td>L'amministratore di {{$sitename}}</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
18
view/it/smarty3/cmnt_received_text_body_eml.tpl
Normal file
18
view/it/smarty3/cmnt_received_text_body_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Caro/a {{$username}},
|
||||
|
||||
'{{$from}}' ha commentato un elemeto/conversazione che stai seguendo.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accedi a {{$siteurl}} per verdere la conversazione completa:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Grazie,
|
||||
L'amministratore di {{$sitename}}
|
||||
|
||||
|
||||
|
14
view/it/smarty3/follow_notify_eml.tpl
Normal file
14
view/it/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Ciao {{$myname}},
|
||||
|
||||
Un nuovo utente ha iniziato a seguirti su {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Puoi vedere il suo profilo su {{$url}}.
|
||||
|
||||
Accedi sul tuo sito per approvare o ignorare la richiesta.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Saluti,
|
||||
|
||||
L'amministratore di {{$sitename}}
|
22
view/it/smarty3/friend_complete_eml.tpl
Normal file
22
view/it/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Ciao {{$username}},
|
||||
|
||||
Ottime notizie... '{{$fn}}' di '{{$dfrn_url}}' ha accettato
|
||||
la tua richiesta di connessione su '{{$sitename}}'.
|
||||
|
||||
Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email
|
||||
senza restrizioni.
|
||||
|
||||
Vai nella pagina 'Contatti' di {{$sitename}} se vuoi effettuare
|
||||
qualche modifica riguardo questa relazione
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[Ad esempio, potresti creare un profilo separato con le informazioni che non
|
||||
sono disponibili pubblicamente - ed permettere di vederlo a '{{$fn}}'].
|
||||
|
||||
Saluti,
|
||||
|
||||
l'amministratore di {{$sitename}}
|
||||
|
||||
|
22
view/it/smarty3/intro_complete_eml.tpl
Normal file
22
view/it/smarty3/intro_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Ciao {{$username}},
|
||||
|
||||
'{{$fn}}' di '{{$dfrn_url}}' ha accettato
|
||||
la tua richiesta di connessione a '{{$sitename}}'.
|
||||
|
||||
'{{$fn}}' ha deciso di accettarti come "fan", il che restringe
|
||||
alcune forme di comunicazione - come i messaggi privati e alcune
|
||||
interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno
|
||||
applicate automaticamente.
|
||||
|
||||
'{{$fn}}' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva
|
||||
.
|
||||
|
||||
Inizierai a ricevere gli aggiornamenti di stato pubblici da '{{$fn}}',
|
||||
che apparirà nella tua pagina 'Rete'
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Saluti,
|
||||
|
||||
l'amministratore di {{$sitename}}
|
32
view/it/smarty3/lostpass_eml.tpl
Normal file
32
view/it/smarty3/lostpass_eml.tpl
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
Ciao {{$username}},
|
||||
Su {{$sitename}} è stata ricevuta una richiesta di azzeramento di password per un account.
|
||||
Per confermare la richiesta, clicca sul link di verifica
|
||||
qui in fondo oppure copialo nella barra degli indirizzi del tuo browser.
|
||||
|
||||
Se NON hai richiesto l'azzeramento, NON seguire il link
|
||||
e ignora e/o cancella questa email.
|
||||
|
||||
La tua password non sarà modificata finché non avremo verificato che
|
||||
hai fatto questa richiesta.
|
||||
|
||||
Per verificare la tua identità clicca su:
|
||||
|
||||
{{$reset_link}}
|
||||
|
||||
Dopo la verifica riceverai un messaggio di risposta con la nuova password.
|
||||
|
||||
Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
||||
|
||||
I dati di accesso sono i seguenti:
|
||||
|
||||
Sito:»{{$siteurl}}
|
||||
Nome utente:»{{$email}}
|
||||
|
||||
|
||||
|
||||
|
||||
Saluti,
|
||||
l'amministratore di {{$sitename}}
|
||||
|
||||
|
25
view/it/smarty3/mail_received_html_body_eml.tpl
Normal file
25
view/it/smarty3/mail_received_html_body_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Friendika Messsaggio</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='{{$siteurl}}/images/friendika-32.png'><span style="padding:7px;">Friendika</span></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Accedi a <a href="{{$siteurl}}">{{$siteurl}}</a> per leggere e rispondere ai tuoi messaggi privati.</td></tr>
|
||||
<tr><td></td><td>Grazie,</td></tr>
|
||||
<tr><td></td><td>L'amministratore di {{$siteName}}</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
10
view/it/smarty3/mail_received_text_body_eml.tpl
Normal file
10
view/it/smarty3/mail_received_text_body_eml.tpl
Normal file
@ -0,0 +1,10 @@
|
||||
Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'.
|
||||
|
||||
{{$title}}
|
||||
|
||||
{{$textversion}}
|
||||
|
||||
Accedi a {{$siteurl}} per leggere e rispondere ai tuoi messaggi privati.
|
||||
|
||||
Grazie,
|
||||
L'amministratore di {{$siteName}}
|
20
view/it/smarty3/passchanged_eml.tpl
Normal file
20
view/it/smarty3/passchanged_eml.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
Ciao {{$username}},
|
||||
La tua password è cambiata come hai richiesto. Conserva queste
|
||||
informazioni (oppure cambia immediatamente la password con
|
||||
qualcosa che ti è più facile ricordare).
|
||||
|
||||
|
||||
I tuoi dati di access sono i seguenti:
|
||||
|
||||
Sito:»{{$siteurl}}
|
||||
Nome utente:»{{$email}}
|
||||
Password:»{{$new_password}}
|
||||
|
||||
Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
||||
|
||||
|
||||
Saluti,
|
||||
l'amministratore di {{$sitename}}
|
||||
|
||||
|
34
view/it/smarty3/register_open_eml.tpl
Normal file
34
view/it/smarty3/register_open_eml.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
Ciao {{$username}},
|
||||
Grazie per aver effettuato la registrazione a {{$sitename}}. Il tuo account è stato creato.
|
||||
I dettagli di accesso sono i seguenti
|
||||
|
||||
|
||||
Sito:»{{$siteurl}}
|
||||
Nome utente:»{{$email}}
|
||||
Password:»{{$password}}
|
||||
|
||||
Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso
|
||||
.
|
||||
|
||||
Prenditi un momento per dare un'occhiata alle altre impostazioni del tuo profilo nella stessa pagina.
|
||||
|
||||
Potrest voler aggiungere alcune informazioni di base a quelle predefinite del profilo
|
||||
(nella pagina "Profilo") per rendere agli altri più facile trovarti.
|
||||
|
||||
Noi raccomandiamo di impostare il tuo nome completo, di aggiungere una foto,
|
||||
di aggiungere alcune "parole chiavi" (molto utili per farsi nuovi amici) - e
|
||||
magari il paese dove vivi; se non vuoi essere più dettagliato
|
||||
di così.
|
||||
|
||||
Noi rispettiamo il tuo diritto alla privacy e nessuna di queste informazioni è indispensabile.
|
||||
Se ancora non conosci nessuno qui, potrebbe esserti di aiuto
|
||||
per farti nuovi e interessanti amici.
|
||||
|
||||
|
||||
Grazie. Siamo contenti di darti il benvenuto su {{$sitename}}
|
||||
|
||||
Saluti,
|
||||
l'amministratore di {{$sitename}}
|
||||
|
||||
|
25
view/it/smarty3/register_verify_eml.tpl
Normal file
25
view/it/smarty3/register_verify_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Su {{$sitename}} è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede
|
||||
la tua approvazione.
|
||||
|
||||
|
||||
I tuoi dati di accesso sono i seguenti:
|
||||
|
||||
Nome completo:»{{$username}}
|
||||
Sito:»{{$siteurl}}
|
||||
Nome utente:»{{$email}}
|
||||
|
||||
|
||||
Per approvare questa richiesta clicca su:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||
|
||||
|
||||
Per negare la richiesta e rimuove il profilo, clicca su:
|
||||
|
||||
|
||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||
|
||||
|
||||
Grazie.
|
17
view/it/smarty3/request_notify_eml.tpl
Normal file
17
view/it/smarty3/request_notify_eml.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Ciao {{$myname}},
|
||||
|
||||
Hai appena ricevuto una richiesta di connessione da {{$sitename}}
|
||||
|
||||
da '{{$requestor}}'.
|
||||
|
||||
Puoi visitare il suo profilo su {{$url}}.
|
||||
|
||||
Accedi al tuo sito per vedere la richiesta completa
|
||||
e approva o ignora/annulla la richiesta.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Saluti,
|
||||
|
||||
l'amministratore di {{$sitename}}
|
18
view/it/smarty3/wall_received_eml.tpl
Normal file
18
view/it/smarty3/wall_received_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Caro/a {{$username}},
|
||||
|
||||
'{{$from}}' ha scritto qualcosa sulla bachecha del tuo profilo.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Accedi a {{$siteurl}} per vedere o cancellare l'elemento:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Grazie,
|
||||
L'amministratore di {{$sitename}}
|
||||
|
||||
|
||||
|
24
view/it/smarty3/wall_received_html_body_eml.tpl
Normal file
24
view/it/smarty3/wall_received_html_body_eml.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Messaggio da Friendika</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
</head>
|
||||
<body>
|
||||
<table style="border:1px solid #ccc">
|
||||
<tbody>
|
||||
<tr><td colspan="2" style="background:#084769; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px; float:left;" src='{{$siteurl}}/images/friendika-32.png'><div style="padding:7px; margin-left: 5px; float:left; font-size:18px;letter-spacing:1px;">Friendika</div><div style="clear: both;"></div></td></tr>
|
||||
|
||||
<tr><td style="padding-top:22px;" colspan="2">{{$from}} ha scritto sulla tua bacheca.</td></tr>
|
||||
|
||||
|
||||
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$url}}"><img style="border:0px;width:48px;height:48px;" src="{{$thumb}}"></a></td>
|
||||
<td style="padding-top:22px;"><a href="{{$url}}">{{$from}}</a></td></tr>
|
||||
<tr><td style="padding-right:22px;">{{$body}}</td></tr>
|
||||
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Vai su <a href="{{$siteurl}}">{{$siteurl}}</a> per <a href="{{$display}}">vedere o cancellare il post</a>.</td></tr>
|
||||
<tr><td></td><td>Grazie,</td></tr>
|
||||
<tr><td></td><td>L'amministratore di {{$sitename}}</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
18
view/it/smarty3/wall_received_text_body_eml.tpl
Normal file
18
view/it/smarty3/wall_received_text_body_eml.tpl
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
Caro {{$username}},
|
||||
|
||||
'{{$from}}' ha scritto sulla tua bacheca.
|
||||
|
||||
-----
|
||||
{{$body}}
|
||||
-----
|
||||
|
||||
Vai su {{$siteurl}} per vedere o cancellare il post:
|
||||
|
||||
{{$display}}
|
||||
|
||||
Grazie,
|
||||
L'amministratore di {{$sitename}}
|
||||
|
||||
|
||||
|
14
view/nb-no/smarty3/follow_notify_eml.tpl
Normal file
14
view/nb-no/smarty3/follow_notify_eml.tpl
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
Kjære {{$myname}},
|
||||
|
||||
Du har en ny følgesvenn på {{$sitename}} - '{{$requestor}}'.
|
||||
|
||||
Du kan besøke profilen deres på {{$url}}.
|
||||
|
||||
Vennligst logg inn på ditt sted for å godkjenne eller ignorere/avbryte forespørselen.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
Med vennlig hilsen,
|
||||
|
||||
{{$sitename}} administrator
|
22
view/nb-no/smarty3/friend_complete_eml.tpl
Normal file
22
view/nb-no/smarty3/friend_complete_eml.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
Kjære {{$username}},
|
||||
|
||||
Gode nyheter... '{{$fn}}' ved '{{$dfrn_url}}' har godtatt
|
||||
din forespørsel om kobling hos '{{$sitename}}'.
|
||||
|
||||
Dere er nå gjensidige venner og kan utveksle statusoppdateringer, bilder og e-post
|
||||
uten hindringer.
|
||||
|
||||
Vennligst besøk din side "Kontakter" ved {{$sitename}} hvis du ønsker å gjøre
|
||||
noen endringer på denne forbindelsen.
|
||||
|
||||
{{$siteurl}}
|
||||
|
||||
[For eksempel, så kan du lage en egen profil med informasjon som ikke er
|
||||
tilgjengelig for alle - og angi visningsrettigheter til '{{$fn}}'].
|
||||
|
||||
Med vennlig hilsen,
|
||||
|
||||
{{$sitename}} administrator
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user