reset email templates to English
This commit is contained in:
parent
47ef689c92
commit
99252d65bf
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Máte nového následovatele na $sitename - '$requestor'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Můžete si prohlédnout jeho/její profil na $url.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Přihlaste se na váš server k odsouhlasení nebo ignorování/zrušení žádosti.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
S pozdravem,
|
Regards,
|
||||||
|
|
||||||
$sitename administrátor
|
{{$sitename}} administrator
|
||||||
|
@ -1,17 +1,22 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
Skvělé zprávy... '$fn' na '$dfrn_url' odsouhlasil Váš požadavek na spojení na '$sitename'.
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Jste nyní přátelé a můžete si vyměňovat aktualizace statusu, fotek a e-mailů bez omezení.
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
|
without restriction.
|
||||||
|
|
||||||
Pokud budete chtít tento vztah jakkoliv upravit, navštivte Vaši stránku "Kontakty" na $sitename.
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
|
any changes to this relationship.
|
||||||
|
|
||||||
$siteurl
|
{{$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').
|
[For instance, you may create a separate profile with information that is not
|
||||||
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
S pozdravem,
|
Sincerely,
|
||||||
|
|
||||||
$sitename administrátor
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/cs/htconfig.tpl
Normal file
70
view/cs/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,17 +1,22 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$fn' na '$dfrn_url' odsouhlasil Váš požadavek na spojení na '$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' 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}}' may choose to extend this into a two-way or more permissive
|
||||||
|
relationship in the future.
|
||||||
|
|
||||||
'$fn' může v budoucnu rozšířit toto spojení na oboustranné nebo jinak méně restriktivní.
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
Nyní začnete dostávat veřejné aktualizace statusu od '$fn', které se objeví ve Vaší stránce "Síť" na webu
|
{{$siteurl}}
|
||||||
|
|
||||||
$siteurl
|
Sincerely,
|
||||||
|
|
||||||
S pozdravem,
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
$sitename administrátor
|
|
||||||
|
@ -1,23 +1,32 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$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.
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
Pokud jste o znovunastavení hesla NEŽÁDALI, prosím NEKLIKEJTE na tento odkaz a ignorujte tento e-mail nebo ho rovnou smažte.
|
password. In order to confirm this request, please select the verification link
|
||||||
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Vaše heslo nebude změněno, dokud nebudeme mít potvrzení, že jste o tento požadavek zažádali právě Vy.
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Klikněte na tento odkaz pro prověření Vaší identity:
|
Your password will not be changed unless we can verify that you
|
||||||
|
issued this request.
|
||||||
|
|
||||||
$reset_link
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
Poté obdržíte další zprávu obsahující nové heslo.
|
{{$reset_link}}
|
||||||
|
|
||||||
Následně si toto heslo můžete změnit z vašeho účtu na stránce Nastavení.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Přihlašovací údaje jsou tato:
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Adresa webu: $siteurl
|
The login details are as follows:
|
||||||
Přihlašovací jméno: $email
|
|
||||||
|
|
||||||
S pozdravem,
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
|
|
||||||
$sitename administrátor
|
|
||||||
|
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,14 +1,20 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$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).
|
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
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
|
@ -1,23 +1,19 @@
|
|||||||
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
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Přihlašovací jméno: $email
|
The login details are as follows:
|
||||||
Heslo: $password
|
|
||||||
|
|
||||||
Toto heslo si můžete změnit z vašeho účtu na stránce "Nastavení" poté, co se přihlásíte.
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Věnujte prosím chvíli revizi dalších nastavení Vašeho účtu na této stránce.
|
If this account was created without your knowledge and is not desired, you may
|
||||||
|
visit this site and reset the password. This will allow you to remove the
|
||||||
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
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.
|
Thank you and welcome to {{$sitename}}.
|
||||||
|
|
||||||
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í.
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
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,22 +1,25 @@
|
|||||||
|
|
||||||
Na webu $sitename byla vytvořena nová uživatelská registrace, která vyžaduje Vaše schválení.
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
|
your approval.
|
||||||
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
|
The login details are as follows:
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Pro zamítnutí žádosti a odstranění účtu prosím klikněte na tento odkaz:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$siteurl/regmod/deny/$hash
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
Díky.
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
Thank you.
|
||||||
|
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
|
|
||||||
Milý/Milá $username,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Právě jste obdržel/obdržela požadavek na spojení na webu $sitename
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
od '$requestor'.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Můžete navštívit jeho/její profil na následujícím odkazu $url.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Přihlaste se na Váš web k zobrazení kompletní žádosti a odsouhlaste nebo ignorujte/zrušte tuto žádost.
|
Please login to your site to view the complete introduction
|
||||||
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
S pozdravem,
|
Regards,
|
||||||
$sitename administrátor
|
|
||||||
|
{{$sitename}} administrator
|
||||||
|
13
view/cs/update_fail_eml.tpl
Normal file
13
view/cs/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Hallo $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Du hast einen neuen Anhänger auf $[sitename] - '$[requestor]'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Du kannst das Profil unter $[url] besuchen.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Bitte melde dich an um die Anfrage zu bestätigen oder sie zu ignorieren bzw. abzulehnen.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
beste Grüße,
|
Regards,
|
||||||
|
|
||||||
$[sitename] Administrator
|
{{$sitename}} administrator
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Hallo $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
Großartige Neuigkeiten... '$[fn]' auf '$[dfrn_url]' hat
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
deine Kontaktanfrage auf '$[sitename]' bestätigt.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Ihr seid nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
ohne Einschränkungen austauschen.
|
without restriction.
|
||||||
|
|
||||||
Rufe deine 'Kontakte' Seite auf $[sitename] auf, wenn du
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
Änderungen an diesem Kontakt vornehmen willst.
|
any changes to this relationship.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
[Du könntest z.B. ein spezielles Profil anlegen, das Informationen enthält,
|
[For instance, you may create a separate profile with information that is not
|
||||||
die nicht für die breite Öffentlichkeit sichtbar sein sollen und es für '$[fn]' zum Betrachten freigeben].
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
Beste Grüße,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] Administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/de/htconfig.tpl
Normal file
70
view/de/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Hallo $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
'$[fn]' auf '$[dfrn_url]' hat deine Verbindungsanfrage
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
auf '$[sitename]' akzeptiert.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was zu einigen
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
Einschränkungen bei der Kommunikation führt - wie zB das Schreiben von privaten Nachrichten und einige Profil
|
some forms of communication - such as private messaging and some profile
|
||||||
Interaktionen. Sollte dies ein Promi-Konto oder eine Forum-Seite sein, werden die Einstellungen
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
automatisch angewandt.
|
applied automatically.
|
||||||
|
|
||||||
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
Beziehung in der Zukunft erweitert wird.
|
relationship in the future.
|
||||||
|
|
||||||
Du empfängst ab sofort die öffentlichen Beiträge von '$[fn]',
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
auf deiner "Netzwerk" Seite.
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Beste Grüße,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] Administrator
|
{{$sitename}} Administrator
|
||||||
|
@ -1,32 +1,32 @@
|
|||||||
|
|
||||||
Hallo $[username],
|
Dear {{$username}},
|
||||||
Auf $[sitename] wurde eine Anfrage zum Zurücksetzen deines
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
Passworts empfangen. Um diese zu bestätigen folge bitte dem Link
|
password. In order to confirm this request, please select the verification link
|
||||||
weiter unten oder kopiere ihn in die Adressleiste deines Browsers.
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Wenn du die Anfrage NICHT gesendet haben solltest, dann IGNORIERE
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
bitte diese Mail und den Link.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Dein Passwort wird nicht geändert werden solange wir nicht überprüfen
|
Your password will not be changed unless we can verify that you
|
||||||
konnten, dass du die Anfrage gestellt hast.
|
issued this request.
|
||||||
|
|
||||||
Folge diesem Link um deine Identität zu verifizieren:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$[reset_link]
|
{{$reset_link}}
|
||||||
|
|
||||||
Du wirst eine weitere Email erhalten mit dem neuen Passwort.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Das Passwort kannst du anschließend wie gewohnt in deinen Account Einstellungen ändern.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Die Login-Details sind die folgenden:
|
The login details are as follows:
|
||||||
|
|
||||||
Adresse der Seite: $[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Login Name: $[email]
|
Login Name: {{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Grüße,
|
Sincerely,
|
||||||
$[sitename] Administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
|
|
||||||
Hallo $[username],
|
Dear {{$username}},
|
||||||
Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese
|
Your password has been changed as requested. Please retain this
|
||||||
Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort
|
information for your records (or change your password immediately to
|
||||||
in etwas, was du dir merken kannst).
|
something that you will remember).
|
||||||
|
|
||||||
|
|
||||||
Deine Login Daten wurden wie folgt geändert:
|
Your login details are as follows:
|
||||||
|
|
||||||
Adresse der Seite: $[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Login Name: $[email]
|
Login Name: {{$email}}
|
||||||
Passwort: $[new_password]
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Du kannst dein Passwort unter deinen Account-Einstellungen ändern, wenn du angemeldet bist.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
|
|
||||||
Beste Grüße,
|
Sincerely,
|
||||||
$[sitename] Administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,34 +1,19 @@
|
|||||||
|
|
||||||
Hallo $[username],
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
The login details are as follows:
|
||||||
Hier die Login Details:
|
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Adresse der Seite: $[siteurl]
|
If this account was created without your knowledge and is not desired, you may
|
||||||
Login Name: $[email]
|
visit this site and reset the password. This will allow you to remove the
|
||||||
Passwort: $[password]
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Du kannst und solltest das Passwort in den "Einstellungen" zu deinem Account ändern,
|
Thank you and welcome to {{$sitename}}.
|
||||||
nachdem du dich erstmalig eingeloggt hast.
|
|
||||||
|
|
||||||
Bitte nimm dir einige Augenblicke Zeit, um die anderen Einstellungen auf der Seite kennenzulernen und zu überprüfen.
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
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,25 +1,25 @@
|
|||||||
|
|
||||||
Eine Neuanmeldung auf $[sitename] benötigt
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
deine Aufmerksamkeit.
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
Die Login-Einzelheiten sind die folgenden:
|
The login details are as follows:
|
||||||
|
|
||||||
Kompletter Name: $[username]
|
Site Location: {{$siteurl}}
|
||||||
Adresse der Seite: $[siteurl]
|
Login Name: {{$email}}
|
||||||
Login Name: $[email]
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Um die Anfrage zu bestätigen besuche bitte:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/allow/$[hash]
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
Um die Anfrage abzulehnen und den Account zu löschen besuche bitte:
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/deny/$[hash]
|
Thank you.
|
||||||
|
|
||||||
|
|
||||||
Danke!
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Hallo $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
du hast eine Kontaktanfrage von '$[requestor]' auf $[sitename]
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
erhalten.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Du kannst sein/ihr Profil unter $[url] finden.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Bitte melde dich an um die komplette Vorstellung einzusehen
|
Please login to your site to view the complete introduction
|
||||||
und die Anfrage zu bestätigen oder zu ignorieren oder abzulehnen.
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Beste Grüße,
|
Regards,
|
||||||
|
|
||||||
$[sitename] Administrator
|
{{$sitename}} administrator
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
Hi,
|
Hey,
|
||||||
ich bin $sitename.
|
I'm the web server at {{$sitename}};
|
||||||
Die friendica Entwickler haben jüngst Update $update veröffentlicht,
|
|
||||||
aber als ich versucht habe es zu installieren ist etwas schrecklich schief gegangen.
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
Das sollte schnellst möglichst behoben werden und ich kann das nicht alleine machen.
|
but when I tried to install it, something went terribly wrong.
|
||||||
Bitte wende dich an einen friendica Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte unbrauchbar sein.
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
Die Fehlermeldung lautet '$error'.
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
Tut mir Leid!
|
Apologies for the inconvenience,
|
||||||
Deine friendica Instanz auf $siteurl
|
your web server at {{$siteurl}}
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Kara $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Vi havas novan abonanton ĉe $[sitename] - '$[requestor]'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Vi povas viziti ilian profilon ĉe $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Bonvolu ensaluti en vian retejon por aprobi au malaprobi/nuligi la peton.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Salutoj,
|
Regards,
|
||||||
|
|
||||||
[$sitename] administranto
|
{{$sitename}} administrator
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Kara $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
Boegaj novaĵoj.... '$[fn]' ĉe '$[dfrn_url]' aprobis
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
vian kontaktpeton ĉe '$[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Vi nun estas reciprokaj amikoj kaj povas interŝanĝi afiŝojn, bildojn kaj mesaĝojn
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
senkatene.
|
without restriction.
|
||||||
|
|
||||||
Bonvolu viziti vian 'Kontaktoj' paĝon ĉe $[sitename] se vi volas
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
ŝangi la rilaton.
|
any changes to this relationship.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
[Ekzempe, vi eble volas krei disiĝintan profilon kun informoj kiu ne
|
[For instance, you may create a separate profile with information that is not
|
||||||
haveblas al la komuna publiko - kaj rajtigi '$[fn]' al ĝi]'
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
Salutoj,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] administranto
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/eo/htconfig.tpl
Normal file
70
view/eo/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Kara $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
'$[fn]' ĉe '$[dfrn_url]' akceptis
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
vian kontaktpeton ĉe '$[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$[fn]' elektis vin kiel "admiranto", kio malpermesas
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
kelkajn komunikilojn - ekzemple privataj mesaĝoj kaj kelkaj profilrilataj
|
some forms of communication - such as private messaging and some profile
|
||||||
agoj. Se tio estas konto de komunumo aŭ de eminentulo, tiaj agordoj
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
aŭtomate aktiviĝis.
|
applied automatically.
|
||||||
|
|
||||||
'$[fn]' eblas konverti la rilaton al ambaŭdirekta rilato
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
aŭ apliki pli da permesoj.
|
relationship in the future.
|
||||||
|
|
||||||
Vi ekricevos publikajn afiŝojn de '$[fn]',
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
kiuj aperos sur via 'Reto' paĝo ĉe
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Salutoj,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] administranto
|
{{$sitename}} Administrator
|
||||||
|
@ -1,32 +1,32 @@
|
|||||||
|
|
||||||
Kara $[username],
|
Dear {{$username}},
|
||||||
$[sitename] ricevis peton por rekomencigi vian pasvorton.
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
Por konfirmi la peton, bonvolu klaki la sekvantan konfirmligilon
|
password. In order to confirm this request, please select the verification link
|
||||||
aŭ alglui ĝin en la adreskampo de via retumilo.
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Se vi NE petis tiun ŝanĝon, bonvolu NE KLAKU la
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
sekvantan ligilon kaj ignoru aŭ forvisu ĉi-mesaĝon.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Ni ne ŝanĝu vian pasvorton se ni ne povas kontroli ĉu estas vi
|
Your password will not be changed unless we can verify that you
|
||||||
kiu petis la ŝanĝon.
|
issued this request.
|
||||||
|
|
||||||
Sekvu ĉi tion ligilon por konfirmi vian identecon:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$[reset_link]
|
{{$reset_link}}
|
||||||
|
|
||||||
Poste, vi ricevos mesaĝon enhavonte la novan pasvorton.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Vi eblas ŝangi la pasvorton ĉe viaj kontdoagordoj paĝo post ensaluti.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
La akreditaĵoj estas:
|
The login details are as follows:
|
||||||
|
|
||||||
Retejo:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Salutnomo:»$[email]
|
Login Name: {{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Salutoj,
|
Sincerely,
|
||||||
$[sitename] administranto
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
|
|
||||||
Kara $[username],
|
Dear {{$username}},
|
||||||
Via pasvorto estas ŝanĝita laŭ via peto. Bonvolu konservi ĉi tiun
|
Your password has been changed as requested. Please retain this
|
||||||
informon (aŭ tuj ŝanĝu vian pasvorton al
|
information for your records (or change your password immediately to
|
||||||
iu kiun vi povas memori).
|
something that you will remember).
|
||||||
|
|
||||||
|
|
||||||
Jen viaj legitimaĵoj:
|
Your login details are as follows:
|
||||||
|
|
||||||
Retejo:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Salutnomo:»$[email]
|
Login Name: {{$email}}
|
||||||
Pasvorto:»$[new_password]
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas ensalutita.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
|
|
||||||
Salutoj,
|
Sincerely,
|
||||||
$[sitename] administranto
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,34 +1,19 @@
|
|||||||
|
|
||||||
Kara $[username],
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Dankon pro via registrado ĉe $[sitename]. Vian konton estas kreita.
|
The login details are as follows:
|
||||||
Jen viaj legitimaĵoj:
|
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Retejo:»$[siteurl]
|
If this account was created without your knowledge and is not desired, you may
|
||||||
Salutnomo:»$[email]
|
visit this site and reset the password. This will allow you to remove the
|
||||||
Pasvorto:»$[password]
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas
|
Thank you and welcome to {{$sitename}}.
|
||||||
ensalutita.
|
|
||||||
|
|
||||||
Bonvolu preni kelkajn momentoj por kontroli la aliajn kontaktagordojn.
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
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,25 +1,25 @@
|
|||||||
|
|
||||||
Nova peto por registrado atendas ĉe $[sitename]
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
kaj bezonas vian aprobon.
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
Jen la detaloj de la peto:
|
The login details are as follows:
|
||||||
|
|
||||||
Plena Nomo:»$[username]
|
Site Location: {{$siteurl}}
|
||||||
Retejo:»$[siteurl]
|
Login Name: {{$email}}
|
||||||
Salutnomo:»$[email]
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Aprobonte la peton, bonvolu klaki tiun ligilon:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/allow/$[hash]
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
Malaprobonte kaj forviŝonte la konton, bonvolu klaki:
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/deny/$[hash]
|
Thank you.
|
||||||
|
|
||||||
|
|
||||||
Dankon!
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Kara $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Vi ĵus ricevis kontaktpeton ĉe $[sitename]
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
de '$[requestor]'.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Vi eblas viziti la profilon de la petanto ĉe $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Bonvolu ensaluti en la retejo por vidi la plenan prezenton
|
Please login to your site to view the complete introduction
|
||||||
kaj aprobi aŭ ignori/nuligi la peton.
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Salutoj,
|
Regards,
|
||||||
|
|
||||||
$[sitename] administranto
|
{{$sitename}} administrator
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
Saluton!
|
Hey,
|
||||||
Mi estas $sitename.
|
I'm the web server at {{$sitename}};
|
||||||
La programistoj de Frienda eldonis ĝisdatigon $update antaŭ ne longe,
|
|
||||||
sed kiam mi provis instali ĝin, io terure malsukcesis.
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
Tio tuj bezonas riparon kaj mi ne povas fari ĝin sole. Bonvolu kontakti
|
but when I tried to install it, something went terribly wrong.
|
||||||
Friendica programistion se vi ne povas helpi vin mem. Mia datumbazo eble ne plu validas.
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
La erarmesaĝo estas '$error'.
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
Mi bedaŭras,
|
Apologies for the inconvenience,
|
||||||
via Friendica servilo ĉe $siteurl
|
your web server at {{$siteurl}}
|
@ -1,13 +1,14 @@
|
|||||||
|
|
||||||
Estimado/a $myname,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Tienes un nuevo seguidor en $sitename - '$requestor'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Puedes visitar su perfil en $url.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Inicie sesión en su sitio para aprobar o rechazar/cancelar la solicitud.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
|
Regards,
|
||||||
|
|
||||||
$sitename
|
{{$sitename}} administrator
|
||||||
|
@ -1,19 +1,22 @@
|
|||||||
|
|
||||||
Estimado/a $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
Grandes noticias... '$fn' a '$dfrn_url' ha aceptado tu solicitud de conexión en '$sitename'.
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Ahora sois amigos mutuos y podreis intercambiar actualizaciones de estado, fotos, y correo electrónico
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
sin restricción alguna.
|
without restriction.
|
||||||
|
|
||||||
Visita tu página de 'Contactos' en $sitename si desear realizar cualquier cambio en esta relación.
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
|
any changes to this relationship.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
[Por ejemplo, puedes crear un perfil independiente con información que no está disponible al público en general
|
[For instance, you may create a separate profile with information that is not
|
||||||
- y asignar derechos de visualización a '$fn'].
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
$sitename
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/es/htconfig.tpl
Normal file
70
view/es/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,21 +1,22 @@
|
|||||||
|
|
||||||
Estimado/a $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
'$fn' en '$dfrn_url' ha aceptado tu petición
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
conexión a '$sitename'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$fn' ha optado por aceptarte come "fan", que restringe ciertas
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
formas de comunicación, como mensajes privados y algunas interacciones
|
some forms of communication - such as private messaging and some profile
|
||||||
con el perfil. Si eres una "celebridad" o una página de comunidad,
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
estos ajustes se aplican automáticamente
|
applied automatically.
|
||||||
|
|
||||||
'$fn' puede optar por extender esto en una relación más permisiva
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
en el futuro.
|
relationship in the future.
|
||||||
|
|
||||||
Empezarás a recibir las actualizaciones públicas de estado de '$fn',
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
que aparecerán en tu página "Red" en
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
$sitename
|
{{$sitename}} Administrator
|
||||||
|
@ -1,34 +1,32 @@
|
|||||||
|
|
||||||
Estimado/a $username,
|
Dear {{$username}},
|
||||||
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
Se ha recibido una solicitud en $sitename recientemente para restablecer
|
password. In order to confirm this request, please select the verification link
|
||||||
tu contraseña. Para confirmar esta solicitud, por favor seleccione el enlace de
|
below or paste it into your web browser address bar.
|
||||||
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
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
y/o elimina este mensaje.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Tu contraseña no se cambiará a menos que podamos verificar que eres tu quien
|
Your password will not be changed unless we can verify that you
|
||||||
emitió esta solicitud.
|
issued this request.
|
||||||
|
|
||||||
Sigue este enlace para verificar tu identidad:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$reset_link
|
{{$reset_link}}
|
||||||
|
|
||||||
A continuación recibirás un mensaje con la nueva contraseña.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Despues de accceder, podrás cambiar la contraseña de tu cuenta en la página de
|
You may change that password from your account settings page after logging in.
|
||||||
configuración.
|
|
||||||
|
|
||||||
Los datos de acceso son los siguientes:
|
The login details are as follows:
|
||||||
|
|
||||||
Sitio: $siteurl
|
Site Location: {{$siteurl}}
|
||||||
Nombre: $email
|
Login Name: {{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Saludos,
|
Sincerely,
|
||||||
La administración de $sitename
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,19 +1,20 @@
|
|||||||
|
|
||||||
Estimado/a $username,
|
Dear {{$username}},
|
||||||
|
Your password has been changed as requested. Please retain this
|
||||||
Tu contraseña ha sido modificada como has solicitado. Anota esta información
|
information for your records (or change your password immediately to
|
||||||
(o cambia inmediatamente la contraseña con algo que recuerdes).
|
something that you will remember).
|
||||||
|
|
||||||
|
|
||||||
Tus datos de acceso son los siguientes:
|
Your login details are as follows:
|
||||||
|
|
||||||
Sitio: $siteurl
|
Site Location: {{$siteurl}}
|
||||||
Nombre: $email
|
Login Name: {{$email}}
|
||||||
Contraseña: $new_password
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Después de acceder puedes cambiar la contraseña desde la página de configuración de tu perfil.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
|
|
||||||
$sitename
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,21 +1,19 @@
|
|||||||
|
|
||||||
Estimado/a $username,
|
An account has been created at {{$sitename}} for this email address.
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
Gracias por registrarte en $sitename. Tu cuenta ha sido creada.
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
|
If this account was created without your knowledge and is not desired, you may
|
||||||
|
visit this site and reset the password. This will allow you to remove the
|
||||||
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Los datos de acceso son los siguientes:
|
Thank you and welcome to {{$sitename}}.
|
||||||
|
|
||||||
Sitio: $siteurl
|
Sincerely,
|
||||||
Nombre: $email
|
{{$sitename}} Administrator
|
||||||
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 +1,25 @@
|
|||||||
|
|
||||||
Se ha recibido la solicitud de registro de un nuevo usuario en
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
$sitename que requiere tu aprobación.
|
your approval.
|
||||||
|
|
||||||
Los datos de acceso son los siguientes:
|
|
||||||
|
|
||||||
Nombre Completo: $username
|
|
||||||
Sitio: $siteurl
|
|
||||||
Nombre: $email
|
|
||||||
|
|
||||||
|
|
||||||
Para aprobar esta solicitud, visita el siguiente enlace:
|
The login details are as follows:
|
||||||
|
|
||||||
$siteurl/regmod/allow/$hash
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
|
IP Address: {{$details}}
|
||||||
|
|
||||||
Para denegar la solicitud y eliminar la cuenta, por favor visita:
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
$siteurl/regmod/deny/$hash
|
|
||||||
|
|
||||||
|
|
||||||
Gracias.
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
Thank you.
|
||||||
|
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
|
|
||||||
Estimado/a $myname,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Acabas de recibir una solicitud de conexión de '$requestor' en $sitename.
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
Puedes visitar su perfil en $url.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Accede a tu sitio para ver la presentación completa y aceptar o ignorar/cancelar la solicitud.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
$siteurl
|
Please login to your site to view the complete introduction
|
||||||
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
|
{{$siteurl}}
|
||||||
|
|
||||||
$sitename
|
Regards,
|
||||||
|
|
||||||
|
{{$sitename}} administrator
|
||||||
|
13
view/es/update_fail_eml.tpl
Normal file
13
view/es/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Cher(e) $myname,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Une nouvelle personne - $requestor - vous suit désormais sur $sitename.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Vous pouvez consulter son profil sur $url.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Merci de vous connecter à votre site pour approuver ou ignorer/annuler cette demande.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
Cordialement,
|
Regards,
|
||||||
|
|
||||||
l'administrateur de $sitename
|
{{$sitename}} administrator
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
Grande nouvelle… « $fn » (de « $dfrn_url ») a accepté votre
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
demande de connexion à « $sitename ».
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Vous êtes désormais dans une relation réciproque et pouvez échanger des
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
photos, des humeurs et des messages sans restriction.
|
without restriction.
|
||||||
|
|
||||||
Merci de visiter votre page « Contacts » sur $sitename pour toute
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
modification que vous souhaiteriez apporter à cette relation.
|
any changes to this relationship.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
[Par exemple, vous pouvez créer un profil spécifique avec des informations
|
[For instance, you may create a separate profile with information that is not
|
||||||
cachées au grand public - et ainsi assigner des droits privilégiés à
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
« $fn »]/
|
|
||||||
|
|
||||||
Sincèremment,
|
Sincerely,
|
||||||
|
|
||||||
l'administrateur de $sitename
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/fr/htconfig.tpl
Normal file
70
view/fr/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
Dear {{$username}},
|
||||||
|
|
||||||
« $fn » du site « $dfrn_url » a accepté votre
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
demande de mise en relation sur « $sitename ».
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
« $fn » a décidé de vous accepter comme « fan », ce qui restreint
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
certains de vos moyens de communication - tels que les messages privés et
|
some forms of communication - such as private messaging and some profile
|
||||||
certaines interactions avec son profil. S'il s'agit de la page d'une
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
célébrité et/ou communauté, ces réglages ont été définis automatiquement.
|
applied automatically.
|
||||||
|
|
||||||
« $fn » pourra choisir d'étendre votre relation à quelque chose de
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
plus permissif dans l'avenir.
|
relationship in the future.
|
||||||
|
|
||||||
Vous allez commencer à recevoir les mises à jour publiques du
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
statut de « $fn », lesquelles apparaîtront sur votre page « Réseau » sur
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
Sincèrement votre,
|
Sincerely,
|
||||||
|
|
||||||
l'administrateur de $sitename
|
{{$sitename}} Administrator
|
||||||
|
@ -1,34 +1,32 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
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.
|
||||||
|
|
||||||
Nous avons récemment reçu, chez $sitename, une demande de remise
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
à zéro du mot de passe protégeant votre compte. Pour confirmer cette
|
provided and ignore and/or delete this email.
|
||||||
demande, merci de cliquer sur le lien de vérification suivant, ou de le
|
|
||||||
coller dans la barre d'adresse de votre navigateur web.
|
|
||||||
|
|
||||||
Si vous n'êtes PAS à l'origine de cette demande, merci de NE PAS suivre
|
Your password will not be changed unless we can verify that you
|
||||||
le lien en question, et d'ignorer/supprimer ce courriel.
|
issued this request.
|
||||||
|
|
||||||
Votre mot de passe ne sera réinitialisé qu'une fois que nous aurons pu
|
Follow this link to verify your identity:
|
||||||
nous assurer que vous êtes bien à l'origine de cette demande.
|
|
||||||
|
|
||||||
Merci de suivre le lien suivant pour confirmer votre identité :
|
{{$reset_link}}
|
||||||
|
|
||||||
$reset_link
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Vous recevrez en retour un message avec votre nouveau mot de passe.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Vous pourrez ensuite changer ce mot de passe, après connexion, dans la
|
The login details are as follows:
|
||||||
page des réglages du compte.
|
|
||||||
|
|
||||||
Les informations du compte concerné sont :
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
Site : $siteurl
|
|
||||||
Pseudo/Courriel : $email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Sincèrement votre,
|
|
||||||
l'administrateur de $sitename
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
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).
|
||||||
|
|
||||||
Votre mot de passe a été modifié comme demandé. Merci de conserver
|
|
||||||
cette information pour un usage ultérieur (ou bien de changer votre mot de
|
|
||||||
passe immédiatement en quelque chose dont vous vous souviendrez).
|
|
||||||
|
|
||||||
Vos informations de connexion sont désormais :
|
Your login details are as follows:
|
||||||
|
|
||||||
Site : $siteurl
|
Site Location: {{$siteurl}}
|
||||||
Pseudo/Courriel : $email
|
Login Name: {{$email}}
|
||||||
Mot de passe : $new_password
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Vous pouvez changer ce mot de passe depuis la page des « réglages » de votre compte,
|
You may change that password from your account settings page after logging in.
|
||||||
après connexion
|
|
||||||
|
|
||||||
Sincèrement votre,
|
|
||||||
l'administrateur de $sitename
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,22 +1,19 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
An account has been created at {{$sitename}} for this email address.
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
Merci de votre inscription à $sitename. Votre compte a été créé.
|
Site Location: {{$siteurl}}
|
||||||
Les informations de connexion sont les suivantes :
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Site : $siteurl
|
If this account was created without your knowledge and is not desired, you may
|
||||||
Pseudo/Courriel : $email
|
visit this site and reset the password. This will allow you to remove the
|
||||||
Mot de passe : $password
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Vous pouvez changer de mot de passe dans la page des « Réglages » de votre compte,
|
Thank you and welcome to {{$sitename}}.
|
||||||
après connexion.
|
|
||||||
|
|
||||||
Merci de prendre quelques minutes pour découvrir les autres réglages disponibles
|
Sincerely,
|
||||||
sur cette page.
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
Merci, et bienvenue sur $sitename.
|
|
||||||
|
|
||||||
Sincèrement votre,
|
|
||||||
l'administrateur de $sitename
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,27 +1,25 @@
|
|||||||
|
|
||||||
Une nouvelle demande d'inscription a été reçue sur $sitename, et elle
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
nécessite votre approbation.
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
Les informations de connexion sont les suivantes :
|
The login details are as follows:
|
||||||
|
|
||||||
Nom complet : $username
|
Site Location: {{$siteurl}}
|
||||||
Site : $siteurl
|
Login Name: {{$email}}
|
||||||
Pseudo/Courriel : $email
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Pour approuver cette demande, merci de suivre le lien :
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$siteurl/regmod/allow/$hash
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
Pour rejeter cette demande et supprimer le compte associé,
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
merci de suivre le lien :
|
|
||||||
|
|
||||||
|
|
||||||
$siteurl/regmod/deny/$hash
|
Thank you.
|
||||||
|
|
||||||
|
|
||||||
En vous remerçiant.
|
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Cher(e) $myname,
|
Dear {{$myname}},
|
||||||
|
|
||||||
Vous venez de recevoir une demande de mise en relation sur $sitename
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
venant de « $requestor ».
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Vous pouvez visiter son profil sur $url.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Vous pouvez vous connecter à votre site pour voir la demande
|
Please login to your site to view the complete introduction
|
||||||
complète et l'approuver ou l'ignorer/annuler.
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$siteurl
|
{{$siteurl}}
|
||||||
|
|
||||||
Cordialement,
|
Regards,
|
||||||
|
|
||||||
l'administrateur de $sitename
|
{{$sitename}} administrator
|
||||||
|
13
view/fr/update_fail_eml.tpl
Normal file
13
view/fr/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Ciao $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Un nuovo utente ha iniziato a seguirti su $[sitename] - '$[requestor]'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Puoi vedere il suo profilo su $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Accedi sul tuo sito per approvare o ignorare la richiesta.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Saluti,
|
Regards,
|
||||||
|
|
||||||
L'amministratore di $[sitename]
|
{{$sitename}} administrator
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Ciao $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
Ottime notizie... '$[fn]' di '$[dfrn_url]' ha accettato
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
la tua richiesta di connessione su '$[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
senza restrizioni.
|
without restriction.
|
||||||
|
|
||||||
Vai nella pagina 'Contatti' di $[sitename] se vuoi effettuare
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
qualche modifica riguardo questa relazione
|
any changes to this relationship.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
[Ad esempio, potresti creare un profilo separato con le informazioni che non
|
[For instance, you may create a separate profile with information that is not
|
||||||
sono disponibili pubblicamente - ed permettere di vederlo a '$[fn]'].
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
Saluti,
|
Sincerely,
|
||||||
|
|
||||||
l'amministratore di $[sitename]
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/it/htconfig.tpl
Normal file
70
view/it/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Ciao $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
'$[fn]' di '$[dfrn_url]' ha accettato
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
la tua richiesta di connessione a '$[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$[fn]' ha deciso di accettarti come "fan", il che restringe
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
alcune forme di comunicazione - come i messaggi privati e alcune
|
some forms of communication - such as private messaging and some profile
|
||||||
interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
applicate automaticamente.
|
applied automatically.
|
||||||
|
|
||||||
'$[fn]' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
.
|
relationship in the future.
|
||||||
|
|
||||||
Inizierai a ricevere gli aggiornamenti di stato pubblici da '$[fn]',
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
che apparirà nella tua pagina 'Rete'
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Saluti,
|
Sincerely,
|
||||||
|
|
||||||
l'amministratore di $[sitename]
|
{{$sitename}} Administrator
|
||||||
|
@ -1,32 +1,32 @@
|
|||||||
|
|
||||||
Ciao $[username],
|
Dear {{$username}},
|
||||||
Su $[sitename] è stata ricevuta una richiesta di azzeramento di password per un account.
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
Per confermare la richiesta, clicca sul link di verifica
|
password. In order to confirm this request, please select the verification link
|
||||||
qui in fondo oppure copialo nella barra degli indirizzi del tuo browser.
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Se NON hai richiesto l'azzeramento, NON seguire il link
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
e ignora e/o cancella questa email.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
La tua password non sarà modificata finché non avremo verificato che
|
Your password will not be changed unless we can verify that you
|
||||||
hai fatto questa richiesta.
|
issued this request.
|
||||||
|
|
||||||
Per verificare la tua identità clicca su:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$[reset_link]
|
{{$reset_link}}
|
||||||
|
|
||||||
Dopo la verifica riceverai un messaggio di risposta con la nuova password.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
I dati di accesso sono i seguenti:
|
The login details are as follows:
|
||||||
|
|
||||||
Sito:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Nome utente:»$[email]
|
Login Name: {{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Saluti,
|
Sincerely,
|
||||||
l'amministratore di $[sitename]
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
|
|
||||||
Ciao $[username],
|
Dear {{$username}},
|
||||||
La tua password è cambiata come hai richiesto. Conserva queste
|
Your password has been changed as requested. Please retain this
|
||||||
informazioni (oppure cambia immediatamente la password con
|
information for your records (or change your password immediately to
|
||||||
qualcosa che ti è più facile ricordare).
|
something that you will remember).
|
||||||
|
|
||||||
|
|
||||||
I tuoi dati di access sono i seguenti:
|
Your login details are as follows:
|
||||||
|
|
||||||
Sito:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Nome utente:»$[email]
|
Login Name: {{$email}}
|
||||||
Password:»$[new_password]
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
|
|
||||||
Saluti,
|
Sincerely,
|
||||||
l'amministratore di $[sitename]
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,34 +1,19 @@
|
|||||||
|
|
||||||
Ciao $[username],
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Grazie per aver effettuato la registrazione a $[sitename]. Il tuo account è stato creato.
|
The login details are as follows:
|
||||||
I dettagli di accesso sono i seguenti
|
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Sito:»$[siteurl]
|
If this account was created without your knowledge and is not desired, you may
|
||||||
Nome utente:»$[email]
|
visit this site and reset the password. This will allow you to remove the
|
||||||
Password:»$[password]
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso
|
Thank you and welcome to {{$sitename}}.
|
||||||
.
|
|
||||||
|
|
||||||
Prenditi un momento per dare un'occhiata alle altre impostazioni del tuo profilo nella stessa pagina.
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
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,25 +1,25 @@
|
|||||||
|
|
||||||
Su $[sitename] è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
la tua approvazione.
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
I tuoi dati di accesso sono i seguenti:
|
The login details are as follows:
|
||||||
|
|
||||||
Nome completo:»$[username]
|
Site Location: {{$siteurl}}
|
||||||
Sito:»$[siteurl]
|
Login Name: {{$email}}
|
||||||
Nome utente:»$[email]
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Per approvare questa richiesta clicca su:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/allow/$[hash]
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
Per negare la richiesta e rimuove il profilo, clicca su:
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/deny/$[hash]
|
Thank you.
|
||||||
|
|
||||||
|
|
||||||
Grazie.
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Ciao $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Hai appena ricevuto una richiesta di connessione da $[sitename]
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
da '$[requestor]'.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Puoi visitare il suo profilo su $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Accedi al tuo sito per vedere la richiesta completa
|
Please login to your site to view the complete introduction
|
||||||
e approva o ignora/annulla la richiesta.
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Saluti,
|
Regards,
|
||||||
|
|
||||||
l'amministratore di $[sitename]
|
{{$sitename}} administrator
|
||||||
|
13
view/it/update_fail_eml.tpl
Normal file
13
view/it/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Kjære $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Du har en ny følgesvenn på $[sitename] - '$[requestor]'.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Du kan besøke profilen deres på $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Vennligst logg inn på ditt sted for å godkjenne eller ignorere/avbryte forespørselen.
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Med vennlig hilsen,
|
Regards,
|
||||||
|
|
||||||
$[sitename] administrator
|
{{$sitename}} administrator
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Kjære $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
Gode nyheter... '$[fn]' ved '$[dfrn_url]' har godtatt
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
din forespørsel om kobling hos '$[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Dere er nå gjensidige venner og kan utveksle statusoppdateringer, bilder og e-post
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
uten hindringer.
|
without restriction.
|
||||||
|
|
||||||
Vennligst besøk din side "Kontakter" ved $[sitename] hvis du ønsker å gjøre
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
noen endringer på denne forbindelsen.
|
any changes to this relationship.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
[For eksempel, så kan du lage en egen profil med informasjon som ikke er
|
[For instance, you may create a separate profile with information that is not
|
||||||
tilgjengelig for alle - og angi visningsrettigheter til '$[fn]'].
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
Med vennlig hilsen,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/nb-no/htconfig.tpl
Normal file
70
view/nb-no/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Kjære $[username],
|
Dear {{$username}},
|
||||||
|
|
||||||
'$[fn]' ved '$[dfrn_url]' har godtatt
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
din forespørsel om kobling ved $[sitename]'.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
'$[fn]' har valgt å godta deg som "fan", som begrenser
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
noen typer kommunikasjon - slik som private meldinger og noen profilhandlinger.
|
some forms of communication - such as private messaging and some profile
|
||||||
Hvis dette er en kjendis- eller forumside, så ble disse innstillingene
|
interactions. If this is a celebrity or community page, these settings were
|
||||||
angitt automatisk.
|
applied automatically.
|
||||||
|
|
||||||
'$[fn]' kan velge å utvide dette til en to-veis eller mer åpen
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
forbindelse i fremtiden.
|
relationship in the future.
|
||||||
|
|
||||||
Du vil nå motta offentlige statusoppdateringer fra '$[fn]',
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
som vil vises på din "Nettverk"-side ved
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Med vennlig hilsen,
|
Sincerely,
|
||||||
|
|
||||||
$[sitename] administrator
|
{{$sitename}} Administrator
|
||||||
|
@ -1,32 +1,32 @@
|
|||||||
|
|
||||||
Kjære $[username],
|
Dear {{$username}},
|
||||||
En forespørsel ble nylig mottatt hos $[sitename] om å tilbakestille din kontos
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
passord. For å godkjenne denne forespørselen, vennligst velg bekreftelseslenken
|
password. In order to confirm this request, please select the verification link
|
||||||
nedenfor eller lim den inn på adresselinjen i nettleseren din.
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Hvis du IKKE har spurt om denne endringen, vennligst IKKE følg lenken
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
som er oppgitt og ignorer og/eller slett denne e-posten.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Passordet ditt vil ikke bli endret med mindre vi kan forsikre oss om at du
|
Your password will not be changed unless we can verify that you
|
||||||
sendte denne forespørselen.
|
issued this request.
|
||||||
|
|
||||||
Følg denne lenken for å bekrefte din identitet:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$[reset_link]
|
{{$reset_link}}
|
||||||
|
|
||||||
Du vil da motta en oppfølgings melding med det nye passordet.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Du kan endre passordet på siden for dine kontoinnstillinger etter innlogging.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Innloggingsdetaljene er som følger:
|
The login details are as follows:
|
||||||
|
|
||||||
Nettstedsadresse:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Brukernavn:»$[email]
|
Login Name: {{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Beste hilsen,
|
Sincerely,
|
||||||
$[sitename] administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
|
|
||||||
Kjære $[username],
|
Dear {{$username}},
|
||||||
Ditt passord har blitt endret som forespurt. Vennligst ta vare på denne
|
Your password has been changed as requested. Please retain this
|
||||||
meldingen for sikkerhets skyld (eller bytt passordet ditt umiddelbart til
|
information for your records (or change your password immediately to
|
||||||
noe du husker).
|
something that you will remember).
|
||||||
|
|
||||||
|
|
||||||
Dine logg inn-detaljer er som følger:
|
Your login details are as follows:
|
||||||
|
|
||||||
Nettsted:»$[siteurl]
|
Site Location: {{$siteurl}}
|
||||||
Brukernavn:»$[email]
|
Login Name: {{$email}}
|
||||||
Passord:»$[new_password]
|
Password: {{$new_password}}
|
||||||
|
|
||||||
Du kan endre dette passordet på din side for kontoinnstillinger etter innlogging.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
|
|
||||||
Med vennlig hilsen,
|
Sincerely,
|
||||||
$[sitename] administrator
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,34 +1,19 @@
|
|||||||
|
|
||||||
Kjære $[username],
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Takk for at du registrerte deg hos $[sitename]. Kontoen din er opprettet.
|
The login details are as follows:
|
||||||
Innloggingsdetaljene er som følger:
|
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Nettstedsadresse:»$[siteurl]
|
If this account was created without your knowledge and is not desired, you may
|
||||||
Brukernavn:»$[email]
|
visit this site and reset the password. This will allow you to remove the
|
||||||
Passord:»$[password]
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Du kan endre passordet ditt på siden "Innstillinger" etter at du har logget
|
Thank you and welcome to {{$sitename}}.
|
||||||
inn.
|
|
||||||
|
|
||||||
Vennligst bruk litt tid til å se over de andre kontoinnstillingene på den siden.
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
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,25 +1,25 @@
|
|||||||
|
|
||||||
En ny forespørsel om brukerregistering ble mottatt hos $[sitename] og krever
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
din godkjenning.
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
Innloggingsdetaljene er som følger:
|
The login details are as follows:
|
||||||
|
|
||||||
Fullt navn:»$[username]
|
Site Location: {{$siteurl}}
|
||||||
Nettstedsadresse:»$[siteurl]
|
Login Name: {{$email}}
|
||||||
Brukernavn:»$[email]
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
For å godkjenne denne forespørselen, vennligst besøk følgende lenke:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/allow/$[hash]
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
For å avslå denne forespørselen og fjerne kontoen, vennligst besøk:
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
$[siteurl]/regmod/deny/$[hash]
|
Thank you.
|
||||||
|
|
||||||
|
|
||||||
Mange takk.
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Kjære $[myname],
|
Dear {{$myname}},
|
||||||
|
|
||||||
Du har akkurat mottatt en kontaktforespørsel hos $[sitename]
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
fra '$[requestor]'.
|
from '{{$requestor}}'.
|
||||||
|
|
||||||
Du kan besøke profilen på $[url].
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Vennligst logg inn på ditt nettsted for å se hele introduksjonen
|
Please login to your site to view the complete introduction
|
||||||
og godkjenne eller ignorere/avbryte forespørselen.
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
$[siteurl]
|
{{$siteurl}}
|
||||||
|
|
||||||
Beste hilsen,
|
Regards,
|
||||||
|
|
||||||
$[siteurl] administrator
|
{{$sitename}} administrator
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
Hei,
|
Hey,
|
||||||
jeg er $sitename.
|
I'm the web server at {{$sitename}};
|
||||||
Friendica-utviklerne slapp nylig oppdateringen $update,
|
|
||||||
men da jeg prøvde å installere den, gikk noe forferdelig galt.
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en
|
but when I tried to install it, something went terribly wrong.
|
||||||
Friendica-utvikler hvis du ikke kan hjelpe meg på egenhånd. Databasen min er kanskje ugyldig.
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
Feilmeldingen er '$error'.
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
Jeg beklager,
|
Apologies for the inconvenience,
|
||||||
din Friendica-tjener hos $siteurl
|
your web server at {{$siteurl}}
|
14
view/pt-br/follow_notify_eml.tpl
Normal file
14
view/pt-br/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/pt-br/friend_complete_eml.tpl
Normal file
22
view/pt-br/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 'Connnections' 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
|
||||||
|
|
||||||
|
|
70
view/pt-br/htconfig.tpl
Normal file
70
view/pt-br/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
22
view/pt-br/intro_complete_eml.tpl
Normal file
22
view/pt-br/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 'Matrix' page at
|
||||||
|
|
||||||
|
{{$siteurl}}
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
|
{{$sitename}} Administrator
|
32
view/pt-br/lostpass_eml.tpl
Normal file
32
view/pt-br/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/pt-br/passchanged_eml.tpl
Normal file
20
view/pt-br/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
|
||||||
|
|
||||||
|
|
19
view/pt-br/register_open_eml.tpl
Normal file
19
view/pt-br/register_open_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
An account has been created at {{$sitename}} for this email address.
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
|
If this account was created without your knowledge and is not desired, you may
|
||||||
|
visit this site and reset the password. This will allow you to remove the
|
||||||
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
|
Thank you and welcome to {{$sitename}}.
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
25
view/pt-br/register_verify_eml.tpl
Normal file
25
view/pt-br/register_verify_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
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/pt-br/request_notify_eml.tpl
Normal file
17
view/pt-br/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
|
13
view/pt-br/update_fail_eml.tpl
Normal file
13
view/pt-br/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
14
view/ru/follow_notify_eml.tpl
Normal file
14
view/ru/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/ru/friend_complete_eml.tpl
Normal file
22
view/ru/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 'Connnections' 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
|
||||||
|
|
||||||
|
|
70
view/ru/htconfig.tpl
Normal file
70
view/ru/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
22
view/ru/intro_complete_eml.tpl
Normal file
22
view/ru/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 'Matrix' page at
|
||||||
|
|
||||||
|
{{$siteurl}}
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
|
{{$sitename}} Administrator
|
32
view/ru/lostpass_eml.tpl
Normal file
32
view/ru/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/ru/passchanged_eml.tpl
Normal file
20
view/ru/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
|
||||||
|
|
||||||
|
|
19
view/ru/register_open_eml.tpl
Normal file
19
view/ru/register_open_eml.tpl
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
An account has been created at {{$sitename}} for this email address.
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
|
If this account was created without your knowledge and is not desired, you may
|
||||||
|
visit this site and reset the password. This will allow you to remove the
|
||||||
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
|
Thank you and welcome to {{$sitename}}.
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
25
view/ru/register_verify_eml.tpl
Normal file
25
view/ru/register_verify_eml.tpl
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
|
The login details are as follows:
|
||||||
|
|
||||||
|
Site Location: {{$siteurl}}
|
||||||
|
Login Name: {{$email}}
|
||||||
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
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/ru/request_notify_eml.tpl
Normal file
17
view/ru/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
|
13
view/ru/update_fail_eml.tpl
Normal file
13
view/ru/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
@ -1,12 +1,14 @@
|
|||||||
$myname,
|
|
||||||
|
|
||||||
'$requestor' på $sitename vill följa dina uppdateringar här på Friendika.
|
Dear {{$myname}},
|
||||||
|
|
||||||
Besök dennes profil på $url.
|
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
Logga in för att godkänna eller avslå förfrågan.
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
$siteurl
|
Please login to your site to approve or ignore/cancel the request.
|
||||||
|
|
||||||
Hälsningar,
|
{{$siteurl}}
|
||||||
$sitename admin
|
|
||||||
|
Regards,
|
||||||
|
|
||||||
|
{{$sitename}} administrator
|
||||||
|
@ -1,17 +1,22 @@
|
|||||||
$username,
|
|
||||||
|
|
||||||
Goda nyheter... '$fn' på '$dfrn_url' har accepterat din kontaktförfrågan på '$sitename'.
|
Dear {{$username}},
|
||||||
|
|
||||||
Ni är nu ömsesidiga vänner och kan se varandras statusuppdateringar samt skicka foton och meddelanden
|
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
utan begränsningar.
|
your connection request at '{{$sitename}}'.
|
||||||
|
|
||||||
Gå in på din sida 'Kontakter' på $sitename om du vill göra några
|
You are now mutual friends and may exchange status updates, photos, and email
|
||||||
ändringar när det gäller denna kontakt.
|
without restriction.
|
||||||
|
|
||||||
$siteurl
|
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
||||||
|
any changes to this relationship.
|
||||||
|
|
||||||
[Du kan exempelvis skapa en separat profil med information som inte
|
{{$siteurl}}
|
||||||
är tillgänglig för vem som helst, och ge visningsrättigheter till '$fn'].
|
|
||||||
|
|
||||||
Hälsningar,
|
[For instance, you may create a separate profile with information that is not
|
||||||
$sitename admin
|
available to the general public - and assign viewing rights to '{{$fn}}'].
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
70
view/sv/htconfig.tpl
Normal file
70
view/sv/htconfig.tpl
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Set the following for your MySQL installation
|
||||||
|
// Copy or rename this file to .htconfig.php
|
||||||
|
|
||||||
|
$db_host = '{{$dbhost}}';
|
||||||
|
$db_port = '{{$dbport}}';
|
||||||
|
$db_user = '{{$dbuser}}';
|
||||||
|
$db_pass = '{{$dbpass}}';
|
||||||
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notice: Many of the following settings will be available in the admin panel
|
||||||
|
* after a successful site install. Once they are set in the admin panel, they
|
||||||
|
* are stored in the DB - and the DB setting will over-ride any corresponding
|
||||||
|
* setting in this file
|
||||||
|
*
|
||||||
|
* The command-line tool util/config is able to query and set the DB items
|
||||||
|
* directly if for some reason the admin panel is not available and a system
|
||||||
|
* setting requires modification.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// 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'] = "Red Matrix";
|
||||||
|
$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';
|
||||||
|
|
@ -1,19 +1,22 @@
|
|||||||
$username,
|
|
||||||
|
|
||||||
'$fn' på '$dfrn_url' har accepterat din kontaktförfrågan på '$sitename'.
|
Dear {{$username}},
|
||||||
|
|
||||||
'$fn' har valt att acceptera dig som ett "fan" vilket innebär vissa begränsningar
|
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
||||||
i kommunikationen mellan er - som till exempel personliga meddelanden och viss interaktion
|
your connection request at '{{$sitename}}'.
|
||||||
mellan profiler. Om detta är en kändis eller en gemenskap så har dessa inställningar gjorts
|
|
||||||
per automatik.
|
|
||||||
|
|
||||||
'$fn' kan välja att utöka detta till vanlig tvåvägskommunikation eller någon annan mer
|
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
||||||
tillåtande kommunikationsform i framtiden.
|
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.
|
||||||
|
|
||||||
Du kommer hädanefter att få statusuppdateringar från '$fn',
|
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
||||||
vilka kommer att synas på din Nätverk-sida på
|
relationship in the future.
|
||||||
|
|
||||||
$siteurl
|
You will start receiving public status updates from '{{$fn}}',
|
||||||
|
which will appear on your 'Matrix' page at
|
||||||
|
|
||||||
Hälsningar,
|
{{$siteurl}}
|
||||||
$sitename admin
|
|
||||||
|
Sincerely,
|
||||||
|
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
@ -1,29 +1,32 @@
|
|||||||
$username,
|
|
||||||
|
|
||||||
En begäran om återställning av lösenord på $sitename har mottagits.
|
Dear {{$username}},
|
||||||
Gå till adressen nedan för att bekräfta denna begäran. Du kan också
|
A request was recently received at {{$sitename}} to reset your account
|
||||||
klistra in länken i adressfältet i din webbläsare.
|
password. In order to confirm this request, please select the verification link
|
||||||
|
below or paste it into your web browser address bar.
|
||||||
|
|
||||||
Gå INTE till länken nedan om du INTE har begärt lösenordsåterställning.
|
If you did NOT request this change, please DO NOT follow the link
|
||||||
Då kan du ignorera det här meddelandet.
|
provided and ignore and/or delete this email.
|
||||||
|
|
||||||
Ditt lösenord kommer inte att återställas om vi inte kan säkerställa att du
|
Your password will not be changed unless we can verify that you
|
||||||
initierat detta.
|
issued this request.
|
||||||
|
|
||||||
Med den här länken kan du bekräfta din identitet:
|
Follow this link to verify your identity:
|
||||||
|
|
||||||
$reset_link
|
{{$reset_link}}
|
||||||
|
|
||||||
Sedan kommer du att få ett meddelande med ett nytt lösenord.
|
You will then receive a follow-up message containing the new password.
|
||||||
|
|
||||||
Lösenordet kan sedan ändras i dina inställningar efter att du loggat in.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Detaljerna ser ut så här:
|
The login details are as follows:
|
||||||
|
|
||||||
Webbplats: $siteurl
|
Site Location: {{$siteurl}}
|
||||||
Inloggningsnamn: $email
|
Login Name: {{$email}}
|
||||||
|
|
||||||
Hälsningar,
|
|
||||||
$sitename admin
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,18 +1,20 @@
|
|||||||
|
|
||||||
$username,
|
Dear {{$username}},
|
||||||
|
Your password has been changed as requested. Please retain this
|
||||||
Lösenordet har ändrats enligt din begäran. Behåll den här
|
information for your records (or change your password immediately to
|
||||||
informationen om den skulle behövas i framtiden. (eller ändra lösenord
|
something that you will remember).
|
||||||
på en gång till något som du kommer ihåg).
|
|
||||||
|
|
||||||
|
|
||||||
Här är dina inloggningsuppgifter:
|
Your login details are as follows:
|
||||||
|
|
||||||
Webbplats: $siteurl
|
Site Location: {{$siteurl}}
|
||||||
Användarnamn: $email
|
Login Name: {{$email}}
|
||||||
Lösenord: $new_password
|
Password: {{$new_password}}
|
||||||
|
|
||||||
När du loggat in kan du byta lösenord bland inställningarna.
|
You may change that password from your account settings page after logging in.
|
||||||
|
|
||||||
Hälsningar,
|
|
||||||
$sitename admin
|
Sincerely,
|
||||||
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,17 +1,19 @@
|
|||||||
$username,
|
|
||||||
Tack för att du registrerat dig på $sitename. Kontot har skapats.
|
|
||||||
Här är dina inloggningsuppgifter:
|
|
||||||
|
|
||||||
Webbplats: $siteurl
|
An account has been created at {{$sitename}} for this email address.
|
||||||
Användarnamn: $email
|
The login details are as follows:
|
||||||
Lösenord: $password
|
|
||||||
|
|
||||||
Lösenordet kan ändras på sidan Inställningar efter att du loggat in.
|
Site Location: {{$siteurl}}
|
||||||
|
Login: {{$email}}
|
||||||
|
Password: (the password which was provided during registration)
|
||||||
|
|
||||||
Ägna en liten stund åt att gå igenom alla kontoinställningar där.
|
If this account was created without your knowledge and is not desired, you may
|
||||||
|
visit this site and reset the password. This will allow you to remove the
|
||||||
|
account from the links on the Settings page, and we
|
||||||
|
apologise for any inconvenience.
|
||||||
|
|
||||||
Välkommen till $sitename.
|
Thank you and welcome to {{$sitename}}.
|
||||||
|
|
||||||
Hälsningar,
|
Sincerely,
|
||||||
$sitename admin
|
{{$sitename}} Administrator
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,17 +1,25 @@
|
|||||||
En registreringsförfrågan som kräver svar har mottagits
|
|
||||||
på $sitename
|
A new user registration request was received at {{$sitename}} which requires
|
||||||
|
your approval.
|
||||||
|
|
||||||
|
|
||||||
Här är inloggningsuppgifterna:
|
The login details are as follows:
|
||||||
|
|
||||||
Fullständigt namn: $username
|
Site Location: {{$siteurl}}
|
||||||
Webbplats: $siteurl
|
Login Name: {{$email}}
|
||||||
Användarnamn: $email
|
IP Address: {{$details}}
|
||||||
|
|
||||||
|
To approve this request please visit the following link:
|
||||||
|
|
||||||
|
|
||||||
Gå till denna adress om du vill godkänna:
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
$siteurl/regmod/allow/$hash
|
|
||||||
|
|
||||||
Gå till denna adress om du vill avslå förfrågan och ta bort kontot:
|
|
||||||
$siteurl/regmod/deny/$hash
|
To deny the request and remove the account, please visit:
|
||||||
|
|
||||||
|
|
||||||
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
Thank you.
|
||||||
|
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
$myname,
|
|
||||||
|
|
||||||
Du har just fått en kontaktförfrågan på $sitename från '$requestor'
|
Dear {{$myname}},
|
||||||
|
|
||||||
Profilen finns på $url.
|
You have just received a connection request at {{$sitename}}
|
||||||
|
|
||||||
Logga in för att se hela förfrågan och godkänna eller
|
from '{{$requestor}}'.
|
||||||
avslå den.
|
|
||||||
|
|
||||||
$siteurl
|
You may visit their profile at {{$url}}.
|
||||||
|
|
||||||
Hälsningar,
|
Please login to your site to view the complete introduction
|
||||||
$sitename admin
|
and approve or ignore/cancel the request.
|
||||||
|
|
||||||
|
{{$siteurl}}
|
||||||
|
|
||||||
|
Regards,
|
||||||
|
|
||||||
|
{{$sitename}} administrator
|
||||||
|
13
view/sv/update_fail_eml.tpl
Normal file
13
view/sv/update_fail_eml.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Hey,
|
||||||
|
I'm the web server at {{$sitename}};
|
||||||
|
|
||||||
|
The Red Matrix developers released update {{$update}} recently,
|
||||||
|
but when I tried to install it, something went terribly wrong.
|
||||||
|
This needs to be fixed soon and it requires human intervention.
|
||||||
|
Please contact a Red developer if you can not figure out how to
|
||||||
|
fix it on your own. My database might be invalid.
|
||||||
|
|
||||||
|
The error message is '{{$error}}'.
|
||||||
|
|
||||||
|
Apologies for the inconvenience,
|
||||||
|
your web server at {{$siteurl}}
|
Reference in New Issue
Block a user