mirror of https://github.com/procxx/kepka.git
Merge branch 'master' of https://github.com/telegramdesktop/tdesktop
This commit is contained in:
commit
9922bc465b
|
@ -466,8 +466,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_this_app_can_open" = "This application can open \"{file}\".";
|
||||
"lng_mac_not_known_app" = "It's not known if this application can open \"{file}\".";
|
||||
|
||||
"lng_mac_menu_about" = "About Telegram";
|
||||
"lng_mac_menu_services" = "Services";
|
||||
"lng_mac_menu_hide_telegram" = "Hide {telegram}";
|
||||
"lng_mac_menu_hide_others" = "Hide Others";
|
||||
"lng_mac_menu_show_all" = "Show All";
|
||||
"lng_mac_menu_preferences" = "Preferences...";
|
||||
"lng_mac_menu_quit_telegram" = "Quit {telegram}";
|
||||
"lng_mac_menu_about_telegram" = "About {telegram}";
|
||||
"lng_mac_menu_file" = "File";
|
||||
"lng_mac_menu_logout" = "Log Out";
|
||||
"lng_mac_menu_edit" = "Edit";
|
||||
|
|
|
@ -505,7 +505,20 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org\n\
|
|||
|
||||
tcpp << "\tconst char *_langKeyNames[lngkeys_cnt] = {\n";
|
||||
for (int i = 0, l = keysOrder.size(); i < l; ++i) {
|
||||
tcpp << "\t\t\"" << keysOrder[i] << "\",\n";
|
||||
if (keysTags[keysOrder[i]].isEmpty()) {
|
||||
tcpp << "\t\t\"" << keysOrder[i] << "\",\n";
|
||||
} else {
|
||||
tcpp << "\t\t\"" << keysOrder[i] << "__tagged\",\n";
|
||||
QMap<QByteArray, QVector<QString> > &countedTags(keysCounted[keysOrder[i]]);
|
||||
if (!countedTags.isEmpty()) {
|
||||
for (QMap<QByteArray, QVector<QString> >::const_iterator j = countedTags.cbegin(), e = countedTags.cend(); j != e; ++j) {
|
||||
const QVector<QString> &counted(*j);
|
||||
for (int k = 0, s = counted.size(); k < s; ++k) {
|
||||
tcpp << "\t\t\"" << keysOrder[i] << "__" + j.key() + QString::number(k).toUtf8() << "\",\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
tcpp << "\t};\n\n";
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ namespace {
|
|||
|
||||
Application::Application(int &argc, char **argv) : PsApplication(argc, argv),
|
||||
serverName(psServerPrefix() + cGUIDStr()), closing(false),
|
||||
updateRequestId(0), updateReply(0), updateThread(0), updateDownloader(0) {
|
||||
updateRequestId(0), updateReply(0), updateThread(0), updateDownloader(0), _translator(0) {
|
||||
|
||||
DEBUG_LOG(("Application Info: creation.."));
|
||||
|
||||
|
@ -153,6 +153,8 @@ Application::Application(int &argc, char **argv) : PsApplication(argc, argv),
|
|||
}
|
||||
}
|
||||
|
||||
installTranslator(_translator = new Translator());
|
||||
|
||||
Local::start();
|
||||
style::startManager();
|
||||
anim::startManager();
|
||||
|
@ -832,6 +834,8 @@ Application::~Application() {
|
|||
|
||||
style::stopManager();
|
||||
Local::stop();
|
||||
|
||||
delete _translator;
|
||||
}
|
||||
|
||||
Application *Application::app() {
|
||||
|
|
|
@ -26,6 +26,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
|
||||
class MainWidget;
|
||||
class FileUploader;
|
||||
class Translator;
|
||||
|
||||
class Application : public PsApplication, public RPCSender {
|
||||
Q_OBJECT
|
||||
|
@ -143,4 +144,6 @@ private:
|
|||
|
||||
QTimer writeUserConfigTimer;
|
||||
|
||||
Translator *_translator;
|
||||
|
||||
};
|
||||
|
|
|
@ -67,3 +67,27 @@ const QString &LangLoader::warnings() const {
|
|||
}
|
||||
return _warnings;
|
||||
}
|
||||
|
||||
QString Translator::translate(const char *context, const char *sourceText, const char *disambiguation, int n) const {
|
||||
if (QLatin1String("QMenuBar") == context) {
|
||||
if (QLatin1String("Services") == sourceText) return lang(lng_mac_menu_services);
|
||||
if (QLatin1String("Hide %1") == sourceText) return lng_mac_menu_hide_telegram(lt_telegram, qsl("%1"));
|
||||
if (QLatin1String("Hide Others") == sourceText) return lang(lng_mac_menu_hide_others);
|
||||
if (QLatin1String("Show All") == sourceText) return lang(lng_mac_menu_show_all);
|
||||
if (QLatin1String("Preferences...") == sourceText) return lang(lng_mac_menu_preferences);
|
||||
if (QLatin1String("Quit %1") == sourceText) return lng_mac_menu_quit_telegram(lt_telegram, qsl("%1"));
|
||||
if (QLatin1String("About %1") == sourceText) return lng_mac_menu_about_telegram(lt_telegram, qsl("%1"));
|
||||
return QString();
|
||||
}
|
||||
if (QLatin1String("QWidgetTextControl") == context || QLatin1String("QLineEdit") == context) {
|
||||
if (QLatin1String("&Undo") == sourceText) return lang(lng_mac_menu_undo);
|
||||
if (QLatin1String("&Redo") == sourceText) return lang(lng_mac_menu_redo);
|
||||
if (QLatin1String("Cu&t") == sourceText) return lang(lng_mac_menu_cut);
|
||||
if (QLatin1String("&Copy") == sourceText) return lang(lng_mac_menu_copy);
|
||||
if (QLatin1String("&Paste") == sourceText) return lang(lng_mac_menu_paste);
|
||||
if (QLatin1String("Delete") == sourceText) return lang(lng_mac_menu_delete);
|
||||
if (QLatin1String("Select All") == sourceText) return lang(lng_mac_menu_select_all);
|
||||
return QString();
|
||||
}
|
||||
return QString();//QString::fromUtf8(sourceText);
|
||||
}
|
||||
|
|
|
@ -127,3 +127,10 @@ private:
|
|||
LangLoader(const LangLoader &);
|
||||
LangLoader &operator=(const LangLoader &);
|
||||
};
|
||||
|
||||
class Translator : public QTranslator {
|
||||
public:
|
||||
|
||||
QString translate(const char *context, const char *sourceText, const char *disambiguation = 0, int n = -1) const;
|
||||
|
||||
};
|
||||
|
|
|
@ -118,11 +118,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_bad_phone" = "Falsche Nummer, bitte erneut versuchen.";
|
||||
"lng_bad_phone_noreg" = "Telefonnummer nicht registriert.";
|
||||
"lng_bad_code" = "Ungültiger Code, bitte versuche es nochmal.";
|
||||
"lng_bad_name" = "Bite trage Vor- und Nachnamen ein.";
|
||||
"lng_bad_name" = "Bitte trage Vor- und Nachnamen ein.";
|
||||
"lng_bad_photo" = "Fehler beim Upload.";
|
||||
|
||||
"lng_bad_image_for_photo" = "Bild kann so nicht gesendet werden.\nMöchtest du es als Datei verschicken?";
|
||||
|
||||
"lng_signup_title" = "Information und Bild";
|
||||
"lng_signup_desc" = "Bite trage deinen Namen ein \nund lade ein Bild hoch.";
|
||||
"lng_signup_desc" = "Bitte trage deinen Namen ein \nund lade ein Bild hoch.";
|
||||
|
||||
"lng_signup_firstname" = "Vorname";
|
||||
"lng_signup_lastname" = "Nachname";
|
||||
|
@ -202,7 +204,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_download_path_temp_radio" = "Temporärer Ordner (bis du dich abmeldest)";
|
||||
"lng_download_path_dir_radio" = "Nutzerdefinierter Ordner, wird nur manuell geleert.";
|
||||
"lng_download_path_choose" = "Wähle Speicherort";
|
||||
"lng_sure_clear_downloads" = "Willst du alle Downlaods vom Temp-Ordner löschen? Das passiert automatisch wenn du dich abmeldest oder Telegram deinstallierst.";
|
||||
"lng_sure_clear_downloads" = "Willst du alle Downloads vom Temp-Ordner löschen? Das passiert automatisch wenn du dich abmeldest oder Telegram deinstallierst.";
|
||||
"lng_download_path_failed" = "Download konnte nicht gestartet werden. Das kann am eingestellten Speicherort liegen.\n\nDu kannst den Speicherort in den Einstellungen ändern.";
|
||||
"lng_download_path_settings" = "Zu den Einstellungen";
|
||||
"lng_download_finish_failed" = "Datei konte nicht geladen werden.\n\nErneut versuchen?";
|
||||
|
@ -326,11 +328,12 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_in_dlg_audio" = "Sprachnachricht";
|
||||
"lng_in_dlg_document" = "Datei";
|
||||
"lng_in_dlg_sticker" = "Sticker";
|
||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||
|
||||
"lng_send_button" = "Senden";
|
||||
"lng_message_ph" = "Schreibe deine Nachricht..";
|
||||
"lng_empty_history" = "";
|
||||
"lng_willbe_history" = "Wähle einen Chat aus um zu schreiben";
|
||||
"lng_willbe_history" = "Wähle einen Chat aus, um zu schreiben";
|
||||
"lng_message_with_from" = "[c]{from}:[/c] {message}";
|
||||
"lng_from_you" = "Ich";
|
||||
|
||||
|
@ -427,7 +430,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_selected_delete_confirm" = "Löschen";
|
||||
|
||||
"lng_about_version" = "Version {version}";
|
||||
"lng_about_text" = "Telegram Desktop basiert auf [a href=\"https://core.telegram.org/mtproto\"]MTProto[/a] und\ndem [a href=\"https://core.telegram.org/api\"]Telegram API[/a] um Geschwindigkeit \nund Sicherheit zu gewährleisten.\n\nSoftware steht unter der [a href=\"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\"]GNU GPL[/a] Version 3,\nQuelltext ist bei [a href=\"https://github.com/telegramdesktop/tdesktop\"]GitHub[/a] verfügbar.";
|
||||
"lng_about_text" = "Telegram Desktop basiert auf [a href=\"https://core.telegram.org/mtproto\"]MTProto[/a] und\ndem [a href=\"https://core.telegram.org/api\"]Telegram API[/a], um Geschwindigkeit \nund Sicherheit zu gewährleisten.\n\nSoftware steht unter der [a href=\"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\"]GNU GPL[/a] Version 3,\nQuelltext ist bei [a href=\"https://github.com/telegramdesktop/tdesktop\"]GitHub[/a] verfügbar.";
|
||||
"lng_about_done" = "Fertig";
|
||||
|
||||
"lng_search_found_results" = "{count:Keine Nachrichten|# Nachricht|# Nachrichten}";
|
||||
|
@ -450,6 +453,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_new_authorization" = "{name},\n\nwir haben eine Anmeldung von einem neuen Gerät am {day}, {date} um {time} festgestellt. \n\nGerät: {device}\nStandort: {location}\n\nWarst du das selbst? Wenn du das nicht selbst gewesen bist, melde alle anderen Sitzungen in den Telegram Einstellungen unverzüglich ab. \n\nDanke,\nDein Telegram Team";
|
||||
|
||||
"lng_new_version7005" = "Telegram Desktop wurde auf Version {version} aktualisiert\n\n— Stickers werden unterstützt\n— Sprachnachrichten werden temporär lokal gespeichert\n— Portugiesische Sprache hinzugefügt\n\nKompletter Versionsverlauf ist hier zu finden:\n{link}";
|
||||
"lng_new_version7006_appstore" = "Telegram Desktop wurde auf Version {version} aktualisiert\n\n— Sticker werden unterstützt\n— Sprachnachrichten werden temporär lokal gespeichert\n— Neue Sprachen hinzugefügt\n\nKompletter Versionsverlauf ist hier zu finden:\n{link}";
|
||||
|
||||
// Mac specific
|
||||
|
||||
|
@ -460,10 +464,15 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_all_apps" = "Alle Programme";
|
||||
"lng_mac_always_open_with" = "Immer öffnen mit";
|
||||
"lng_mac_this_app_can_open" = "Dieses Programm kann \"{file}\"-Dateien öffnen.";
|
||||
"lng_mac_not_known_app" = "Es ist nicht bekannt, ob dieses Programm \"{file}\" öffnen kann.";
|
||||
"lng_mac_not_known_app" = "Es ist nicht bekannt, ob dieses Programm \"{file}\" öffnen kann.";
|
||||
|
||||
"lng_mac_menu_about" = "Über Telegram";
|
||||
"lng_mac_menu_services" = "Dienste";
|
||||
"lng_mac_menu_hide_telegram" = "{telegram} ausblenden";
|
||||
"lng_mac_menu_hide_others" = "Andere ausblenden";
|
||||
"lng_mac_menu_show_all" = "Alle einblenden";
|
||||
"lng_mac_menu_preferences" = "Einstellungen ...";
|
||||
"lng_mac_menu_quit_telegram" = "{telegram} beenden";
|
||||
"lng_mac_menu_about_telegram" = "Über {telegram}";
|
||||
"lng_mac_menu_file" = "Ablage";
|
||||
"lng_mac_menu_logout" = "Abmelden";
|
||||
"lng_mac_menu_edit" = "Bearbeiten";
|
||||
|
|
|
@ -121,6 +121,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_bad_name" = "Por favor, pon tu nombre y apellidos.";
|
||||
"lng_bad_photo" = "La imagen seleccionada es errónea.";
|
||||
|
||||
"lng_bad_image_for_photo" = "La imagen no se puede enviar de este modo.\n¿Quieres enviarla como archivo?";
|
||||
|
||||
"lng_signup_title" = "Información y foto";
|
||||
"lng_signup_desc" = "Por favor, pon tu nombre \ny una foto.";
|
||||
|
||||
|
@ -275,7 +277,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_profile_audios" = "{count:_not_used_|# mensaje de voz|# mensajes de voz} »";
|
||||
"lng_profile_audios_header" = "Todos los mensajes de voz";
|
||||
"lng_profile_show_all_types" = "Mostrar todos los tipos";
|
||||
"lng_profile_copy_phone" = "Copiar número de teléfono";
|
||||
"lng_profile_copy_phone" = "Copiar número";
|
||||
|
||||
"lng_participant_filter" = "Buscar";
|
||||
"lng_participant_invite" = "Invitar";
|
||||
|
@ -326,6 +328,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_in_dlg_audio" = "Audio";
|
||||
"lng_in_dlg_document" = "Archivo";
|
||||
"lng_in_dlg_sticker" = "Sticker";
|
||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||
|
||||
"lng_send_button" = "Enviar";
|
||||
"lng_message_ph" = "Escribir un mensaje...";
|
||||
|
@ -450,6 +453,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_new_authorization" = "{name},\nDetectamos un inicio de sesión en tu cuenta desde un nuevo dispositivo el {day}, {date} a las {time}\n\nDispositivo: {device}\nUbicación: {location}\n\nSi no eras tú, puedes ir a Ajustes — Cerrar todas las otras sesiones.\n\nGracias.\nEl equipo de Telegram";
|
||||
|
||||
"lng_new_version7005" = "Telegram Desktop fue actualizada a la versión {version}\n\n — Soporte de stickers\n — Caché local para mensajes de voz\n — Idioma portugués añadido\n\nEl historial completo de la versión está disponible aquí :\n{link}";
|
||||
"lng_new_version7006_appstore" = "Telegram Desktop fue actualizada a la versión {version}\n\n– Soporte para stickers\n– Caché local para mensajes de voz\n– Nuevos idiomas añadidos\n\nLa versión completa del historial está disponible aquí:\n{link} ";
|
||||
|
||||
// Mac specific
|
||||
|
||||
|
@ -462,8 +466,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_this_app_can_open" = "Esta aplicación puede abrir \"{file}\".";
|
||||
"lng_mac_not_known_app" = "No se sabe si esta aplicación puede abrir \"{file}\".";
|
||||
|
||||
"lng_mac_menu_about" = "Sobre Telegram";
|
||||
"lng_mac_menu_services" = "Servicios";
|
||||
"lng_mac_menu_hide_telegram" = "Ocultar {telegram}";
|
||||
"lng_mac_menu_hide_others" = "Ocultar otras";
|
||||
"lng_mac_menu_show_all" = "Mostrar todas";
|
||||
"lng_mac_menu_preferences" = "Preferencias...";
|
||||
"lng_mac_menu_quit_telegram" = "Salir de {telegram}";
|
||||
"lng_mac_menu_about_telegram" = "Acerca de {telegram}";
|
||||
"lng_mac_menu_file" = "Archivo";
|
||||
"lng_mac_menu_logout" = "Cerrar sesión";
|
||||
"lng_mac_menu_edit" = "Editar";
|
||||
|
|
|
@ -121,6 +121,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_bad_name" = "Per favore inserisci il tuo nome e cognome.";
|
||||
"lng_bad_photo" = "Immagine selezionata non valida.";
|
||||
|
||||
"lng_bad_image_for_photo" = "L'immagine non può essere inviata in questo modo.\nVuoi inviarla come file?";
|
||||
|
||||
"lng_signup_title" = "Informazioni e foto";
|
||||
"lng_signup_desc" = "Inserisci il tuo nome e\ncarica una foto.";
|
||||
|
||||
|
@ -169,12 +171,12 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_settings_auto_update" = "Aggiorna automaticamente";
|
||||
"lng_settings_current_version" = "Versione {version}";
|
||||
"lng_settings_check_now" = "Cerca aggiornamenti";
|
||||
"lng_settings_update_checking" = "Cerco gli aggiornamenti..";
|
||||
"lng_settings_update_checking" = "Ricerca aggiornamenti..";
|
||||
"lng_settings_latest_installed" = "L'ultima versione è installata";
|
||||
"lng_settings_downloading" = "Download update {ready} / {total} Mb..";
|
||||
"lng_settings_downloading" = "Download aggiornamento {ready} / {total} Mb..";
|
||||
"lng_settings_update_ready" = "La nuova versione è pronta";
|
||||
"lng_settings_update_now" = "Riavvia ora";
|
||||
"lng_settings_update_fail" = "Controllo update fallito :(";
|
||||
"lng_settings_update_fail" = "Ricerca aggiornamenti fallita :(";
|
||||
"lng_settings_workmode_tray" = "Mostra icona nella barra tray";
|
||||
"lng_settings_workmode_window" = "Mostra icona nella barra applicazioni";
|
||||
"lng_settings_auto_start" = "Avvia Telegram all'avvio del sistema";
|
||||
|
@ -326,6 +328,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_in_dlg_audio" = "Audio";
|
||||
"lng_in_dlg_document" = "File";
|
||||
"lng_in_dlg_sticker" = "Sticker";
|
||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||
|
||||
"lng_send_button" = "Invia";
|
||||
"lng_message_ph" = "Scrivi un messaggio..";
|
||||
|
@ -378,7 +381,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_context_forward_msg" = "Inoltra messaggio";
|
||||
"lng_context_delete_msg" = "Elimina messaggio";
|
||||
"lng_context_select_msg" = "Seleziona messaggio";
|
||||
"lng_context_cancel_upload" = "Annulla upload";
|
||||
"lng_context_cancel_upload" = "Annulla caricamento";
|
||||
"lng_context_copy_selected" = "Copia testo selezionato";
|
||||
"lng_context_forward_selected" = "Inoltra selezione";
|
||||
"lng_context_delete_selected" = "Elimina selezione";
|
||||
|
@ -421,7 +424,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_selected_delete" = "Elimina";
|
||||
"lng_selected_forward" = "Inoltra";
|
||||
"lng_selected_count" = "{count:_not_used_|# messaggio|# messaggi}";
|
||||
"lng_selected_cancel_sure_this" = "Vuoi annullare questo upload?";
|
||||
"lng_selected_cancel_sure_this" = "Vuoi annullare il caricamento?";
|
||||
"lng_selected_delete_sure_this" = "Vuoi eliminare questo messaggio?";
|
||||
"lng_selected_delete_sure" = "Vuoi eliminare {count:_not_used_|# messaggio|# messaggi}?";
|
||||
"lng_selected_delete_confirm" = "Elimina";
|
||||
|
@ -450,6 +453,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_new_authorization" = "{name},\nAbbiamo rilevato un accesso al tuo account da un nuovo dispositivo il {day}, {date} alle {time}\n\nDispositivo: {device}\nPosizione: {location}\n\nSe non sei tu, puoi andare su Impostazioni – Termina tutte le sessioni. \n\nGrazie, \nIl Team di Telegram";
|
||||
|
||||
"lng_new_version7005" = "Telegram Desktop si è aggiornato alla versione {version}\n\n— Aggiunto il supporto agli sticker\n— Cache locale per i messaggi vocali\n— Aggiunto il Portoghese\n\nLa cronologia degli update è disponibile qui:\n{link}";
|
||||
"lng_new_version7006_appstore" = "Telegram Desktop è stato aggiornato alla versione {versione}\n\n— Supporto sticker\n— Cache locale per i messaggi vocali\n— Aggiunte nuove lingue\n\nLa cronologia delle versioni è disponibile qui:\n{link}";
|
||||
|
||||
// Mac specific
|
||||
|
||||
|
@ -462,8 +466,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_this_app_can_open" = "Questa applicazione può aprire \"{file}\".";
|
||||
"lng_mac_not_known_app" = "Non si sa se questa applicazione può aprire \"{file}\".";
|
||||
|
||||
"lng_mac_menu_about" = "Su Telegram";
|
||||
"lng_mac_menu_services" = "Servizi";
|
||||
"lng_mac_menu_hide_telegram" = "Nascondi {telegram}";
|
||||
"lng_mac_menu_hide_others" = "Nascondi altre";
|
||||
"lng_mac_menu_show_all" = "Mostra tutte";
|
||||
"lng_mac_menu_preferences" = "Preferenze...";
|
||||
"lng_mac_menu_quit_telegram" = "Esci da {telegram}";
|
||||
"lng_mac_menu_about_telegram" = "Informazioni su {telegram}";
|
||||
"lng_mac_menu_file" = "File";
|
||||
"lng_mac_menu_logout" = "Disconnetti";
|
||||
"lng_mac_menu_edit" = "Modifica";
|
||||
|
|
|
@ -121,6 +121,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_bad_name" = "Voer je voor- en achternaam in.";
|
||||
"lng_bad_photo" = "Ongeldig bestand gekozen.";
|
||||
|
||||
"lng_bad_image_for_photo" = "Kan afbeelding zo niet versturen.\nAls bestand versturen?";
|
||||
|
||||
"lng_signup_title" = "Informatie en foto";
|
||||
"lng_signup_desc" = "Voer je naam en\nupload een foto.";
|
||||
|
||||
|
@ -326,6 +328,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_in_dlg_audio" = "Geluidsbestand";
|
||||
"lng_in_dlg_document" = "Bestand";
|
||||
"lng_in_dlg_sticker" = "Sticker";
|
||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||
|
||||
"lng_send_button" = "Stuur";
|
||||
"lng_message_ph" = "Bericht schrijven";
|
||||
|
@ -450,6 +453,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_new_authorization" = "{name},\nEr is op je account ingelogd vanaf een nieuw apparaat op {day}, {date} om {time}\n\nApparaat: {device}\nLocatie: {location}\n\nAls jij dit niet was, kun je alle sessies beëindigen via Instellingen – Beëindig alle andere sessies.\n\nBedankt,\nHet Telegram-Team";
|
||||
|
||||
"lng_new_version7005" = "Telegram is bijgewerkt naar versie {version}\n\n— Ondersteuning voor Stickers\n— Lokale cache voor spraakberichten\n— Portuguees toegevoegd\n\nVolledige versiegeschiedenis is hier te vinden:\n{link}";
|
||||
"lng_new_version7006_appstore" = "Telegram is bijgewerkt naar versie {version}\n\n— Ondersteuning voor Stickers\n— Lokale cache voor spraakberichten\n— Nieuwe talen toegevoegd\n\nVolledige versiegeschiedenis is hier te vinden:\n{link}";
|
||||
|
||||
// Mac specific
|
||||
|
||||
|
@ -462,8 +466,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_this_app_can_open" = "Dit programma kan \"{file}\" openen.";
|
||||
"lng_mac_not_known_app" = "Het is niet bekend of dit programma \"{file}\" kan openen.";
|
||||
|
||||
"lng_mac_menu_about" = "Over Telegram";
|
||||
"lng_mac_menu_services" = "Voorzieningen";
|
||||
"lng_mac_menu_hide_telegram" = "Verberg {telegram}";
|
||||
"lng_mac_menu_hide_others" = "Verberg andere";
|
||||
"lng_mac_menu_show_all" = "Toon alles";
|
||||
"lng_mac_menu_preferences" = "Voorkeuren";
|
||||
"lng_mac_menu_quit_telegram" = "Stop {telegram}";
|
||||
"lng_mac_menu_about_telegram" = "Over {telegram}";
|
||||
"lng_mac_menu_file" = "Bestand";
|
||||
"lng_mac_menu_logout" = "Uitloggen";
|
||||
"lng_mac_menu_edit" = "Wijzig";
|
||||
|
|
|
@ -121,6 +121,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_bad_name" = "Por favor, insira seu nome e sobrenome.";
|
||||
"lng_bad_photo" = "Erro na imagem selecionada.";
|
||||
|
||||
"lng_bad_image_for_photo" = "Essa imagem não pode ser enviada\ndessa forma. Enviar como documento?";
|
||||
|
||||
"lng_signup_title" = "Informação e foto";
|
||||
"lng_signup_desc" = "Por favor, insira nome e\ncarregue uma foto.";
|
||||
|
||||
|
@ -326,6 +328,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_in_dlg_audio" = "Áudio";
|
||||
"lng_in_dlg_document" = "Documento";
|
||||
"lng_in_dlg_sticker" = "Sticker";
|
||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||
|
||||
"lng_send_button" = "Enviar";
|
||||
"lng_message_ph" = "Escrever a mensagem..";
|
||||
|
@ -450,6 +453,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_new_authorization" = "{name},\nDetectamos um acesso à sua conta de um novo dispositivo em {day}, {date} às {time}\n\nDispositivo: {device}\nLocalização: {location}\n\nCaso não tenha sido você, vá em Configurações – Terminar todas as outras sessões.\n\nObrigado,\nEquipe Telegram";
|
||||
|
||||
"lng_new_version7005" = "Telegram Desktop foi atualizado para a versão {version}\n\n — Suporte aos stickers\n — Cache local para mensagens de voz\n — Adicionada linguagem em Português\n\nHistórico completo da versão disponível aqui:\n{link}";
|
||||
"lng_new_version7006_appstore" = "Telegram Desktop foi atualizado para a versão {version}\n\n — Suporte à stickers\n — Cache local para mensagens de voz\n — Adicionadas novas linguagens\n\nHistórico completo da versão disponível aqui:\n{link}";
|
||||
|
||||
// Mac specific
|
||||
|
||||
|
@ -462,8 +466,13 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_mac_this_app_can_open" = "Essa aplicação pode abrir \"{file}\".";
|
||||
"lng_mac_not_known_app" = "Não sabemos se essa aplicação pode abrir \"{file}\".";
|
||||
|
||||
"lng_mac_menu_about" = "Sobre Telegram";
|
||||
"lng_mac_menu_services" = "Serviços";
|
||||
"lng_mac_menu_hide_telegram" = "Ocultar {telegram}";
|
||||
"lng_mac_menu_hide_others" = "Ocultar Outros";
|
||||
"lng_mac_menu_show_all" = "Mostrar Todos";
|
||||
"lng_mac_menu_preferences" = "Preferências...";
|
||||
"lng_mac_menu_quit_telegram" = "Fechar {telegram}";
|
||||
"lng_mac_menu_about_telegram" = "Sobre {telegram}";
|
||||
"lng_mac_menu_file" = "Arquivo";
|
||||
"lng_mac_menu_logout" = "Sair";
|
||||
"lng_mac_menu_edit" = "Editar";
|
||||
|
|
|
@ -349,9 +349,9 @@ void PsMainWindow::psFirstShow() {
|
|||
|
||||
// init global menu
|
||||
QMenu *main = psMainMenu.addMenu(qsl("Telegram"));
|
||||
main->addAction(lang(lng_mac_menu_about), App::wnd()->getTitle(), SLOT(onAbout()))->setMenuRole(QAction::AboutQtRole);
|
||||
main->addAction(lng_mac_menu_about_telegram(lt_telegram, qsl("Telegram")), App::wnd()->getTitle(), SLOT(onAbout()))->setMenuRole(QAction::AboutQtRole);
|
||||
main->addSeparator();
|
||||
QAction *prefs = main->addAction(lang(lng_mac_menu_preferences), App::wnd(), SLOT(showSettings()));
|
||||
QAction *prefs = main->addAction(lang(lng_mac_menu_preferences), App::wnd(), SLOT(showSettings()), QKeySequence(Qt::ControlModifier | Qt::Key_Comma));
|
||||
prefs->setMenuRole(QAction::PreferencesRole);
|
||||
|
||||
QMenu *file = psMainMenu.addMenu(lang(lng_mac_menu_file));
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
07C4753F1967E37300CAAFE9 /* moc_switcher.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07C4753E1967E37300CAAFE9 /* moc_switcher.cpp */; };
|
||||
07D7034B19B8755A00C4EED2 /* audio.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07D7034919B8755A00C4EED2 /* audio.cpp */; };
|
||||
07D703BB19B88FB900C4EED2 /* moc_audio.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07D703BA19B88FB900C4EED2 /* moc_audio.cpp */; };
|
||||
07D7EABA1A597DD000838BA2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 07D7EABC1A597DD000838BA2 /* Localizable.strings */; };
|
||||
07D8509419F5C97E00623D75 /* mtpCoreTypes.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07D8509219F5C97E00623D75 /* mtpCoreTypes.cpp */; };
|
||||
07D8509519F5C97E00623D75 /* mtpScheme.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07D8509319F5C97E00623D75 /* mtpScheme.cpp */; };
|
||||
07D8509919F8320900623D75 /* usernamebox.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 07D8509719F8320900623D75 /* usernamebox.cpp */; };
|
||||
|
@ -291,6 +292,12 @@
|
|||
07D7034919B8755A00C4EED2 /* audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio.cpp; path = SourceFiles/audio.cpp; sourceTree = SOURCE_ROOT; };
|
||||
07D7034A19B8755A00C4EED2 /* audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio.h; path = SourceFiles/audio.h; sourceTree = SOURCE_ROOT; };
|
||||
07D703BA19B88FB900C4EED2 /* moc_audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = moc_audio.cpp; path = GeneratedFiles/Debug/moc_audio.cpp; sourceTree = SOURCE_ROOT; };
|
||||
07D7EABB1A597DD000838BA2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
07D7EABD1A597DD200838BA2 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
07D7EABE1A597DD300838BA2 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
07D7EABF1A597DD400838BA2 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
07D7EAC01A597DD500838BA2 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
07D7EAC11A597DD600838BA2 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
|
||||
07D8509219F5C97E00623D75 /* mtpCoreTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mtpCoreTypes.cpp; path = SourceFiles/mtproto/mtpCoreTypes.cpp; sourceTree = SOURCE_ROOT; };
|
||||
07D8509319F5C97E00623D75 /* mtpScheme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mtpScheme.cpp; path = SourceFiles/mtproto/mtpScheme.cpp; sourceTree = SOURCE_ROOT; };
|
||||
07D8509719F8320900623D75 /* usernamebox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = usernamebox.cpp; path = SourceFiles/boxes/usernamebox.cpp; sourceTree = SOURCE_ROOT; };
|
||||
|
@ -1226,6 +1233,7 @@
|
|||
E8C543AB96796ECAA2E65C57 /* Telegram */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
07D7EABC1A597DD000838BA2 /* Localizable.strings */,
|
||||
07084684195445A600B5AE3A /* Updater.xcodeproj */,
|
||||
2EB56BE3C2D93CDAB0C52E67 /* Sources */,
|
||||
25B08E2869634E9BCBA333A2 /* Generated Sources */,
|
||||
|
@ -1294,6 +1302,11 @@
|
|||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
en,
|
||||
es,
|
||||
de,
|
||||
nl,
|
||||
it,
|
||||
"pt-BR",
|
||||
);
|
||||
mainGroup = E8C543AB96796ECAA2E65C57 /* Telegram */;
|
||||
productRefGroup = FE0A091FDBFB3E9C31B7A1BD /* Products */;
|
||||
|
@ -1329,6 +1342,7 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
0749CE69194D723400345D61 /* Images.xcassets in Resources */,
|
||||
07D7EABA1A597DD000838BA2 /* Localizable.strings in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
@ -1589,6 +1603,22 @@
|
|||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
07D7EABC1A597DD000838BA2 /* Localizable.strings */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
07D7EABB1A597DD000838BA2 /* en */,
|
||||
07D7EABD1A597DD200838BA2 /* es */,
|
||||
07D7EABE1A597DD300838BA2 /* de */,
|
||||
07D7EABF1A597DD400838BA2 /* nl */,
|
||||
07D7EAC01A597DD500838BA2 /* it */,
|
||||
07D7EAC11A597DD600838BA2 /* pt-BR */,
|
||||
);
|
||||
name = Localizable.strings;
|
||||
sourceTree = SOURCE_ROOT;
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
07C3AF3E194CCC310016CFF1 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop version of Telegram messaging app, see https://telegram.org
|
||||
|
||||
Telegram Desktop is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
It is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||
*/
|
Loading…
Reference in New Issue