Download the Qt online installer for Windows from [qt-project.org](http://qt-project.org/downloads).
While installation you have to assemble your Qt toolchain. Take the most recent version of Qt compiled with MinGW.
Although the installer provides its own bundled MinGW compiler toolchain its recommend installing it separately because Qt is missing MSYS which is needed to compile and install OpenCV and OpenAL. Thus you can - if needed - deselect the tab "Tools".
The following steps assume that Qt is installed at "C:\Qt". If you decided to choose another location, replace corresponding parts.
###MinGW
Download the MinGW installer for Windows from [sourceforge.net](http://sourceforge.net/projects/mingw/files/Installer/).
Make sure to install MSYS (a set of Unix tools for Windows).
The following steps assume that MinGW is installed at "C:\MinGW". If you decided to choose another location, replace corresponding parts.
###Setting up Path
Add MinGW/MSYS binaries to the system path to make them globally accessible.
Open Control Panel -> System and Security -> System -> Advanced system settings -> Environment Variables...
In the second box search for the PATH variable and press Edit...
The input box "Variable value:" should already contain some directories. Each directory is separated with a semicolon.
Extend the input box by adding ";C:\MinGW\bin;C:\MinGW\msys\1.0\bin". The very first semicolon must only be added if it is missing.
###Cloning the Repository
Clone the repository (https://github.com/tux3/qTox.git) with your preferred Git client. [SmartGit](http://www.syntevo.com/smartgit/) is very nice for this task.
The following steps assume that you cloned the repository at "C:\qTox". If you decided to choose another location, replace corresponding parts.
Afterwards download OpenCV in version 2.4.9 from [sourceforge.net](http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.9/opencv-2.4.9.zip/download) and extract the content of the source archive to "C:\qTox\libs". Furthermore, create a new directory named "opencv-build" in "C:\qTox\libs".
Now you should have the two directories "opencv-2.4.9" and "opencv-build" inside your "C:\qTox\libs" directory.
Run CMake (cmake-gui) and set up the input boxes "Where is the source code:" and "Where to build the binaries" with "C:\qTox\libs\opencv-2.4.9" and "C:\qTox\libs\opencv-build". Press configure and choose "MSYS Makefiles" in the drop down menu with "Use default native compilers". To start initial configuration press Finish. Given that qTox only needs some components of OpenCV it's recommended to disable not required modules. Furthermore, this will decrease compilation time of OpenCV dramatically. Each module begins with "BUILD_opencv_" and can be disabled by deselecting its entry. Use the "Search" input box for convenience. Disable all modules except of "core", "highgui" and "imgproc" (highgui depends on imgproc and will automatically be disabled if imgproc is disabled). For maximum performance search for "CMAKE_BUILD_TYPE" and set this value to "Release". Finally, make sure "CMAKE_INSTALL_PREFIX" points to "C:\qTox\libs\opencv-build\install" (should be by default). To update the configuration press Configure again. To generate the Makefiles press Generate.
<aname="linux"/>
##Linux
###Simple install
Easy qTox install is provided for variety of distributions:
Open a new command prompt within "C:\qTox\libs\opencv-build" (HINT: Use shift + right click -> "Open command window here" on the directory within Windows Explorer). Compile and install OpenCV with the following command. It's not recommended to use -j for multicore compilation, because it freezes the terminal from time to time.
```bash
make
make install
```
If your distribution is not listed, or you want/need to compile qTox, there are provided instructions.
After OpenCV was successfully installed to "C:\qTox\libs\opencv-build\install" copy the dlls "libopencv_core249.dll", "libopencv_highgui249.dll" and "libopencv_imgproc249.dll" located at "C:\qTox\libs\opencv-build\install\x86\mingw\bin" to "C:\qTox\libs\lib". Afterwards copy the content of the directory "C:\qTox\libs\opencv-build\install\include" to "C:\qTox\libs\include". Finally, you have to patch the file "C:\qTox\libs\include\opencv2\opencv.hpp" because it includes all modules of OpenCV regardless of your configuration. Open this file with your preferred text editor and remove all includes except of "opencv2/core/core_c.h", "opencv2/core/core.hpp", "opencv2/imgproc/imgproc_c.h", "opencv2/imgproc/imgproc.hpp", "opencv2/highgui/highgui_c.h" and "opencv2/highgui/highgui.hpp". OpenCV is now ready to use. Feel free to delete the directories "opencv-2.4.9" and "opencv-build", but you don't need to.
**Please note that installing toxcore/qTox from AUR is not supported**, although installing other dependencies, provided that they met requirements, should be fine, unless you are installing cryptography library from AUR, which should rise red flags by itself…
###OpenAL Soft
As for OpenCV there are no prebuild packages of OpenAL Softe compiled with MinGW, but the installation process is very similar to OpenCV. Download the most recent source archive of OpenAL Soft from [http://kcat.strangesoft.net](http://kcat.strangesoft.net/openal.html#download). Extract its content to "C:\qTox\libs". Besides the source folder itself you'll find the file "pax_global_header". It is not required and can be deleted. Create the directory "openal-build" next to source folder. Now you should have the two directories "openal-soft-x.y.z" where x.y.z is the version of OpenAL and "openal-build" inside your "C:\qTox\libs" directory. Run CMake (cmake-gui) and setup the source and build location. Run the initial configuration and use "MSYS Makefiles" with "Use default native compilers". The only thing you need to configure is "CMAKE_INSTALL_PREFIX" which does not point to "C:\qTox\libs\openal-build\install" by default. Configure the project and generate the Makefiles. Compile and install OpenAL Soft with:
```bash
make
make install
```
Copy the dll "OpenAL32.dll" located at "C:\qTox\libs\openal-build\install\bin" to "C:\qTox\libs\lib". Finally, copy the directory "AL" located at "C:\qTox\libs\openal-build\install\include" to "C:\qTox\libs\include". Unlike OpenCV you don't need to patch any files. Feel free to delete the directories "openal-soft-x.y.z" and "openal-build", but you don't need to.
----
<aname="linux"/>
##Linux
Most of the dependencies should be available through your package manger. You may either follow the directions below, or simply run `./simple_make.sh` after cloning, which will attempt to automatically download dependencies followed by compilation.
###Cloning the Repository
In order to clone the qTox repository you need Git.
Debian:
Arch Linux:
```bash
sudo apt-get install git
sudo pacman -S --needed git
```
Ubuntu:
Debian:
```bash
sudo apt-get install git
```
Arch Linux:
Fedora:
```bash
sudo pacman -S --needed git
yum install git
```
Fedora:
Ubuntu:
```bash
yum install git
sudo apt-get install git
```
Afterwards open a new Terminal, change to a directory of your choice and clone the repository:
@ -113,19 +64,14 @@ The following steps assumes that you cloned the repository at "/home/user/qTox".
@@ -113,19 +64,14 @@ The following steps assumes that you cloned the repository at "/home/user/qTox".
Now you can either follow the instructions at https://github.com/irungentoo/toxcore/blob/master/INSTALL.md#unix or use the "bootstrap.sh" script located at "/home/user/qTox".
@ -180,6 +142,7 @@ After installing the required dependencies, run `bootstrap.sh` and then run the
@@ -180,6 +142,7 @@ After installing the required dependencies, run `bootstrap.sh` and then run the
`buildPackages.sh` script, found in the tools folder. It will automatically get the
packages necessary for building .debs, so be prepared to type your password for sudo.
<aname="osx"/>
##OS X
@ -190,6 +153,7 @@ Since https://github.com/ReDetection/homebrew-qtox you can easily install qtox w
@@ -190,6 +153,7 @@ Since https://github.com/ReDetection/homebrew-qtox you can easily install qtox w
brew install --HEAD ReDetection/qtox/qtox
```
###OSX Full Install Guide
This guide is intended for people who wish to use an existing or new ProjectTox-Core installation separate to the bundled installation with qTox, if you do not wish to use a separate installation you can skip to the section titled 'Final Steps'.
@ -239,3 +203,65 @@ in the qTox directory, or if you are using the bundled tox core installation, yo
@@ -239,3 +203,65 @@ in the qTox directory, or if you are using the bundled tox core installation, yo
make
```
Assuming all went well you should now have a qTox.app file within the directory. Double click and it should open!
<aname="windows"/>
##Windows
###Qt
Download the Qt online installer for Windows from [qt-project.org](http://qt-project.org/downloads).
While installation you have to assemble your Qt toolchain. Take the most recent version of Qt compiled with MinGW.
Although the installer provides its own bundled MinGW compiler toolchain its recommend installing it separately because Qt is missing MSYS which is needed to compile and install OpenCV and OpenAL. Thus you can - if needed - deselect the tab "Tools".
The following steps assume that Qt is installed at "C:\Qt". If you decided to choose another location, replace corresponding parts.
###MinGW
Download the MinGW installer for Windows from [sourceforge.net](http://sourceforge.net/projects/mingw/files/Installer/).
Make sure to install MSYS (a set of Unix tools for Windows).
The following steps assume that MinGW is installed at "C:\MinGW". If you decided to choose another location, replace corresponding parts.
###Setting up Path
Add MinGW/MSYS binaries to the system path to make them globally accessible.
Open Control Panel -> System and Security -> System -> Advanced system settings -> Environment Variables...
In the second box search for the PATH variable and press Edit...
The input box "Variable value:" should already contain some directories. Each directory is separated with a semicolon.
Extend the input box by adding ";C:\MinGW\bin;C:\MinGW\msys\1.0\bin". The very first semicolon must only be added if it is missing.
###Cloning the Repository
Clone the repository (https://github.com/tux3/qTox.git) with your preferred Git client. [SmartGit](http://www.syntevo.com/smartgit/) is very nice for this task.
The following steps assume that you cloned the repository at "C:\qTox". If you decided to choose another location, replace corresponding parts.
Afterwards download OpenCV in version 2.4.9 from [sourceforge.net](http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.9/opencv-2.4.9.zip/download) and extract the content of the source archive to "C:\qTox\libs". Furthermore, create a new directory named "opencv-build" in "C:\qTox\libs".
Now you should have the two directories "opencv-2.4.9" and "opencv-build" inside your "C:\qTox\libs" directory.
Run CMake (cmake-gui) and set up the input boxes "Where is the source code:" and "Where to build the binaries" with "C:\qTox\libs\opencv-2.4.9" and "C:\qTox\libs\opencv-build". Press configure and choose "MSYS Makefiles" in the drop down menu with "Use default native compilers". To start initial configuration press Finish. Given that qTox only needs some components of OpenCV it's recommended to disable not required modules. Furthermore, this will decrease compilation time of OpenCV dramatically. Each module begins with "BUILD_opencv_" and can be disabled by deselecting its entry. Use the "Search" input box for convenience. Disable all modules except of "core", "highgui" and "imgproc" (highgui depends on imgproc and will automatically be disabled if imgproc is disabled). For maximum performance search for "CMAKE_BUILD_TYPE" and set this value to "Release". Finally, make sure "CMAKE_INSTALL_PREFIX" points to "C:\qTox\libs\opencv-build\install" (should be by default). To update the configuration press Configure again. To generate the Makefiles press Generate.
Open a new command prompt within "C:\qTox\libs\opencv-build" (HINT: Use shift + right click -> "Open command window here" on the directory within Windows Explorer). Compile and install OpenCV with the following command. It's not recommended to use -j for multicore compilation, because it freezes the terminal from time to time.
```bash
make
make install
```
After OpenCV was successfully installed to "C:\qTox\libs\opencv-build\install" copy the dlls "libopencv_core249.dll", "libopencv_highgui249.dll" and "libopencv_imgproc249.dll" located at "C:\qTox\libs\opencv-build\install\x86\mingw\bin" to "C:\qTox\libs\lib". Afterwards copy the content of the directory "C:\qTox\libs\opencv-build\install\include" to "C:\qTox\libs\include". Finally, you have to patch the file "C:\qTox\libs\include\opencv2\opencv.hpp" because it includes all modules of OpenCV regardless of your configuration. Open this file with your preferred text editor and remove all includes except of "opencv2/core/core_c.h", "opencv2/core/core.hpp", "opencv2/imgproc/imgproc_c.h", "opencv2/imgproc/imgproc.hpp", "opencv2/highgui/highgui_c.h" and "opencv2/highgui/highgui.hpp". OpenCV is now ready to use. Feel free to delete the directories "opencv-2.4.9" and "opencv-build", but you don't need to.
###OpenAL Soft
As for OpenCV there are no prebuild packages of OpenAL Softe compiled with MinGW, but the installation process is very similar to OpenCV. Download the most recent source archive of OpenAL Soft from [http://kcat.strangesoft.net](http://kcat.strangesoft.net/openal.html#download). Extract its content to "C:\qTox\libs". Besides the source folder itself you'll find the file "pax_global_header". It is not required and can be deleted. Create the directory "openal-build" next to source folder. Now you should have the two directories "openal-soft-x.y.z" where x.y.z is the version of OpenAL and "openal-build" inside your "C:\qTox\libs" directory. Run CMake (cmake-gui) and setup the source and build location. Run the initial configuration and use "MSYS Makefiles" with "Use default native compilers". The only thing you need to configure is "CMAKE_INSTALL_PREFIX" which does not point to "C:\qTox\libs\openal-build\install" by default. Configure the project and generate the Makefiles. Compile and install OpenAL Soft with:
```bash
make
make install
```
Copy the dll "OpenAL32.dll" located at "C:\qTox\libs\openal-build\install\bin" to "C:\qTox\libs\lib". Finally, copy the directory "AL" located at "C:\qTox\libs\openal-build\install\include" to "C:\qTox\libs\include". Unlike OpenCV you don't need to patch any files. Feel free to delete the directories "openal-soft-x.y.z" and "openal-build", but you don't need to.
@ -252,6 +257,11 @@ Soll der Proxy ignoriert und eine direkte Internetverbindung genutzt werden?</tr
@@ -252,6 +257,11 @@ Soll der Proxy ignoriert und eine direkte Internetverbindung genutzt werden?</tr
@ -1629,4 +1644,4 @@ Es wird beim Neustart von qTox installiert.</translation>
@@ -1629,4 +1644,4 @@ Es wird beim Neustart von qTox installiert.</translation>
<translation>Senden der Nachricht fehlgeschlagen</translation>
@ -123,19 +123,19 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -123,19 +123,19 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
<message>
<source>qTox needs to use the Tox DNS, but can't do it through a proxy
Ignore the proxy and connect to the Internet directly ?</source>
<translationtype="vanished">qTox as besoin d'utiliser le DNS Tox, mais ne peut pas le faire avec un proxy
<translationtype="vanished">qTox a besoin d'utiliser le DNS Tox, mais ne peut pas le faire avec un proxy
Ignorer le proxy et se connecter directement à Internet ?</translation>
@ -178,22 +178,22 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -178,22 +178,22 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@ -229,7 +229,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -229,7 +229,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
<message>
<locationfilename="../src/core.cpp"line="256"/>
<source>Toxing on qTox</source>
<translation>Toxer avec qTox</translation>
<translation>Je Tox sur qTox</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="257"/>
@ -239,7 +239,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -239,7 +239,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
<message>
<locationfilename="../src/core.cpp"line="746"/>
<source>Friend is already added</source>
<translation>Cet ami est déjà dans cos contact</translation>
<translation>Ce contact est déjà dans vos contacts</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="1176"/>
@ -249,7 +249,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -249,7 +249,7 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
<message>
<locationfilename="../src/core.cpp"line="1176"/>
<source>The .tox file is encrypted, but encryption was not checked, continuing regardless.</source>
<translation>Le fichier .tox est chiffré, mais l'encryption n'as pas été activée. Le problème sera ignoré.</translation>
<translation>Le fichier .tox est chiffré, mais le chiffrement n'a pas été activé. Le problème sera ignoré.</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="1183"/>
@ -261,14 +261,14 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
@@ -261,14 +261,14 @@ Ignorer le proxy et se connecter directement à Internet ?</translation>
<locationfilename="../src/core.cpp"line="1197"/>
<locationfilename="../src/core.cpp"line="1261"/>
<source>Password error</source>
<translation>Mod de passe invalide</translation>
<translation>Mot de passe invalide</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="1185"/>
<locationfilename="../src/core.cpp"line="1261"/>
<source>Failed to setup password.
Empty password.</source>
<translation>Impossible de mettre ne place le mot de passe.
<translation>Impossible de mettre en place le mot de passe.
Le mot de passe est vide.</translation>
</message>
<message>
@ -289,7 +289,7 @@ Le mot de passe est vide.</translation>
@@ -289,7 +289,7 @@ Le mot de passe est vide.</translation>
<message>
<locationfilename="../src/core.cpp"line="1198"/>
<source>Wrong password has been entered</source>
<translation>Un mauvais mot de passe à été entré</translation>
<translation>Un mauvais mot de passe a été entré</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="1259"/>
@ -316,7 +316,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -316,7 +316,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<message>
<locationfilename="../src/core.cpp"line="1277"/>
<source>Due to incorret password logging will be disabled</source>
<translation>À cause d'un mauvais mot de passe, l'historique sera désactivé</translation>
<translation>Due à l'utilisation d'un mauvais mot de passe, l'historique sera désactivé</translation>
</message>
<message>
<locationfilename="../src/core.cpp"line="1350"/>
@ -326,7 +326,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -326,7 +326,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<message>
<locationfilename="../src/core.cpp"line="1350"/>
<source>Will be saved without encryption!</source>
<translation>L'historique sera sauvegardé sans être chiffré!</translation>
<translation>L'historique sera sauvegardé sans être chiffré!</translation>
</message>
</context>
<context>
@ -380,12 +380,12 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -380,12 +380,12 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -395,7 +395,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -395,7 +395,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -422,7 +422,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -422,7 +422,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -458,7 +458,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -458,7 +458,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<message>
<source>Disable global auto accept</source>
<comment>context menu entry</comment>
<translationtype="vanished">Désactiver l'acceptation automatique de fichier</translation>
<translationtype="vanished">Désactiver le téléchargement automatique de fichiers</translation>
@ -470,7 +470,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -470,7 +470,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<comment>Menu to remove the friend from our friendlist</comment>
<translation>Supprimer ami</translation>
<translation>Supprimer ce contact</translation>
</message>
</context>
<context>
@ -502,7 +502,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -502,7 +502,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<source>You can't disconnect while a call is active!</source>
<comment>popup text</comment>
<translation>Vous ne pouvez pas vous déconnecter avec un appel en cours!</translation>
<translation>Vous ne pouvez pas vous déconnecter avec un appel en cours!</translation>
</message>
</context>
<context>
@ -520,7 +520,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -520,7 +520,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<source>The translation may not load until qTox restarts.</source>
<translation>La translation peut ne pas se charger jusqu'à ce que qTox redémarre.</translation>
<translation>La traduction peut ne pas prendre effet immédiatement. Redémarrez qTox si ce n'est pas le cas.</translation>
</message>
<message>
<source>Translation:</source>
@ -550,7 +550,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -550,7 +550,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -564,7 +564,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -564,7 +564,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
</message>
<message>
<source>Auto away after (0 to disable):</source>
<translationtype="vanished">Auto-absent après (0 pour désactiver):</translation>
<translationtype="vanished">Se rendre absent après (0 pour désactiver):</translation>
@ -620,7 +620,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -620,7 +620,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -640,7 +640,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -640,7 +640,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -713,7 +713,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -713,7 +713,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<message>
<source>This allows, e.g., toxing over Tor. It adds load to the Tox network however, so use only when necessary.</source>
<translationtype="vanished">Permet par exemple d'utiliser Tox à travers Tor, mais ce n'est à utiliser que si nécessaire, car cela ralenti le réseau Tox.</translation>
<translationtype="vanished">Permet par exemple d'utiliser Tox à travers Tor, mais ce n'est à utiliser que si nécessaire car cela ralenti le réseau Tox.</translation>
</message>
<message>
<source>Disable UDP (not recommended)</source>
@ -748,7 +748,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -748,7 +748,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -768,7 +768,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -768,7 +768,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -818,7 +818,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -818,7 +818,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -844,7 +844,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -844,7 +844,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -894,7 +894,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -894,7 +894,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -912,7 +912,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -912,7 +912,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -936,13 +936,13 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -936,13 +936,13 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -986,7 +986,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -986,7 +986,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -1033,7 +1033,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -1033,7 +1033,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -1045,7 +1045,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -1045,7 +1045,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -1093,12 +1093,12 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -1093,12 +1093,12 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -1125,7 +1125,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -1125,7 +1125,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@ -1145,7 +1145,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
@@ -1145,7 +1145,7 @@ Voulez-vous essayer un mot de passe différent?</translation>
<source>You already have history log file encrypted with different password
Do you want to delete old history file?</source>
<translation>Vous avez déjà un historique chiffré avec un autre mot de passe
<source>An update is available, do you want to download it now ?
It will be installed when qTox restarts.</source>
<translation>Une mise à jour est disponible, voulez vous la télécharger maintenant ?
Elle sera installée au prochain démarrage de qTox</translation>
Elle sera installée au prochain démarrage de qTox.</translation>
</message>
<message>
<locationfilename="../src/main.cpp"line="68"/>
<source>Tox URI to parse</source>
<translation>URI Tox à utiliser</translation>
<translation>URL Tox à utiliser</translation>
</message>
</context>
<context>
@ -1255,7 +1255,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1255,7 +1255,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
<translation>Répetez le mot de passe</translation>
<translation>Retapez le mot de passe</translation>
</message>
</context>
<context>
@ -1270,13 +1270,13 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1270,13 +1270,13 @@ Elle sera installée au prochain démarrage de qTox</translation>
<locationfilename="../src/toxdns.cpp"line="70"/>
<source>This address does not exist</source>
<comment>The DNS gives the Tox ID associated to toxme.se addresses</comment>
<comment>The DNS gives the Tox ID associated to toxme.se addresses</comment>
<translation>Erreur en consultant le serveur DNS</translation>
<translation>Une erreur s'est produite en consultant le serveur DNS</translation>
</message>
<message>
<locationfilename="../src/toxdns.cpp"line="82"/>
@ -1316,22 +1316,22 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1316,22 +1316,22 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1354,7 +1354,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1354,7 +1354,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1368,7 +1368,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1368,7 +1368,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1383,7 +1383,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1383,7 +1383,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1395,7 +1395,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1395,7 +1395,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1443,18 +1443,18 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1443,18 +1443,18 @@ Elle sera installée au prochain démarrage de qTox</translation>
<source>toxcore failed to start with your proxy settings. qTox cannot run; please modify your settings and restart.</source>
<comment>popup text</comment>
<translation>Toxcore n'as pas pu démarrer avec ces paramètres de proxy, qTox ne peut pas continuer; merci de modifier vos paramètres et redémarrer.</translation>
<translation>ToxCore n'as pas pu démarrer avec ces paramètres proxy. Merci de modifier ou désactiver vos paramètres et redémarrer l'application.</translation>
@ -1469,13 +1469,13 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1469,13 +1469,13 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1487,7 +1487,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1487,7 +1487,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -1510,7 +1510,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@@ -1510,7 +1510,7 @@ Elle sera installée au prochain démarrage de qTox</translation>
@ -226,6 +226,11 @@ Ignorare le impostazioni del proxy e connettersi direttamente alla rete Tox?</tr
@@ -226,6 +226,11 @@ Ignorare le impostazioni del proxy e connettersi direttamente alla rete Tox?</tr
<translation>Disabilitando questo sarà possibile usare qTox con Tor. Tuttavia verrà aggiunto carico alla rete Tox, quindi disabilitare solo se necessario.</translation>
@ -1417,134 +1417,134 @@ Verrà installata al riavvio del programma.</translation>
@@ -1417,134 +1417,134 @@ Verrà installata al riavvio del programma.</translation>
<source>toxcore failed to start with your proxy settings. qTox cannot run; please modify your settings and restart.</source>
<comment>popup text</comment>
<translation>Impossibile avviare Toxcore con le tue impostazione proxy.\nqTox non può funzionare correttamente, per favore modifica le impostazioni e riavvia il programma.</translation>