More template gore!
This commit is contained in:
parent
803854738b
commit
5997fb19ee
|
@ -6,6 +6,7 @@ require_once('include/plugin.php');
|
||||||
require_once('include/text.php');
|
require_once('include/text.php');
|
||||||
require_once('include/pgettext.php');
|
require_once('include/pgettext.php');
|
||||||
require_once('include/datetime.php');
|
require_once('include/datetime.php');
|
||||||
|
require_once('include/enotify.php');
|
||||||
|
|
||||||
|
|
||||||
function create_user($arr) {
|
function create_user($arr) {
|
||||||
|
@ -44,7 +45,7 @@ function create_user($arr) {
|
||||||
$result['message'] .= t('Invitation could not be verified.') . EOL;
|
$result['message'] .= t('Invitation could not be verified.') . EOL;
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if((! x($username)) || (! x($email)) || (! x($nickname))) {
|
if((! x($username)) || (! x($email)) || (! x($nickname))) {
|
||||||
if($openid_url) {
|
if($openid_url) {
|
||||||
|
@ -57,17 +58,17 @@ function create_user($arr) {
|
||||||
require_once('library/openid.php');
|
require_once('library/openid.php');
|
||||||
$openid = new LightOpenID;
|
$openid = new LightOpenID;
|
||||||
$openid->identity = $openid_url;
|
$openid->identity = $openid_url;
|
||||||
$openid->returnUrl = $a->get_baseurl() . '/openid';
|
$openid->returnUrl = $a->get_baseurl() . '/openid';
|
||||||
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
|
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
|
||||||
$openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
|
$openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
|
||||||
try {
|
try {
|
||||||
$authurl = $openid->authUrl();
|
$authurl = $openid->authUrl();
|
||||||
} catch (Exception $e){
|
} catch (Exception $e){
|
||||||
$result['message'] .= t("We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."). EOL . EOL . t("The error message was:") . $e->getMessage() . EOL;
|
$result['message'] .= t("We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."). EOL . EOL . t("The error message was:") . $e->getMessage() . EOL;
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
goaway($authurl);
|
goaway($authurl);
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
|
|
||||||
notice( t('Please enter the required information.') . EOL );
|
notice( t('Please enter the required information.') . EOL );
|
||||||
|
@ -90,12 +91,12 @@ function create_user($arr) {
|
||||||
|
|
||||||
// I don't really like having this rule, but it cuts down
|
// I don't really like having this rule, but it cuts down
|
||||||
// on the number of auto-registrations by Russian spammers
|
// on the number of auto-registrations by Russian spammers
|
||||||
|
|
||||||
// Using preg_match was completely unreliable, due to mixed UTF-8 regex support
|
// Using preg_match was completely unreliable, due to mixed UTF-8 regex support
|
||||||
// $no_utf = get_config('system','no_utf');
|
// $no_utf = get_config('system','no_utf');
|
||||||
// $pat = (($no_utf) ? '/^[a-zA-Z]* [a-zA-Z]*$/' : '/^\p{L}* \p{L}*$/u' );
|
// $pat = (($no_utf) ? '/^[a-zA-Z]* [a-zA-Z]*$/' : '/^\p{L}* \p{L}*$/u' );
|
||||||
|
|
||||||
// So now we are just looking for a space in the full name.
|
// So now we are just looking for a space in the full name.
|
||||||
|
|
||||||
$loose_reg = get_config('system','no_regfullname');
|
$loose_reg = get_config('system','no_regfullname');
|
||||||
if(! $loose_reg) {
|
if(! $loose_reg) {
|
||||||
|
@ -182,7 +183,7 @@ function create_user($arr) {
|
||||||
* will take several minutes each to process.
|
* will take several minutes each to process.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$sres = new_keypair(512);
|
$sres = new_keypair(512);
|
||||||
$sprvkey = $sres['prvkey'];
|
$sprvkey = $sres['prvkey'];
|
||||||
$spubkey = $sres['pubkey'];
|
$spubkey = $sres['pubkey'];
|
||||||
|
@ -207,7 +208,7 @@ function create_user($arr) {
|
||||||
);
|
);
|
||||||
|
|
||||||
if($r) {
|
if($r) {
|
||||||
$r = q("SELECT * FROM `user`
|
$r = q("SELECT * FROM `user`
|
||||||
WHERE `username` = '%s' AND `password` = '%s' LIMIT 1",
|
WHERE `username` = '%s' AND `password` = '%s' LIMIT 1",
|
||||||
dbesc($username),
|
dbesc($username),
|
||||||
dbesc($new_password_encoded)
|
dbesc($new_password_encoded)
|
||||||
|
@ -220,10 +221,10 @@ function create_user($arr) {
|
||||||
else {
|
else {
|
||||||
$result['message'] .= t('An error occurred during registration. Please try again.') . EOL ;
|
$result['message'] .= t('An error occurred during registration. Please try again.') . EOL ;
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* if somebody clicked submit twice very quickly, they could end up with two accounts
|
* if somebody clicked submit twice very quickly, they could end up with two accounts
|
||||||
* due to race condition. Remove this one.
|
* due to race condition. Remove this one.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -281,8 +282,8 @@ function create_user($arr) {
|
||||||
dbesc(datetime_convert())
|
dbesc(datetime_convert())
|
||||||
);
|
);
|
||||||
|
|
||||||
// Create a group with no members. This allows somebody to use it
|
// Create a group with no members. This allows somebody to use it
|
||||||
// right away as a default group for new contacts.
|
// right away as a default group for new contacts.
|
||||||
|
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
group_add($newuid, t('Friends'));
|
group_add($newuid, t('Friends'));
|
||||||
|
@ -323,7 +324,7 @@ function create_user($arr) {
|
||||||
// guess mimetype from headers or filename
|
// guess mimetype from headers or filename
|
||||||
$type = guess_image_type($photo,true);
|
$type = guess_image_type($photo,true);
|
||||||
|
|
||||||
|
|
||||||
$img = new Photo($img_str, $type);
|
$img = new Photo($img_str, $type);
|
||||||
if($img->is_valid()) {
|
if($img->is_valid()) {
|
||||||
|
|
||||||
|
@ -365,3 +366,51 @@ function create_user($arr) {
|
||||||
return $result;
|
return $result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* send registration confirmation.
|
||||||
|
* It's here as a function because the mail is sent
|
||||||
|
* from different parts
|
||||||
|
*/
|
||||||
|
function send_register_open_eml($email, $sitename, $siteurl, $username, $password){
|
||||||
|
$preamble = deindent(t('
|
||||||
|
Dear %1$s,
|
||||||
|
Thank you for registering at %2$s. Your account has been created.
|
||||||
|
'));
|
||||||
|
$body = deindent(t('
|
||||||
|
The login details are as follows:
|
||||||
|
Site Location: %3$s
|
||||||
|
Login Name: %1$s
|
||||||
|
Password: %5$
|
||||||
|
|
||||||
|
You may change your password from your account "Settings" page after logging
|
||||||
|
in.
|
||||||
|
|
||||||
|
Please take a few moments to review the other account settings on that page.
|
||||||
|
|
||||||
|
You may also wish to add some basic information to your default profile
|
||||||
|
(on the "Profiles" page) so that other people can easily find you.
|
||||||
|
|
||||||
|
We recommend setting your full name, adding a profile photo,
|
||||||
|
adding some profile "keywords" (very useful in making new friends) - and
|
||||||
|
perhaps what country you live in; if you do not wish to be more specific
|
||||||
|
than that.
|
||||||
|
|
||||||
|
We fully respect your right to privacy, and none of these items are necessary.
|
||||||
|
If you are new and do not know anybody here, they may help
|
||||||
|
you to make some new and interesting friends.
|
||||||
|
|
||||||
|
|
||||||
|
Thank you and welcome to %2$s.'));
|
||||||
|
|
||||||
|
$preamble = sprintf($preamble, $username, $sitename);
|
||||||
|
$body = sprintf($body, $email, $sitename, $siteurl, $username, $password);
|
||||||
|
|
||||||
|
notification(array(
|
||||||
|
'type' => "SYSTEM_EMAIL",
|
||||||
|
'to_email' => $email,
|
||||||
|
'subject'=> sprintf( t('Registration details for %s'), $sitename),
|
||||||
|
'preamble'=> $preamble,
|
||||||
|
'body' => $body));
|
||||||
|
}
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
* Friendica admin
|
* Friendica admin
|
||||||
*/
|
*/
|
||||||
require_once("include/remoteupdate.php");
|
require_once("include/remoteupdate.php");
|
||||||
|
require_once("include/enotify.php");
|
||||||
|
require_once("include/text.php");
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -752,7 +754,7 @@ function admin_page_users_post(&$a){
|
||||||
|
|
||||||
if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
||||||
require_once('include/user.php');
|
require_once('include/user.php');
|
||||||
require_once('include/email.php');
|
|
||||||
$result = create_user( array('username'=>$nu_name, 'email'=>$nu_email, 'nickname'=>$nu_nickname, 'verified'=>1) );
|
$result = create_user( array('username'=>$nu_name, 'email'=>$nu_email, 'nickname'=>$nu_nickname, 'verified'=>1) );
|
||||||
if(! $result['success']) {
|
if(! $result['success']) {
|
||||||
notice($result['message']);
|
notice($result['message']);
|
||||||
|
@ -761,7 +763,7 @@ function admin_page_users_post(&$a){
|
||||||
$nu = $result['user'];
|
$nu = $result['user'];
|
||||||
$preamble = deindent(t('
|
$preamble = deindent(t('
|
||||||
Dear %1$s,
|
Dear %1$s,
|
||||||
the administrator of %2$s has set up an account for you.');
|
the administrator of %2$s has set up an account for you.'));
|
||||||
$body = deindent(t('
|
$body = deindent(t('
|
||||||
The login details are as follows:
|
The login details are as follows:
|
||||||
|
|
||||||
|
@ -786,7 +788,7 @@ function admin_page_users_post(&$a){
|
||||||
If you are new and do not know anybody here, they may help
|
If you are new and do not know anybody here, they may help
|
||||||
you to make some new and interesting friends.
|
you to make some new and interesting friends.
|
||||||
|
|
||||||
Thank you and welcome to %4$s.');
|
Thank you and welcome to %4$s.'));
|
||||||
|
|
||||||
$preamble = sprintf($preamble, $nu['username'], $a->config['sitename']);
|
$preamble = sprintf($preamble, $nu['username'], $a->config['sitename']);
|
||||||
$body = sprintf($body, $a->get_baseurl(), $nu['email'], $result['password'], $a->config['sitename']);
|
$body = sprintf($body, $a->get_baseurl(), $nu['email'], $result['password'], $a->config['sitename']);
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
require_once('include/email.php');
|
require_once('include/email.php');
|
||||||
require_once('include/enotify.php');
|
require_once('include/enotify.php');
|
||||||
|
require_once('include/text.php');
|
||||||
|
|
||||||
function lostpass_post(&$a) {
|
function lostpass_post(&$a) {
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
require_once('include/email.php');
|
require_once('include/email.php');
|
||||||
require_once('include/bbcode.php');
|
require_once('include/bbcode.php');
|
||||||
|
require_once('include/user.php');
|
||||||
|
|
||||||
if(! function_exists('register_post')) {
|
if(! function_exists('register_post')) {
|
||||||
function register_post(&$a) {
|
function register_post(&$a) {
|
||||||
|
@ -45,7 +46,7 @@ function register_post(&$a) {
|
||||||
$verified = 0;
|
$verified = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
require_once('include/user.php');
|
require_once('include/user.php');
|
||||||
|
|
||||||
|
@ -62,7 +63,7 @@ function register_post(&$a) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$user = $result['user'];
|
$user = $result['user'];
|
||||||
|
|
||||||
if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
|
if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
|
||||||
$url = $a->get_baseurl() . '/profile/' . $user['nickname'];
|
$url = $a->get_baseurl() . '/profile/' . $user['nickname'];
|
||||||
proc_run('php',"include/directory.php","$url");
|
proc_run('php',"include/directory.php","$url");
|
||||||
|
@ -80,20 +81,12 @@ function register_post(&$a) {
|
||||||
set_pconfig($user['uid'],'system','invites_remaining',$num_invites);
|
set_pconfig($user['uid'],'system','invites_remaining',$num_invites);
|
||||||
}
|
}
|
||||||
|
|
||||||
$email_tpl = get_intltext_template("register_open_eml.tpl");
|
send_register_open_eml(
|
||||||
$email_tpl = replace_macros($email_tpl, array(
|
$user['email'],
|
||||||
'$sitename' => $a->config['sitename'],
|
$a->config['sitename'],
|
||||||
'$siteurl' => $a->get_baseurl(),
|
$a->get_baseurl(),
|
||||||
'$username' => $user['username'],
|
$user['username'],
|
||||||
'$email' => $user['email'],
|
$result['password']);
|
||||||
'$password' => $result['password'],
|
|
||||||
'$uid' => $user['uid'] ));
|
|
||||||
|
|
||||||
$res = mail($user['email'], email_header_encode( sprintf( t('Registration details for %s'), $a->config['sitename']),'UTF-8'),
|
|
||||||
$email_tpl,
|
|
||||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
|
||||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
|
||||||
. 'Content-transfer-encoding: 8bit' );
|
|
||||||
|
|
||||||
|
|
||||||
if($res) {
|
if($res) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once('include/email.php');
|
require_once('include/enotify.php');
|
||||||
|
|
||||||
function user_allow($hash) {
|
function user_allow($hash) {
|
||||||
|
|
||||||
|
@ -41,21 +41,12 @@ function user_allow($hash) {
|
||||||
|
|
||||||
push_lang($register[0]['language']);
|
push_lang($register[0]['language']);
|
||||||
|
|
||||||
$email_tpl = get_intltext_template("register_open_eml.tpl");
|
send_register_open_eml(
|
||||||
$email_tpl = replace_macros($email_tpl, array(
|
$user[0]['email'],
|
||||||
'$sitename' => $a->config['sitename'],
|
$a->config['sitename'],
|
||||||
'$siteurl' => $a->get_baseurl(),
|
$a->get_baseurl(),
|
||||||
'$username' => $user[0]['username'],
|
$user[0]['username'],
|
||||||
'$email' => $user[0]['email'],
|
$register[0]['password']);
|
||||||
'$password' => $register[0]['password'],
|
|
||||||
'$uid' => $user[0]['uid']
|
|
||||||
));
|
|
||||||
|
|
||||||
$res = mail($user[0]['email'], email_header_encode( sprintf(t('Registration details for %s'), $a->config['sitename']), 'UTF-8'),
|
|
||||||
$email_tpl,
|
|
||||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
|
||||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
|
||||||
. 'Content-transfer-encoding: 8bit' );
|
|
||||||
|
|
||||||
pop_lang();
|
pop_lang();
|
||||||
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
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}}.
|
|
||||||
|
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
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
|
|
|
@ -1,24 +0,0 @@
|
||||||
|
|
||||||
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
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Dear $[username],
|
|
||||||
Thank you for registering at $[sitename]. Your account has been created.
|
|
||||||
The login details are as follows:
|
|
||||||
|
|
||||||
|
|
||||||
Site Location: $[siteurl]
|
|
||||||
Login Name: $[email]
|
|
||||||
Password: $[password]
|
|
||||||
|
|
||||||
You may change your password from your account "Settings" page after logging
|
|
||||||
in.
|
|
||||||
|
|
||||||
Please take a few moments to review the other account settings on that page.
|
|
||||||
|
|
||||||
You may also wish to add some basic information to your default profile
|
|
||||||
(on the "Profiles" page) so that other people can easily find you.
|
|
||||||
|
|
||||||
We recommend setting your full name, adding a profile photo,
|
|
||||||
adding some profile "keywords" (very useful in making new friends) - and
|
|
||||||
perhaps what country you live in; if you do not wish to be more specific
|
|
||||||
than that.
|
|
||||||
|
|
||||||
We fully respect your right to privacy, and none of these items are necessary.
|
|
||||||
If you are new and do not know anybody here, they may help
|
|
||||||
you to make some new and interesting friends.
|
|
||||||
|
|
||||||
|
|
||||||
Thank you and welcome to $[sitename].
|
|
||||||
|
|
||||||
Sincerely,
|
|
||||||
$[sitename] Administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
Dear {{$username}},
|
|
||||||
Thank you for registering at {{$sitename}}. Your account has been created.
|
|
||||||
The login details are as follows:
|
|
||||||
|
|
||||||
|
|
||||||
Site Location: {{$siteurl}}
|
|
||||||
Login Name: {{$email}}
|
|
||||||
Password: {{$password}}
|
|
||||||
|
|
||||||
You may change your password from your account "Settings" page after logging
|
|
||||||
in.
|
|
||||||
|
|
||||||
Please take a few moments to review the other account settings on that page.
|
|
||||||
|
|
||||||
You may also wish to add some basic information to your default profile
|
|
||||||
(on the "Profiles" page) so that other people can easily find you.
|
|
||||||
|
|
||||||
We recommend setting your full name, adding a profile photo,
|
|
||||||
adding some profile "keywords" (very useful in making new friends) - and
|
|
||||||
perhaps what country you live in; if you do not wish to be more specific
|
|
||||||
than that.
|
|
||||||
|
|
||||||
We fully respect your right to privacy, and none of these items are necessary.
|
|
||||||
If you are new and do not know anybody here, they may help
|
|
||||||
you to make some new and interesting friends.
|
|
||||||
|
|
||||||
|
|
||||||
Thank you and welcome to {{$sitename}}.
|
|
||||||
|
|
||||||
Sincerely,
|
|
||||||
{{$sitename}} Administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
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}}.
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Cher $[username],
|
|
||||||
Merci de vous être inscrit sur $[sitename]. Votre compte est bien créé.
|
|
||||||
Vos informations de connexion sont comme suit :
|
|
||||||
|
|
||||||
|
|
||||||
Adresse du site: $[siteurl]
|
|
||||||
Utilisateur: $[email]
|
|
||||||
Mot de passe: $[password]
|
|
||||||
|
|
||||||
Vous pouvez changer votre mot de passe depuis la page "Réglages" une fois
|
|
||||||
connecté.
|
|
||||||
|
|
||||||
Merci de prender quelques instants pour vérifier les autres réglages de cette page.
|
|
||||||
|
|
||||||
Vous pouvez aussi ajouter quelques informatiques de base à votre profil par défaut
|
|
||||||
(sur la page "Profils") pour que les autres membres vous trouvent facilement.
|
|
||||||
|
|
||||||
Nous vous recommandons d'indiquer un nom complet, d'ajouter une photo
|
|
||||||
de profil, quelques "mots-clés" (très efficace pour rencontrer des gens) - et
|
|
||||||
peut-être aussi votre pays de résidence ; sauf si vous souhaitez être plus
|
|
||||||
précis, bien sûr.
|
|
||||||
|
|
||||||
Nous avons le plus grand respect pour votre vie privée, et aucun de ces éléments n'est nécessaire.
|
|
||||||
Si vous êtes nouveau et ne connaissez personne, ils peuvent cependant vous
|
|
||||||
aider à vous faire quelques nouveaux et intéressants contacts.
|
|
||||||
|
|
||||||
|
|
||||||
Merci, et bienvenue sur $[sitename].
|
|
||||||
|
|
||||||
Sincèrement votre,
|
|
||||||
l'administrateur de $[sitename]
|
|
||||||
|
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
Cher(e) {{$username}},
|
|
||||||
|
|
||||||
Merci de votre inscription à {{$sitename}}. Votre compte a été créé.
|
|
||||||
Les informations de connexion sont les suivantes :
|
|
||||||
|
|
||||||
Site : {{$siteurl}}
|
|
||||||
Pseudo/Courriel : {{$email}}
|
|
||||||
Mot de passe : {{$password}}
|
|
||||||
|
|
||||||
Vous pouvez changer de mot de passe dans la page des « Réglages » de votre compte,
|
|
||||||
après connexion.
|
|
||||||
|
|
||||||
Merci de prendre quelques minutes pour découvrir les autres réglages disponibles
|
|
||||||
sur cette page.
|
|
||||||
|
|
||||||
Merci, et bienvenue sur {{$sitename}}.
|
|
||||||
|
|
||||||
Sincèrement votre,
|
|
||||||
l'administrateur de {{$sitename}}
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Góðan daginn $[username],
|
|
||||||
Takk fyrir að skrá þig á $[sitename]. Notandinn þinn hefur verið stofnaður.
|
|
||||||
Innskráningar upplýsingarnar þínar eru eftirfarandi:
|
|
||||||
|
|
||||||
|
|
||||||
Vefþjónn: $[siteurl]
|
|
||||||
Notendanafn: $[email]
|
|
||||||
Aðgangsorð: $[password]
|
|
||||||
|
|
||||||
Þú getur breytt aðgangsorðinu þínu á "Stillingar" síðunni eftir að þú hefur skráð þig
|
|
||||||
inn.
|
|
||||||
|
|
||||||
Endilega eyddu smá tíma í að yfirfara aðrar notenda stillingar á þeirri síðu.
|
|
||||||
|
|
||||||
Einnig gætir þú bætt við grunnupplýsingum á sjálfgefna prófílinn
|
|
||||||
(á "Forsíður" síðunni) svo aðrið geti auðveldlega fundið þig.
|
|
||||||
|
|
||||||
Við mælum með að þú setjir fullt nafn, bætir við prófíl mynd,
|
|
||||||
bætir nokkrum "leitarorðum" (mjög gagnlegt við að eignast nýja vini) og
|
|
||||||
mögulega bætir við í hvaða landi þú býrð, ef þú villt ekki vera nákvæmari
|
|
||||||
en það.
|
|
||||||
|
|
||||||
Við virðum að fullu rétt þinn til einkalífs, því er ekkert að þessum atriðum skilyrði.
|
|
||||||
Ef þú ert byrjandi og þekkir ekki einhvern hér, þér eru hér fólk
|
|
||||||
sem getur aðstoðað þig við að eignast nýja og áhugaverða vini.
|
|
||||||
|
|
||||||
|
|
||||||
Takk fyrir og velkomin(n) á $[sitename].
|
|
||||||
|
|
||||||
Bestu kveðjur,
|
|
||||||
Kerfisstjóri $[sitename]
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
Góðan daginn {{$username}},
|
|
||||||
Takk fyrir að skrá þig á {{$sitename}}. Notandinn þinn hefur verið stofnaður.
|
|
||||||
Innskráningar upplýsingarnar þínar eru eftirfarandi:
|
|
||||||
|
|
||||||
|
|
||||||
Vefþjónn: {{$siteurl}}
|
|
||||||
Notendanafn: {{$email}}
|
|
||||||
Aðgangsorð: {{$password}}
|
|
||||||
|
|
||||||
Þú getur breytt aðgangsorðinu þínu á "Stillingar" síðunni eftir að þú hefur skráð þig
|
|
||||||
inn.
|
|
||||||
|
|
||||||
Endilega eyddu smá tíma í að yfirfara aðrar notenda stillingar á þeirri síðu.
|
|
||||||
|
|
||||||
Einnig gætir þú bætt við grunnupplýsingum á sjálfgefna prófílinn
|
|
||||||
(á "Forsíður" síðunni) svo aðrið geti auðveldlega fundið þig.
|
|
||||||
|
|
||||||
Við mælum með að þú setjir fullt nafn, bætir við prófíl mynd,
|
|
||||||
bætir nokkrum "leitarorðum" (mjög gagnlegt við að eignast nýja vini) og
|
|
||||||
mögulega bætir við í hvaða landi þú býrð, ef þú villt ekki vera nákvæmari
|
|
||||||
en það.
|
|
||||||
|
|
||||||
Við virðum að fullu rétt þinn til einkalífs, því er ekkert að þessum atriðum skilyrði.
|
|
||||||
Ef þú ert byrjandi og þekkir ekki einhvern hér, þér eru hér fólk
|
|
||||||
sem getur aðstoðað þig við að eignast nýja og áhugaverða vini.
|
|
||||||
|
|
||||||
|
|
||||||
Takk fyrir og velkomin(n) á {{$sitename}}.
|
|
||||||
|
|
||||||
Bestu kveðjur,
|
|
||||||
Kerfisstjóri {{$sitename}}
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
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}}
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Kjære $[username],
|
|
||||||
Takk for at du registrerte deg hos $[sitename]. Kontoen din er opprettet.
|
|
||||||
Innloggingsdetaljene er som følger:
|
|
||||||
|
|
||||||
|
|
||||||
Nettstedsadresse:»$[siteurl]
|
|
||||||
Brukernavn:»$[email]
|
|
||||||
Passord:»$[password]
|
|
||||||
|
|
||||||
Du kan endre passordet ditt på siden "Innstillinger" etter at du har logget
|
|
||||||
inn.
|
|
||||||
|
|
||||||
Vennligst bruk litt tid til å se over de andre kontoinnstillingene på den siden.
|
|
||||||
|
|
||||||
Du vil antakelig ønske å legge til litt grunnleggende informasjon til standardprofilen din
|
|
||||||
(på siden "Profiler") slik at folk lettere kan finne deg.
|
|
||||||
|
|
||||||
Vi anbefaler å oppgi fullt navn, legge til et profilbilde,
|
|
||||||
legge til noen "nøkkelord" for profilen (svært nyttig for å få nye venner) - og
|
|
||||||
kanskje hvilket land du bor i, hvis du ikke ønsker å være mer spesifikk
|
|
||||||
enn det.
|
|
||||||
|
|
||||||
Vi respekterer ditt privatliv fullt ut, og ingen av disse elementene er nødvendige.
|
|
||||||
Hvis du er ny og ikke kjenner noen her, så kan de hjelpe
|
|
||||||
deg å få noen nye og interessante venner.
|
|
||||||
|
|
||||||
|
|
||||||
Takk og velkommen til $[sitename].
|
|
||||||
|
|
||||||
Beste hilsen,
|
|
||||||
$[sitename] administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
Kjære {{$username}},
|
|
||||||
Takk for at du registrerte deg hos {{$sitename}}. Kontoen din er opprettet.
|
|
||||||
Innloggingsdetaljene er som følger:
|
|
||||||
|
|
||||||
|
|
||||||
Nettstedsadresse:»{{$siteurl}}
|
|
||||||
Brukernavn:»{{$email}}
|
|
||||||
Passord:»{{$password}}
|
|
||||||
|
|
||||||
Du kan endre passordet ditt på siden "Innstillinger" etter at du har logget
|
|
||||||
inn.
|
|
||||||
|
|
||||||
Vennligst bruk litt tid til å se over de andre kontoinnstillingene på den siden.
|
|
||||||
|
|
||||||
Du vil antakelig ønske å legge til litt grunnleggende informasjon til standardprofilen din
|
|
||||||
(på siden "Profiler") slik at folk lettere kan finne deg.
|
|
||||||
|
|
||||||
Vi anbefaler å oppgi fullt navn, legge til et profilbilde,
|
|
||||||
legge til noen "nøkkelord" for profilen (svært nyttig for å få nye venner) - og
|
|
||||||
kanskje hvilket land du bor i, hvis du ikke ønsker å være mer spesifikk
|
|
||||||
enn det.
|
|
||||||
|
|
||||||
Vi respekterer ditt privatliv fullt ut, og ingen av disse elementene er nødvendige.
|
|
||||||
Hvis du er ny og ikke kjenner noen her, så kan de hjelpe
|
|
||||||
deg å få noen nye og interessante venner.
|
|
||||||
|
|
||||||
|
|
||||||
Takk og velkommen til {{$sitename}}.
|
|
||||||
|
|
||||||
Beste hilsen,
|
|
||||||
{{$sitename}} administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Beste $[username],
|
|
||||||
Bedankt voor uw registratie op $[sitename]. Uw account is gecreëerd.
|
|
||||||
De inloggegevens zijn als volgt:
|
|
||||||
|
|
||||||
|
|
||||||
Website-adres:»$[siteurl]
|
|
||||||
Inlognaam:»$[email]
|
|
||||||
Wachtwoord:»$[password]
|
|
||||||
|
|
||||||
U kunt dit wachtwoord veranderen in uw account-instellingen, nadat u bent
|
|
||||||
ingelogd.
|
|
||||||
|
|
||||||
Neem even een moment om de overige account-instellingen na te gaan.
|
|
||||||
|
|
||||||
U wilt misschien ook wat algemene informatie toevoegen aan uw standaardprofiel
|
|
||||||
(op de "Profiel"-pagina), zodat andere mensen u eenvoudiger kunnen vinden.
|
|
||||||
|
|
||||||
Wanneer u niet te specifiek wilt zijn, dan adviseren wij om uw volledige naam,
|
|
||||||
een profielfoto, enkele "trefwoorden (erg handig om nieuwe mensen te leren kennen)
|
|
||||||
en het land waar u woont toe
|
|
||||||
te voegen.
|
|
||||||
|
|
||||||
Wij respecteren volledig uw recht op privacy en u bent daarom niet verplicht om hier iets in te vullen.
|
|
||||||
Wanneer u hier nieuw bent en hier niemand kent, dan kunnen deze
|
|
||||||
gegevens u wellicht helpen om enkele nieuwe en interessante mensen te leren kennen.
|
|
||||||
|
|
||||||
|
|
||||||
Bedankt en welkom op $[sitename].
|
|
||||||
|
|
||||||
Vriendelijke groet,
|
|
||||||
Beheerder $[sitename]
|
|
||||||
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
|
|
||||||
Drogi $[username],
|
|
||||||
Dziękujemy za rejestrację na $[sitename]. Twoje konto zostało utworzone pomyślnie.
|
|
||||||
Dane do logowania:
|
|
||||||
|
|
||||||
|
|
||||||
Strona:»$[siteurl]
|
|
||||||
Twój Nick:»$[email]
|
|
||||||
Hasło:»$[password]
|
|
||||||
|
|
||||||
Możesz zmienić swoje hasło odwiedzając zakładkę ustawienia konta po zalogowaniu
|
|
||||||
|
|
||||||
się.
|
|
||||||
|
|
||||||
Przejrzyj też inne ustawienia konta. To zajmie Ci tylko chwilę.
|
|
||||||
|
|
||||||
Jeżeli chcesz, by inni mogli Cię łatwo znaleść wystarczy dodać podstawowe informacje
|
|
||||||
o sobie na stronie "Profile".
|
|
||||||
|
|
||||||
Zalecamy dodać prawdziwe imię i nazwisko, zdjęcie profilowe,
|
|
||||||
słowa kluczowe (pomocne w zdobywaniu nowych przyjaciół) - i
|
|
||||||
może kraj, w którym mieszkasz, jeżeli nie chcesz dodać bardziej szczegółowych
|
|
||||||
|
|
||||||
informacji niż ta.
|
|
||||||
|
|
||||||
Szanujemy też twoją prywatność, więc żadna z podpowiadanych wyżej czynności nie jest przymusowa.
|
|
||||||
Jeżeli jesteś nowy i nie znasz tu nikogo, mogą one jedynie
|
|
||||||
pomóć w zdobywaniu nowych znajomości.
|
|
||||||
|
|
||||||
|
|
||||||
Dziękujemy i witamy na $[sitename].
|
|
||||||
|
|
||||||
Z poważaniem,
|
|
||||||
$[sitename] Administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
Drogi {{$username}},
|
|
||||||
Dziękujemy za rejestrację na {{$sitename}}. Twoje konto zostało utworzone pomyślnie.
|
|
||||||
Dane do logowania:
|
|
||||||
|
|
||||||
|
|
||||||
Strona:»{{$siteurl}}
|
|
||||||
Twój Nick:»{{$email}}
|
|
||||||
Hasło:»{{$password}}
|
|
||||||
|
|
||||||
Możesz zmienić swoje hasło odwiedzając zakładkę ustawienia konta po zalogowaniu
|
|
||||||
|
|
||||||
się.
|
|
||||||
|
|
||||||
Przejrzyj też inne ustawienia konta. To zajmie Ci tylko chwilę.
|
|
||||||
|
|
||||||
Jeżeli chcesz, by inni mogli Cię łatwo znaleść wystarczy dodać podstawowe informacje
|
|
||||||
o sobie na stronie "Profile".
|
|
||||||
|
|
||||||
Zalecamy dodać prawdziwe imię i nazwisko, zdjęcie profilowe,
|
|
||||||
słowa kluczowe (pomocne w zdobywaniu nowych przyjaciół) - i
|
|
||||||
może kraj, w którym mieszkasz, jeżeli nie chcesz dodać bardziej szczegółowych
|
|
||||||
|
|
||||||
informacji niż ta.
|
|
||||||
|
|
||||||
Szanujemy też twoją prywatność, więc żadna z podpowiadanych wyżej czynności nie jest przymusowa.
|
|
||||||
Jeżeli jesteś nowy i nie znasz tu nikogo, mogą one jedynie
|
|
||||||
pomóć w zdobywaniu nowych znajomości.
|
|
||||||
|
|
||||||
|
|
||||||
Dziękujemy i witamy na {{$sitename}}.
|
|
||||||
|
|
||||||
Z poważaniem,
|
|
||||||
{{$sitename}} Administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
Dragă $[username],
|
|
||||||
Vă mulțumim pentru înregistrare de la $ [SITENAME]. Contul dvs. a fost creat.
|
|
||||||
Detaliile de login sunt următoarele ;
|
|
||||||
|
|
||||||
|
|
||||||
Locaţie Site»$[siteurl]
|
|
||||||
Login Name: $[email]
|
|
||||||
Parolă: $[password]
|
|
||||||
|
|
||||||
Puteți schimba parola dvs. de la pagina "Setări" cont după logare.
|
|
||||||
in.
|
|
||||||
|
|
||||||
Vă rugăm ia câteva momente pentru revizuirea altor setări din cont pe această pagină.
|
|
||||||
|
|
||||||
Ați putea dori, de asemenea, să adăugați câteva Informații generale la profilul dvs. implicit
|
|
||||||
(pe "Profile" pagina), astfel încât alte persoane să vă găsească uşor.
|
|
||||||
|
|
||||||
Vă recomandăm să vă setați numele complet, adăugând o fotografie de profil,
|
|
||||||
adăugând câteva "cuvinte cheie" de profil (foarte utile în a face noi prieteni) - și
|
|
||||||
poate în ce țara locuiți; dacă nu doriți să fie mai specifice
|
|
||||||
decât atât.
|
|
||||||
|
|
||||||
Respectăm pe deplin dreptul la intimitate, și nici unul dintre aceşti itemi nu sunt necesari.
|
|
||||||
Dacă sunteți nou si nu ştiţi pe nimeni pe aici, ele pot ajuta
|
|
||||||
să faceți niște prieteni noi și interesanţi.
|
|
||||||
|
|
||||||
|
|
||||||
Vă multumim si bine aţi venit la $[sitename].
|
|
||||||
|
|
||||||
Cu stimă,
|
|
||||||
$[sitename] Administrator
|
|
||||||
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
$username,
|
|
||||||
Tack för att du registrerat dig på $sitename. Kontot har skapats.
|
|
||||||
Här är dina inloggningsuppgifter:
|
|
||||||
|
|
||||||
Webbplats: $siteurl
|
|
||||||
Användarnamn: $email
|
|
||||||
Lösenord: $password
|
|
||||||
|
|
||||||
Lösenordet kan ändras på sidan Inställningar efter att du loggat in.
|
|
||||||
|
|
||||||
Ägna en liten stund åt att gå igenom alla kontoinställningar där.
|
|
||||||
|
|
||||||
Välkommen till $sitename.
|
|
||||||
|
|
||||||
Hälsningar,
|
|
||||||
$sitename admin
|
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
|
|
||||||
{{$username}},
|
|
||||||
Tack för att du registrerat dig på {{$sitename}}. Kontot har skapats.
|
|
||||||
Här är dina inloggningsuppgifter:
|
|
||||||
|
|
||||||
Webbplats: {{$siteurl}}
|
|
||||||
Användarnamn: {{$email}}
|
|
||||||
Lösenord: {{$password}}
|
|
||||||
|
|
||||||
Lösenordet kan ändras på sidan Inställningar efter att du loggat in.
|
|
||||||
|
|
||||||
Ägna en liten stund åt att gå igenom alla kontoinställningar där.
|
|
||||||
|
|
||||||
Välkommen till {{$sitename}}.
|
|
||||||
|
|
||||||
Hälsningar,
|
|
||||||
{{$sitename}} admin
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
尊敬的$[username],
|
|
||||||
谢谢注册在$[sitename]。您的账户造成了。
|
|
||||||
登记信息是:
|
|
||||||
|
|
||||||
|
|
||||||
网页位置: $[siteurl]
|
|
||||||
用户名: $[email]
|
|
||||||
密码: $[password]
|
|
||||||
|
|
||||||
您会变化您的密码在您的账户「设置」页
|
|
||||||
登记后。
|
|
||||||
|
|
||||||
请抽几片刻评论别的账户设置在这个页。
|
|
||||||
|
|
||||||
您也可能想添加一些基础信息给您的默认简介
|
|
||||||
(在「简介」页)为让别人容易地搜索。
|
|
||||||
|
|
||||||
我们建议您指定您全名,添加简介照片,
|
|
||||||
添加一些简介关键字(很有用找朋友们)和
|
|
||||||
也许您的国家,如果您不想更具体
|
|
||||||
的。
|
|
||||||
|
|
||||||
我们完全尊敬您隐私权利,这些项目没有必要的。
|
|
||||||
您新注册,人们熟,他们会帮您
|
|
||||||
找新和有意思的朋友们。
|
|
||||||
|
|
||||||
|
|
||||||
谢谢您,$[sitename]欢迎您。
|
|
||||||
|
|
||||||
谨上
|
|
||||||
$[sitename]行政人员
|
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
尊敬的{{$username}},
|
|
||||||
谢谢注册在{{$sitename}}。您的账户造成了。
|
|
||||||
登记信息是:
|
|
||||||
|
|
||||||
|
|
||||||
网页位置: {{$siteurl}}
|
|
||||||
用户名: {{$email}}
|
|
||||||
密码: {{$password}}
|
|
||||||
|
|
||||||
您会变化您的密码在您的账户「设置」页
|
|
||||||
登记后。
|
|
||||||
|
|
||||||
请抽几片刻评论别的账户设置在这个页。
|
|
||||||
|
|
||||||
您也可能想添加一些基础信息给您的默认简介
|
|
||||||
(在「简介」页)为让别人容易地搜索。
|
|
||||||
|
|
||||||
我们建议您指定您全名,添加简介照片,
|
|
||||||
添加一些简介关键字(很有用找朋友们)和
|
|
||||||
也许您的国家,如果您不想更具体
|
|
||||||
的。
|
|
||||||
|
|
||||||
我们完全尊敬您隐私权利,这些项目没有必要的。
|
|
||||||
您新注册,人们熟,他们会帮您
|
|
||||||
找新和有意思的朋友们。
|
|
||||||
|
|
||||||
|
|
||||||
谢谢您,{{$sitename}}欢迎您。
|
|
||||||
|
|
||||||
谨上
|
|
||||||
{{$sitename}}行政人员
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue