Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Michael Vogel 2013-10-20 13:01:24 +02:00
commit 2e64802866
15 changed files with 479 additions and 77 deletions

View File

@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '3.1.1743' );
define ( 'FRIENDICA_VERSION', '3.2' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', "<br />\r\n" );

42
changelist.txt Normal file
View File

@ -0,0 +1,42 @@
Friendica 3.2
------------
* LICENSE change from Friendica uses now the AGPL
* Language updates: PT_BR, RU, NB_NO, DE, PL, CS, ZH-CN, IT, CA, FR, NL
* new languages: BG
* added a README.translate and updates to the translation utils
* addons are now translated separately
* Theme updates: vier, smoothly, diabook, decaf-mobile, dispy, frost, frost-mobile, quattro
* Bug fixes: #516, #517, #525, #476, #540, #546, #712, #728
* sample nginx and lighttpd config
* new default templating engine: smarty3
* new share element
* maintenance mode for longer running upgrade tasks
* small fixed
* edit profile photo link
* better caching of pictures
* threadening for outgoing emails
* mail import
* oembed thumbnails
* SN subscriptions & more SN like behaviour if snautofollow addon is used
* collect content of SN discussion threads
* communication with Diaspora*
* usage of the API
* search improvements
* MIME types for attachments
* support Open Graph and Dublin Core when showing single items
* better use of APC if present
* use https versions of videos from youtube and vimeo to make firefox happy
* fixes to the documentation
* if a home.html is there, home.css is used as well
* update included TinyMCE to version 3.5.8, fancybox
* made more options available in the admin panel that were hidden before
* show the admin information about when accounts expire in the admin panel
* improving the install.php script
* addons now can be members only
* item object now contains the "edited" information left for the theme designers to show this info in a pretty way
* improvments to the user-import from exported account files
* It's now possible to authenticate an ejabberd server against friendica.
* bugtracker moved to github
* improvements to MySQL queries

View File

@ -6,6 +6,7 @@ Frequently Asked Questions - FAQ
User
* **[Why do I getting warnings about certificates?](help/FAQ#ssl)**
* **[How can I upload images, files, links, videos and sound files to posts?](help/FAQ#upload)**
* **[Is it possible to have different avatars per profile?](help/FAQ#avatars)**
* **[What is the difference between blocked|ignored|archived|hidden contacts?](help/FAQ#contacts)**
* **[What happens when an account is removed? Is it truly deleted?](help/FAQ#removed)**
@ -46,6 +47,25 @@ If you are just using friendica for a specified group of people on a single serv
If you havn't set up a server yet, it's wise to compare the different provider and their SSL conditions. Some allow the usage of free certificates or give you the access to their certificate for free. Other ones only allow bought certificates from themselves or other providers.
<a name="upload"></a>
**How can I upload images, files, links, videos and sound files to posts?**
You can upload images from your computer by using the [editor](help/Text_editor). An overview of all uploaded images is listed at <i>yourpage.com/photos/profilename</i>. There you could also upload images directly and choose, if your contacts shall receive a message about this upload.
Generally, you could attach every kind of file to a post. This is possible by using the "paper-clip"-symbol at the editor. These files will be linked to your post and can be downloaded by your contacts. But it's not possible to get a preview for these ones. Because of this, this upload method is recommended for office or zipped files.
If you want to use Dropbox, owncloud at your own server or any other [filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services), you'll have use the "link"-button (chain-symbol).
When you're adding URLs of other webpages with the "link"-button, Friendica tries to create a small preview. If this doesn't work, try to add the link by typing: [url=http://example.com]<i>self-chosen name</i>[/url].
You can also add video and audio files to posts. But instead of a direct upload you have to use one of the following methods:
1. Add the video or audio link of a hoster (Youtube, Vimeo, Soundcloud and everyone else with oembed/opengraph-support). Videos will be shown with a preview image you can click on to start it. SoundCloud directly inserts a player to your post.
2. If you have an own server, you can upload your multimedia files via FTP and insert the URL. Your video or sound file will be shown with their own player at your post.
Friendica is using HTML5 for embedding content. Therefore, the supported files are depending on your browser and operating system (OS). Some filetypes are WebM, MP4, MP3 and OGG. There are more examples at wikipedia ([video](http://en.wikipedia.org/wiki/HTML5_video), [audio](http://en.wikipedia.org/wiki/HTML5_audio)).
<a name="avatars"></a>
**Is it possible to have different avatars per profile?**

View File

@ -18,6 +18,7 @@ Friendica Documentation and Resources
* [Community Forums](help/Forums)
* [Chats](help/Chats)
* Further information
* [Improve Performance](help/Improve-Performance)
* [Move Account](help/Move-Account)
* [Remove Account](help/Remove-Account)
* [Bugs and Issues](help/Bugs-and-Issues)

148
doc/Improve-Performance.md Normal file
View File

@ -0,0 +1,148 @@
How to: improve performance
==============
* [Home](help)
A little guide to increase the performance of a Friendica site
**At first**
Feel free to ask at Friendica support at https://helpers.pyxis.uberspace.de/profile/helpers if you need some clarification about the following instructions or if you need help in any other way.
System configuration
--------
Please go to /admin/site/ on your system and change the following values:
Set "JPEG image quality" to 50.
This value reduces the data that is send from the server to the client. 50 is a value that doesn't influences image quality too much.
Set "OStatus conversation completion interval" to "never".
If you have many OStatus contacts then completing of conversations can be very time wasting. The downside: You won't see every comment in OStatus threads.
Set "Path for lock file" to an empty folder outside your web root.
Lock files help avoid the possibility of several background processes running at the same time.
For example: It can happen that the poller.php takes longer than expected. When there is no lock file, it is possible for several instances of poller.php to run at the same time - which would slow down the system and affect the maximum numbers of processes and database connections.
Please define a full file path that is writeable by the web server process. If your site is located at "/var/www/sitename/htdocs/" you could maybe create a folder "/var/www/sitename/temp/".
Enable "Use MySQL full text engine"
When using MyISAM (default) this speeds up search.
Set "Path to item cache" to an empty value outside your web root.
Parsed BBCode and some external images will be put there. Parsing BBCode is a time wasting process that also makes heave use of the CPU.
You can use the same folder you used for the lock file.
**Warning!**
The folder for item cache is cleaned up regularly. Every file that exceeds the cache duration is deleted. **If you accidentally point the cache path to your web root then you will delete your web root!**
So double check that the folder only contains temporary content that can be deleted at any time.
You have been warned.
P.S. It happened to me :)
Plugins
--------
Active the following plugins:
Alternate Pagination
Privacy Image Cache
rendertime
###Alternate Pagination
**Description**
This plugin reduces the database load massively. Downside: You can't see the total number of pages available at each module, and have this replaced with "older" and "newer" links.
**Administration**
Go to the admin settings of "altpager" and set it to "global".
###Privacy Image Cache
**Description**
This plugin pre-fetches external content and stores it in the cache. Besides speeding up the page rendering it is also good for the privacy of your users, since embedded pictures are loaded from your site and not from a foreign site (that could spy on the IP addresses).
Additionally it helps with content from external sites that have slow performance or aren not online all the time.
**Administration**
Please create a folder named "privacy_image_cache" and "photo" in your web root. If these folders exists then the cached files will be stored there. This has the great advantage that your web server will fetch the files directly from there.
###rendertime
This plugin doesn't speed up your system. It helps analyzing your bottlenecks.
When enabled you see some values like the following at the bottom of every page:
Performance: Database: 0.244, Network: 0.002, Rendering: 0.044, Parser: 0.001, I/O: 0.021, Other: 0.237, Total: 0.548
Database: This is the time for all database queries
Network: Time that is needed to fetch content from external sites
Rendering: Time for theme rendering
Parser: The time that the BBCode parser needed to create the output
I/O: Time for local file access
Others: Everything else :)
Total: The sum of all above values
These values show your performance problems.
Webserver
--------
If you are using Apache please enable the following modules.
**Cache-Control**
This module tells the client to cache the content of static files so that they aren't fetched with every request.
Enable the module "mod_expires" by typing in "a2enmod expires" as root.
Please add the following lines to your site configuration in the "directory" context.
ExpiresActive on ExpiresDefault "access plus 1 week"
See also: http://httpd.apache.org/docs/2.2/mod/mod_expires.html
**Compress content**
This module compresses the traffic between the web server and the client.
Enable the module "mod_deflate" by typing in "a2enmod deflate" as root.
See also: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html
PHP
--------
**FCGI**
When using apache think about using FCGI. When using a Debian based distribution you will need the packages named "php5-cgi" and "libapache2-mod-fcgid".
Please refer to external documentations for a more detailed explanation how to set up a system based upon FCGI.
**APC**
APC is an opcode cache. It speeds up the processing of PHP code.
When APC is enabled, Friendica uses it to store configuration data between different requests. This helps speeding up the page creation time.
**Database**
There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyzes your database server and give hints on values that could be changed.
Please enable the slow query log. This helps being aware of performance problems.

View File

@ -11,12 +11,15 @@ Like many other modern social networks, Friendica uses a special notation inside
People are tagged by preceding their name with the @ character.
The following are various ways of indicating a person:
You can tag **persons who are in your social circle** by adding the "@"-sign in front of the name.
* @mike - indicates a known contact in your social circle whose nickname is "mike"
* @mike_macgirvin - indicates a known contact in your social circle whose full name is "Mike Macgirvin". Note that spaces cannot be used inside tags.
* @mike+151 - this form is used by the drop-down tag completion tool. It indicates the contact whose nickname is mike and whose contact identifier number is 151. The drop-down tool may be used to resolve people with duplicate nicknames.
* @mike@macgirvin.com - indicates the Identity Address of a person on a different network, or one that is *not* in your social circle. This is called a "remote mention" and can only be an email-style locator, not a web URL.
You can tag a person on a different network or one that is **not in your social circle** by using the following notation:
* @mike@macgirvin.com - This is called a "remote mention" and can only be an email-style locator, not a web URL.
Unless their system blocks unsolicited "mentions", the person tagged will likely receive a "Mention" post/activity or become a direct participant in the conversation in the case of public posts. Please note that Friendica blocks incoming "mentions" from people with no relationship to you. This is a spam prevention measure.

View File

@ -30,24 +30,27 @@ See [BBCode tags reference](help/BBCode) page to see all what you can do.
The icons under the text area are there to help you to write posts quickly:
<img src="doc/img/camera.png" width="32" height="32" alt="editor" align="left" style="padding-bottom: 20px;"> Upload a picture from your computer. The image will be uploaded and correct bbcode tag will be added to your post.
<img src="doc/img/camera.png" width="32" height="32" alt="editor" align="left" style="padding-bottom: 20px;"> Upload a picture from your computer. The image will be uploaded and correct bbcode tag will be added to your post.*
<p style="clear:both;"></p>
<img src="doc/img/paper_clip.png" width="32" height="32" alt="paper_clip" align="left"> Add files from your computer. Same as picture, but for generic attachment to the post.
<img src="doc/img/paper_clip.png" width="32" height="32" alt="paper_clip" align="left"> Add files from your computer. Same as picture, but for generic attachment to the post.*
<p style="clear:both;"></p>
<img src="doc/img/chain.png" width="32" height="32" alt="chain" align="left"> Add a web address (url). Enter an url and Friendica will add to your post a link to the url and an excerpt from the web site, if possible
<img src="doc/img/chain.png" width="32" height="32" alt="chain" align="left"> Add a web address (url). Enter an url and Friendica will add to your post a link to the url and an excerpt from the web site, if possible.
<p style="clear:both;"></p>
<img src="doc/img/video.png" width="32" height="32" alt="video" align="left"> Add a video. Enter the url to a video (ogg) or to a video page on youtube or vimeo, and it will be embedded in your post
<img src="doc/img/video.png" width="32" height="32" alt="video" align="left"> Add a video. Enter the url to a video (ogg) or to a video page on youtube or vimeo, and it will be embedded in your post with a preview. Friendica is using [HTML5](http://en.wikipedia.org/wiki/HTML5_video) for embedding content. Therefore, the supported files are depending on your browser and operating system (OS). Some filetypes are WebM, MP4 and OGG.*
<p style="clear:both;"></p>
<img src="doc/img/mic.png" width="32" height="32" alt="mic" align="left"> Add an audio. Same as video, but for audio
<img src="doc/img/mic.png" width="32" height="32" alt="mic" align="left" style="padding-bottom: 20px;"> Add an audio. Same as video, but for audio. Depending on your browser and operation system MP3, OGG and AAC are supported. Additionally, you are able to add URLs from audiohosters like Soundcloud.
<p style="clear:both;"></p>
<img src="doc/img/globe.png" width="32" height="32" alt="globe" align="left"> Set your geographic location. This location will be added into a Google Maps search. That's why a note like "New York" or "10004" is already enough.
<p style="clear:both;"></p>
<i>* how to [upload](help/FAQ#upload) files</i>
Those icons can change with themes. Some examples:
<table>

View File

@ -6,6 +6,8 @@ Häufig gestellte Fragen - FAQ
Nutzer
* **[Warum erhalte ich Warnungen über fehlende Zertifikate?](help/FAQ#ssl)**
* **[Wie kann ich Bilder, Dateien, Links, Video und Audio in Beiträge einfügen?
](help/FAQ#upload)**
* **[Ist es möglich, bei mehreren Profilen verschiedene Avatare (Nutzerbilder) zu haben?](help/FAQ#avatars)**
* **[Was ist der Unterschied zwischen blockierten|ignorierten|archivierten|versteckten Kontakten?](help/FAQ#contacts)**
* **[Was passiert, wenn ein Account gelöscht ist? Ist dieser richtig gelöscht?](help/FAQ#removed)**
@ -20,7 +22,7 @@ Admins
Nutzer
--------
*****
****
<a name="ssl"></a>
**Warum erhalte ich Warnungen über fehlende Zertifikate?**
@ -45,6 +47,24 @@ Wenn du Friendica nur für eine bestimmte Gruppe von Leuten auf einem einzelnen
Wenn du zum jetzigen Zeitpunkt noch keinen Server aufgesetzt hast, ist es sinnvoll, die verschiedenen Anbieter in Bezug auf SSL zu vergleichen. Einige erlauben die Nutzung von freien Zertifikaten oder lassen dich ihre eigenen Zertifikate mitnutzen. Andere erlauben nur kostenpflichtige Zertifikate als eigenes Angebot bzw. von anderen Anbietern.
<a name="upload"></a>
**Wie kann ich Bilder, Dateien, Links, Video und Audio in Beiträge einfügen?**
Bilder können direkt im [Beitragseditor](help/Text_editor) vom Computer hochgeladen werden. Eine Übersicht aller Bilder, die auf deinem Server liegen, findest du unter <i>deineSeite.de/photos/profilname</i>. Dort kannst du auch direkt Bilder hochladen und festlegen, ob deine Kontakte eine Nachricht über das neue Bild bekommen.
Alle Arten von Dateien können grundsätzlich als Anhang in Friendica hochgeladen werden. Dafür verwendest du das Büroklammersymbol im Editor. Sie sind dann direkt an den Beitrag geknüpft, können von den Betrachtern heruntergeladen werden, aber werden nicht als Vorschau angezeigt. Deshalb eignet sich diese Methode vor allem für Office-Dateien oder gepackte Dateien wie ZIPs, aber weniger für Multimediadateien. Wer hingegen Dateien über Dropbox, über eine auf dem eigenen Server installierte Owncloud oder über einen anderen [Filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services) einfügen will, verwendet den Link-Button.
Wenn du mit dem Link-Button (Ketten-Symbol) URLs zu anderen Seiten einfügst, versucht Friendica eine kurze Zusammenfassung als Vorschau abzurufen. Manchmal klappts das nicht ... dann verlinke den Beitrag einfach per [url=http://example.com]<i>freigewählter Name</i>[/url] im Editor.
Video- und Audiodateien können zwar in Beiträge eingebunden werden, allerdings geht das nicht über einen direkten Upload im Editor wie bei Fotos. Du hast zwei Möglichkeiten:
1. Du kannst bei dem Video- oder Audiobutton die URL von einem Hoster eingeben (Youtube, Vimeo, Soundcloud und alle anderen mit oembed/opengraph-Unterstützung). Bei Videos zeigt Friendica dann ein Vorschaubild in deinem Beitrag an, nach einem Klick öffnet sich ein eingebetter Player. Bei Soundcloud wird der Player direkt eingebunden.
2. Wenn du Zugang zu einem eigenen Server hast, kannst deine Multimediadatei per FTP dort hochladen und beim Video-/Audiobutton diese URL angeben. Dann wird das Video oder die Audiodatei direkt mit einem Player in deinem Beitrag angezeigt.
Friendica verwendet zur Einbettung HTML5. Das bedeutet, dass je nach Browser und Betriebssystem andere Formate unterstützt werden, darunter WebM, MP4, MP3 und Ogg. Eine Tabelle findest du bei Wikipedia ([Video](http://en.wikipedia.org/wiki/HTML5_video), [Audio](http://en.wikipedia.org/wiki/HTML5_audio)).
Zum Konvertieren von Videos in das lizenfreie Videoformat WebM gibt es unter Windows das kostenlose Programm [Xmedia-Recode](http://www.xmedia-recode.de/).
<a name="avatars"></a>
**Ist es möglich, bei mehreren Profilen verschiedene Avatare (Nutzerbilder) zu haben?**

View File

@ -17,6 +17,7 @@ Friendica - Dokumentation und Ressourcen
* [Community-Foren](help/Forums)
* [Chats](help/Chats)
* Weiterführende Informationen
* [Performance verbessern](help/Improve-Performance)
* [Account umziehen](help/Move-Account)
* [Account löschen](help/Remove-Account)
* [Bugs und Probleme](help/Bugs-and-Issues)

View File

@ -0,0 +1,147 @@
How-to: Performance verbessern
==========
* [Zur Startseite der Hilfe](help)
Eine kleine Anleitung, um die Performance einer Friendica-Seite zu verbessern.
**Vorab:**
Wenn du Fragen zu den folgenden Anweisungen oder zu anderen Themen hast, dann kannst du jederzeit beim Friendica-Support unter https://helpers.pyxis.uberspace.de/profile/helpers nachfragen.
Systemeinstellungen
---------------
Geh auf /admin/site in deinem System und ändere die folgenden Werte:
setze "Qualität des JPEG Bildes" auf 50.
Dieser Wert reduziert die Daten, die vom Server an den Client geschickt werden. 50 ist ein Wert, der die Bildqualität nicht zu stark beeinflusst.
setze "Intervall zum Vervollständigen von OStatus Unterhaltungen" auf "niemals"
Wenn du viele OStatus-Kontakte hast, dann kann die Vervollständigung von Unterhaltungen sehr zeitraubend sein. Der Nachteil: Du siehst nicht jede Antwort einer OStatus-Unterhaltung.
setze "Pfad für die Sperrdatei" auf einen Ordner außerhalb deines Stammverzeichnisses deines Servers.
Sperrdateien sorgen dafür, dass Hintergrundprozesse nicht parallel ablaufen.
Als Beispiel: Es kann passieren, dass die poller.php länger als erwartet läuft. Ohne Sperrdatei kann es passieren, dass mehrere Instanzen der poller.php zur gleichen Zeit laufen. Dies würde das System verlangsamen und Einfluss auf die maximale Anzahl an Prozessen und Datenbankverbindungen nehmen.
Bitte definiere einen kompletten Pfad, auf den der Server einen Schreibzugriff hat. Wenn deine Seite unter "/var/www/namederseite/htdocs/" liegt, dann kannst du z.B. einen Ordner unter "/var/www/sitename/temp/" erstellen.
setze "Nutze MySQL full text engine".
Wenn du MyISAM (Standardeinstellung) nutzt, dann beschleunigt dies die Suche.
setze "Pfad zum Eintrag Cache" auf einen leeren Ordner außerhalb deines Stammverzeichnisses.
Verarbeiteter BBCode und einige externe Bilder werden hier gespeichert. BBCode verarbeiten ist ein zeitintensiver Prozess, der zudem eine hohe CPU-Leistung erfordert.
Du kannst den gleichen Ordner nutzen, den du für die Sperrdatei genutzt hast.
**Warnung!**
Der Ordner für den Eintrag-Cache wird regelmäßig geleert. Jede Datei, die die Cache-Dauer überschreitet, wird gelöscht. **Wenn du versehentlich den Cache-Pfad auf dein Stammverzeichnis legst, dann würde dir dies das gesamte Stammverzeichnis löschen.**
Prüfe also doppelt, dass der gewählte Ordner nur temporäre Dateien enthält, die jederzeit gelöscht werden können.
Plugins
--------
Aktiviere die folgenden Plugins:
Alternate Pagination
Privacy Image Cache
rendertime
###Alternate Pagination
**Beschreibung**
Dieses Plugin reduziert die Ladezeit der Datenbank massiv. Nachteil: Du kannst nicht mehr die Anzahl aller Seiten sehen.
**Einrichtung**
Gehe auf admin/plugins/altpager und wähle "global".
###Privacy Image Cache
**Beschreibung**
Dieses Plugin lädt externe Inhalte vor und speichert sie im Cache. Neben der Beschleunigung der Seite dient es so außerdem dazu, die Privatssphäre der Nutzer zu schützen, da eingebettete Inhalte so von deiner Seite aus geladen werden und nicht von externen Quellen (die deine IP-Adresse ermitteln könnten).
Ebenso hilft es bei Inhalten, die nur langsam laden oder nicht immer online sind.
**Einrichtung**
Bitte erstelle einen Ordner namens "privacy_image_cache" und "photo" in deinem Stammverzeichnis. Wenn diese Ordner existieren, dann werden die zwischengespeicherten Inhalte dort abgelegt. Dies hat den großen Vorteil, dass der Server die Dateien direkt von dort bezieht.
###rendertime
**Beschreibung**
Dieses Plugin beschleunigt dein System nicht, aber es hilft dabei, die Flaschenhälse zu ermitteln.
Wenn es aktiviert ist, dann siehst du Werte wie die folgenden auf jeder deiner Seiten:
Performance: Database: 0.244, Network: 0.002, Rendering: 0.044, Parser: 0.001, I/O: 0.021, Other: 0.237, Total: 0.548
Database: Dies ist die Zeit für alle Datenbankabfragen
Network: Zeit, die benötigt wird, um Inhalte von externen Seiten vorzuladen
Rendering: Zeit, die zum rendern des Themas benötigt wird
Parser: Die Zeit, die der BBCode-Parser benötigt, um die Ausgabe der Seite zu erstellen
I/O: Zeit, die der lokale Dateizugriff benötigt
Others: alles andere :)
Total: Die Summe aller genannten Werte
Diese Werte zeigen deine Performance-Probleme.
Webserver
----------
Wenn du einen Apache-Webserver nutzt, aktiviere bitte die folgenden Module:
###Cache-Control
**Beschreibung**
Dieses Modul weist den Client an, den Inhalt statischer Dateien zu speichern, um diese nicht immer wieder neu laden zu müssen.
Aktiviere das Modul "mod_expires", indem du "a2enmod expires" als root eingibst.
Füge die folgenden Zeilen in die Apache-Konfiguration deiner Seite im "directory"-Bereich ein.
ExpiresActive on ExpiresDefault "access plus 1 week"
Weitere Informationen findest du hier: http://httpd.apache.org/docs/2.2/mod/mod_expires.html.
###Compress content
**Beschreibung**
Dieses Modul komprimiert den Datenverkehr (Traffic) zwischen dem Webserver und dem Client.
Aktiviere das Modul "mod_deflate" durch die Eingabe "a2enmod deflate" als root.
Weitere Informationen findest du hier: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html
###PHP
**FCGI**
Wenn du Apache nutzt, dann denk darüber nach, FCGI zu nutzen. Wenn du eine Debian-basierte Distribution nutzt, dann wirst du die Pakete "php5-cgi" und "libapache2-mod-fcgid" benötigen.
Nutze externe Dokumente, um eine detailiertere Erklärung für die Einrichtung eines Systems auf FCGI-Basis zu erhalten.
**APC**
APC ist ein Zwischenspeicher für die Verarbeitung des Befehlscodes. Es beschleunigt die Verarbeitung des PHP-Codes.
Wenn APC aktiviert ist, dann nutzt Friendica dies, um Konfigurationseinstellungen für verschiedene Anfragen zwischenzuspeichern. Dies beschleunigt die Reaktionszeit der Seite.
###Database
Es gibt Skripte wie [tuning-primer.sh](http://www.day32.com/MySQL/) und [mysqltuner.pl](http://mysqltuner.pl), die den Datenbankserver analysieren und Hinweise darauf geben, welche Werte verändert werden könnten.
Aktivere hierfür die "Slow query" Log-Datei, um Performanceprobleme zu erkennen.

View File

@ -7,14 +7,17 @@ Wie viele andere soziale Netzwerke benutzt auch Friendica eine spezielle Schreib
**Erwähnungen**
Personen werden "getagged", indem du das "@"-Zeichen vor den Namen schreibst.
Personen werden "getaggt", indem du das "@"-Zeichen vor den Namen schreibst.
Im Folgenden findest du verschiedene Möglichkeiten, um eine Person zu erwähnen:
Personen **in deiner Kontaktliste** werden „getaggt“, indem du das “@“-Zeichen vor den Namen schreibst.
* @mike - deutet auf eine Person hin, die im Netzwerk den Namen "mike" nutzt
* @mike_macgirvin - deutet auf eine Person hin, die sich im Netzwerk "Mike Macgirvin" nennt. Beachte, dass Leerzeichen in Tags nicht genutzt werden können.
* @mike+151 - diese Schreibweise deutet auf eine Person hin, die "mike" heißt und deren Kontakt-Identitäts-Nummer 151 ist. Bei der Eingabe erscheint direkt ein Auswahlmenü, sodass du diese Nummer nicht selbst kennen musst.
* @mike@macgirvin.com - diese Schreibweise deutet auf die Profiladresse eines Nutzers in einem anderen Netzwerk oder auf jemanden, der *nicht* in deiner Kontaktliste ist. Diese Schreibweise wird "Fernerwähnung" (remote mention)genannt und kann nur im Email-Stil geschrieben werden, nicht als Internetadresse/URL.
* <i>@mike</i> - deutet auf eine Person hin, die im Netzwerk den Namen "mike" nutzt
* <i>@mike_macgirvin</i> - deutet auf eine Person hin, die sich im Netzwerk "Mike Macgirvin" nennt. Beachte, dass Leerzeichen in Tags nicht genutzt werden können.
* <i>@mike+151</i> - diese Schreibweise deutet auf eine Person hin, die "mike" heißt und deren Kontakt-Identitäts-Nummer 151 ist. Bei der Eingabe erscheint direkt ein Auswahlmenü, sodass du diese Nummer nicht selbst kennen musst.
Personen, die in einem anderen Netzwerk sind oder die sich **NICHT in deiner Kontaktliste** befinden, werden wie folgt getaggt:
* <i>@mike@macgirvin.com</i> - diese Schreibweise wird "Fernerwähnung" (remote mention)genannt und kann nur im Email-Stil geschrieben werden, nicht als Internetadresse/URL.
Wenn das System ungewollte Erwähnungen nicht blockiert, erhält diese Person eine Mitteilung oder nimmt direkt an der Diskussion teil, wenn es sich um einen öffentlichen Beitrag handelt. Bitte beachte, dass Friendica eingehende "Erwähnungs"-Nachrichten von Personen blockt, die du nicht zu deinem Profil hinzugefügt hast. Diese Maßnahme dient dazu, Spam zu vermeiden.

View File

@ -3,31 +3,33 @@ Beiträge erstellen
* [Zur Startseite der Hilfe](help)
Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, deinen Beitrag zu bearbeiten. <span style="color: red;">Achtung: für dieses Beispiel wurde das Thema <b>"Diabook"</b> genutzt. Wenn du ein anderes Design benutzt, wird du manche dieser Symbole gar nicht oder in anderer Form vorfinden.
Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, deinen Beitrag zu bearbeiten. <span style="color: red;">Achtung: für dieses Beispiel wurde das Thema <b>"Diabook"</b> genutzt. Wenn du ein anderes Design benutzt, wirst du manche dieser Symbole gar nicht oder in anderer Form vorfinden.
</span>
<img src="doc/img/friendica_editor.png" width="538" height="218" alt="editor">
<i>Die einzelnen Symbole</i>
<img src="doc/img/camera.png" width="44" height="33" alt="editor" align="left" style="padding-bottom: 20px;"> Wenn du auf dieses Symbol klickst, dann kannst du ein Bild von deinem Computer hinzufügen. Wenn du eine Internetadresse (URL) eingeben willst, dann kannst du das "Baum"-Symbol im oberen Teil des Editors nutzen. Wenn du ein Bild ausgewählt hast, dann erscheint eine Miniaturdarstellung des Bildes im Editor.
<img src="doc/img/camera.png" width="44" height="33" alt="editor" align="left" style="padding-bottom: 20px;"> Wenn du auf dieses Symbol klickst, dann kannst du ein Bild von deinem Computer hinzufügen. Wenn du eine Internetadresse (URL) eingeben willst, dann kannst du das "Baum"-Symbol im oberen Teil des Editors nutzen. Wenn du ein Bild ausgewählt hast, dann erscheint eine Miniaturdarstellung des Bildes im Editor.*
<p style="clear:both;"></p>
<img src="doc/img/paper_clip.png" width="44" height="33" alt="paper_clip" align="left"> Wenn du dieses Symbol anklickst, dann kannst du weitere Dateien von deinem Computer einfügen. Eine Vorschau des Dateiinhalts erfolgt nicht.
<img src="doc/img/paper_clip.png" width="44" height="33" alt="paper_clip" align="left"> Wenn du dieses Symbol anklickst, dann kannst du weitere Dateien von deinem Computer einfügen. Eine Vorschau des Dateiinhalts erfolgt nicht.*
<p style="clear:both;"></p>
<img src="doc/img/chain.png" width="44" height="33" alt="chain" align="left"> Wenn du die Kette anklickst, dann kannst du eine Internetadresse (URL) einfügen. Im Editor erscheint automatisch eine kurze Information zum eingefügten Link.
<img src="doc/img/chain.png" width="44" height="33" alt="chain" align="left"> Wenn du die Kette anklickst, dann kannst du eine Internetadresse (URL) einfügen. Im Editor erscheint automatisch eine kurze Information zum eingefügten Link.*
<p style="clear:both;"></p>
<img src="doc/img/video.png" width="44" height="33" alt="video" align="left"> Wenn du dieses Symbol wählst, dann kannst du eine Internetadresse (URL) zu einem Video einfügen. Eine Miniaturansicht des Videos erscheint in der Vorschau bzw. im fertigen Beitrag.
<img src="doc/img/video.png" width="44" height="33" alt="video" align="left" style="padding-bottom: 40px;"> Mit dieser Funktion kannst du die Internetadresse (URL) einer Videodatei einfügen. Das Video erscheint dann mit einem Player in deinem Beitrag. Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser verschiedene Videoformate unterstützt (z.B. WebM oder MP4). Außerdem kannst du hier die URLs von Videos auf Youtube, Vimeo und manchen anderen Videohostern eingeben. Die Videos werden dann mit Vorschaubild angezeigt, nach einem Klick öffnet sich ein eingebetteter Player.*
<p style="clear:both;"></p>
<img src="doc/img/mic.png" width="44" height="33" alt="mic" align="left"> Wenn du dieses Symbol wählst, dann kannst du eine Internetadresse (URL) zu einer Sound-Datei einfügen. Ein Player erscheint in der Vorschau bzw. im fertigen Beitrag.
<img src="doc/img/mic.png" width="44" height="33" alt="mic" align="left" style="padding-bottom: 40px;"> Mit dieser Funktion kannst du die Internetadresse (URL) einer Sound-Datei einfügen. Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser und Betriebssystem MP3, Ogg oder AAC unterstützt. Außerdem kannst du hier auch URLs von manchen Audiohostern wie Soundcloud eingeben, um eine dort gespeicherte Audiodatei mit Player in deinem Beitrag anzuzeigen.*
<p style="clear:both;"></p>
<img src="doc/img/globe.png" width="44" height="33" alt="globe" align="left"> Wenn du dieses Symbol wählst, dann kannst du deinen Standort festlegen. Hier reicht schon eine Angabe wie "Berlin" oder "10775". Dieser Eintrag führt anschließend zu einer Suchanfrage bei Google Maps.
<p style="clear:both;"></p>
<i>* wie du Dateien hochladen kannst, erfährst du [hier](help/FAQ#upload)</i>
**Im Folgenden findest du Symbole weiterer Themen**
Cleanzero <img src="doc/img/editor_zero.png" alt="cleanzero.png" style="padding-left: 20px; vertical-align:middle;">

View File

@ -7,13 +7,14 @@
# ltriay <zapimax38@free.fr>, 2013
# Marquis_de_Carabas <olivier@free-beer.ch>, 2012
# Olivier <olivier+transifex@migeot.org>, 2011-2012
# Tubuntu, 2013
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-06-26 00:01-0700\n"
"PO-Revision-Date: 2013-07-01 15:26+0000\n"
"Last-Translator: ltriay <zapimax38@free.fr>\n"
"PO-Revision-Date: 2013-10-06 20:44+0000\n"
"Last-Translator: Tubuntu\n"
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -2906,11 +2907,11 @@ msgstr "Détermine si les liens générés doivent forcer l'usage de SSL"
#: ../../mod/admin.php:506
msgid "'Share' element"
msgstr ""
msgstr "Élément 'partage'"
#: ../../mod/admin.php:506
msgid "Activates the bbcode element 'share' for repeating items."
msgstr ""
msgstr "Active l'élément bbcode 'partage' pour la répétition d'éléments."
#: ../../mod/admin.php:507
msgid "Hide help entry from navigation menu"
@ -2966,14 +2967,14 @@ msgstr "Politique d'inscription"
#: ../../mod/admin.php:514
msgid "Maximum Daily Registrations"
msgstr ""
msgstr "Inscriptions maximum par jour"
#: ../../mod/admin.php:514
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
#: ../../mod/admin.php:515
msgid "Register text"
@ -3063,13 +3064,13 @@ msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement
#: ../../mod/admin.php:524
msgid "Don't include post content in email notifications"
msgstr ""
msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
#: ../../mod/admin.php:524
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
msgstr "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
#: ../../mod/admin.php:525
msgid "Disallow public access to addons listed in the apps menu."
@ -3254,7 +3255,7 @@ msgstr "Durée du cache en secondes"
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr ""
msgstr "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)."
#: ../../mod/admin.php:548
msgid "Path for lock file"
@ -3778,20 +3779,20 @@ msgstr "Migrer le compte"
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr ""
msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
#: ../../mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr ""
msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
#: ../../mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (statusnet/identi.ca) or from Diaspora"
msgstr ""
msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"
#: ../../mod/uimport.php:70
msgid "Account file"
@ -3809,7 +3810,7 @@ msgstr "tout le monde"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr ""
msgstr "Fonctions supplémentaires"
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
@ -3853,7 +3854,7 @@ msgstr "Réglages de courriel mis-à-jour."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr ""
msgstr "Fonctionnalités mises à jour"
#: ../../mod/settings.php:312
msgid "Passwords do not match. Password unchanged."
@ -3963,15 +3964,15 @@ msgstr "Extensions"
#: ../../mod/settings.php:684
msgid "Off"
msgstr ""
msgstr "Éteint"
#: ../../mod/settings.php:684
msgid "On"
msgstr ""
msgstr "Allumé"
#: ../../mod/settings.php:692
msgid "Additional Features"
msgstr ""
msgstr "Fonctions supplémentaires"
#: ../../mod/settings.php:705 ../../mod/settings.php:706
#, php-format
@ -4309,11 +4310,11 @@ msgstr "Montrer aux Contacts"
#: ../../mod/settings.php:1101
msgid "Default Private Post"
msgstr ""
msgstr "Message privé par défaut"
#: ../../mod/settings.php:1102
msgid "Default Public Post"
msgstr ""
msgstr "Message publique par défaut"
#: ../../mod/settings.php:1106
msgid "Default Permissions for New Posts"
@ -4772,7 +4773,7 @@ msgstr "Envoyer la requête"
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
msgstr "%1$s suit les %3$s de %2$s"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
@ -5112,7 +5113,7 @@ msgstr "Le téléversement de l'image a échoué."
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr ""
msgstr "La limite d'invitation totale est éxédée."
#: ../../mod/invite.php:49
#, php-format
@ -5125,7 +5126,7 @@ msgstr "Rejoignez-nous sur Friendica"
#: ../../mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
#: ../../mod/invite.php:89
#, php-format
@ -5342,7 +5343,7 @@ msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr ""
msgstr "Votre mot de passe a été modifié à %s"
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
@ -5364,7 +5365,7 @@ msgstr "Réinitialiser"
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr ""
msgstr "Système indisponible pour cause de maintenance"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
@ -5752,7 +5753,7 @@ msgstr "Voulez-vous vraiment supprimer cette photo ?"
#: ../../mod/photos.php:656
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
msgstr "%1$s a été identifié %2$s par %3$s"
#: ../../mod/photos.php:656
msgid "a photo"
@ -5801,7 +5802,7 @@ msgstr "Photo privée"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr ""
msgstr "Photo publique"
#: ../../mod/photos.php:1210
msgid "Edit Album"
@ -5883,11 +5884,11 @@ msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacance
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr ""
msgstr "Photo privée"
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr ""
msgstr "Photo publique"
#: ../../mod/photos.php:1529 ../../mod/content.php:707
#: ../../object/Item.php:232
@ -6437,7 +6438,7 @@ msgstr "Contact désarchivé"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr ""
msgstr "Voulez-vous vraiment supprimer ce contact?"
#: ../../mod/contacts.php:263
msgid "Contact has been removed."

View File

@ -677,8 +677,8 @@ $a->strings["Mobile system theme"] = "Thème mobile";
$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
$a->strings["SSL link policy"] = "Politique SSL pour les liens";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'usage de SSL";
$a->strings["'Share' element"] = "";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
$a->strings["'Share' element"] = "Élément 'partage'";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "Active l'élément bbcode 'partage' pour la répétition d'éléments.";
$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement.";
$a->strings["Single user instance"] = "Instance mono-utilisateur";
@ -690,8 +690,8 @@ $a->strings["Maximum length in pixels of the longest side of uploaded images. De
$a->strings["JPEG image quality"] = "Qualité JPEG des images";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.";
$a->strings["Register policy"] = "Politique d'inscription";
$a->strings["Maximum Daily Registrations"] = "";
$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "";
$a->strings["Maximum Daily Registrations"] = "Inscriptions maximum par jour";
$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet.";
$a->strings["Register text"] = "Texte d'inscription";
$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil.";
$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
@ -710,8 +710,8 @@ $a->strings["Allow threaded items"] = "Activer les commentaires imbriqués";
$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
$a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
$a->strings["Don't include post content in email notifications"] = "";
$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "";
$a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification";
$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.";
$a->strings["Disallow public access to addons listed in the apps menu."] = "";
$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
$a->strings["Don't embed private images in posts"] = "";
@ -750,7 +750,7 @@ $a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche ple
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
$a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
$a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour).";
$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage";
$a->strings["Temp path"] = "Chemin des fichiers temporaires";
$a->strings["Base path to installation"] = "Chemin de base de l'installation";
@ -874,13 +874,13 @@ $a->strings["Applications"] = "Applications";
$a->strings["No installed applications."] = "Pas d'application installée.";
$a->strings["Import"] = "Importer";
$a->strings["Move account"] = "Migrer le compte";
$a->strings["You can import an account from another Friendica server."] = "";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
$a->strings["Account file"] = "Fichier du compte";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
$a->strings["everybody"] = "tout le monde";
$a->strings["Additional features"] = "";
$a->strings["Additional features"] = "Fonctions supplémentaires";
$a->strings["Display settings"] = "Affichage";
$a->strings["Connector settings"] = "Connecteurs";
$a->strings["Plugin settings"] = "Extensions";
@ -891,7 +891,7 @@ $a->strings["Missing some important data!"] = "Il manque certaines informations
$a->strings["Update"] = "Mises-à-jour";
$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
$a->strings["Features updated"] = "";
$a->strings["Features updated"] = "Fonctionnalités mises à jour";
$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
$a->strings["Wrong password."] = "";
@ -918,9 +918,9 @@ $a->strings["No name"] = "Sans nom";
$a->strings["Remove authorization"] = "Révoquer l'autorisation";
$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
$a->strings["Plugin Settings"] = "Extensions";
$a->strings["Off"] = "";
$a->strings["On"] = "";
$a->strings["Additional Features"] = "";
$a->strings["Off"] = "Éteint";
$a->strings["On"] = "Allumé";
$a->strings["Additional Features"] = "Fonctions supplémentaires";
$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
$a->strings["enabled"] = "activé";
$a->strings["disabled"] = "désactivé";
@ -1003,8 +1003,8 @@ $a->strings["Default Post Permissions"] = "Permissions par défaut sur les artic
$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
$a->strings["Show to Groups"] = "Montrer aux groupes";
$a->strings["Show to Contacts"] = "Montrer aux Contacts";
$a->strings["Default Private Post"] = "";
$a->strings["Default Public Post"] = "";
$a->strings["Default Private Post"] = "Message privé par défaut";
$a->strings["Default Public Post"] = "Message publique par défaut";
$a->strings["Default Permissions for New Posts"] = "";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:";
$a->strings["Notification Settings"] = "Réglages de notification";
@ -1112,7 +1112,7 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora.";
$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
$a->strings["Submit Request"] = "Envoyer la requête";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
$a->strings["Global Directory"] = "Annuaire global";
$a->strings["Find on this site"] = "Trouver sur ce site";
$a->strings["Finding: "] = "Trouvé: ";
@ -1192,10 +1192,10 @@ $a->strings["File upload failed."] = "Le téléversement a échoué.";
$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
$a->strings["Total invitation limit exceeded."] = "";
$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
$a->strings["%d message sent."] = array(
0 => "%d message envoyé.",
@ -1242,12 +1242,12 @@ $a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
$a->strings["click here to login"] = "cliquez ici pour vous connecter";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
$a->strings["Your password has been changed at %s"] = "";
$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
$a->strings["Reset"] = "Réinitialiser";
$a->strings["System down for maintenance"] = "";
$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
@ -1342,7 +1342,7 @@ $a->strings["Delete Album"] = "Effacer l'album";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
$a->strings["Delete Photo"] = "Effacer la photo";
$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été identifié %2\$s par %3\$s";
$a->strings["a photo"] = "une photo";
$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de ";
$a->strings["Image file is empty."] = "Fichier image vide.";
@ -1354,7 +1354,7 @@ $a->strings["or existing album name: "] = "ou nom d'un album existant: ";
$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi";
$a->strings["Permissions"] = "Permissions";
$a->strings["Private Photo"] = "Photo privée";
$a->strings["Public Photo"] = "";
$a->strings["Public Photo"] = "Photo publique";
$a->strings["Edit Album"] = "Éditer l'album";
$a->strings["Show Newest First"] = "Plus récent d'abord";
$a->strings["Show Oldest First"] = "Plus ancien d'abord";
@ -1374,8 +1374,8 @@ $a->strings["New album name"] = "Nom du nouvel album";
$a->strings["Caption"] = "Titre";
$a->strings["Add a Tag"] = "Ajouter une étiquette";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
$a->strings["Private photo"] = "";
$a->strings["Public photo"] = "";
$a->strings["Private photo"] = "Photo privée";
$a->strings["Public photo"] = "Photo publique";
$a->strings["I like this (toggle)"] = "J'aime (bascule)";
$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
$a->strings["This is you"] = "C'est vous";
@ -1487,7 +1487,7 @@ $a->strings["Contact has been ignored"] = "Le contact a été ignoré";
$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
$a->strings["Contact has been archived"] = "Contact archivé";
$a->strings["Contact has been unarchived"] = "Contact désarchivé";
$a->strings["Do you really want to delete this contact?"] = "";
$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
$a->strings["You are sharing with %s"] = "Vous partagez avec %s";

View File

@ -0,0 +1,11 @@
Salut,
Je suis $sitename;
Les développeurs de Friendica ont publié la mise-à-jour $update récemment,
mais quand j'essaye de l'installer, quelque-chose merdoie violemment.
Il faudrait réparer ça rapidement, et je ne peux le faire tout seul. Merci de contacter un développeur Friendica
si vous ne pensez pas pouvoir m'aider tout seul. Ma base de données pourrait tout à fait être corrompue.
Le message d'erreur est '$error'.
Je suis vraiment désolé,
votre dévoué serveur friendica, situé à $siteurl