45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #include "platform/linux/info_linux.h"
 | |
| 
 | |
| #include <QLocale>
 | |
| 
 | |
| namespace Platform {
 | |
| 
 | |
| QString DeviceModelPretty() {
 | |
| #ifdef Q_OS_LINUX64
 | |
| 	return "PC 64bit";
 | |
| #else // Q_OS_LINUX64
 | |
| 	return "PC 32bit";
 | |
| #endif // Q_OS_LINUX64
 | |
| }
 | |
| 
 | |
| QString SystemVersionPretty() {
 | |
| 	const auto result = getenv("XDG_CURRENT_DESKTOP");
 | |
| 	const auto value = result ? QString::fromLatin1(result) : QString();
 | |
| 	const auto list = value.split(':', QString::SkipEmptyParts);
 | |
| 	return list.isEmpty() ? "Linux" : "Linux " + list[0];
 | |
| }
 | |
| 
 | |
| QString SystemCountry() {
 | |
| 	return QLocale::system().name().split('_').last();
 | |
| }
 | |
| 
 | |
| QString SystemLanguage() {
 | |
| 	const auto system = QLocale::system();
 | |
| 	const auto languages = system.uiLanguages();
 | |
| 	return languages.isEmpty()
 | |
| 		? system.name().split('_').first()
 | |
| 		: languages.front();
 | |
| }
 | |
| 
 | |
| QDate WhenSystemBecomesOutdated() {
 | |
| 	return QDate();
 | |
| }
 | |
| 
 | |
| } // namespace Platform
 | 
