From fbe80cdf10132a6a965a0aae77bc9f0e1abeb401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E6=9C=8B=E7=A8=8B?= Date: Fri, 23 Dec 2022 16:18:09 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=88=A0=E9=99=A4=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除重复文件 Log: 无 Influence: 无 Change-Id: I6bcfa7254cce266e9ad0502a9a9954ac2d1e68ae --- src/lib/lang.hpp | 72 ------------------------------------------------ 1 file changed, 72 deletions(-) delete mode 100644 src/lib/lang.hpp diff --git a/src/lib/lang.hpp b/src/lib/lang.hpp deleted file mode 100644 index 93e00cb..0000000 --- a/src/lib/lang.hpp +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2021 ~ 2022 Deepin Technology Co., Ltd. - * - * Author: weizhixiang - * - * Maintainer: weizhixiang - * - * This program 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 - * any later version. - * - * This program 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. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef LANG_H -#define LANG_H - -#include "dstring.h" - -#include -#include -#include -#include -#include - -// 返回用户语言,参见man gettext -inline std::vector queryLangs() { - std::vector ret; - const char *lcAll = getenv("LC_ALL"); - const char *lcMessage = getenv("LC_MESSAGE"); - const char *language = getenv("LANGUAGE"); - const char *lang = getenv("LANG"); - - auto cutOff = [](std::string str)->std::string { - size_t idx = str.find("."); - if (idx == std::string::npos) - return str; - - return std::string(str).substr(0, idx); - }; - - if (lcAll && std::string(lcAll) != "C" - && language && std::string(language) != "") - { - std::vector splits = DString::splitChars(language, ':'); - for (const auto &l : splits) { - ret.push_back(cutOff(l)); - } - return ret; - } - - if (lcAll && std::string(lcAll) != "") - ret.push_back(cutOff(lcAll)); - - if (lcMessage && std::string(lcMessage) != "") - ret.push_back(cutOff(lcMessage)); - - if (lang && std::string(lang) != "") - ret.push_back(cutOff(lang)); - - return ret; -} - - -#endif // LANG_H