mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Add a all message read button to application task bar icon #LINQT-2072
This commit is contained in:
parent
4a05b727c6
commit
7825646edd
10 changed files with 297 additions and 213 deletions
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
#include "App.hpp"
|
||||
|
||||
#include <QAction>
|
||||
#include <QCoreApplication>
|
||||
#include <QDirIterator>
|
||||
#include <QFileSelector>
|
||||
|
|
@ -631,12 +630,15 @@ void App::initCore() {
|
|||
}
|
||||
auto window = qobject_cast<QQuickWindow *>(obj);
|
||||
setMainWindow(window);
|
||||
#ifndef __APPLE__
|
||||
#if defined(__APPLE__)
|
||||
setMacOSDockActions();
|
||||
#else
|
||||
// Enable TrayIconSystem.
|
||||
if (!QSystemTrayIcon::isSystemTrayAvailable())
|
||||
qWarning("System tray not found on this system.");
|
||||
else setSysTrayIcon();
|
||||
#endif // ifndef __APPLE__
|
||||
#endif // if defined(__APPLE__)
|
||||
|
||||
static bool firstOpen = true;
|
||||
if (!firstOpen || !mParser->isSet("minimized")) {
|
||||
lDebug() << log().arg("Openning window");
|
||||
|
|
@ -1310,6 +1312,7 @@ bool App::event(QEvent *event) {
|
|||
//-----------------------------------------------------------
|
||||
|
||||
void App::setSysTrayIcon() {
|
||||
qDebug() << "setSysTrayIcon";
|
||||
QQuickWindow *root = getMainWindow();
|
||||
QSystemTrayIcon *systemTrayIcon =
|
||||
(mSystemTrayIcon ? mSystemTrayIcon
|
||||
|
|
@ -1341,6 +1344,9 @@ void App::setSysTrayIcon() {
|
|||
QAction *quitAction = new QAction(tr("quit_action"), root);
|
||||
root->connect(quitAction, &QAction::triggered, this, &App::quit);
|
||||
|
||||
//: "Mark all as read"
|
||||
QAction *markAllReadAction = createMarkAsReadAction(root);
|
||||
|
||||
// trayIcon: Left click actions.
|
||||
QMenu *menu = mSystemTrayIcon ? mSystemTrayIcon->contextMenu() : new QMenu();
|
||||
menu->clear();
|
||||
|
|
@ -1350,6 +1356,7 @@ void App::setSysTrayIcon() {
|
|||
menu->addAction(restoreAction);
|
||||
menu->addSeparator();
|
||||
}
|
||||
menu->addAction(markAllReadAction);
|
||||
menu->addAction(quitAction);
|
||||
if (!mSystemTrayIcon) {
|
||||
systemTrayIcon->setContextMenu(menu); // This is a Qt bug. We cannot call setContextMenu more than once. So
|
||||
|
|
@ -1369,6 +1376,24 @@ void App::setSysTrayIcon() {
|
|||
if (!QSystemTrayIcon::isSystemTrayAvailable()) qInfo() << "System tray is not available";
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------
|
||||
// MacOS dock menu actions
|
||||
//-----------------------------------------------------------
|
||||
|
||||
#ifdef __APPLE__
|
||||
/**
|
||||
* Set more actions to the MacOS Dock actions
|
||||
* WARNING: call this function only on macOS
|
||||
*/
|
||||
void App::setMacOSDockActions() {
|
||||
QMenu *menu = new QMenu();
|
||||
QQuickWindow *root = getMainWindow();
|
||||
QAction *markAllReadAction = createMarkAsReadAction(root);
|
||||
menu->addAction(markAllReadAction);
|
||||
menu->setAsDockMenu();
|
||||
}
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------
|
||||
// Locale TODO - App only in French now.
|
||||
//-----------------------------------------------------------
|
||||
|
|
@ -1417,4 +1442,15 @@ float App::getScreenRatio() const {
|
|||
|
||||
void App::setScreenRatio(float ratio) {
|
||||
mScreenRatio = ratio;
|
||||
}
|
||||
|
||||
QAction *App::createMarkAsReadAction(QQuickWindow *window) {
|
||||
QAction *markAllReadAction = new QAction(tr("mark_all_read_action"), window);
|
||||
window->connect(markAllReadAction, &QAction::triggered, this, [this] {
|
||||
lDebug() << "Mark all as read";
|
||||
emit mAccountList->lResetMissedCalls();
|
||||
emit mAccountList->lResetUnreadMessages();
|
||||
mCoreModelConnection->invokeToModel([this]() { CoreModel::getInstance()->unreadNotificationsChanged(); });
|
||||
});
|
||||
return markAllReadAction;
|
||||
}
|
||||
|
|
@ -18,6 +18,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <QAction>
|
||||
#include <QCommandLineParser>
|
||||
#include <QQmlApplicationEngine>
|
||||
#include <QSharedPointer>
|
||||
|
|
@ -189,6 +190,8 @@ signals:
|
|||
|
||||
private:
|
||||
void createCommandParser();
|
||||
QAction *createMarkAsReadAction(QQuickWindow *window);
|
||||
void setMacOSDockActions(); // Should only be called on MacOS
|
||||
void setAutoStart(bool enabled);
|
||||
void setLocale(QString configLocale);
|
||||
|
||||
|
|
|
|||
|
|
@ -256,6 +256,14 @@ void AccountCore::setSelf(QSharedPointer<AccountCore> me) {
|
|||
mAccountModelConnection->makeConnectToCore(&AccountCore::lResetMissedCalls, [this]() {
|
||||
mAccountModelConnection->invokeToModel([this]() { mAccountModel->resetMissedCallsCount(); });
|
||||
});
|
||||
mAccountModelConnection->makeConnectToCore(&AccountCore::lResetUnreadMessages, [this]() {
|
||||
mAccountModelConnection->invokeToModel([this]() {
|
||||
auto chatRooms = mAccountModel->getChatRooms();
|
||||
for (auto const &chatRoom : chatRooms) {
|
||||
chatRoom->markAsRead();
|
||||
}
|
||||
});
|
||||
});
|
||||
mAccountModelConnection->makeConnectToCore(&AccountCore::lRefreshNotifications, [this]() {
|
||||
mAccountModelConnection->invokeToModel([this]() { mAccountModel->refreshUnreadNotifications(); });
|
||||
});
|
||||
|
|
|
|||
|
|
@ -170,6 +170,18 @@ void AccountList::setInitialized(bool init) {
|
|||
}
|
||||
}
|
||||
|
||||
void AccountList::lResetMissedCalls() {
|
||||
for (auto &accountCore : getSharedList<AccountCore>()) {
|
||||
accountCore->lResetMissedCalls();
|
||||
}
|
||||
}
|
||||
|
||||
void AccountList::lResetUnreadMessages() {
|
||||
for (auto &accountCore : getSharedList<AccountCore>()) {
|
||||
emit accountCore->lResetUnreadMessages();
|
||||
}
|
||||
}
|
||||
|
||||
QVariant AccountList::data(const QModelIndex &index, int role) const {
|
||||
int row = index.row();
|
||||
if (!index.isValid() || row < 0 || row >= mList.count()) return QVariant();
|
||||
|
|
|
|||
|
|
@ -51,6 +51,8 @@ public:
|
|||
|
||||
bool isInitialized() const;
|
||||
void setInitialized(bool init);
|
||||
void lResetMissedCalls(); // Reset missed calls of all accounts
|
||||
void lResetUnreadMessages(); // Reset unread messages of all accounts
|
||||
|
||||
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||
signals:
|
||||
|
|
|
|||
|
|
@ -634,98 +634,104 @@
|
|||
<context>
|
||||
<name>App</name>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="351"/>
|
||||
<location filename="../../core/App.cpp" line="357"/>
|
||||
<source>remote_provisioning_dialog</source>
|
||||
<extracomment>Voulez-vous télécharger et appliquer la configuration depuis cette adresse ?</extracomment>
|
||||
<translation>Möchten Sie die Remote-Konfiguration von dieser Adresse herunterladen und anwenden?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="388"/>
|
||||
<location filename="../../core/App.cpp" line="641"/>
|
||||
<location filename="../../core/App.cpp" line="394"/>
|
||||
<location filename="../../core/App.cpp" line="648"/>
|
||||
<source>info_popup_error_title</source>
|
||||
<extracomment>Error</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="389"/>
|
||||
<location filename="../../core/App.cpp" line="643"/>
|
||||
<location filename="../../core/App.cpp" line="395"/>
|
||||
<location filename="../../core/App.cpp" line="650"/>
|
||||
<source>info_popup_configuration_failed_message</source>
|
||||
<extracomment>Remote provisioning failed : %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="637"/>
|
||||
<location filename="../../core/App.cpp" line="644"/>
|
||||
<source>configuration_error_detail</source>
|
||||
<extracomment>not reachable</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="902"/>
|
||||
<location filename="../../core/App.cpp" line="916"/>
|
||||
<source>application_description</source>
|
||||
<extracomment>"A free and open source SIP video-phone."</extracomment>
|
||||
<translation>Ein kostenloses Open-Source SIP Video-Telefon.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="904"/>
|
||||
<location filename="../../core/App.cpp" line="918"/>
|
||||
<source>command_line_arg_order</source>
|
||||
<extracomment>"Send an order to the application towards a command line"</extracomment>
|
||||
<translation>Kommandozeilen-Befehl an die Anwendung schicken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="908"/>
|
||||
<location filename="../../core/App.cpp" line="922"/>
|
||||
<source>command_line_option_show_help</source>
|
||||
<translation>Zeige Hilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="913"/>
|
||||
<location filename="../../core/App.cpp" line="927"/>
|
||||
<source>command_line_option_show_app_version</source>
|
||||
<translation type="unfinished">Zeige App-Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="921"/>
|
||||
<location filename="../../core/App.cpp" line="935"/>
|
||||
<source>command_line_option_config_to_fetch</source>
|
||||
<extracomment>"Specify the linphone configuration file to be fetched. It will be merged with the current configuration."</extracomment>
|
||||
<translation>Abzurufende Linphone-Konfigurationsdatei angeben. Sie wird mit der aktuellen Konfiguration zusammengeführt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="923"/>
|
||||
<location filename="../../core/App.cpp" line="937"/>
|
||||
<source>command_line_option_config_to_fetch_arg</source>
|
||||
<extracomment>"URL, path or file"</extracomment>
|
||||
<translation>URL, Pfad oder Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="928"/>
|
||||
<location filename="../../core/App.cpp" line="942"/>
|
||||
<source>command_line_option_minimized</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="931"/>
|
||||
<location filename="../../core/App.cpp" line="945"/>
|
||||
<source>command_line_option_log_to_stdout</source>
|
||||
<translation>Debug-Informationen auf der Standardausgabe ausgeben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="934"/>
|
||||
<location filename="../../core/App.cpp" line="948"/>
|
||||
<source>command_line_option_print_app_logs_only</source>
|
||||
<extracomment>"Print only logs from the application"</extracomment>
|
||||
<translation>Nur Anwendungs-Logs ausgeben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>hide_action</source>
|
||||
<extracomment>"Cacher" "Afficher"</extracomment>
|
||||
<translation>Ausblenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>show_action</source>
|
||||
<translation>Zeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1319"/>
|
||||
<location filename="../../core/App.cpp" line="1333"/>
|
||||
<source>quit_action</source>
|
||||
<extracomment>"Quitter"</extracomment>
|
||||
<translation>Beenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1337"/>
|
||||
<source>mark_all_read_action</source>
|
||||
<extracomment>"Mark all as read"</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AuthenticationDialog</name>
|
||||
|
|
@ -2830,13 +2836,13 @@ Error</extracomment>
|
|||
<context>
|
||||
<name>ContactListView</name>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="179"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="183"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="181"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="185"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
|
@ -2980,26 +2986,26 @@ Error</extracomment>
|
|||
<translation>Zurzeit keine Kontakte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="346"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="345"/>
|
||||
<source>more_info_accessible_name</source>
|
||||
<extracomment>More info %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="362"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="361"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="360"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="359"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="382"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="738"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="381"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="737"/>
|
||||
<source>contact_details_edit</source>
|
||||
<extracomment>Edit
|
||||
----------
|
||||
|
|
@ -3007,19 +3013,19 @@ Error</extracomment>
|
|||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="396"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="395"/>
|
||||
<source>contact_call_action</source>
|
||||
<extracomment>"Appel"</extracomment>
|
||||
<translation>Anrufen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="407"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="406"/>
|
||||
<source>contact_message_action</source>
|
||||
<extracomment>"Message"</extracomment>
|
||||
<translation>Nachricht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="421"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="420"/>
|
||||
<source>contact_video_call_action</source>
|
||||
<extracomment>"Appel vidéo"</extracomment>
|
||||
<translation>Videoanruf</translation>
|
||||
|
|
@ -3045,133 +3051,133 @@ Error</extracomment>
|
|||
<translation type="vanished">Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="469"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="468"/>
|
||||
<source>contact_details_numbers_and_addresses_title</source>
|
||||
<extracomment>"Coordonnées"</extracomment>
|
||||
<translation>Kontaktinformationen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="525"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="524"/>
|
||||
<source>call_adress_accessible_name</source>
|
||||
<extracomment>Call address %1</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="558"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="557"/>
|
||||
<source>contact_details_company_name</source>
|
||||
<extracomment>"Société :"</extracomment>
|
||||
<translation>Unternehmen :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="579"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="578"/>
|
||||
<source>contact_details_job_title</source>
|
||||
<extracomment>"Poste :"</extracomment>
|
||||
<translation>Beruf :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="601"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="600"/>
|
||||
<source>contact_details_medias_title</source>
|
||||
<extracomment>"Medias"</extracomment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="614"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="632"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="613"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="631"/>
|
||||
<source>contact_details_medias_subtitle</source>
|
||||
<extracomment>"Afficher les medias partagés"</extracomment>
|
||||
<translation>Geteilte Medien anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="638"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="637"/>
|
||||
<source>contact_details_trust_title</source>
|
||||
<extracomment>"Confiance"</extracomment>
|
||||
<translation>Vertrauen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="645"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="644"/>
|
||||
<source>contact_dialog_devices_trust_title</source>
|
||||
<extracomment>"Niveau de confiance - Appareils vérifiés"</extracomment>
|
||||
<translation>Vertrauenslevel - Verifizierte Geräte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="654"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="653"/>
|
||||
<source>contact_details_no_device_found</source>
|
||||
<extracomment>"Aucun appareil"</extracomment>
|
||||
<translation>Kein Gerät</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="679"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="678"/>
|
||||
<source>contact_device_without_name</source>
|
||||
<extracomment>"Appareil inconnu"</extracomment>
|
||||
<translation>Unbekanntes Gerät</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="700"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="699"/>
|
||||
<source>contact_make_call_check_device_trust</source>
|
||||
<extracomment>"Vérifier"</extracomment>
|
||||
<translation>Überprüfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="702"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="701"/>
|
||||
<source>verify_device_accessible_name</source>
|
||||
<extracomment>Verify %1 device</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="728"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="727"/>
|
||||
<source>contact_details_actions_title</source>
|
||||
<extracomment>"Autres actions"</extracomment>
|
||||
<translation>Weitere Aktionen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="758"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="757"/>
|
||||
<source>contact_details_remove_from_favourites</source>
|
||||
<extracomment>"Retirer des favoris"</extracomment>
|
||||
<translation>Aus Favoriten entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="760"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="759"/>
|
||||
<source>contact_details_add_to_favourites</source>
|
||||
<extracomment>"Ajouter aux favoris"</extracomment>
|
||||
<translation>Zu Favoriten hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="777"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="776"/>
|
||||
<source>contact_details_share</source>
|
||||
<extracomment>"Partager"</extracomment>
|
||||
<translation>Teilen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="788"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="787"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="790"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="789"/>
|
||||
<source>contact_details_share_error_mesage</source>
|
||||
<extracomment>"La création du fichier vcard a échoué"</extracomment>
|
||||
<translation>VCard-Erstellung fehlgeschlagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="795"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="794"/>
|
||||
<source>contact_details_share_success_title</source>
|
||||
<extracomment>"VCard créée"</extracomment>
|
||||
<translation>VCard erstellt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="797"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="796"/>
|
||||
<source>contact_details_share_success_mesage</source>
|
||||
<extracomment>"VCard du contact enregistrée dans %1"</extracomment>
|
||||
<translation>VCard wurde in %1 gespeichert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="800"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="799"/>
|
||||
<source>contact_details_share_email_title</source>
|
||||
<extracomment>"Partage de contact"</extracomment>
|
||||
<translation>Kontakt teilen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="841"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="840"/>
|
||||
<source>contact_details_delete</source>
|
||||
<extracomment>"Supprimer ce contact"</extracomment>
|
||||
<translation>Kontakt löschen</translation>
|
||||
|
|
@ -7409,7 +7415,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
<context>
|
||||
<name>utils</name>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="490"/>
|
||||
<source>formatYears</source>
|
||||
<extracomment>'%1 year'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7418,7 +7424,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<source>formatMonths</source>
|
||||
<extracomment>'%1 month'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7427,7 +7433,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<source>formatWeeks</source>
|
||||
<extracomment>'%1 week'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7436,7 +7442,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="506"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<source>formatDays</source>
|
||||
<extracomment>'%1 day'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7445,7 +7451,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="508"/>
|
||||
<source>formatHours</source>
|
||||
<extracomment>'%1 hour'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7454,7 +7460,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="514"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="510"/>
|
||||
<source>formatMinutes</source>
|
||||
<extracomment>'%1 minute'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7463,7 +7469,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="516"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<source>formatSeconds</source>
|
||||
<extracomment>'%1 second'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7472,62 +7478,62 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="733"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="729"/>
|
||||
<source>codec_install</source>
|
||||
<extracomment>"Installation de codec"</extracomment>
|
||||
<translation>Codec-Installation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="735"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="731"/>
|
||||
<source>download_codec</source>
|
||||
<extracomment>"Télécharger le codec %1 (%2) ?"</extracomment>
|
||||
<translation>Codec %1 (%2) herunterladen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="742"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="738"/>
|
||||
<source>information_popup_success_title</source>
|
||||
<extracomment>"Succès"</extracomment>
|
||||
<translation>Erfolg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="740"/>
|
||||
<source>information_popup_codec_install_success_text</source>
|
||||
<extracomment>"Le codec a été installé avec succès."</extracomment>
|
||||
<translation>Der Codec wurde erfolgreich installiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="748"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="757"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="765"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="753"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="761"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="750"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="746"/>
|
||||
<source>information_popup_codec_install_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être installé."</extracomment>
|
||||
<translation>Der Codec konnte nicht installiert werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="759"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="755"/>
|
||||
<source>information_popup_codec_save_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être sauvegardé."</extracomment>
|
||||
<translation>Der Codec konnte nicht gespeichert werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="767"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="763"/>
|
||||
<source>information_popup_codec_download_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être téléchargé."</extracomment>
|
||||
<translation>Der Codec konnte nicht heruntergeladen werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="773"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="769"/>
|
||||
<source>loading_popup_codec_install_progress</source>
|
||||
<extracomment>"Téléchargement en cours …"</extracomment>
|
||||
<translation>Download läuft …</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="808"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="804"/>
|
||||
<source>okButton</source>
|
||||
<translation>Ok</translation>
|
||||
</message>
|
||||
|
|
|
|||
|
|
@ -634,98 +634,104 @@
|
|||
<context>
|
||||
<name>App</name>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="351"/>
|
||||
<location filename="../../core/App.cpp" line="357"/>
|
||||
<source>remote_provisioning_dialog</source>
|
||||
<extracomment>Voulez-vous télécharger et appliquer la configuration depuis cette adresse ?</extracomment>
|
||||
<translation>Do you want to download and apply remote provisioning from this address ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="388"/>
|
||||
<location filename="../../core/App.cpp" line="641"/>
|
||||
<location filename="../../core/App.cpp" line="394"/>
|
||||
<location filename="../../core/App.cpp" line="648"/>
|
||||
<source>info_popup_error_title</source>
|
||||
<extracomment>Error</extracomment>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="389"/>
|
||||
<location filename="../../core/App.cpp" line="643"/>
|
||||
<location filename="../../core/App.cpp" line="395"/>
|
||||
<location filename="../../core/App.cpp" line="650"/>
|
||||
<source>info_popup_configuration_failed_message</source>
|
||||
<extracomment>Remote provisioning failed : %1</extracomment>
|
||||
<translation>Remote provisioning failed : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="637"/>
|
||||
<location filename="../../core/App.cpp" line="644"/>
|
||||
<source>configuration_error_detail</source>
|
||||
<extracomment>not reachable</extracomment>
|
||||
<translation>not reachable</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="902"/>
|
||||
<location filename="../../core/App.cpp" line="916"/>
|
||||
<source>application_description</source>
|
||||
<extracomment>"A free and open source SIP video-phone."</extracomment>
|
||||
<translation>A free and open source SIP video-phone.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="904"/>
|
||||
<location filename="../../core/App.cpp" line="918"/>
|
||||
<source>command_line_arg_order</source>
|
||||
<extracomment>"Send an order to the application towards a command line"</extracomment>
|
||||
<translation>Send an order to the application towards a command line</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="908"/>
|
||||
<location filename="../../core/App.cpp" line="922"/>
|
||||
<source>command_line_option_show_help</source>
|
||||
<translation>Show this help</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="913"/>
|
||||
<location filename="../../core/App.cpp" line="927"/>
|
||||
<source>command_line_option_show_app_version</source>
|
||||
<translation>Show app version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="921"/>
|
||||
<location filename="../../core/App.cpp" line="935"/>
|
||||
<source>command_line_option_config_to_fetch</source>
|
||||
<extracomment>"Specify the linphone configuration file to be fetched. It will be merged with the current configuration."</extracomment>
|
||||
<translation>Specify the linphone configuration file to be fetched. It will be merged with the current configuration.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="923"/>
|
||||
<location filename="../../core/App.cpp" line="937"/>
|
||||
<source>command_line_option_config_to_fetch_arg</source>
|
||||
<extracomment>"URL, path or file"</extracomment>
|
||||
<translation>URL, path or file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="928"/>
|
||||
<location filename="../../core/App.cpp" line="942"/>
|
||||
<source>command_line_option_minimized</source>
|
||||
<translation>Minimize</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="931"/>
|
||||
<location filename="../../core/App.cpp" line="945"/>
|
||||
<source>command_line_option_log_to_stdout</source>
|
||||
<translation>Log to stdout some debug information while running</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="934"/>
|
||||
<location filename="../../core/App.cpp" line="948"/>
|
||||
<source>command_line_option_print_app_logs_only</source>
|
||||
<extracomment>"Print only logs from the application"</extracomment>
|
||||
<translation>Print only logs from the application</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>hide_action</source>
|
||||
<extracomment>"Cacher" "Afficher"</extracomment>
|
||||
<translation>Hide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>show_action</source>
|
||||
<translation>Show</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1319"/>
|
||||
<location filename="../../core/App.cpp" line="1333"/>
|
||||
<source>quit_action</source>
|
||||
<extracomment>"Quitter"</extracomment>
|
||||
<translation>Quit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1337"/>
|
||||
<source>mark_all_read_action</source>
|
||||
<extracomment>"Mark all as read"</extracomment>
|
||||
<translation>Mark all as read</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AuthenticationDialog</name>
|
||||
|
|
@ -2764,13 +2770,13 @@ Only your correspondent can decrypt them.</translation>
|
|||
<context>
|
||||
<name>ContactListView</name>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="179"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="183"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation>Shrink %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="181"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="185"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation>Expand %1</translation>
|
||||
|
|
@ -2908,13 +2914,13 @@ Only your correspondent can decrypt them.</translation>
|
|||
<translation>No contact at the moment</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="362"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="361"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation>Expand %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="360"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="359"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation>Shrink %1</translation>
|
||||
|
|
@ -2926,14 +2932,14 @@ Only your correspondent can decrypt them.</translation>
|
|||
<translation>Create new contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="346"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="345"/>
|
||||
<source>more_info_accessible_name</source>
|
||||
<extracomment>More info %1</extracomment>
|
||||
<translation>More info %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="382"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="738"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="381"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="737"/>
|
||||
<source>contact_details_edit</source>
|
||||
<extracomment>Edit
|
||||
----------
|
||||
|
|
@ -2941,151 +2947,151 @@ Only your correspondent can decrypt them.</translation>
|
|||
<translation>Edit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="396"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="395"/>
|
||||
<source>contact_call_action</source>
|
||||
<extracomment>"Appel"</extracomment>
|
||||
<translation>Call</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="407"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="406"/>
|
||||
<source>contact_message_action</source>
|
||||
<extracomment>"Message"</extracomment>
|
||||
<translation>Message</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="421"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="420"/>
|
||||
<source>contact_video_call_action</source>
|
||||
<extracomment>"Appel vidéo"</extracomment>
|
||||
<translation>Video call</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="469"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="468"/>
|
||||
<source>contact_details_numbers_and_addresses_title</source>
|
||||
<extracomment>"Coordonnées"</extracomment>
|
||||
<translation>Contact details</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="525"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="524"/>
|
||||
<source>call_adress_accessible_name</source>
|
||||
<extracomment>Call address %1</extracomment>
|
||||
<translation>Call address %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="558"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="557"/>
|
||||
<source>contact_details_company_name</source>
|
||||
<extracomment>"Société :"</extracomment>
|
||||
<translation>Company :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="579"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="578"/>
|
||||
<source>contact_details_job_title</source>
|
||||
<extracomment>"Poste :"</extracomment>
|
||||
<translation>Job :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="601"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="600"/>
|
||||
<source>contact_details_medias_title</source>
|
||||
<extracomment>"Medias"</extracomment>
|
||||
<translation>Medias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="614"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="632"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="613"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="631"/>
|
||||
<source>contact_details_medias_subtitle</source>
|
||||
<extracomment>"Afficher les medias partagés"</extracomment>
|
||||
<translation>Show shared media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="638"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="637"/>
|
||||
<source>contact_details_trust_title</source>
|
||||
<extracomment>"Confiance"</extracomment>
|
||||
<translation>Trust</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="645"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="644"/>
|
||||
<source>contact_dialog_devices_trust_title</source>
|
||||
<extracomment>"Niveau de confiance - Appareils vérifiés"</extracomment>
|
||||
<translation>Trust Level - Verified Devices</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="654"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="653"/>
|
||||
<source>contact_details_no_device_found</source>
|
||||
<extracomment>"Aucun appareil"</extracomment>
|
||||
<translation>No device</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="679"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="678"/>
|
||||
<source>contact_device_without_name</source>
|
||||
<extracomment>"Appareil inconnu"</extracomment>
|
||||
<translation>Unknown device</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="700"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="699"/>
|
||||
<source>contact_make_call_check_device_trust</source>
|
||||
<extracomment>"Vérifier"</extracomment>
|
||||
<translation>Verify</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="702"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="701"/>
|
||||
<source>verify_device_accessible_name</source>
|
||||
<extracomment>Verify %1 device</extracomment>
|
||||
<translation>Verify %1 device</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="728"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="727"/>
|
||||
<source>contact_details_actions_title</source>
|
||||
<extracomment>"Autres actions"</extracomment>
|
||||
<translation>Other actions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="758"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="757"/>
|
||||
<source>contact_details_remove_from_favourites</source>
|
||||
<extracomment>"Retirer des favoris"</extracomment>
|
||||
<translation>Remove from favorites</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="760"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="759"/>
|
||||
<source>contact_details_add_to_favourites</source>
|
||||
<extracomment>"Ajouter aux favoris"</extracomment>
|
||||
<translation>Add to favorites</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="777"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="776"/>
|
||||
<source>contact_details_share</source>
|
||||
<extracomment>"Partager"</extracomment>
|
||||
<translation>Share</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="788"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="787"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="790"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="789"/>
|
||||
<source>contact_details_share_error_mesage</source>
|
||||
<extracomment>"La création du fichier vcard a échoué"</extracomment>
|
||||
<translation>VCard creation failed</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="795"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="794"/>
|
||||
<source>contact_details_share_success_title</source>
|
||||
<extracomment>"VCard créée"</extracomment>
|
||||
<translation>VCard created</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="797"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="796"/>
|
||||
<source>contact_details_share_success_mesage</source>
|
||||
<extracomment>"VCard du contact enregistrée dans %1"</extracomment>
|
||||
<translation>VCard has been saved in %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="800"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="799"/>
|
||||
<source>contact_details_share_email_title</source>
|
||||
<extracomment>"Partage de contact"</extracomment>
|
||||
<translation>Share contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="841"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="840"/>
|
||||
<source>contact_details_delete</source>
|
||||
<extracomment>"Supprimer ce contact"</extracomment>
|
||||
<translation>Delete contact</translation>
|
||||
|
|
@ -7294,7 +7300,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
<context>
|
||||
<name>utils</name>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="490"/>
|
||||
<source>formatYears</source>
|
||||
<extracomment>'%1 year'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7303,7 +7309,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<source>formatMonths</source>
|
||||
<extracomment>'%1 month'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7312,7 +7318,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<source>formatWeeks</source>
|
||||
<extracomment>'%1 week'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7321,7 +7327,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="506"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<source>formatDays</source>
|
||||
<extracomment>'%1 day'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7330,7 +7336,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="508"/>
|
||||
<source>formatHours</source>
|
||||
<extracomment>'%1 hour'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7339,7 +7345,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="514"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="510"/>
|
||||
<source>formatMinutes</source>
|
||||
<extracomment>'%1 minute'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7348,7 +7354,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="516"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<source>formatSeconds</source>
|
||||
<extracomment>'%1 second'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7357,62 +7363,62 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="733"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="729"/>
|
||||
<source>codec_install</source>
|
||||
<extracomment>"Installation de codec"</extracomment>
|
||||
<translation>Codec installation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="735"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="731"/>
|
||||
<source>download_codec</source>
|
||||
<extracomment>"Télécharger le codec %1 (%2) ?"</extracomment>
|
||||
<translation>Download codec %1 (%2) ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="742"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="738"/>
|
||||
<source>information_popup_success_title</source>
|
||||
<extracomment>"Succès"</extracomment>
|
||||
<translation>Success</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="740"/>
|
||||
<source>information_popup_codec_install_success_text</source>
|
||||
<extracomment>"Le codec a été installé avec succès."</extracomment>
|
||||
<translation>The codec has been successfully installed.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="748"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="757"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="765"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="753"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="761"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="750"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="746"/>
|
||||
<source>information_popup_codec_install_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être installé."</extracomment>
|
||||
<translation>The codec could not be installed.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="759"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="755"/>
|
||||
<source>information_popup_codec_save_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être sauvegardé."</extracomment>
|
||||
<translation>The codec could not be saved.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="767"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="763"/>
|
||||
<source>information_popup_codec_download_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être téléchargé."</extracomment>
|
||||
<translation>The codec could not be downloaded.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="773"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="769"/>
|
||||
<source>loading_popup_codec_install_progress</source>
|
||||
<extracomment>"Téléchargement en cours …"</extracomment>
|
||||
<translation>Download in progress…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="808"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="804"/>
|
||||
<source>okButton</source>
|
||||
<translation>Ok</translation>
|
||||
</message>
|
||||
|
|
|
|||
|
|
@ -634,98 +634,104 @@
|
|||
<context>
|
||||
<name>App</name>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="351"/>
|
||||
<location filename="../../core/App.cpp" line="357"/>
|
||||
<source>remote_provisioning_dialog</source>
|
||||
<extracomment>Voulez-vous télécharger et appliquer la configuration depuis cette adresse ?</extracomment>
|
||||
<translation>Voulez-vous télécharger et appliquer la configuration depuis cette adresse ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="388"/>
|
||||
<location filename="../../core/App.cpp" line="641"/>
|
||||
<location filename="../../core/App.cpp" line="394"/>
|
||||
<location filename="../../core/App.cpp" line="648"/>
|
||||
<source>info_popup_error_title</source>
|
||||
<extracomment>Error</extracomment>
|
||||
<translation>Erreur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="389"/>
|
||||
<location filename="../../core/App.cpp" line="643"/>
|
||||
<location filename="../../core/App.cpp" line="395"/>
|
||||
<location filename="../../core/App.cpp" line="650"/>
|
||||
<source>info_popup_configuration_failed_message</source>
|
||||
<extracomment>Remote provisioning failed : %1</extracomment>
|
||||
<translation>La configuration distante a échoué : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="637"/>
|
||||
<location filename="../../core/App.cpp" line="644"/>
|
||||
<source>configuration_error_detail</source>
|
||||
<extracomment>not reachable</extracomment>
|
||||
<translation>indisponible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="902"/>
|
||||
<location filename="../../core/App.cpp" line="916"/>
|
||||
<source>application_description</source>
|
||||
<extracomment>"A free and open source SIP video-phone."</extracomment>
|
||||
<translation>A free and open source SIP video-phone.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="904"/>
|
||||
<location filename="../../core/App.cpp" line="918"/>
|
||||
<source>command_line_arg_order</source>
|
||||
<extracomment>"Send an order to the application towards a command line"</extracomment>
|
||||
<translation>Send an order to the application towards a command line</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="908"/>
|
||||
<location filename="../../core/App.cpp" line="922"/>
|
||||
<source>command_line_option_show_help</source>
|
||||
<translation>Show this help</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="913"/>
|
||||
<location filename="../../core/App.cpp" line="927"/>
|
||||
<source>command_line_option_show_app_version</source>
|
||||
<translation>Afficher la version de l'application</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="921"/>
|
||||
<location filename="../../core/App.cpp" line="935"/>
|
||||
<source>command_line_option_config_to_fetch</source>
|
||||
<extracomment>"Specify the linphone configuration file to be fetched. It will be merged with the current configuration."</extracomment>
|
||||
<translation>Specify the linphone configuration file to be fetched. It will be merged with the current configuration.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="923"/>
|
||||
<location filename="../../core/App.cpp" line="937"/>
|
||||
<source>command_line_option_config_to_fetch_arg</source>
|
||||
<extracomment>"URL, path or file"</extracomment>
|
||||
<translation>URL, path or file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="928"/>
|
||||
<location filename="../../core/App.cpp" line="942"/>
|
||||
<source>command_line_option_minimized</source>
|
||||
<translation>Minimiser</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="931"/>
|
||||
<location filename="../../core/App.cpp" line="945"/>
|
||||
<source>command_line_option_log_to_stdout</source>
|
||||
<translation>Log to stdout some debug information while running</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="934"/>
|
||||
<location filename="../../core/App.cpp" line="948"/>
|
||||
<source>command_line_option_print_app_logs_only</source>
|
||||
<extracomment>"Print only logs from the application"</extracomment>
|
||||
<translation>Print only logs from the application</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>hide_action</source>
|
||||
<extracomment>"Cacher" "Afficher"</extracomment>
|
||||
<translation>Cacher</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1304"/>
|
||||
<location filename="../../core/App.cpp" line="1318"/>
|
||||
<source>show_action</source>
|
||||
<translation>Afficher</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1319"/>
|
||||
<location filename="../../core/App.cpp" line="1333"/>
|
||||
<source>quit_action</source>
|
||||
<extracomment>"Quitter"</extracomment>
|
||||
<translation>Quitter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../core/App.cpp" line="1337"/>
|
||||
<source>mark_all_read_action</source>
|
||||
<extracomment>"Mark all as read"</extracomment>
|
||||
<translation>Marquer tout comme lu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AuthenticationDialog</name>
|
||||
|
|
@ -2764,13 +2770,13 @@ en bout. Seul votre correspondant peut les déchiffrer.</translation>
|
|||
<context>
|
||||
<name>ContactListView</name>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="179"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="183"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation>Réduire %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="181"/>
|
||||
<location filename="../../view/Control/Display/Contact/ContactListView.qml" line="185"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation>Étendre %1</translation>
|
||||
|
|
@ -2908,13 +2914,13 @@ en bout. Seul votre correspondant peut les déchiffrer.</translation>
|
|||
<translation>Aucun contact pour le moment</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="362"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="361"/>
|
||||
<source>expand_accessible_name</source>
|
||||
<extracomment>Expand %1</extracomment>
|
||||
<translation>Étendre %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="360"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="359"/>
|
||||
<source>shrink_accessible_name</source>
|
||||
<extracomment>Shrink %1</extracomment>
|
||||
<translation>Réduire %1</translation>
|
||||
|
|
@ -2926,14 +2932,14 @@ en bout. Seul votre correspondant peut les déchiffrer.</translation>
|
|||
<translation>Créer un nouveau contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="346"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="345"/>
|
||||
<source>more_info_accessible_name</source>
|
||||
<extracomment>More info %1</extracomment>
|
||||
<translation>Plus d'information %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="382"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="738"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="381"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="737"/>
|
||||
<source>contact_details_edit</source>
|
||||
<extracomment>Edit
|
||||
----------
|
||||
|
|
@ -2941,151 +2947,151 @@ en bout. Seul votre correspondant peut les déchiffrer.</translation>
|
|||
<translation>Éditer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="396"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="395"/>
|
||||
<source>contact_call_action</source>
|
||||
<extracomment>"Appel"</extracomment>
|
||||
<translation>Appel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="407"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="406"/>
|
||||
<source>contact_message_action</source>
|
||||
<extracomment>"Message"</extracomment>
|
||||
<translation>Message</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="421"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="420"/>
|
||||
<source>contact_video_call_action</source>
|
||||
<extracomment>"Appel vidéo"</extracomment>
|
||||
<translation>Appel vidéo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="469"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="468"/>
|
||||
<source>contact_details_numbers_and_addresses_title</source>
|
||||
<extracomment>"Coordonnées"</extracomment>
|
||||
<translation>Coordonnées</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="525"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="524"/>
|
||||
<source>call_adress_accessible_name</source>
|
||||
<extracomment>Call address %1</extracomment>
|
||||
<translation>Appeller l'adresse %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="558"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="557"/>
|
||||
<source>contact_details_company_name</source>
|
||||
<extracomment>"Société :"</extracomment>
|
||||
<translation>Société :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="579"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="578"/>
|
||||
<source>contact_details_job_title</source>
|
||||
<extracomment>"Poste :"</extracomment>
|
||||
<translation>Poste :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="601"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="600"/>
|
||||
<source>contact_details_medias_title</source>
|
||||
<extracomment>"Medias"</extracomment>
|
||||
<translation>Medias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="614"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="632"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="613"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="631"/>
|
||||
<source>contact_details_medias_subtitle</source>
|
||||
<extracomment>"Afficher les medias partagés"</extracomment>
|
||||
<translation>Afficher les medias partagés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="638"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="637"/>
|
||||
<source>contact_details_trust_title</source>
|
||||
<extracomment>"Confiance"</extracomment>
|
||||
<translation>Confiance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="645"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="644"/>
|
||||
<source>contact_dialog_devices_trust_title</source>
|
||||
<extracomment>"Niveau de confiance - Appareils vérifiés"</extracomment>
|
||||
<translation>Niveau de confiance - Appareils vérifiés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="654"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="653"/>
|
||||
<source>contact_details_no_device_found</source>
|
||||
<extracomment>"Aucun appareil"</extracomment>
|
||||
<translation>Aucun appareil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="679"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="678"/>
|
||||
<source>contact_device_without_name</source>
|
||||
<extracomment>"Appareil inconnu"</extracomment>
|
||||
<translation>Appareil inconnu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="700"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="699"/>
|
||||
<source>contact_make_call_check_device_trust</source>
|
||||
<extracomment>"Vérifier"</extracomment>
|
||||
<translation>Vérifier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="702"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="701"/>
|
||||
<source>verify_device_accessible_name</source>
|
||||
<extracomment>Verify %1 device</extracomment>
|
||||
<translation>Vérifier l'appareil %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="728"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="727"/>
|
||||
<source>contact_details_actions_title</source>
|
||||
<extracomment>"Autres actions"</extracomment>
|
||||
<translation>Autres actions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="758"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="757"/>
|
||||
<source>contact_details_remove_from_favourites</source>
|
||||
<extracomment>"Retirer des favoris"</extracomment>
|
||||
<translation>Retirer des favoris</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="760"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="759"/>
|
||||
<source>contact_details_add_to_favourites</source>
|
||||
<extracomment>"Ajouter aux favoris"</extracomment>
|
||||
<translation>Ajouter aux favoris</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="777"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="776"/>
|
||||
<source>contact_details_share</source>
|
||||
<extracomment>"Partager"</extracomment>
|
||||
<translation>Partager</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="788"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="787"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Erreur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="790"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="789"/>
|
||||
<source>contact_details_share_error_mesage</source>
|
||||
<extracomment>"La création du fichier vcard a échoué"</extracomment>
|
||||
<translation>La création du fichier vcard a échoué</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="795"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="794"/>
|
||||
<source>contact_details_share_success_title</source>
|
||||
<extracomment>"VCard créée"</extracomment>
|
||||
<translation>VCard créée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="797"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="796"/>
|
||||
<source>contact_details_share_success_mesage</source>
|
||||
<extracomment>"VCard du contact enregistrée dans %1"</extracomment>
|
||||
<translation>VCard du contact enregistrée dans %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="800"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="799"/>
|
||||
<source>contact_details_share_email_title</source>
|
||||
<extracomment>"Partage de contact"</extracomment>
|
||||
<translation>Partage de contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="841"/>
|
||||
<location filename="../../view/Page/Main/Contact/ContactPage.qml" line="840"/>
|
||||
<source>contact_details_delete</source>
|
||||
<extracomment>"Supprimer ce contact"</extracomment>
|
||||
<translation>Supprimer ce contact</translation>
|
||||
|
|
@ -7294,7 +7300,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
<context>
|
||||
<name>utils</name>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="490"/>
|
||||
<source>formatYears</source>
|
||||
<extracomment>'%1 year'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7303,7 +7309,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="494"/>
|
||||
<source>formatMonths</source>
|
||||
<extracomment>'%1 month'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7312,7 +7318,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="498"/>
|
||||
<source>formatWeeks</source>
|
||||
<extracomment>'%1 week'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7321,7 +7327,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="506"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="502"/>
|
||||
<source>formatDays</source>
|
||||
<extracomment>'%1 day'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7330,7 +7336,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="508"/>
|
||||
<source>formatHours</source>
|
||||
<extracomment>'%1 hour'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7339,7 +7345,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="514"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="510"/>
|
||||
<source>formatMinutes</source>
|
||||
<extracomment>'%1 minute'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7348,7 +7354,7 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="516"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="512"/>
|
||||
<source>formatSeconds</source>
|
||||
<extracomment>'%1 second'</extracomment>
|
||||
<translation>
|
||||
|
|
@ -7357,62 +7363,62 @@ Failed to create 1-1 conversation with %1 !</extracomment>
|
|||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="733"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="729"/>
|
||||
<source>codec_install</source>
|
||||
<extracomment>"Installation de codec"</extracomment>
|
||||
<translation>Installation de codec</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="735"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="731"/>
|
||||
<source>download_codec</source>
|
||||
<extracomment>"Télécharger le codec %1 (%2) ?"</extracomment>
|
||||
<translation>Télécharger le codec %1 (%2) ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="742"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="738"/>
|
||||
<source>information_popup_success_title</source>
|
||||
<extracomment>"Succès"</extracomment>
|
||||
<translation>Succès</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="740"/>
|
||||
<source>information_popup_codec_install_success_text</source>
|
||||
<extracomment>"Le codec a été installé avec succès."</extracomment>
|
||||
<translation>Le codec a été installé avec succès.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="748"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="757"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="765"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="744"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="753"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="761"/>
|
||||
<source>information_popup_error_title</source>
|
||||
<translation>Erreur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="750"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="746"/>
|
||||
<source>information_popup_codec_install_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être installé."</extracomment>
|
||||
<translation>Le codec n'a pas pu être installé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="759"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="755"/>
|
||||
<source>information_popup_codec_save_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être sauvegardé."</extracomment>
|
||||
<translation>Le codec n'a pas pu être sauvegardé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="767"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="763"/>
|
||||
<source>information_popup_codec_download_error_text</source>
|
||||
<extracomment>"Le codec n'a pas pu être téléchargé."</extracomment>
|
||||
<translation>Le codec n'a pas pu être téléchargé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="773"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="769"/>
|
||||
<source>loading_popup_codec_install_progress</source>
|
||||
<extracomment>"Téléchargement en cours …"</extracomment>
|
||||
<translation>Téléchargement en cours…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="808"/>
|
||||
<location filename="../../view/Control/Tool/Helper/utils.js" line="804"/>
|
||||
<source>okButton</source>
|
||||
<translation>Ok</translation>
|
||||
</message>
|
||||
|
|
|
|||
|
|
@ -603,3 +603,7 @@ bool AccountModel::forwardToVoiceMailInDndPresence() {
|
|||
auto core = CoreModel::getInstance()->getCore();
|
||||
return core->getConfig()->getBool(accountSection, "forward_to_voicemail_in_dnd_presence", false);
|
||||
}
|
||||
|
||||
std::list<std::shared_ptr<linphone::ChatRoom>> AccountModel::getChatRooms() {
|
||||
return mMonitor->getChatRooms();
|
||||
}
|
||||
|
|
@ -90,6 +90,7 @@ public:
|
|||
void setPresence(LinphoneEnums::Presence presence, bool userInitiated, bool resetToAuto, QString presenceNote);
|
||||
std::string configAccountSection();
|
||||
bool forwardToVoiceMailInDndPresence();
|
||||
std::list<std::shared_ptr<linphone::ChatRoom>> getChatRooms();
|
||||
|
||||
signals:
|
||||
void registrationStateChanged(const std::shared_ptr<linphone::Account> &account,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue