diff --git a/clock.cpp b/clock.cpp index 8bc30dc..6b8adb7 100644 --- a/clock.cpp +++ b/clock.cpp @@ -144,9 +144,14 @@ Clock::Clock(QWidget *parent) : Initial display alarm interface*/ close_or_hide_page = new close_or_hide(this); + close_or_hide_page->setFixedSize(350,174); shadow->installEventFilter(this); ui->alarmListWidget->installEventFilter(this); + ui->switchClock->installEventFilter(this); + ui->switchCountdown->installEventFilter(this); + ui->switchStopwatch->installEventFilter(this); + //蓝色 QPalette palette = ui->suspendCountdownBtn->palette(); QColor ColorPlaceholderText(248,163,76,255); @@ -238,6 +243,9 @@ void Clock::closeEvent(QCloseEvent *event) // }else{ // event->ignore(); // } + close_or_hide_page->close_flag=2; + event->accept(); + exit(0); return; } @@ -324,19 +332,20 @@ void Clock::settingsStyle() connect(subject,&GsettingSubject::iconChnaged, this,[=](){ ui->titileWidget->setIcon("kylin-alarm-clock"); }); - connect(subject,&GsettingSubject::themeColorChanged, this,[=](){ - int index = ui->mainWidget->currentIndex(); - if(index==0){ - setSwitchHighlightColor(ui->switchCountdown); - }else if(index==1){ - setSwitchHighlightColor(ui->switchClock); - }else if(index==2){ - setSwitchHighlightColor(ui->switchStopwatch); - }else{ - //闹钟编辑页 - setSwitchHighlightColor(ui->switchClock); - } - }); + //由于功能按钮适配了sdk,这个信号 槽函数可以不用了 +// connect(subject,&GsettingSubject::themeColorChanged, this,[=](){ +// int index = ui->mainWidget->currentIndex(); +// if(index==0){ +// setSwitchHighlightColor(ui->switchCountdown); +// }else if(index==1){ +// setSwitchHighlightColor(ui->switchClock); +// }else if(index==2){ +// setSwitchHighlightColor(ui->switchStopwatch); +// }else{ +// //闹钟编辑页 +// setSwitchHighlightColor(ui->switchClock); +// } +// }); connect(subject,&GsettingSubject::timeZoneChanged, this,[=](QString timeZone){ @@ -347,10 +356,21 @@ void Clock::settingsStyle() this->CURRENT_FONT_SIZE=size; this->updateFront(size); }); + //平板改变 + connect(subject,&GsettingSubject::tabletModeChange, this,[=](bool currentTablet){ + if(currentTablet){ + muteBtn->setFixedSize(36,36); + muteBtn->move(180,15); + }else{ + muteBtn->setFixedSize(30,30); + muteBtn->move(238,5); + } + }); subject->iniWidgetStyle(); subject->iniFontSize(); subject->iniTimeZone(); + subject->iniTabletMode(); connect(this,&Clock::timeJump,this,[=](qint64 timeValue){ qWarning()<<"dbq检测到时间跳跃"<editAlarmPage); dialog_music->resize(256,36); dialog_music->move(selectWidth,selectHeight); + dialog_music->setFocusPolicy(Qt::NoFocus); setMusicSelectDialogListById(bellId,dialog_music); selectAlarmMusic(); selectHeight+=selectGap; @@ -722,12 +743,14 @@ void Clock::setupInit() dialog_remind_late = new QComboBox(ui->editAlarmPage); dialog_remind_late->resize(256,36); dialog_remind_late->move(selectWidth,selectHeight); + dialog_remind_late->setFocusPolicy(Qt::NoFocus); selectRemindLate(); //倒计时铃声选择 count_music_sellect = new QComboBox(ui->countdownPage); count_music_sellect->resize(256,36); count_music_sellect->move(100,326); + count_music_sellect->setFocusPolicy(Qt::NoFocus); setMusicSelectDialogListById(bellId,count_music_sellect); countdownMusicSellect(); //存储重复选择的星期,默认清零 @@ -1263,17 +1286,22 @@ void Clock:: CountdownPageSwitch () setSwitchDefaultColor(ui->switchStopwatch); ui->mainWidget->setCurrentIndex(0); } -void Clock::setBtnIcon(QPushButton *btn, QString imgUrl, QString localUrl) +void Clock::setBtnIcon(KPushButton *btn, QString imgUrl, QString localUrl) { QIcon icon=Utils::getQIcon(imgUrl,localUrl); // btn->setIcon(QIcon::fromTheme(imgUrl)); btn->setIcon(icon); btn->setIconSize(QSize(18, 18)); + if(theme::themetype==0){ + btn->setIconColor(Qt::black); + }else{ + btn->setIconColor(Qt::white); + } QPainter p(btn); // 表示引擎应尽可能对图元的边缘进行抗锯齿。 p.setRenderHint(QPainter::Antialiasing); } -void Clock::setDefaultIcon(QPushButton *btn) +void Clock::setDefaultIcon(KPushButton *btn) { if(btn==ui->switchClock){ setBtnIcon(ui->switchClock,"ukui-alarm-symbolic",":/image/alarm.png"); @@ -1295,23 +1323,26 @@ QColor Clock::getButtonActive() { return palette().color(QPalette::Active,QPalette::Button); } -void Clock::setSwitchDefaultColor(QPushButton * btn) +void Clock::setSwitchDefaultColor(KPushButton * btn) { - auto pa = btn->palette(); - QColor btnAcCol = getButtonActive(); - pa.setColor(QPalette::Active,QPalette::Button,btnAcCol); - btn->setPalette(pa); +// auto pa = btn->palette(); +// QColor btnAcCol = getButtonActive(); +// pa.setColor(QPalette::Active,QPalette::Button,btnAcCol); +// btn->setPalette(pa); + btn->setBackgroundColorHighlight(false); setDefaultIcon(btn); } -void Clock::setSwitchHighlightColor(QPushButton * btn) +void Clock::setSwitchHighlightColor(KPushButton * btn) { - auto pa = btn->palette(); - QColor highAcCol = getHighlightActive(); - pa.setColor(QPalette::Active,QPalette::Button,highAcCol); - btn->setPalette(pa); - //修改图标颜色 - changeIconHeight(btn); + // auto pa = btn->palette(); + // QColor highAcCol = getHighlightActive(); + // pa.setColor(QPalette::Active,QPalette::Button,highAcCol); + // btn->setPalette(pa); + btn->setBackgroundColorHighlight(true); + //修改图标颜色 + btn->setIconColor(Qt::white); + // changeIconHeight(btn); } /* @@ -1325,7 +1356,7 @@ void Clock:: AlarmPageSwitch () setSwitchDefaultColor(ui->switchStopwatch); ui->mainWidget->setCurrentIndex(1); } -void Clock::changeIconHeight(QPushButton *btn) +void Clock::changeIconHeight(KPushButton *btn) { QPixmap pix = btn->icon().pixmap(btn->iconSize()); QPixmap tarPix=theme::changeIconColor(pix,palette().highlightedText().color()); @@ -1535,7 +1566,7 @@ bool Clock::checkTinyCountdownDia() return tinycountdownDia!=nullptr?true:false; } -void Clock::navigationBtnStyle(QPushButton * btn) +void Clock::navigationBtnStyle(KPushButton * btn) { setDefaultIcon(btn);; //不使用主题高亮 @@ -3862,6 +3893,25 @@ bool Clock::eventFilter(QObject *watched, QEvent *event) { // showPaint7(); } + int index = ui->mainWidget->currentIndex(); + if(watched == ui->switchClock && event->type() == QEvent::HoverEnter){ + if(index==0||index==2){ + QColor backgroundColor = palette().color(QPalette::Button); + ui->switchClock->setBackgroundColor(backgroundColor); + } + } + if(watched == ui->switchCountdown && event->type() == QEvent::HoverEnter){ + if(index!=0){ + QColor backgroundColor = palette().color(QPalette::Button); + ui->switchCountdown->setBackgroundColor(backgroundColor); + } + } + if(watched == ui->switchStopwatch && event->type() == QEvent::HoverEnter){ + if(index!=2){ + QColor backgroundColor = palette().color(QPalette::Button); + ui->switchStopwatch->setBackgroundColor(backgroundColor); + } + } return QWidget::eventFilter(watched,event); } diff --git a/clock.h b/clock.h index ab64d17..bedb3be 100644 --- a/clock.h +++ b/clock.h @@ -107,6 +107,7 @@ #include "verticalscrollapm.h" #include #include +#include #include "noticealarmpoolutil.h" #include "customcombox.h" @@ -497,7 +498,7 @@ private: void closeBtnStyle(); void menuBtnStyle(); bool checkTinyCountdownDia(); - void navigationBtnStyle(QPushButton * btn); + void navigationBtnStyle(KPushButton * btn); theme * currentTheme; QHash * indexWeekdayMap = nullptr; CommonToolTip * m_commonToolTip; @@ -520,13 +521,13 @@ private: void widgetListBlackStyle(QListWidget * listWidget); QMediaPlayer * hisPlayer = nullptr; void updateSwitchBtnStyle(); - void setSwitchDefaultColor(QPushButton *btn); + void setSwitchDefaultColor(KPushButton *btn); QColor getButtonActive(); QColor getHighlightActive(); - void setDefaultIcon(QPushButton *btn); - void setBtnIcon(QPushButton *btn, QString imgUrl, QString localUrl); - void changeIconHeight(QPushButton *btn); - void setSwitchHighlightColor(QPushButton *btn); + void setDefaultIcon(KPushButton *btn); + void setBtnIcon(KPushButton *btn, QString imgUrl, QString localUrl); + void changeIconHeight(KPushButton *btn); + void setSwitchHighlightColor(KPushButton *btn); QString getDefaultGreyColor(); void updateRepeatStr(QLabel *label); void updateLabelStrCnEn(QLabel *label,int cnLimit,int enLimit); diff --git a/clock.ui b/clock.ui index 4466ad6..8d79dab 100644 --- a/clock.ui +++ b/clock.ui @@ -551,7 +551,7 @@ font: 19pt - + 40 @@ -565,7 +565,7 @@ font: 19pt - Alarm + @@ -586,7 +586,7 @@ font: 19pt - + 40 @@ -600,7 +600,7 @@ font: 19pt - Count down + @@ -621,7 +621,7 @@ font: 19pt - + 40 @@ -635,7 +635,7 @@ font: 19pt - Watch + @@ -684,6 +684,11 @@ font: 19pt
kwidget.h
1 + + KPushButton + QPushButton +
kpushbutton.h
+
diff --git a/clock_conf.ini b/clock_conf.ini index fd9d437..7a9ae05 100644 --- a/clock_conf.ini +++ b/clock_conf.ini @@ -1,2 +1,2 @@ [common] -version=3.1.4.0.0k0-0k1.0 +version=3.1.4.0.0k0-0k1.1 diff --git a/constant_class.h b/constant_class.h index fab43b8..cde2a99 100644 --- a/constant_class.h +++ b/constant_class.h @@ -65,4 +65,7 @@ const static int COUNTDOWN_TIME=6; #define SCREENSAVE_DBUS_SERVICE "org.ukui.ScreenSaver" #define SCREENSAVE_DBUS_PATH "/" #define SCREENSAVE_DBUS_INTERFACE "org.ukui.ScreenSaver" +#define STATUS_MANAGER_DBUS_SERVICE "com.kylin.statusmanager.interface" +#define STATUS_MANAGER_DBUS_PATH "/" +#define STATUS_MANAGER_DBUS_INTERFACE "com.kylin.statusmanager.interface" #endif // CONSTANTCLASS_H diff --git a/debian/changelog b/debian/changelog index 48131ad..83c4813 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +ukui-clock (3.1.4.0.0k0-0k1.1) v101; urgency=medium + + [ BUG 号 ] + * Closes: # + - + [ 任务号] + - + [ 需求号] + - + [ 其他改动说明 ] + - 同步主线和xc平板代码 + [ 影响域 ] + * 应用本身 + + -- zhoudisi Mon, 31 Oct 2022 15:10:31 +0800 + ukui-clock (3.1.4.0.0k0-0k1.0) v101; urgency=medium [ BUG 号 ] diff --git a/gsettingsubject.cpp b/gsettingsubject.cpp index dcfd548..ed18230 100644 --- a/gsettingsubject.cpp +++ b/gsettingsubject.cpp @@ -74,6 +74,10 @@ void GsettingSubject::iniConnection() QObject::connect(m_screenSaveInterface, SIGNAL(unlock()), this, SLOT(emitScreenSaveUnlock())); } + if (m_statusManagerInterface->isValid()){ + QObject::connect(m_statusManagerInterface, SIGNAL(mode_change_signal(bool)), + this, SLOT(emitTabletModeChange(bool))); + } } @@ -99,6 +103,14 @@ void GsettingSubject::iniData() if (!m_screenSaveInterface->isValid()){ qCritical() << qPrintable(QDBusConnection::sessionBus().lastError().message()); } + //机器模式接口 + m_statusManagerInterface = new QDBusInterface(STATUS_MANAGER_DBUS_SERVICE, STATUS_MANAGER_DBUS_PATH, + STATUS_MANAGER_DBUS_INTERFACE, + QDBusConnection::sessionBus()); + + if (!m_statusManagerInterface->isValid()){ + qCritical() << qPrintable(QDBusConnection::sessionBus().lastError().message()); + } } bool GsettingSubject::getScreenSaveOn() const @@ -145,6 +157,23 @@ void GsettingSubject::iniFontSize() } } } +void GsettingSubject::iniTabletMode() +{ + if(m_statusManagerInterface==nullptr){ + qDebug()<<"dbq-空指针"; + }else{ + if(m_statusManagerInterface->isValid()){ + QDBusReply reply = m_statusManagerInterface->call("get_current_tabletmode"); + if (reply.isValid()){ + bool value = reply.value(); + emitTabletModeChange(value); + }else{ + qCritical() << "get_current_tabletmode called failed! 获取模式失败"; + } + } + } +} + void GsettingSubject::iniMouseWheel() { if(m_mouseSettings!=nullptr){ @@ -190,6 +219,13 @@ void GsettingSubject::emitScreenSaveUnlock() emit screenSaveUnlock(); } +void GsettingSubject::emitTabletModeChange(bool currentTablet) +{ + qDebug()<<"zds-emitTabletModeChange"; + onTablet = currentTablet; + emit tabletModeChange(currentTablet); +} + GsettingSubject::~GsettingSubject() { delete m_styleSettings; diff --git a/gsettingsubject.h b/gsettingsubject.h index 169d9d7..1435145 100644 --- a/gsettingsubject.h +++ b/gsettingsubject.h @@ -33,6 +33,7 @@ public: void iniWidgetStyle(); void iniTimeZone(); void iniFontSize(); + void iniTabletMode(); ~GsettingSubject(); GsettingSubject(const GsettingSubject&)=delete; GsettingSubject& operator=(const GsettingSubject&)=delete; @@ -43,6 +44,7 @@ public: void iniMouseWheel(); void iniScreenSaveState(); bool getScreenSaveOn() const; + bool onTablet = false; signals: void blackStyle(); void whiteStyle(); @@ -53,9 +55,12 @@ signals: void timeZoneChanged(QString timeZone); void screenSaveLock(); void screenSaveUnlock(); + void tabletModeChange(bool currentTablet); + void tabletRotationChange(bool currentRotation); private slots: void emitScreenSaveLock(); void emitScreenSaveUnlock(); + void emitTabletModeChange(bool currentTablet); private: static void iniConnect(); void iniConnection(); @@ -66,6 +71,7 @@ private: QGSettings *m_mouseSettings = nullptr; QDBusInterface *m_screenSaveInterface = nullptr; QDBusInterface *m_screenSaveIface = nullptr; + QDBusInterface *m_statusManagerInterface = nullptr; bool m_screenSaveOn = false; explicit GsettingSubject(QObject *parent = nullptr); void getWheelSpeed(); diff --git a/translations/ukui-clock_bo_CN.qm b/translations/ukui-clock_bo_CN.qm index 6ce3bd5..ee651ce 100644 Binary files a/translations/ukui-clock_bo_CN.qm and b/translations/ukui-clock_bo_CN.qm differ diff --git a/translations/ukui-clock_bo_CN.ts b/translations/ukui-clock_bo_CN.ts index e0ae61b..7b9bc21 100644 --- a/translations/ukui-clock_bo_CN.ts +++ b/translations/ukui-clock_bo_CN.ts @@ -6,7 +6,7 @@ Dialog - + རྣམ་བཞག་ཅན། @@ -63,12 +63,12 @@ AM - AM + སྔ་དྲོ། PM - PM + ཕྱི་དྲོ། @@ -81,10 +81,10 @@ - - - - + + + + start 开始 འགོ་ཚུགས་པ། @@ -114,9 +114,9 @@ - - - + + + suspend ལས་མཚམས་བཞག་པ། @@ -145,7 +145,7 @@ save 保存 - གྲོན་ཆུང་། + ཉར་ཚགས། Remind @@ -153,11 +153,11 @@ - - - + + + PM - PM + ཕྱི་དྲོ། add alarm @@ -169,24 +169,23 @@ 点击闹钟显示剩余时间 - + reset - བསྐྱར་དུ་བཀོད་སྒྲིག་བྱེད་པ + བསྐྱར་དུ་བཀོད་སྒྲིག་བྱེད་པ། - - + + count - གྲངས་ཀ་རྩིས་རྒྱག་ + གྲངས་ཀ་རྩིས་རྒྱག - - - + + Count down - རྩིས་རྒྱག་པ། + དུས་ཚོད་ལྡོག་རྩིས་བྱེད་པ། clock @@ -222,9 +221,9 @@ 闹钟名 - + repeat - ཡང་བསྐྱར་ཐེངས་གཅིག་ + ཡང་བསྐྱར་ཐེངས་གཅིག Remind @@ -300,126 +299,125 @@ 继续 - + interval བར་མཚམས་ཆད་པ། - + recent alarm - ཉེ་ཆར་ཉེན་བརྡ་བཏང + ཉེ་ཆར་ཉེན་བརྡ་བཏང་། - - - + + + AM - AM + སྔ་དྲོ། - - - - + + + + Mon - དངུལ་ལོར། + གཟའ་ཟླ་བ། - - - - + + + + Tue - ཐུའེ་རིགས། + གཟའ་མིག་དམར། - - - - + + + + Wed - གཉེན་སྒྲིག་བྱས་ཟིན་པ། + གཟའ་ལྷག་པ། - - - - + + + + Thu - ཐུའུ་ལུའུ། + གཟའ་ཕུར་བུ། - - - - + + + + Fri - ཧྥུ་ལི་ཡ། + གཟའ་པ་སངས། - - - - + + + + Sat - འཁོར་ལོ་བསྡད་པ། + གཟའ་སྤེན་པ། - - - - + + + + Sun ཉི་མ། - + 60 Seconds to close སྒོ་རྒྱག་པའི་དུས་ཚོད་སྐར་ཆ་60 - - + + five mins late སྐར་མ་ལྔ་འགོར་འགྱངས་བྱས་པ། - - + + ten mins late - སྐར་མ་བཅུ་འགོར་འགྱངས་བྱས་པ། + སྐར་མ་བཅུའི་རྗེས། - - + + twenty mins late - སྐར་མ་ཉི་ཤུའི་རྗེས་སུ་ལུས་པ། + སྐར་མ་ཉི་ཤུའི་རྗེས་སུ། - - + + thirsty mins late - ཁ་སྐོམ་པའི་དུས་ཚོད་འཕྱི་དྲགས་པ། + 30སྐར་མ་རྗེས་སུ། - - + + one hour late ཆུ་ཚོད་གཅིག་འགོར་རྗེས། - + mini window - སྒེའུ་ཁུང་ཆུང་ཆུང་། + སྒེའུ་ཁུང་ཆུང་ཆུང་མངོན་པ། - + 2min - 2min + སྐར་མ2 - Alarm ཉེན་བརྡ་གཏོང་བ། @@ -428,53 +426,52 @@ 计次 - Watch - ལྟ་ཞིབ་བྱེད་པ། + སྐར་ཆའི་རེའུ་མིག icon - + མཚོན་རྟགས། - - - + + + bell ཅོང་བརྡ། - + Minimize 最小化 - ཉུང་དུ་གཏོང་གང་ཐུབ་བྱ་དགོས། + ཆེས་ཆུང་དུ་བསྒྱུར་བ། - - + + Quit 退出 ཕྱིར་འཐེན་བྱ་རྒྱུ། - + Menu 菜单 - ཟས་ཐོ། + འདེམས་པང་། - + Delete 删除 བསུབ་པ། - + ClearAll 全部清空 - གསལ་པོར་བཤད་ན། + ཚང་མ་གཙང་སེལ། Set Up @@ -487,81 +484,81 @@ 帮助 - + Help 帮助 རོགས་རམ་བྱེད་པ། - + About 关于 འབྲེལ་ཡོད་ཀྱི་སྐོར། - + Close 退出 སྒོ་རྒྱག་པ། - + up to 100 times ཆེས་མང་ན་ཐེངས་100ལ་སླེབས་པ། - + remind - དྲན་སྐུལ། + ཅུང་ཙམ་གྱི་རྗེས་ནས་གསལ་འདེབས། - + name - མིང་། + ཅོང་བརྡའི་མིང་། &Quit 退出 - + edit རྩོམ་སྒྲིག - + mute སྐད་ཆ་མི་བཤད་པ། - + All bells are off ཅོང་བརྡ་ཚང་མ་ལྷུང་སོང་། - + 3min - 3min + སྐར་མ3 - + 4min - 4min + སྐར་མ4 - + 6min - 6min + སྐར་མ6 - - - - - - - - + + + + + + + + No repetition བསྐྱར་ཟློས་མི་བྱེད་པ། @@ -570,31 +567,31 @@ 秒后关闭 - - - - - + + + + + Workingday - ལས་ཞག + ལས་ཞག་ཉིན། - + (default) - (ཁ་ཆད་དང་འགལ་) + (སོར་བཞག) - - - - - + + + + + none གཅིག་ཀྱང་མེད། - - + + Please set alarm name! 请设置闹钟名! ཉེན་བརྡའི་མིང་ཞིག་འགོད་རོགས། @@ -625,7 +622,7 @@ 小时 - + glass ཤེལ་སྒོ། @@ -657,36 +654,36 @@ 雨滴 - - + + continue - མུ་མཐུད་དུ་རྒྱུན་ + མུ་མཐུད་དུ། - + warning ཐ་ཚིག་སྒྲོག་པ། - + the number of alarms reaches limit!! ཉེན་བརྡའི་གྲངས་འབོར་ཚད་བཀག་ལ་སླེབས་ཡོད། - + yes - ཡེ་ཡ། + གཏན་འཁེལ། - - + + work ལས་ཀ་བྱེད་པ། - + 工作日 - + ལས་ཀའི་ཉིན། 360 Seconds to close @@ -697,40 +694,40 @@ 时间到 - + End མཇུག་སྒྲིལ། - + after tomorrow - སང་ཉིན་གྱི་རྗེས་སུ། + གནང་ཉིན། - + Tomorrow སང་ཉིན། - + hour དུས་ཚོད། - + min - ཟིན་བྲིས་གནད་བསྡུས། + སྐར་མ། - + sec - གཉིས། + སྐར་ཆ། - - - - + + + + Every day ཉིན་ལྟར། @@ -1059,7 +1056,7 @@ sec - + 不重复 No repetition 不重复 @@ -1134,17 +1131,17 @@ Form - + རེའུ་མིག Alarm clock - ཆུ་ཚོད་འཁོར་ལོ། + ཅོང་བརྡ། 11:20 设计例会... - + 11:20 འཆར་ཅན་ཚོགས་འདུ། 60秒后自动关闭 @@ -1154,7 +1151,7 @@ Remind later - རྗེས་སུ་དྲན་སྐུལ་ + ཅུང་ཙམ་གྱི་རྗེས་ནས་གསལ་འདེབས། close @@ -1163,7 +1160,7 @@ Ring prompt - མཛུབ་དཀྲིས་ཀྱི་མྱུར་ཚད། + ཅོང་བརྡ་གྲགས་བྱུང་། @@ -1173,7 +1170,7 @@ Time out - དུས་ཚོད་ཕྱིར་འཐེན་བྱེད་པ + དུས་ཚོད་ཕྱིར་འཐེན་བྱེད་པ། glass @@ -1194,7 +1191,7 @@ Seconds to close - དུས་ཚོད་སྐར་ཆ་ཙམ་ཡང་སྒོ་རྒྱག་ + དུས་ཚོད་སྐར་ཆ་ཙམ་ཡང་སྒོ་རྒྱག་པ། @@ -1239,22 +1236,22 @@ QObject - + Hint - གསལ་འདེབས་བྱེད་པ + གསལ་འདེབས་བྱེད་པ། - + Are you sure to delete? - ཁྱོད་ཀྱིས་ངེས་པར་དུ་བསུབ་དགོས་སམ། + ཁྱོད་ཀྱིས་ངེས་པར་དུ་ཅོང་བརྡ་བསུབ་དགོས་སམ། - + sure གཏན་འཁེལ་བྱ་དགོས། - + cancel ཕྱིར་འཐེན། @@ -1281,7 +1278,7 @@ bark - ཤིང་ཤུན། + ཁྱི་ཟུག @@ -1291,12 +1288,12 @@ drip - ཐིགས་པ་ཐིགས་པ། + ཆུའི་ཐིགས་པ། diy bell - གོམས་སྲོལ་ཅོང་བརྡ། + རང་ཉིད་ཀྱིས་ཅོང་བརྡ་ལ་མཚན་ཉིད་བཞག @@ -1311,7 +1308,7 @@ audio files(*mp3 *wav *ogg) - སྒྲ་ཕབ་ཡིག་ཆ།(*mp3 *wav *ogg) + རིགས།(*mp3 *wav *ogg) @@ -1326,11 +1323,11 @@ VerticalScroll_24 PM - PM + ཕྱི་དྲོ། AM - AM + སྔ་དྲོ། @@ -1359,7 +1356,7 @@ VerticalScroll_APM - + VerticalScroll_APM @@ -1367,7 +1364,7 @@ Dialog - + རྣམ་བཞག་ཅན། @@ -1378,7 +1375,7 @@ 请选择关闭后的状态 - + སྒོ་བརྒྱབ་རྗེས་ཀྱི་རྣམ་པ་འདེམས་རོགས། @@ -1389,7 +1386,7 @@ backstage - རྒྱབ་སྟེགས་ + རྒྱབ་སྟེགས་ལག་བསྟར་བྱེད་པ། backstage @@ -1398,7 +1395,7 @@ Exit program - ཕྱིར་འཐེན་འཆར་གཞི། + ཐད་ར་ཕྱིར་འཐེན། @@ -1411,7 +1408,7 @@ Dialog - + རྣམ་བཞག་ཅན། @@ -1426,7 +1423,7 @@ are you sure ? - ཁྱེད་གཏན་འཁེལ་ཡིན་ནམ།? + ཁྱེད་ཀྱིས་མིག་སྔའི་ཅོང་བརྡ་བསུབ་རྒྱུ་གཏན་འཁེལ་ཡིན་ནམ། @@ -1434,7 +1431,7 @@ Form - + རེའུ་མིག @@ -1442,12 +1439,12 @@ Alarm - ཉེན་བརྡ་གཏོང་བ། + ཅོང་བརྡ། Dialog - + རྣམ་བཞག་ཅན། @@ -1620,18 +1617,18 @@ Form - + རེའུ་མིག max - ཚད་གཞི་མཐོ་ཤོས་ + ཆེས་རིང་བ། min - ཟིན་བྲིས་གནད་བསྡུས། + ཆེས་ཐུང་བ། shortest @@ -1643,7 +1640,7 @@ Form - + རེའུ་མིག Countdown diff --git a/translations/ukui-clock_tr.ts b/translations/ukui-clock_tr.ts index fb0620a..e13a8f2 100644 --- a/translations/ukui-clock_tr.ts +++ b/translations/ukui-clock_tr.ts @@ -73,10 +73,10 @@ - - - - + + + + start Başlat @@ -109,9 +109,9 @@ - - - + + + suspend Askıya Al @@ -145,9 +145,9 @@ - - - + + + PM ÖS @@ -160,28 +160,26 @@ Kalan süre - + reset Sıfırla - - + + count İşaret - - - + + Count down Geri Sayım - Alarm Alarm @@ -215,7 +213,7 @@ İsim - + repeat Tekrarla @@ -241,51 +239,51 @@ Devam Et - + interval Aralık - - - + + + AM ÖÖ - + 2min 2 dk - + remind - + 3min 3 dk - + 4min 4 dk - + 6min 6 dk - - - - - - - - + + + + + + + + No repetition Tekrar yok @@ -294,22 +292,22 @@ saniye sonra kapanacak - - - - - + + + + + Workingday İş günü - + (default) (varsayılan) - - + + Please set alarm name! Lütfen alarm adını ayarlayın! @@ -334,7 +332,6 @@ Geri Sayım - Watch Kronometre @@ -348,35 +345,35 @@ Saat - + glass Bardak - - - + + + bell - + Minimize küçültmek - - + + Quit Çık - + Menu Menü - + Help Yardım @@ -385,12 +382,12 @@ Havlama - + name - + edit @@ -403,17 +400,17 @@ Damla - + up to 100 times - + mute - + All bells are off @@ -426,40 +423,40 @@ Zaman doldu - + End Son - + after tomorrow Yarından sonra - + Tomorrow Yarın - + hour Saat - + min Dk - + sec Sn - - - - + + + + Mon Pzt @@ -468,18 +465,18 @@ Kapat - + Delete Sil - + ClearAll - - + + continue @@ -488,153 +485,153 @@ ayarlandır - + About hakkında - + Close kapat - + recent alarm - - - - + + + + Tue Sal - - - - + + + + Wed Çar - - - - + + + + Thu Per - - - - + + + + Fri Cum - - - - + + + + Sat Cts - - - - + + + + Sun Paz - - - - + + + + Every day Her gün - - - - - + + + + + none - + warning - + the number of alarms reaches limit!! - + yes - - + + work İş - + 工作日 - + 不重复 - + 60 Seconds to close Kapatmak için 360 Saniye {60 ?} - - + + five mins late - - + + ten mins late - - + + twenty mins late - - + + thirsty mins late - - + + one hour late - + mini window @@ -785,22 +782,22 @@ QObject - + Hint - + Are you sure to delete? - + sure Tamam - + cancel İptal diff --git a/translations/ukui-clock_zh_CN.ts b/translations/ukui-clock_zh_CN.ts index cd1e169..858f1e3 100644 --- a/translations/ukui-clock_zh_CN.ts +++ b/translations/ukui-clock_zh_CN.ts @@ -63,12 +63,12 @@ AM - 上午 + 上午 PM - 下午 + 下午 @@ -81,10 +81,10 @@ - - - - + + + + start 开始 开始 @@ -114,9 +114,9 @@ - - - + + + suspend 暂停 @@ -153,9 +153,9 @@ - - - + + + PM 下午 @@ -169,22 +169,21 @@ 点击闹钟显示剩余时间 - + reset 复位 - - + + count 计次 - - - + + Count down 倒计时 @@ -222,7 +221,7 @@ 闹钟名 - + repeat 重复 @@ -300,126 +299,125 @@ 继续 - + interval 间隔 - + recent alarm 最近闹钟 - - - + + + AM 上午 - - - - + + + + Mon 星期一 - - - - + + + + Tue 星期二 - - - - + + + + Wed 星期三 - - - - + + + + Thu 星期四 - - - - + + + + Fri 星期五 - - - - + + + + Sat 星期六 - - - - + + + + Sun 星期日 - + 60 Seconds to close 60秒后自动关闭 - - + + five mins late 5分钟后 - - + + ten mins late 10分钟后 - - + + twenty mins late 20分钟后 - - + + thirsty mins late 30分钟后 - - + + one hour late 1小时后 - + mini window 小窗显示 - + 2min 2分钟 - Alarm 闹钟 @@ -428,7 +426,6 @@ 计次 - Watch 秒表 @@ -439,39 +436,39 @@ - - - + + + bell 铃声 - + Minimize 最小化 最小化 - - + + Quit 退出 退出 - + Menu 菜单 菜单 - + Delete 删除 删除 - + ClearAll 全部清空 全部清空 @@ -487,35 +484,35 @@ 帮助 - + Help 帮助 帮助 - + About 关于 关于 - + Close 退出 退出 - + up to 100 times 最多可记100次 - + remind 稍后提醒 - + name 闹钟名 @@ -524,44 +521,44 @@ 退出 - + edit 编辑 - + mute 静音 - + All bells are off 所有铃声已关闭 - + 3min 3分钟 - + 4min 4分钟 - + 6min 6分钟 - - - - - - - - + + + + + + + + No repetition 不重复 @@ -570,31 +567,31 @@ 秒后关闭 - - - - - + + + + + Workingday 工作日 - + (default) (默认) - - - - - + + + + + none - - + + Please set alarm name! 请设置闹钟名! 请设置闹钟名! @@ -625,7 +622,7 @@ 小时 - + glass 玻璃 @@ -657,34 +654,34 @@ 雨滴 - - + + continue 继续 - + warning 警告 - + the number of alarms reaches limit!! 闹钟数量已达上限! - + yes 确认 - - + + work 工作日 - + 工作日 @@ -697,40 +694,40 @@ 时间到 - + End 结束 - + after tomorrow 后天 - + Tomorrow 明天 - + hour - + min - + sec - - - - + + + + Every day 每天 @@ -1059,7 +1056,7 @@ sec - + 不重复 No repetition No repetition @@ -1239,22 +1236,22 @@ QObject - + Hint 提示 - + Are you sure to delete? 您确定删除当前闹钟吗? - + sure 确定 - + cancel 取消