fix translation of calendar
This commit is contained in:
parent
3fe55e03b2
commit
2ccb27177b
36
0002-fix-translation-of-calendar.patch
Normal file
36
0002-fix-translation-of-calendar.patch
Normal file
@ -0,0 +1,36 @@
|
||||
From 1727c034ae8f43ba607d75503e0d9840bdf497cd Mon Sep 17 00:00:00 2001
|
||||
From: peijiankang <peijiankang@kylinos.cn>
|
||||
Date: Tue, 17 Jan 2023 10:12:33 +0800
|
||||
Subject: [PATCH] fix translation of calendar
|
||||
|
||||
---
|
||||
plugin-calendar/lunarcalendarwidget/lunarcalendarwidget.cpp | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/plugin-calendar/lunarcalendarwidget/lunarcalendarwidget.cpp b/plugin-calendar/lunarcalendarwidget/lunarcalendarwidget.cpp
|
||||
index 4c5e743..40686e8 100644
|
||||
--- a/plugin-calendar/lunarcalendarwidget/lunarcalendarwidget.cpp
|
||||
+++ b/plugin-calendar/lunarcalendarwidget/lunarcalendarwidget.cpp
|
||||
@@ -606,8 +606,8 @@ void LunarCalendarWidget::setLocaleCalendar()
|
||||
{
|
||||
|
||||
QStringList res = getLocale();
|
||||
- qDebug()<<"设置区域:"<<res.at(0);
|
||||
- int isCN = res.at(0) == "zh_CN.UTF-8" ? 1 : 0;
|
||||
+ qDebug()<<"设置区域:"<<res.at(1);
|
||||
+ int isCN = res.at(1).contains("zh_CN", Qt::CaseSensitive);
|
||||
if(isCN){
|
||||
if (FirstdayisSun) {
|
||||
labWeeks.at(0)->setText("周日");
|
||||
@@ -671,6 +671,8 @@ QStringList LunarCalendarWidget::getLocale()
|
||||
}
|
||||
if(language.isEmpty() && propertyMap.keys().contains("Language")) {
|
||||
language = propertyMap.find("Language").value().toString();
|
||||
+ if(language.isEmpty())
|
||||
+ language = QLocale::system().name();
|
||||
}
|
||||
} else {
|
||||
qDebug() << "reply failed";
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@ -2,12 +2,13 @@
|
||||
|
||||
Name: ukui-panel
|
||||
Version: 3.1.0
|
||||
Release: 4
|
||||
Release: 5
|
||||
Summary: ukui desktop panel
|
||||
License: LGPL-2.0-or-later and GPL-2.0-or-later and BSD
|
||||
URL: http://www.ukui.org
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Patch01: 0001-fix-translation-problem-of-ukui-panel.patch
|
||||
Patch02: 0002-fix-translation-of-calendar.patch
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: alsa-lib-devel
|
||||
@ -59,6 +60,7 @@ Recommends: time-shutdown
|
||||
%prep
|
||||
%setup -q
|
||||
%patch01 -p1
|
||||
%patch02 -p1
|
||||
|
||||
%build
|
||||
mkdir build && cd build
|
||||
@ -81,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/*
|
||||
|
||||
%changelog
|
||||
* Tue Jan 17 2023 peijiankang <peijiankang@kylinos.cn> - 3.1.0-5
|
||||
- fix translation of calendar
|
||||
|
||||
* Mon Jan 9 2023 peijiankang <peijiankang@kylinos.cn> - 3.1.0-4
|
||||
- fix translation problem of ukui-panel
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user